/* ---------- Tokens ---------- */
:root {
    --dark: #0F2D1E;
    --dark-2: #0a2014;
    --dark-3: #143a27;
    --green: #2D7A4F;
    --green-deep: #1f5b39;
    --green-bright: #2ECC71;
    --amber: #F39A2B;
    --amber-2: #F2B05E;
    --bg: #F4F9F6;
    --bg-2: #ffffff;
    --line: #E4ECE7;
    --line-dark: rgba(255, 255, 255, .10);
    --ink: #1A1A1A;
    --ink-2: #3a4a42;
    --muted: #6b7973;
    --muted-dark: #9fb3a8;
    --shadow-sm: 0 1px 2px rgba(15, 45, 30, .04), 0 2px 6px rgba(15, 45, 30, .04);
    --shadow: 0 2px 4px rgba(15, 45, 30, .04), 0 12px 32px -8px rgba(15, 45, 30, .10);
    --shadow-lg: 0 8px 24px -8px rgba(15, 45, 30, .18), 0 24px 60px -16px rgba(15, 45, 30, .18);
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --container: 1200px;
}


/* ---------- Scoped resets ---------- */
.ha-page img {
    max-width: 100%;
    display: block
}

.ha-page a {
    color: inherit;
    text-decoration: none
}

.ha-page button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none
}

.ha-page .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px
}

.ha-page section {
    padding: 96px 0;
    position: relative
}

@media (max-width:780px) {
    .ha-page section {
        padding: 64px 0
    }

    .ha-page .container {
        padding: 0 20px
    }
}

/* Section eyebrow + heading */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 13px/1 'Manrope', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(46, 204, 113, .08);
    border: 1px solid rgba(46, 204, 113, .18);
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-bright)
}

.dark .eyebrow {
    color: #9be4b6;
    background: rgba(46, 204, 113, .10);
    border-color: rgba(46, 204, 113, .22)
}

h1,
h2,
h3,
h4 {
    font-family: 'Manrope', sans-serif;
    letter-spacing: -.02em;
    margin: 0;
    text-wrap: balance
}

.h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(40px, 5.4vw, 64px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.025em
}

.h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.022em;
    color: var(--dark)
}

.dark .h2 {
    color: #fff
}

.h3 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink)
}

.dark .h3 {
    color: #fff
}

.lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 64ch;
    text-wrap: pretty
}

.dark .lead {
    color: #c8d6cf
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.005em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--amber);
    color: #1A1A1A;
    box-shadow: 0 4px 0 0 #b76f12, 0 10px 24px -8px rgba(243, 154, 43, .55);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 0 #b76f12, 0 14px 30px -8px rgba(243, 154, 43, .65)
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 0 #b76f12, 0 6px 14px -6px rgba(243, 154, 43, .55)
}

.btn-green {
    background: var(--green-bright);
    color: #0a2014;
    box-shadow: 0 4px 0 0 #1ea355, 0 10px 24px -8px rgba(46, 204, 113, .5)
}

.btn-green:hover {
    transform: translateY(-1px)
}

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--line)
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green)
}

.dark .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .18)
}

.dark .btn-ghost:hover {
    border-color: var(--green-bright);
    color: var(--green-bright)
}

.btn-sm {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px
}


