/* =========================================================
   MyIndiaRank.com — Ads Conversion Landing Page
   Standalone stylesheet (green iStudy-inspired theme)
   ========================================================= */

:root {
    --green: #07A169;
    --green-2: #03C47E;
    --green-dark: #00170F;
    --yellow: #FFB800;
    --yellow-2: #FF8A00;
    --ink: #00170F;
    --body: #5d6f68;
    --soft: #F1F8F4;
    --line: #e8f1ec;
    --white: #ffffff;
    --grad: linear-gradient(135deg,#07A169 0%,#03C47E 100%);
    --grad-y: linear-gradient(135deg,#FFB800 0%,#FF8A00 100%);
    --shadow: 0 24px 60px rgba(0,23,15,.10);
    --ff: "Roboto",sans-serif;
    --ff-display: "Big Shoulders Display",sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff);
    color: var(--body);
    font-size: 16px;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

    .section.pt0 {
        padding-top: 0;
    }

.text-center {
    text-align: center;
}

.mb-head {
    margin-bottom: 50px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    padding: 0 30px;
    height: 54px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .3s ease;
    white-space: nowrap;
}

    .btn i {
        font-size: 14px;
    }

.btn-primary {
    background: var(--green);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--green-dark);
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(7,161,105,.30);
    }

.btn-secondary {
    background: var(--grad-y);
    color: #fff;
}

    .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(255,165,0,.35);
    }

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

    .btn-outline:hover {
        background: var(--green);
        color: #fff;
    }

.btn-lg {
    height: 60px;
    font-size: 17px;
    padding: 0 38px;
}

.btn-block {
    width: 100%;
}

/* ===== Eyebrow + titles ===== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7,161,105,.10);
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

    .eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--yellow);
        box-shadow: 0 0 0 4px rgba(255,184,0,.25);
    }

.sec-title {
    font-size: 44px;
    color: var(--ink);
}

.sec-sub {
    color: var(--body);
    max-width: 640px;
    margin: 16px auto 0;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ===== Animated underlines (from v1) ===== */
.mark {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: var(--ink);
}

    .mark::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 60%;
        z-index: -1;
        background: url(../images/down-mark-line.webp) no-repeat bottom;
        background-size: contain;
        animation: mark-draw 3s infinite;
    }

@keyframes mark-draw {
    0% {
        width: 0
    }

    15% {
        width: 100%
    }

    85% {
        opacity: 1
    }

    90% {
        width: 100%;
        opacity: 0
    }

    to {
        width: 0;
        opacity: 0
    }
}

.uline {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--yellow-2);
}

    .uline svg {
        position: absolute;
        left: 0;
        bottom: -6px;
        z-index: -1;
        width: 100%;
    }

        .uline svg path {
            stroke: var(--yellow);
            stroke-width: 3;
            fill: none;
            stroke-dasharray: 560;
            stroke-dashoffset: 560;
            animation: uline-stroke 3s linear forwards infinite;
        }

@keyframes uline-stroke {
    0% {
        stroke-dashoffset: 560
    }

    50% {
        stroke-dashoffset: 0
    }

    100% {
        stroke-dashoffset: -560
    }
}

/* ===== Scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

    .reveal.d1 {
        transition-delay: .12s
    }

    .reveal.d2 {
        transition-delay: .24s
    }

    .reveal.d3 {
        transition-delay: .36s
    }

/* ===== Top bar ===== */
.topbar {
    background: var(--green-dark);
    color: #cfe7dc;
    font-size: 14px;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 42px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .topbar a {
        color: #cfe7dc;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .topbar a i {
            color: var(--yellow);
        }

    .topbar .tb-left {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

@media(max-width:767px) {
    .topbar .tb-right {
        display: none;
    }
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,23,15,.06);
    transition: .3s;
}

    .header.shrink {
        box-shadow: 0 6px 30px rgba(0,23,15,.10);
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 78px;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--ink);
}

    .logo .lg-ic {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: var(--grad);
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 20px;
    }

        .logo .lg-ic .fa-trophy {
            color: var(--yellow);
        }

    .logo b {
        color: var(--green);
    }

