:root {
    --bg: #071711;
    --card: #0f221b;
    --text: #f3f8f6;
    --green: #128a63;
}

body {
    margin: 0;
    font-family:
        "Urbanist",
        "Poppins",
        system-ui,
        -apple-system,
        "Segoe UI",
        Arial,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

/* HERO SECTION */
/* title + sub */
.dm-title {
    margin: 6px 0 6px;
    text-align: center;
    font-weight: 900;
    line-height: 1.2;
    font-size: clamp(26px, 3.2vw, 44px);
}
.dm-title u {
    color: #e9ed26;
    text-underline-offset: 2px;
    text-decoration-color: #e9ed26;
    text-decoration-thickness: 2px;
}
.dm-sub {
    margin: 8px 0 8px;
    color: #a2c9bd;
    text-align: center;
    letter-spacing: 0.06em;
}

#hero-dm {
    background: #04130e;
    padding: 4px 0 10px;
    border-bottom: 1px solid #103529;
}
#hero-dm .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
    color: #ecf6f2;
}

/* GRID LAYOUT */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* LEFT IMAGE COLUMN */
.hero-image {
    border-radius: 16px;
    overflow: hidden;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* RIGHT CONTENT COLUMN */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

/* DATE CARD */
.card {
    background: #0a1f18;
    border: 1px solid #17382c;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 16px;
}

.date-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cal-badge {
    --w: 56px;
    width: var(--w);
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-align: center;
    background: #fff;
}
.cal-month {
    background: var(--green);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 10px;
    line-height: 23px;
    text-transform: uppercase;
}
.cal-day {
    color: #111;
    font-weight: 800;
    font-size: 18px;
    line-height: 35px;
}
.date-info .date-line {
    font-size: 20px;
    font-weight: 800;
}
.date-info .time-line {
    color: #a9cfc3;
    font-weight: 700;
    margin-top: 4px;
}

/* MODE + LANGUAGE */
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.info .label {
    color: #96b9ae;
    font-size: 13px;
    margin-bottom: 6px;
}
.info .value {
    font-size: 20px;
    font-weight: 800;
}

/* CTA BUTTON */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;

    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    padding: 18px 16px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    user-select: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;

    /* 👇 NEW lines to limit width */
    inline-size: clamp(260px, 80vw, 720px); /* keeps it responsive */
    margin: 20px auto 0; /* centers it horizontally */
}
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}
.cta small {
    display: block;
    margin-top: 4px;
    opacity: 0.95;
    font-weight: 600;
}
.note {
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
    }
}
/* ============ TESTIMONIALS ============ */
.dm-testimonials {
    background: #06130e;
    padding: 14px 0;
}
.dm-testimonials .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;
}
.dm-testimonials h2 {
    font-family: "Sora", sans-serif;
    text-align: center;
    font-size: clamp(30px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 8px;
}
.dm-testimonials .sub {
    text-align: center;
    color: #9acabc;
    margin-bottom: 28px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testi-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.testi-card img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
@media (max-width: 850px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
}
/* rating */
.dm-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #a9cfc3;
    font-weight: 700;
    margin-bottom: 10px;
}
.dm-rating .stars {
    color: #30c48b;
    padding-top: 15px;
    letter-spacing: 2px;
}
.dm-rating .stars2 {
    padding-top: 15px;
    letter-spacing: 2px;
}
/* =======================
   3-Hour Comparison Block
   ======================= */
/* Grid for the two cards */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    max-width: 1000px;
    margin: 0 auto 28px;
}

/* Card interior: two columns */
.compare-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr; /* left block + right list */
    align-items: start;
    gap: 18px 20px;
    padding: 26px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden; /* prevents any weird overflow lines */
}