/* ---------- Hero ---------- */
.hero {
    background: radial-gradient(1200px 600px at 80% -10%, #1c4a31 0%, transparent 60%),
        linear-gradient(180deg, #0F2D1E 0%, #0a2014 100%);
    color: #fff;
    overflow: hidden;
    padding: 120px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items: center;
}

@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

.hero h1 {
    color: #fff
}

.hero h1 .accent {
    background: linear-gradient(120deg, #7eeaa9 0%, #2ECC71 60%, #2ECC71 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    color: #c8d6cf;
    font-size: 18px;
    margin: 24px 0 36px;
    max-width: 55ch
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center
}

.hero-helper {
    margin-top: 18px;
    font-size: 13.5px;
    color: #9fb3a8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-helper svg {
    width: 14px;
    height: 14px;
    color: var(--green-bright)
}

.hero-trust {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-top: 32px;
}

@media (max-width:780px) {
    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.trust-item .ic {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-bright);
}

.trust-item .ic svg {
    width: 18px;
    height: 18px
}

.trust-item .t {
    font-size: 13.5px;
    color: #c8d6cf;
    line-height: 1.35
}

.trust-item .t b {
    color: #fff;
    display: block;
    font-size: 14.5px;
    margin-bottom: 2px
}

/* Hero visual */
.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 520px;
    margin-left: auto;
    width: 100%
}

.farm-card {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #143a27 0%, #0a2014 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .5);
}

.farm-card svg {
    width: 100%;
    height: 100%;
    display: block
}

.parallax {
    will-change: transform;
    transition: transform .12s ease-out
}

.float-card {
    position: absolute;
    background: rgba(10, 32, 20, .86);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    padding: 14px 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, .4);
}

.float-card .led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 10px var(--green-bright);
    animation: pulse 1.6s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.float-card .v {
    font-weight: 700;
    color: var(--green-bright)
}

.fc-1 {
    top: 8%;
    left: -22px
}

.fc-2 {
    bottom: 14%;
    right: -30px
}

.fc-3 {
    bottom: -22px;
    left: 18%
}

@media (max-width:980px) {
    .fc-1 {
        left: 0
    }

    .fc-2 {
        right: 0
    }

    .fc-3 {
        display: none
    }
}

/* ---------- Section base ---------- */
.dark {
    background: var(--dark);
    color: #fff
}

.dark .h2 {
    color: #fff
}

.light {
    background: var(--bg-2)
}

.tinted {
    background: var(--bg)
}

.section-head {
    margin-bottom: 56px;
    max-width: 780px
}

.section-head .lead {
    margin-top: 18px
}

.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.center .lead {
    margin-left: auto;
    margin-right: auto
}

/* ---------- Pain ---------- */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

@media (max-width:780px) {
    .pain-grid {
        grid-template-columns: 1fr
    }
}

.pain-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 28px 28px 32px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pain-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    background: linear-gradient(180deg, var(--amber) 0%, #e07f1f 100%);
    border-radius: 0 4px 4px 0;
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #d4dcd6
}

.pain-card .ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fdf3e6, #fbe7cc);
    color: #b76f12;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform .3s ease;
}

.pain-card:hover .ic {
    transform: rotate(-4deg) scale(1.04)
}

.pain-card .ic svg {
    width: 22px;
    height: 22px
}

.pain-card h3 {
    margin-bottom: 10px;
    font-size: 19px
}

.pain-card p {
    margin: 0;
    color: var(--ink-2);
    font-size: 15.5px;
    line-height: 1.55
}

.pain-bottom {
    margin-top: 36px;
    padding: 24px 28px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f4f9f6 0%, #eaf3ee 100%);
    border: 1px solid var(--line);
    font-size: 16px;
    color: var(--ink-2);
    text-align: center;
}

.pain-bottom b {
    color: var(--dark)
}

/* ---------- Solution ---------- */
.solution-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center
}

@media (max-width:980px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px
}