.brand-logo {
    height: 46px;
    width: auto;
    display: block;
}

@media(max-width:575px) {
    .brand-logo {
        height: 38px;
    }
}

.brand-logo-foot {
    height: 46px;
    width: auto;
    display: block;
    background: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav a {
        font-weight: 600;
        color: var(--ink);
        font-size: 15px;
        transition: .2s;
    }

        .nav a:hover {
            color: var(--green);
        }

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-btn, .menu-close {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--ink);
    cursor: pointer;
}

@media(max-width:991px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 18px;
        box-shadow: -10px 0 40px rgba(0,0,0,.12);
        transition: .35s;
        z-index: 300;
    }

        .nav.open {
            right: 0;
        }

    .menu-btn {
        display: block;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 20px;
    }

    .header-cta .btn-outline {
        display: none;
    }
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,23,15,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 250;
}

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 80px;
    background: radial-gradient(900px 500px at 88% -10%,rgba(7,161,105,.15),transparent 60%), radial-gradient(700px 500px at -5% 110%,rgba(255,184,0,.14),transparent 55%),#fff;
}

    .hero .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(6px);
        opacity: .5;
        z-index: 0;
    }

        .hero .blob.b1 {
            width: 120px;
            height: 120px;
            background: var(--grad);
            top: 12%;
            left: 42%;
            animation: floaty 7s ease-in-out infinite;
        }

        .hero .blob.b2 {
            width: 70px;
            height: 70px;
            background: var(--grad-y);
            bottom: 14%;
            left: 4%;
            animation: floaty 5s ease-in-out infinite;
        }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,23,15,.06);
    padding: 8px 16px 8px 8px;
    border-radius: 40px;
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
    margin-bottom: 18px;
}

    .hero-badge i {
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--grad-y);
        color: #fff;
        font-size: 13px;
    }

.hero h1 {
    font-size: 54px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero p.lead {
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 24px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-bottom: 28px;
}

    .hero-points li {
        display: flex;
        align-items: center;
        gap: 9px;
        font-weight: 600;
        color: var(--ink);
        font-size: 15px;
    }

        .hero-points li i {
            color: var(--green);
        }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

    .hero-social .avatars {
        display: flex;
    }

        .hero-social .avatars img {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 3px solid #fff;
            object-fit: cover;
            margin-left: -14px;
            box-shadow: 0 4px 10px rgba(0,0,0,.12);
        }

            .hero-social .avatars img:first-child {
                margin-left: 0;
            }

    .hero-social .hs-text b {
        color: var(--ink);
    }

    .hero-social .stars {
        color: var(--yellow);
        font-size: 13px;
    }

/* Hero form card */
.lead-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .lead-card .lc-top {
        background: var(--grad);
        color: #fff;
        padding: 22px 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

        .lead-card .lc-top::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,.14) 2px,transparent 2px);
            background-size: 20px 20px;
            opacity: .5;
        }

        .lead-card .lc-top .off {
            display: inline-block;
            background: var(--yellow);
            color: var(--green-dark);
            font-weight: 800;
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 8px;
            position: relative;
        }

        .lead-card .lc-top h3 {
            color: #fff;
            font-size: 22px;
            position: relative;
        }

        .lead-card .lc-top .price {
            position: relative;
            margin-top: 6px;
            font-size: 15px;
        }

            .lead-card .lc-top .price .new {
                font-family: var(--ff-display);
                font-size: 30px;
                font-weight: 800;
            }

            .lead-card .lc-top .price .old {
                text-decoration: line-through;
                opacity: .7;
                margin-left: 6px;
            }

    .lead-card form {
        padding: 24px 28px 28px;
    }