/* Movie vs Workshop surfaces */
.compare-card.movie {
    background: linear-gradient(135deg, #111 0%, #0b0d0b 100%);
}
.compare-card.workshop {
    background: linear-gradient(135deg, #145f45 0%, #0b2c21 100%);
    box-shadow: 0 4px 22px rgba(0, 255, 120, 0.18);
}

/* Left column: stack image/icon + title */
.compare-card .card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.compare-card .icon {
    font-size: 46px;
    margin: 0;
    line-height: 1;
}
.compare-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: #fff;
}

/* Workshop image size */
.compare-card.workshop .card-left img {
    width: 160px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Right column list */
.compare-card .card-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.compare-card .card-right li {
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    color: #d0e3db;
    font-weight: 500;
    line-height: 1.55;
}
.compare-card.workshop .card-right li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7ef2c2;
    font-weight: 800;
}
.compare-card.movie .card-right li::before {
    content: "✕"; /* or "×" if you prefer */
    position: absolute;
    left: 0;
    top: 0.05em;
    color: #ff5a5a; /* red */
    font-weight: 800;
}

/* CTA should NOT be full width */
.compare-section .cta {
    inline-size: clamp(280px, 80vw, 720px);
    margin: 22px auto 0; /* center and add spacing from cards */
    border-radius: 14px;
}

/* Responsive stack */
@media (max-width: 1000px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 920px) {
    .compare-card {
        grid-template-columns: 1fr;
        align-items: start;
        margin: 0 6px 20px;
    }
    .compare-section {
        padding: 40px 12px 60px; /* extra breathing room for section */
    }
    .compare-card .card-left {
        align-items: flex-start;
    }
    .compare-card h3 {
        text-align: left;
        font-size: 24px;
    }
    .compare-card.workshop .card-left img {
        width: 140px;
    }
}

/* ===== Tools You Will Learn ===== */
.tools {
    padding: 20px 16px 20px;
    text-align: center;
    background: #081711; /* blends with your theme */
    color: var(--text, #f7f7f7);
}

.tools h2 {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    margin: 0 0 22px;
}

.tools-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 26px;
}

.tool-card {
    background: radial-gradient(120% 140% at 20% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 20px 16px;
    display: grid;
    place-items: center;
    gap: 10px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.25);
}

.tool-card img {
    width: 64px; /* adjust if your icons are larger */
    height: 64px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.tool-card h3 {
    margin: 2px 0 0;
    font-size: 16px;
    font-weight: 600;
    color: #e9f3ee;
}

/* Responsive */
@media (max-width: 1000px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tool-card img {
        width: 56px;
        height: 56px;
    }
}
@media (max-width: 420px) {
    .tools-grid {
        gap: 14px;
    }
    .tool-card {
        padding: 16px 12px;
    }
}
/* ===== Bonuses Section ===== */
.bonuses {
    padding: 20px 16px 20px;
    background: #071711; /* match your dark theme */
    text-align: center;
    color: #ecf5ef;
}
.bonuses h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    margin: 0 0 6px;
}
.bonuses .accent {
    color: #17d079;
} /* green highlight for ₹17,500 */
.bonuses .sub {
    margin: 0 auto 26px;
    max-width: 760px;
    color: #cfe6db;
    font-weight: 500;
}

/* Grid */
.bonus-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;

    justify-content: center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Card */
.bonus-card {
    position: relative;
    background: linear-gradient(180deg, #10261e 0%, #0b1e17 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-rows: auto auto;
}

/* Ribbon */
.bonus-card .ribbon {
    background: #1f966b;
    color: #fff;
    font-size: large;
    font-weight: 800;
    letter-spacing: 0.2px;
    padding: 15px 12px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

/* Body */
.bonus-card .body {
    padding: 20px 18px 18px;
    display: grid;
    grid-template-rows: auto auto 1fr;
    justify-items: center;
    gap: 10px;
    min-height: 280px; /* to keep the row height consistent like the shot */
}
.bonus-card h3 {
    margin: 0;
    font-size: clamp(26px, 1.9vw, 22px);
    font-weight: 800;
    line-height: 1.25;
    text-wrap: balance;
}
.bonus-card .tag {
    color: #86e7c7;
    font-size: 12px;
    letter-spacing: 0.18em;
}
.bonus-card .icon {
    width: 92px;
    height: 92px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

/* Price strip */
.price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: #0f2a22;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
}
.price-bar .mrp {
    font-weight: 800;
    color: #e8eee9;
    position: relative;
    opacity: 0.9;
}
.price-bar .mrp::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, #ff7a7a, #ff3b3b);
    transform: translateY(-50%) rotate(-8deg);
    border-radius: 2px;
}
.price-bar .free-tag {
    background: #ff4b5a;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    padding: 6px 8px;
    border-radius: 6px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1000px) {
    .bonus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 620px) {
    .bonuses {
        padding: 44px 12px 28px;
    }
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bonus-card .body {
        min-height: 240px;
    }
}
/* ===== Before & After Workshop ===== */
.before-after {
    padding: 16px 16px;
    background: #071711; /* blend with your theme */
    color: #ecf5ef;
    text-align: center;
}
.before-after h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    margin: 0 0 24px;
}

/* layout */
.ba-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* card shell */
.ba-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    text-align: left;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* header bar */
.ba-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}
.ba-emoji {
    font-size: 18px;
}
/* ❌ Red cross for "Before Workshop" */
.ba-card.negative li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("svg/delete.svg") no-repeat center center / contain;
    transform: translateY(-50%);
}