.pillar {
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.pillar .num {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(46, 204, 113, .12);
    border: 1px solid rgba(46, 204, 113, .30);
    color: var(--green-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 15px 'Unbounded', sans-serif;
}

.pillar h4 {
    margin: 0 0 4px;
    font-size: 17px;
    color: #fff;
    font-weight: 700
}

.pillar p {
    margin: 0;
    color: #c8d6cf;
    font-size: 15px
}

.system-diagram {
    background: linear-gradient(180deg, #143a27 0%, #0a2014 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    aspect-ratio: 1/1.05;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .5);
}

.system-diagram svg {
    width: 100%;
    height: 100%;
    display: block
}

/* ---------- Services ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

@media (max-width:980px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:600px) {
    .svc-grid {
        grid-template-columns: 1fr
    }
}

.svc-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}

.svc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    pointer-events: none;
    border: 2px solid transparent;
    transition: border-color .25s ease;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.svc-card:hover::after {
    border-color: var(--green-bright)
}

.svc-card:hover .svc-ic {
    transform: rotate(-6deg) scale(1.05)
}

.svc-ic {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(180deg, #e8f6ee, #d2eddf);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform .3s ease;
}

.svc-ic svg {
    width: 28px;
    height: 28px
}

.svc-card h3 {
    margin-bottom: 14px;
    font-size: 18px;
    letter-spacing: -.01em
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.svc-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.45
}

.svc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 1px;
    background: var(--green);
}

/* ---------- Process Timeline ---------- */
.process {
    position: relative
}

.steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

@media (max-width:980px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 0
    }
}

.steps::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--green) 0 6px, transparent 6px 12px);
    z-index: 0;
}

@media (max-width:980px) {
    .steps::before {
        display: none
    }
}

.step {
    position: relative;
    text-align: center;
    padding: 0 12px;
    z-index: 1;
}

@media (max-width:980px) {
    .step {
        text-align: left;
        padding: 24px 0 24px 80px;
        border-left: 2px dashed var(--line);
        margin-left: 38px;
    }

    .step+.step {
        margin-top: -2px
    }
}

.step .circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 22px 'Unbounded', sans-serif;
    color: var(--green-deep);
    margin: 0 auto 18px;
    position: relative;
    box-shadow: 0 4px 0 0 rgba(45, 122, 79, .18);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

@media (max-width:980px) {
    .step .circle {
        position: absolute;
        left: -38px;
        top: 18px;
        margin: 0;
        width: 64px;
        height: 64px;
        font-size: 18px
    }
}

.step:hover .circle {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px)
}

.step .step-ic {
    width: 24px;
    height: 24px;
    color: var(--green);
    margin: 0 auto 10px;
    display: block;
}

.step h4 {
    font-size: 15.5px;
    margin: 0 0 8px;
    color: var(--dark);
    letter-spacing: -.01em
}

.step p {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45
}

/* ---------- Numbers ---------- */
.numbers {
    padding: 110px 0
}

.num-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width:980px) {
    .num-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:520px) {
    .num-grid {
        grid-template-columns: 1fr
    }
}

.num-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--r-lg);
    padding: 30px 24px;
    text-align: left;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.num-card:hover {
    transform: translateY(-3px);
    border-color: rgba(46, 204, 113, .4);
    background: rgba(46, 204, 113, .06)
}

.num-big {
    font: 700 clamp(38px, 4.4vw, 56px)/1 'Manrope', sans-serif;
    letter-spacing: -.03em;
    color: var(--green-bright);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.num-big .unit {
    font-size: .45em;
    color: #fff;
    font-weight: 700
}

.num-card p {
    margin: 14px 0 0;
    color: #c8d6cf;
    font-size: 14.5px;
    line-height: 1.5
}

.numbers-foot {
    margin-top: 48px;
    text-align: center;
    color: #9fb3a8;
    font-size: 14.5px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

/* ---------- Cases ---------- */
.cases-wrap {
    position: relative
}

.cases-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width:980px) {
    .cases-track {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

.case {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.case:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.case-img {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
    background: #143a27
}

.case-img svg {
    width: 100%;
    height: 100%;
    display: block
}

.case-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 32, 20, .78);
    backdrop-filter: blur(8px);
    color: #fff;
    font: 600 11px/1 'Manrope', sans-serif;
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.case-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1
}

.case-body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3
}

.case-meta {
    font: 600 12.5px 'Manrope', sans-serif;
    color: var(--green-deep);
    letter-spacing: .04em
}

.case-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-2)
}

.case-rows .lbl {
    color: var(--muted);
    font: 600 11px 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: block;
    margin-bottom: 2px
}