.field {
    width: 100%;
    height: 52px;
    border: 1px solid #e2eae6;
    border-radius: 10px;
    margin-bottom: 14px;
    padding: 0 16px;
    font-size: 15px;
    color: var(--ink);
    background: #fafcfb;
    font-family: var(--ff);
}

    .field:focus {
        outline: none;
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(7,161,105,.10);
    }

select.field {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2307A169' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--body);
    margin-top: 12px;
}

    .form-note a {
        color: var(--green);
        font-weight: 700;
    }

.form-success {
    display: none;
    background: rgba(7,161,105,.10);
    color: var(--green);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 14px;
}

@media(max-width:991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .lead-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media(max-width:575px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p.lead {
        font-size: 16px;
    }
}

@keyframes floaty {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-16px)
    }
}

/* ===== Hero student stage (Style B) ===== */
.hero-stage {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.stage-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(7,161,105,.20),transparent 65%);
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.stage-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px dashed rgba(7,161,105,.25);
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    animation: spin 28s linear infinite;
}

@keyframes spin {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

.stage-stu {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    height: auto;
    filter: drop-shadow(0 22px 30px rgba(0,23,15,.16));
    -webkit-mask-image: linear-gradient(to bottom,#000 85%,transparent 100%);
    mask-image: linear-gradient(to bottom,#000 85%,transparent 100%);
}

.fcard {
    position: absolute;
    z-index: 2;
    background: #fff;
    border-radius: 14px;
    padding: 11px 15px;
    box-shadow: 0 18px 44px rgba(0,23,15,.16);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .fcard b {
        display: block;
        color: var(--ink);
        font-size: 16px;
        font-family: var(--ff-display);
        line-height: 1;
    }

    .fcard small {
        font-size: 11px;
        color: #7a8a83;
    }

.fc-ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    flex: none;
}

.f-air {
    top: 150px;
    left: -22px;
    animation: floaty 5s ease-in-out infinite;
}

.f-cash {
    top: 12px;
    right: -20px;
    animation: floaty 6s ease-in-out infinite reverse;
}

.f-gift {
    bottom: 6px;
    left: -8px;
    animation: floaty 7s ease-in-out infinite;
}

@media(max-width:991px) {
    .hero-stage {
        min-height: auto;
        margin-top: 6px;
    }

    .stage-stu {
        max-width: 440px;
    }

    .f-air {
        top: 120px;
        left: 0;
    }

    .f-cash {
        right: 0;
    }

    .f-gift {
        left: 0;
    }
}

@media(max-width:575px) {
    .f-air, .f-cash, .f-gift {
        transform: scale(.8);
    }

    .stage-ring {
        width: 280px;
        height: 280px;
    }

    .f-air {
        top: 96px;
    }
}

/* ===== Hero register strip ===== */
.leadstrip {
    background: var(--grad);
}

.leadstrip-form {
    display: grid;
    grid-template-columns: auto 1.2fr 1fr .8fr .8fr auto;
    gap: 12px;
    align-items: center;
    padding: 20px 0;
}

.ls-head {
    color: #fff;
}

    .ls-head b {
        font-size: 18px;
        display: block;
        line-height: 1.2;
    }

    .ls-head span {
        font-size: 13px;
        opacity: .92;
    }

        .ls-head span strong {
            font-family: var(--ff-display);
            font-size: 17px;
        }

        .ls-head span s {
            opacity: .7;
        }

.ls-field {
    height: 50px;
    border: none;
    border-radius: 9px;
    padding: 0 14px;
    font-size: 14px;
    color: var(--ink);
    background: #fff;
    font-family: var(--ff);
    width: 100%;
}

    .ls-field:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(255,255,255,.3);
    }

.leadstrip .btn {
    height: 50px;
    white-space: nowrap;
}

.ls-success {
    display: none;
    grid-column: 1/-1;
    background: #fff;
    color: var(--green);
    margin-bottom: 0;
}

@media(max-width:1100px) {
    .leadstrip-form {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .ls-head {
        grid-column: 1/-1;
        text-align: center;
    }

    .leadstrip .btn {
        grid-column: 1/-1;
    }
}

@media(max-width:575px) {
    .leadstrip-form {
        grid-template-columns: 1fr;
    }
}

/* ===== Trust marquee ===== */
.trust {
    background: var(--green-dark);
    padding: 18px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    gap: 54px;
    white-space: nowrap;
    width: max-content;
    animation: marquee 24s linear infinite;
}

    .marquee span {
        color: #bfe6d6;
        font-weight: 700;
        font-size: 17px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        opacity: .9;
    }

        .marquee span i {
            color: var(--yellow);
        }

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== Stats band ===== */
.stats {
    background: var(--grad);
    border-radius: 26px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

    .stats::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.12) 2px,transparent 2px);
        background-size: 22px 22px;
        opacity: .5;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    color: #fff;
}

    .stat .ic {
        font-size: 26px;
        color: var(--yellow);
        margin-bottom: 10px;
    }

    .stat .num {
        font-family: var(--ff-display);
        font-size: 46px;
        font-weight: 800;
        line-height: 1;
    }

    .stat p {
        margin-top: 6px;
        opacity: .92;
        font-size: 15px;
    }

@media(max-width:767px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 20px;
    }

    .stat .num {
        font-size: 38px;
    }
}