/* ✅ Green check for "After Workshop" */
.ba-card.positive li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    background: url("svg/check.svg") no-repeat center center / contain;
    transform: translateY(-50%);
}

/* spacing for text alignment */
.ba-card li {
    position: relative;
    padding-left: 30px; /* creates space for icon */
    line-height: 1.6;
    display: flex;
    align-items: center; /* vertically centers text with icon */
}

/* bodies (dark gradients like screenshot) */
.ba-card .ba-body {
    padding: 16px 18px 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}
.ba-card.negative .ba-body {
    background: linear-gradient(180deg, #5c1419 0%, #07120e 100%);
}
.ba-card.positive .ba-body {
    background: linear-gradient(180deg, #0a4934 0%, #03150f 100%);
}
/* variants */
.ba-card.negative .ba-head {
    background: #ba1e2a;
} /* red header */
.ba-card.positive .ba-head {
    background: #23a36d;
} /* green header */

/* lists */
.ba-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.ba-card li {
    position: relative;
    padding: 10px 10px 10px 22px;
    margin: 2px 0;
    line-height: 1.55;
    color: #e9f3ee;
    border-radius: 8px;
}

/* subtle rounded bottom edge like screenshot */
.ba-card {
    background: transparent;
}
.ba-card .ba-body {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

/* responsive */
@media (max-width: 900px) {
    .ba-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 520px) {
    .ba-card li {
        padding-left: 20px;
    }
}

/* ===== Mentor Section ===== */
.mentor {
    padding: 20px 16px;
    background: #071711;
    color: #ecf5ef;
}
.mentor h2 {
    text-align: center;
    margin: 0 0 26px;
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
}

/* Layout */
.mentor-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 34px;
    align-items: start;
}

/* Photo */
.mentor-photo {
    margin: 0;
}
.mentor-photo img {
    width: 80%;
    display: block; /* allows margin auto to work */
    margin: 0 auto; /* centers horizontally */
    height: auto;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    object-fit: cover;
}
/* Right column */
.mentor-right {
    display: grid;
    gap: 18px 0;
}

/* Badges grid */
.mentor-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #125c41;
    color: #f1fff8;
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 700;
    box-shadow:
        inset 0 -1px 0 rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge:nth-child(2),
.badge:nth-child(4) {
    background: #0f6e4a;
}

/* Flaticon check.svg icon */
.badge .tick {
    width: 18px;
    height: 18px;
    background: url("svg/check.svg") no-repeat center center / contain;
    flex-shrink: 0;
}

/* Copy */
.mentor-copy {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.7;
    color: #e4f0ea;
}
.mentor-copy p {
    margin: 0 0 14px;
}
.mentor-copy .strong {
    font-weight: 800;
    color: #fff;
}
.mentor-copy .accent {
    color: #22cc89;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
    .mentor-grid {
        grid-template-columns: 1fr;
    }
    .mentor-badges {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .mentor-badges {
        grid-template-columns: 1fr;
    }
    .badge {
        padding: 12px 14px;
    }
}
/* ===== Certification Section ===== */
.certificate {
    background: #071711;
    color: #ecf5ef;
    padding: 5px 16px;
}

.certificate-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr; /* give more width to text */
    align-items: start;
    gap: 10px;
    padding: 10px 10px;
}

/* Left side */
.cert-left {
    color: #eaf6ef;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 👈 ensures content stays top-aligned */
    align-items: flex-start;
}
.cert-left h2 {
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.25;
}
.cert-left .highlight {
    color: #22cc89;
}

.cert-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.cert-point .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(3px);
}

.cert-point .icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.cert-point p {
    margin: 0;
    line-height: 1.6;
    color: #cce7db;
    font-size: clamp(15px, 1.3vw, 17px);
}

/* Right image */
.cert-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cert-right img {
    width: 90%; /* smaller image */
    border-radius: 14px;
    object-fit: contain;
    display: block;
    z-index: 1;
    margin-bottom: 15px;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
}
.cert-right::before {
    content: "";
    position: absolute;
    width: 94%;
    height: 97%;
    border-radius: 16px;
    background: linear-gradient(120deg, rgba(50, 200, 120, 0.8), rgba(0, 180, 255, 0.7), rgba(50, 200, 120, 0.8));
    background-size: 300% 300%;
    animation: shineBorder 5s ease-in-out infinite;
    filter: blur(10px);
    opacity: 0.4;
    z-index: 0;
}
@keyframes shineBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive adjustments */
@media (max-width: 960px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cert-left {
        order: 2;
    }
    .cert-right {
        order: 1;
    }
    .cert-point {
        justify-content: center;
        text-align: left;
    }
}
@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr;
    }

    /* Make heading appear on top of image */
    .cert-left {
        order: 1;
        text-align: center;
    }

    .cert-right {
        order: 2;
    }

    .cert-right img {
        width: 100%;
        margin-top: 01px;
    }

    .cert-point {
        justify-content: center;
        text-align: left;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 20px 16px;
    background: #071711;
    color: #ecf5ef;
}
.faq h2 {
    text-align: center;
    margin: 0 0 6px;
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 800;
}
.faq .accent {
    color: #20c887;
}
.faq .sub {
    text-align: center;
    color: #cfe6db;
    margin: 0 0 18px;
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(14, 57, 44, 0.45), rgba(8, 31, 25, 0.45));
    box-shadow:
        0 6px 22px rgba(0, 0, 0, 0.22) inset,
        0 2px 0 rgba(255, 255, 255, 0.02) inset;
}