.case-result {
    background: linear-gradient(180deg, #eaf6ee, #dcefe4);
    border-left: 3px solid var(--green-bright);
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: var(--dark);
}

.case-quote {
    font-style: italic;
    color: var(--ink-2);
    font-size: 14px;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
    margin-top: auto
}

.case-quote b {
    display: block;
    font-style: normal;
    color: var(--dark);
    font-size: 13px;
    margin-top: 6px
}

.case-foot {
    padding: 0 24px 24px
}

.case-foot .btn {
    width: 100%;
    justify-content: center
}

.cases-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px
}

.cases-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: #fff;
    transition: all .2s;
}

.cases-nav button:hover {
    border-color: var(--green);
    color: var(--green)
}

.cases-nav button:disabled {
    opacity: .35;
    cursor: not-allowed
}

.cases-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 14px
}

.cases-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line);
    transition: all .2s
}

.cases-dots span.active {
    background: var(--green);
    width: 18px;
    border-radius: 3px
}

/* ---------- Why us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: flex-start
}

@media (max-width:980px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px
}

.why-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 14px;
    transition: background .25s ease;
    border: 1px solid transparent;
}

.why-item:hover {
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm)
}

.why-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, #e8f6ee, #d2eddf);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-ic svg {
    width: 22px;
    height: 22px
}

.why-item h4 {
    margin: 0 0 4px;
    font-size: 16.5px;
    color: var(--dark);
    font-weight: 700
}

.why-item p {
    margin: 0;
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.5
}

.team-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-img {
    aspect-ratio: 4/5;
    position: relative;
    background: #143a27
}

.team-img svg {
    width: 100%;
    height: 100%;
    display: block
}

.team-foot {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line)
}

.team-foot .stat {
    flex: 1
}

.team-foot .stat b {
    display: block;
    font-size: 22px;
    color: var(--green-deep);
    font-weight: 700;
    letter-spacing: -.02em
}

.team-foot .stat span {
    font-size: 12px;
    color: var(--muted);
    font: 600 11px 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em
}

.team-foot .div {
    width: 1px;
    height: 32px;
    background: var(--line)
}

/* ---------- Stages table ---------- */
.stages-table {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
}

.stage-row {
    display: grid;
    grid-template-columns: 60px 1.4fr 2fr 1fr;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

.stage-row:last-child {
    border-bottom: none
}

.stage-row:hover {
    background: #f8fbf9
}

.stage-row.head {
    background: #0F2D1E;
    color: #fff;
    font: 600 12px 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 18px 28px;
}

.stage-row.head:hover {
    background: #0F2D1E
}

.stage-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(46, 204, 113, .10);
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 700 14px 'Unbounded', sans-serif;
}

.stage-row.head .stage-num {
    background: rgba(255, 255, 255, .10);
    color: #fff
}

.stage-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 15.5px
}

.stage-desc {
    color: var(--ink-2);
    font-size: 14.5px;
    line-height: 1.5
}

.stage-result {
    font: 600 13px 'Manrope', sans-serif;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stage-result svg {
    width: 14px;
    height: 14px
}

@media (max-width:780px) {

    .stage-row,
    .stage-row.head {
        grid-template-columns: 36px 1fr;
        gap: 12px;
        padding: 18px 20px
    }

    .stage-row.head .col-desc,
    .stage-row.head .col-res {
        display: none
    }

    .stage-row .col-desc,
    .stage-row .col-res {
        grid-column: 2;
        margin-top: 4px
    }
}

/* ---------- FAQ ---------- */
.faq-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: flex-start
}

@media (max-width:980px) {
    .faq-wrap {
        grid-template-columns: 1fr;
        gap: 32px
    }
}

.faq-side {
    position: sticky;
    top: 110px
}

.faq-side .lead {
    margin-top: 16px
}