/* ===== Feature tiles ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 28px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

@media(max-width:991px) {
    .grid-3, .grid-6 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:575px) {
    .grid-3, .grid-4, .grid-6 {
        grid-template-columns: 1fr;
    }
}

.tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .tile:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(7,161,105,.13);
        border-color: transparent;
    }

    .tile .ic {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        font-size: 28px;
        color: #fff;
        margin-bottom: 20px;
        box-shadow: 0 14px 26px rgba(7,161,105,.22);
        transition: .35s;
    }

    .tile:hover .ic {
        transform: rotate(-8deg) scale(1.06);
    }

.ic-g {
    background: var(--grad);
}

.ic-y {
    background: var(--grad-y);
    box-shadow: 0 14px 26px rgba(255,165,0,.28);
}

.ic-d {
    background: linear-gradient(135deg,#0b3b29,#07A169);
}

.tile h5 {
    font-size: 21px;
    margin-bottom: 10px;
}

.tile p {
    font-size: 15px;
}

/* ===== Why cards ===== */
.why {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .35s;
}

    .why::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--grad);
        transform: scaleX(0);
        transform-origin: left;
        transition: .4s;
    }

    .why:hover::before {
        transform: scaleX(1);
    }

    .why:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 54px rgba(0,23,15,.08);
    }

    .why .ic {
        width: 62px;
        height: 62px;
        border-radius: 15px;
        display: grid;
        place-items: center;
        font-size: 25px;
        background: rgba(7,161,105,.10);
        color: var(--green);
        margin-bottom: 18px;
        transition: .35s;
    }

    .why:hover .ic {
        background: var(--grad);
        color: #fff;
    }

    .why h5 {
        font-size: 19px;
        margin-bottom: 9px;
    }

    .why p {
        font-size: 15px;
    }

/* ===== Winners gallery (Swiper) ===== */
.gallery {
    background: #07A169;
}

.winslider {
    padding: 10px 4px 0;
}

.win-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0,23,15,.07);
}

    .win-card .frame {
        height: 380px;
        background: linear-gradient(135deg,#eef6f1,#fff);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .win-card .frame img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.win-cap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
    border-top: 1px solid var(--line);
}

    .win-cap i {
        color: var(--yellow);
    }

.swiper-pagination-bullet {
    background: var(--green);
    opacity: .3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--green);
}

.win-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
}

    .win-nav button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid var(--green);
        background: #fff;
        color: var(--green);
        font-size: 16px;
        cursor: pointer;
        transition: .3s;
    }

        .win-nav button:hover {
            background: var(--green);
            color: #fff;
        }