.faq-q {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    background: transparent;
    color: #e9f7f1;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: clamp(16px, 1.4vw, 18px);
}
.faq-q:focus-visible {
    outline: 2px solid #22cc89;
    outline-offset: 2px;
    border-radius: 8px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: linear-gradient(90deg, rgba(20, 92, 70, 0.4), rgba(8, 31, 25, 0.35));
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.faq-a p {
    margin: 14px 18px 18px;
    color: #d7efe5;
    line-height: 1.65;
}

.faq-item.open .faq-a {
    max-height: 220px;
} /* enough for a couple of lines */
.faq-item.open .faq-q[aria-expanded="true"] + .faq-a {
    /* just for clarity */
}

.chev {
    --s: 10px;
    inline-size: var(--s);
    block-size: var(--s);
    border-right: 2px solid #bfeee0;
    border-bottom: 2px solid #bfeee0;
    transform: rotate(-45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-item.open .chev {
    transform: rotate(135deg);
}

/* nicer first item open height */
.faq-item.open:first-child .faq-a {
    max-height: 300px;
}

@media (max-width: 640px) {
    .faq-list {
        gap: 10px;
    }
    .faq-q {
        padding: 16px;
    }
    .faq-a p {
        margin: 12px 16px 16px;
    }
}

/* ==== CTA Section ==== */
.cta-section {
    background: linear-gradient(180deg, #083928 0%, #04140e 100%);
    border-radius: 14px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
@media (max-width: 940px) {
    .cta-section {
        margin: 60px 20px 20px 20px;
    }
}

/* Section heading */
.cta-section h2 {
    font-size: clamp(32px, 3vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
}

/* Reusing your existing CTA button but with slightly tweaked width */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    user-select: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    width: 80%; /* 👈 less than full width */
    margin: 0 auto 10px; /* 👈 centers the button */
    max-width: 720px; /* 👈 keeps it proportional on big screens */
}

.cta small {
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
}

/* Button hover */
.cta:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 45px rgba(255, 80, 80, 0.45);
}

/* Gradient animation */
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Reviews text */
.reviews {
    color: #a6e7cf;
    font-size: 16px;
    margin-top: 12px;
}

.stars {
    color: #22cc89;
    font-size: 18px;
    margin-right: 6px;
}

/* --- Mobile Sticky Footer --- */
.mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none; /* mobile-only -> enabled in media query */
    background: #0a231c; /* base so the glow blends in */
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
    border-top: 1px solid #00c600;
}

.mobile-sticky .ms-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #0b2f23 0%, #071a14 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
}

.mobile-sticky .ms-left {
    display: grid;
    gap: 4px;
}
.mobile-sticky .ms-label {
    color: #e8f6ef;
    font-weight: 700;
    font-size: 14px;
}
.mobile-sticky .ms-timer {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.mobile-sticky .ms-timer span {
    font-weight: 800;
    font-size: 18px;
    color: #22cc89; /* green digits */
    min-width: 28px;
    text-align: center;
}
.mobile-sticky .ms-timer small {
    color: #a7e3cf;
    font-size: 12px;
}

/* CTA button (compact, same feel as your red CTA) */
.mobile-sticky .ms-cta {
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    user-select: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
}
.mobile-sticky .ms-cta:active {
    transform: scale(0.98);
}

.mobile-sticky .ms-note {
    text-align: center;
    color: #cfe9df;
    font-size: 11px;
    margin-top: 6px;
    opacity: 0.9;
}

/* animated gradient (reuses your CTA motion) */
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Mobile-only */
@media (max-width: 768px) {
    .mobile-sticky {
        display: block;
    }
}

/* Avoid overlapping your own bottom bars (optional) */
body.has-mobile-sticky {
    padding-bottom: 86px;
} /* tweak if you want extra room */

.offer-countdown-text {
    text-align: center;
}

/* ===== Modal / Popup ===== */
/* ===== Modal / Popup ===== */
.backdrop {
    position: fixed;
    inset: 0;
    display: none; /* shown via JS: display:flex */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    padding: 16px;
}

/* Modal container */
.modal {
    position: relative;
    width: min(560px, 92vw);
    background: #ffffff; /* clean white popup */
    color: #0a1f18;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    padding: 28px 24px 30px;
    border: none;
    max-height: min(86vh, 780px);
    overflow: auto;
    animation: popIn 180ms ease-out;
}

/* Heading */
.modal h4 {
    margin: 0 0 18px;
    font-weight: 800;
    font-size: 24px;
    color: #000;
    text-align: center;
}

/* Close button */
.modal .x {
    position: absolute;
    top: 10px;
    right: 10px;
    inline-size: 32px;
    block-size: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    color: #000;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
}
.modal .x:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Form layout */
.modal .f {
    margin-top: 8px;
}
.modal .f .row {
    margin: 0 0 12px;
}

/* Inputs */
.modal input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #000;
    font-size: 15px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.04);
    outline: none;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.modal input::placeholder {
    color: #777;
}
.modal input:focus {
    border-color: #0a8f2b;
    box-shadow: 0 0 0 2px rgba(10, 143, 43, 0.15);
}

/* Submit button (same as main CTA) */
.modal .submit {
    width: 100%;
    padding: 15px 20px;
    border: 0;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    background: linear-gradient(270deg, #ce1512, #ff6a3a, #ce1512);
    background-size: 400% 400%;
    animation: ctaGradientMove 8s ease infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.modal .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

/* Info text below button */
.modal .privacy {
    margin: 8px 0 0;
    font-size: 14px;
    color: #222; /* darker for readability */
    line-height: 1.1;
    font-weight: 500; /* was 400 — bolder and cleaner */
}

/* Lock scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/* Small screen optimization */
@media (max-width: 480px) {
    .modal {
        padding: 22px 16px 22px;
    }
    .modal h4 {
        font-size: 20px;
    }
}

/* Entrance animation */
@keyframes popIn {
    from {
        transform: translateY(10px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Gradient animation reused from site */
@keyframes ctaGradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Keep the card perfectly centered & contained */
/* --- Modal containment fix --- */
/* Ensure children widths include padding & border */
#modal,
#modal * {
    box-sizing: border-box;
}

/* Prevent any sideways scroll inside the card */
.modal {
    overflow-x: hidden;
}

/* Make sure form controls never exceed the modal width */
.modal input,
.modal .submit {
    display: block;
    width: 100%;
    max-width: 100%;
}