.faq-side .ask-card {
    margin-top: 32px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.faq-side .ask-card p {
    margin: 0 0 14px;
    color: var(--ink-2);
    font-size: 14.5px
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item.open {
    border-color: var(--green);
    box-shadow: 0 6px 18px -6px rgba(45, 122, 79, .18)
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    font-family: inherit;
}

.faq-q span:not(.plus) {
    flex: 1
}

.faq-q .plus {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 8px;
    background: rgba(46, 204, 113, .10);
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.faq-item.open .plus {
    transform: rotate(45deg);
    background: var(--green-bright);
    color: #fff
}

.faq-q span {
    flex: 1
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.6;
}

.faq-a-inner {
    padding: 0 22px 24px 68px
}

/* ---------- Final CTA ---------- */
.final {
    background:
        radial-gradient(1000px 500px at 0% 0%, rgba(46, 204, 113, .18) 0%, transparent 60%),
        radial-gradient(800px 600px at 100% 100%, rgba(46, 204, 113, .10) 0%, transparent 60%),
        linear-gradient(180deg, #0F2D1E 0%, #07150d 100%);
    color: #fff;
    overflow: hidden;
}

.final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

@media (max-width:980px) {
    .final-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.final h2 {
    color: #fff
}

.final .lead {
    color: #c8d6cf
}

.scarcity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(243, 154, 43, .14);
    border: 1px solid rgba(243, 154, 43, .4);
    color: #f7c98a;
    font: 600 13px 'Manrope', sans-serif;
    margin-bottom: 24px;
}

.scarcity .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F39A2B;
    box-shadow: 0 0 10px #F39A2B;
    animation: pulse 1.6s infinite
}

.alt-cta {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.alt-cta .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    color: #c8d6cf;
    font-size: 14.5px
}

.msg-btns {
    display: flex;
    gap: 10px
}

.msg-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .2s ease;
}

.msg-btn:hover {
    background: var(--green-bright);
    color: #0a2014;
    border-color: var(--green-bright)
}

.msg-btn svg {
    width: 20px;
    height: 20px
}

.form-card {
    background: rgba(255, 255, 255, .97);
    color: var(--ink);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .5);
}

.form-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px
}

.form-card > p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px
}

.field {
    margin-bottom: 16px
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px
}

.field input,
.field select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    font: 500 15px 'Manrope', sans-serif;
    color: var(--ink);
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(46, 204, 113, .12)
}

.field.error input,
.field.error select {
    border-color: #e7707d
}

.field .err-msg {
    display: none;
    color: #c84a59;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 600
}

.field.error .err-msg {
    display: block
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media (max-width:520px) {
    .field-row {
        grid-template-columns: 1fr
    }
}

.privacy {
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 16px;
}

.form-success.shown {
    display: block
}

.form-ratelimit {
    display: none;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 180, 0, .1);
    border: 1px solid rgba(255, 180, 0, .35);
    color: #b8860b;
    font-size: 14px;
    text-align: center;
}

.form-ratelimit.shown {
    display: block
}

.form-success svg {
    margin-bottom: 14px
}

.form-success h3 {
    margin-bottom: 10px
}


/* ---------- Floating CTA ---------- */
.float-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--amber);
    color: #1A1A1A;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 12px 30px -8px rgba(243, 154, 43, .6), 0 4px 0 0 #b76f12;
    transform: translateY(120px);
    opacity: 0;
    transition: all .35s ease;
}

.float-cta.show {
    transform: translateY(0);
    opacity: 1
}

.float-cta:hover {
    transform: translateY(-2px)
}

.float-cta svg {
    width: 18px;
    height: 18px
}

@media (max-width:780px) {
    .float-cta {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
        font-size: 13.5px
    }
}

/* ---------- Reveal anims ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal.delay-1 {
    transition-delay: .08s
}

.reveal.delay-2 {
    transition-delay: .16s
}

.reveal.delay-3 {
    transition-delay: .24s
}

.reveal.delay-4 {
    transition-delay: .32s
}

/* small icon helper */
.ic-inline {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -3px
}