@media(max-width:575px) {
    .win-card .frame {
        height: 320px;
    }
}

/* ===== Gifts ===== */
.gift {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 14px;
    text-align: center;
    transition: .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .gift:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 26px 50px rgba(255,165,0,.20);
        border-color: transparent;
    }

    .gift .emoji {
        font-size: 46px;
        margin-bottom: 12px;
        transition: .35s;
    }

    .gift:hover .emoji {
        transform: scale(1.15) rotate(-6deg);
    }

    .gift h6 {
        font-size: 16px;
        color: var(--ink);
    }

.gift-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7,161,105,.08);
    color: var(--green);
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 30px;
    margin-top: 34px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

@media(max-width:767px) {
    .grid-5 {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:420px) {
    .grid-5 {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ===== Timeline ===== */
.timeline {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
    position: relative;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 36px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(90deg,var(--green),var(--yellow));
        z-index: 0;
    }

@media(max-width:991px) {
    .timeline {
        grid-template-columns: 1fr 1fr;
    }

        .timeline::before {
            display: none;
        }
}

@media(max-width:480px) {
    .timeline {
        grid-template-columns: 1fr;
    }
}

.node {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .node .circle {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: grid;
        place-items: center;
        background: #fff;
        border: 3px solid var(--green);
        color: var(--green);
        font-size: 26px;
        font-weight: 800;
        font-family: var(--ff-display);
        box-shadow: 0 10px 26px rgba(7,161,105,.18);
        transition: .35s;
    }

    .node:hover .circle {
        background: var(--grad);
        color: #fff;
        border-color: transparent;
        transform: translateY(-6px);
    }

    .node h5 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .node p {
        font-size: 14px;
        padding: 0 6px;
    }

/* ===== Check list ===== */
.checks {
    margin: 24px 0 0;
}

    .checks li {
        position: relative;
        padding-left: 38px;
        margin-bottom: 14px;
        font-size: 16px;
        color: var(--ink);
        font-weight: 500;
    }

        .checks li i {
            position: absolute;
            left: 0;
            top: 1px;
            width: 25px;
            height: 25px;
            display: grid;
            place-items: center;
            font-size: 11px;
            color: #fff;
            background: var(--grad);
            border-radius: 50%;
        }

/* ===== Pricing + register ===== */
.register {
    background: #07A169;
}

.price-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

@media(max-width:991px) {
    .price-wrap {
        grid-template-columns: 1fr;
    }
}

.price-box {
    background: linear-gradient(160deg,#00321f 0%,#07A169 100%);
    border-radius: 24px;
    padding: 46px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .price-box::before {
        content: "";
        position: absolute;
        inset: auto -30% 60% auto;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,184,0,.18);
    }

.ribbon {
    position: absolute;
    top: 22px;
    right: -46px;
    transform: rotate(45deg);
    background: var(--grad-y);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 7px 58px;
    letter-spacing: .5px;
}

.price-box .save {
    display: inline-block;
    background: rgba(255,255,255,.16);
    padding: 7px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
}

.price-box .old {
    font-size: 24px;
    text-decoration: line-through;
    opacity: .65;
}

.price-box .new {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    font-family: var(--ff-display);
}

    .price-box .new small {
        font-size: 20px;
        font-weight: 600;
        opacity: .85;
    }

.price-box ul {
    margin-top: 24px;
}

    .price-box ul li {
        padding: 9px 0 9px 32px;
        position: relative;
    }

        .price-box ul li i {
            position: absolute;
            left: 0;
            top: 11px;
            color: var(--yellow);
        }

.reg-card {
    background: #fff;
    border-radius: 24px;
    padding: 42px 38px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

    .reg-card h3 {
        font-size: 26px;
        margin-bottom: 6px;
    }

/* ===== Testimonials ===== */
.tcard {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0,23,15,.05);
    height: 100%;
}

    .tcard .stars {
        color: var(--yellow);
        margin-bottom: 14px;
    }

    .tcard .gtag {
        display: inline-block;
        background: var(--grad-y);
        color: #fff;
        font-weight: 600;
        font-size: 12px;
        padding: 5px 14px;
        border-radius: 20px;
        margin-bottom: 16px;
    }

    .tcard .quote {
        color: #465;
        font-size: 15.5px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .tcard .who {
        display: flex;
        align-items: center;
        gap: 14px;
    }

        .tcard .who .av {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--grad);
            color: #fff;
            display: grid;
            place-items: center;
            font-weight: 800;
            font-family: var(--ff-display);
            font-size: 18px;
        }

        .tcard .who h6 {
            font-size: 16px;
        }

        .tcard .who span {
            font-size: 13px;
            color: var(--green);
            font-weight: 700;
        }

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--ff);
}

    .faq-q i {
        color: var(--green);
        transition: .3s;
        flex: none;
    }

.faq-item.open .faq-q {
    color: var(--green);
    background: var(--soft);
}

    .faq-item.open .faq-q i {
        transform: rotate(45deg);
    }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

    .faq-a p {
        padding: 4px 24px 22px;
        font-size: 15px;
        line-height: 1.7;
    }

/* ===== CTA ===== */
.cta-band {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 64px 40px;
    text-align: center;
    background: linear-gradient(135deg,#00170F 0%,#064d33 100%);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.07) 2px,transparent 2px);
        background-size: 26px 26px;
    }

    .cta-band > * {
        position: relative;
        z-index: 1;
    }

    .cta-band h2 {
        color: #fff;
        font-size: 42px;
        margin-bottom: 14px;
    }

    .cta-band p {
        color: #bfe6d6;
        max-width: 620px;
        margin: 0 auto 24px;
    }

.cta-price {
    color: var(--yellow);
    font-weight: 800;
    font-size: 30px;
}

.cta-old {
    color: #bfe6d6;
    text-decoration: line-through;
    opacity: .6;
    font-size: 20px;
    margin-left: 8px;
}

@media(max-width:575px) {
    .cta-band h2 {
        font-size: 28px;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--green-dark);
    color: #c9d5d0;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 36px;
}

@media(max-width:991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width:520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer .f-logo {
    color: #fff;
    margin-bottom: 18px;
}

.footer h6 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 18px;
}

.footer a {
    color: #c9d5d0;
    transition: .2s;
}

    .footer a:hover {
        color: var(--yellow);
    }

.footer .f-links li {
    margin-bottom: 11px;
}

.f-contact li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .f-contact li i {
        color: var(--yellow);
        margin-top: 4px;
    }

.f-regno {
    font-size: 13px;
    color: #8ba096;
    margin-top: 14px;
}

.f-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .f-social a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,.08);
        display: grid;
        place-items: center;
        color: #fff;
    }

        .f-social a:hover {
            background: var(--green);
        }

.copyright {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding: 22px 0;
    text-align: center;
    font-size: 14px;
    color: #9fb3aa;
}

/* ===== Floating WhatsApp + mobile sticky CTA ===== */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 84px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 26px;
    z-index: 400;
    box-shadow: 0 12px 30px rgba(37,211,102,.45);
    animation: wapulse 2.2s infinite;
}

@keyframes wapulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.5)
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37,211,102,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0)
    }
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 390;
    background: #fff;
    box-shadow: 0 -6px 24px rgba(0,23,15,.12);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
}

    .sticky-cta .sc-price b {
        color: var(--green);
        font-size: 20px;
        font-family: var(--ff-display);
    }

    .sticky-cta .sc-price small {
        display: block;
        font-size: 11px;
        color: var(--body);
    }

@media(max-width:991px) {
    .sticky-cta {
        display: flex;
    }

    .wa-float {
        bottom: 88px;
    }

    body {
        padding-bottom: 72px;
    }
}

@media(min-width:992px) {
    .wa-float {
        bottom: 26px;
    }
}
