/* ═══════════════════════════════════════════════
   GOING NORTH — styles.css
   ═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0; padding: 0;
    text-decoration: none;
}

/* ── TOKENS ── */
:root {
    --green:        #22c55e;
    --green-hover:  #16a34a;
    --green-dim:    rgba(34, 197, 94, 0.18);
    --green-glow:   rgba(34, 197, 94, 0.32);
    --gold:         #c8a96e;
    --white:        #ffffff;
    --w90:          rgba(255,255,255,0.90);
    --w70:          rgba(255,255,255,0.70);
    --w50:          rgba(255,255,255,0.50);
    --w30:          rgba(255,255,255,0.30);
    --w15:          rgba(255,255,255,0.15);
    --w08:          rgba(255,255,255,0.08);
    --w04:          rgba(255,255,255,0.04);
    --line:         rgba(255,255,255,0.10);
    --card-bg:      rgba(255,255,255,0.06);
    --card-hover:   rgba(255,255,255,0.10);
    --nav-active:   rgba(95,115,134,0.55);
    --font-display: 'Sora', sans-serif;
    --font-body:    'Inter', sans-serif;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    min-height: 100vh;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* ══════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════ */

.bg-blur {
    position: fixed; inset: 0;
    background-image: url("images/Component 1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: -3;
}

.bg-gradient-overlay {
    position: fixed; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42,85,134,0.30) 0%,
        rgba(32,155,145,0.22) 50%,
        rgba(46,150,84,0.18) 100%
    );
    z-index: -2;
}

.bg-bottom-fade {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: 35vh;
    background: linear-gradient(to top,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.40) 35%,
        transparent 100%
    );
    pointer-events: none;
    z-index: -1;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */

.main-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0;
    transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.main-header.scrolled {
    background: rgba(10, 20, 15, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(0,0,0,0.25);
}

.navbar { width: 100%; padding: 0 24px; }

.navdiv {
    display: flex; align-items: center;
    max-width: 1240px; margin: 0 auto;
    padding: 16px 16px;
    gap: 20px;
}

/* logo */
.nav-logo { flex-shrink: 0; }
.logo img {
    height: 32px; width: auto; display: block;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.40));
    transition: filter 0.2s;
}
.logo:hover img { filter: drop-shadow(0 2px 10px var(--green-glow)); }

/* links */
.nav-menu {
    list-style: none;
    display: flex; gap: 2px;
    flex: 1; justify-content: center;
}
.nav-menu li a {
    display: inline-block;
    color: rgba(176,196,222,0.88);
    font-size: 14px; font-weight: 500;
    padding: 7px 14px;
    border-radius: 80px;
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-menu li a:hover { color: var(--white); background: var(--w08); }
.nav-menu li a.active {
    background: var(--nav-active);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.20);
}

/* right side */
.nav-right {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0;
}
.btn-login {
    display: inline-block;
    padding: 7px 18px;
    background: var(--w08);
    color: var(--w90);
    font-size: 13px; font-weight: 600;
    border: 1px solid var(--w30);
    border-radius: var(--r-sm);
    letter-spacing: 0.02em;
    transition: background 0.2s, border-color 0.2s;
}
.btn-login:hover { background: var(--w15); border-color: var(--w50); }

.btn-nav-cta {
    display: inline-block;
    padding: 8px 18px;
    background: var(--green);
    color: var(--white);
    font-size: 13px; font-weight: 600;
    border-radius: var(--r-sm);
    letter-spacing: 0.01em;
    box-shadow: 0 2px 14px var(--green-dim);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--green-hover); transform: translateY(-1px); }

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none;
    cursor: pointer; padding: 6px;
    margin-left: 4px;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--w90); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */

.main-content { position: relative; z-index: 1; }

.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 110px 40px 80px;
}

.hero-inner {
    max-width: 1240px; margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { display: flex; flex-direction: column; }

/* badge */
.home-tag {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 18px;
    background: rgba(80,80,80,0.32);
    border: 1px solid var(--w15);
    border-radius: 100px;
    font-size: 13px; font-weight: 500;
    color: var(--w90);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    align-self: flex-start;
    opacity: 0; transform: translateY(10px);
    animation: fadeUp 0.6s 0.1s ease forwards;
}
.home-tag-dot {
    width: 8px; height: 8px;
    background: var(--green); border-radius: 50%;
    box-shadow: 0 0 8px var(--green-glow);
    animation: pulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
}

/* headline */
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    text-shadow: 0 2px 28px rgba(0,0,0,0.30);
    opacity: 0; transform: translateY(14px);
    animation: fadeUp 0.75s 0.25s ease forwards;
}
.highlight {
    color: var(--green);
    text-shadow: 0 0 36px rgba(34,197,94,0.40);
}

.home-description {
    font-size: 1.05rem; line-height: 1.72;
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px; max-width: 500px;
    opacity: 0; transform: translateY(14px);
    animation: fadeUp 0.75s 0.40s ease forwards;
}

/* buttons */
.home-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
    opacity: 0; transform: translateY(14px);
    animation: fadeUp 0.75s 0.55s ease forwards;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px;
    background: var(--green); color: var(--white);
    font-size: 15px; font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 4px 22px var(--green-glow);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(34,197,94,0.45);
}

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px;
    background: var(--w08); color: var(--white);
    font-size: 15px; font-weight: 600;
    border: 1.5px solid rgba(255,255,255,0.50);
    border-radius: 100px;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-secondary:hover {
    background: var(--w15); border-color: var(--white);
    transform: translateY(-2px);
}

/* stats */
.home-stats {
    display: flex; align-items: center; gap: 36px;
    flex-wrap: wrap; margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    opacity: 0; transform: translateY(14px);
    animation: fadeUp 0.75s 0.72s ease forwards;
}
.stat-item {}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--white); line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.75rem; font-weight: 500;
    color: var(--w50); margin-top: 4px;
    text-transform: uppercase; letter-spacing: 0.07em;
}
.stat-divider {
    width: 1px; height: 34px;
    background: var(--line); flex-shrink: 0;
}

/* scroll hint */
.scroll-hint {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; margin-top: 48px; align-self: center;
    opacity: 0; animation: fadeUp 0.6s 1s ease forwards;
}
.scroll-hint span {
    font-size: 10.5px; font-weight: 500;
    color: var(--w30); letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, var(--w30), transparent);
    animation: scrollBob 1.8s ease-in-out infinite;
}

/* ── DASHBOARD CARD ── */
.hero-visual {
    position: relative;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.85s 0.6s ease forwards;
}

.dashboard-card {
    background: rgba(8, 18, 12, 0.70);
    border: 1px solid rgba(34,197,94,0.20);
    border-radius: var(--r-xl);
    padding: 24px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
}

.dc-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.dc-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--w70);
    letter-spacing: 0.02em;
}
.dc-date { font-size: 12px; color: var(--w30); }

.dc-balance { margin-bottom: 20px; }
.dc-balance-label { font-size: 11px; font-weight: 500; color: var(--w50); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.dc-balance-value {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 700; color: var(--white);
    letter-spacing: -0.03em; line-height: 1;
}
.dc-balance-change {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--green-dim); color: var(--green);
    font-size: 12px; font-weight: 600;
    padding: 4px 10px; border-radius: 100px; margin-top: 10px;
}

/* chart bars */
.dc-chart { margin-bottom: 20px; }
.dc-chart-bars {
    display: flex; align-items: flex-end; gap: 6px;
    height: 64px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
}
.dc-bar {
    flex: 1; border-radius: 4px 4px 0 0;
    background: rgba(34,197,94,0.20);
    height: 0;
    position: relative;
    transition: height 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
}
.dc-bar.animated { height: var(--h); }
.dc-bar.active { background: var(--green); }
.dc-bar span {
    font-size: 9px; color: var(--w30);
    position: absolute; bottom: -18px;
    white-space: nowrap;
}

/* goal bars */
.dc-goals { border-top: 1px solid var(--line); padding-top: 16px; }
.dc-goal-title { font-size: 11px; font-weight: 600; color: var(--w50); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.dc-goal { margin-bottom: 10px; }
.dc-goal-row { display: flex; justify-content: space-between; margin-bottom: 5px; }
.dc-goal-row span { font-size: 12px; color: var(--w70); }
.dc-goal-row span:last-child { font-weight: 600; color: var(--white); }
.dc-goal-bar { height: 4px; background: var(--w08); border-radius: 10px; overflow: hidden; }
.dc-goal-fill { height: 100%; border-radius: 10px; width: 0; transition: width 1s 0.3s cubic-bezier(0.34, 1.1, 0.64, 1); }
.dc-goal-fill.animated { width: var(--w); }

/* floating badges */
.float-badge {
    position: absolute;
    display: flex; align-items: center; gap: 10px;
    background: rgba(8,18,12,0.85);
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: var(--r-md);
    padding: 11px 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    white-space: nowrap;
    animation: floatY 3.5s ease-in-out infinite;
}
.float-badge--tl { top: -16px; left: -24px; animation-delay: 0s; }
.float-badge--br { bottom: -16px; right: -24px; animation-delay: 1.75s; }
.fb-icon {
    width: 34px; height: 34px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fb-green { background: var(--green-dim); }
.fb-gold  { background: rgba(200,169,110,0.15); }
.fb-val { font-size: 13px; font-weight: 700; color: var(--white); }
.fb-lbl { font-size: 11px; color: var(--w50); margin-top: 1px; }

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */

.trust-strip {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 40px;
    position: relative; z-index: 1;
}
.trust-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-label {
    font-size: 12px; font-weight: 500; color: var(--w30);
    text-transform: uppercase; letter-spacing: 0.08em;
    flex-shrink: 0;
}
.trust-logos {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.trust-logo {
    font-size: 13px; font-weight: 600;
    color: var(--w30);
    transition: color 0.2s;
    cursor: default;
}
.trust-logo:hover { color: var(--w70); }

/* ══════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════ */

.section {
    padding: 100px 40px;
    position: relative; z-index: 1;
}
.section--dark    { background: rgba(6, 14, 10, 0.55); }
.section--features { background: rgba(255,255,255,0.03); }

.section-inner { max-width: 1240px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .section-sub { margin: 0 auto; }

.section-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green-dim);
    color: var(--green);
    font-size: 11.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.09em;
    padding: 5px 13px; border-radius: 100px;
    margin-bottom: 18px;
}
.tag-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.15;
    letter-spacing: -0.025em; color: var(--white);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1rem; color: var(--w50);
    line-height: 1.72; max-width: 500px;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* stagger children */
.steps-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.steps-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */

.steps-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--line);
    border-radius: var(--r-xl); overflow: hidden;
}
.step-card {
    background: rgba(6,14,10,0.80);
    padding: 40px 32px;
    position: relative;
    transition: background 0.25s;
    backdrop-filter: blur(12px);
}
.step-card:hover { background: rgba(20,40,28,0.85); }

.step-number {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 800;
    color: rgba(255,255,255,0.06);
    line-height: 1; margin-bottom: 20px;
    transition: color 0.3s;
}
.step-card:hover .step-number { color: var(--green-dim); }

.step-icon {
    width: 48px; height: 48px;
    background: var(--green-dim);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: background 0.25s;
}
.step-card:hover .step-icon { background: rgba(34,197,94,0.28); }

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--white); margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.step-card p { font-size: 0.9rem; color: var(--w50); line-height: 1.7; }

.step-arrow {
    position: absolute; top: 40px; right: -14px;
    z-index: 1;
    background: rgba(6,14,10,0.95);
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */

.features-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.features-left { display: flex; flex-direction: column; }

.feat-list { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; }
.feat-item {
    display: flex; gap: 16px;
    padding: 18px; border-radius: var(--r-md);
    cursor: default;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.feat-item:hover {
    background: var(--card-hover);
    border-color: var(--line);
}
.feat-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--green-dim); border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.feat-item:hover .feat-icon { background: rgba(34,197,94,0.28); }
.feat-title { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.feat-desc  { font-size: 0.855rem; color: var(--w50); line-height: 1.65; }

/* Feature visual card */
.features-right { position: relative; }
.feat-visual-card {
    background: rgba(6,14,10,0.75);
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: var(--r-xl); padding: 28px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.40);
}
.fvc-title {
    font-size: 11px; font-weight: 600; color: var(--w30);
    text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 20px;
}
.fvc-rows { display: flex; flex-direction: column; }
.fvc-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}
.fvc-row:last-child { border-bottom: none; }
.fvc-info { display: flex; align-items: center; gap: 10px; }
.fvc-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fvc-info span { font-size: 14px; font-weight: 500; color: var(--w70); }
.fvc-right { display: flex; align-items: center; gap: 10px; }
.fvc-amount { font-size: 14px; font-weight: 600; }
.fvc-amount.pos { color: var(--green); }
.fvc-amount.neg { color: var(--w70); }
.fvc-tag {
    font-size: 11px; font-weight: 600;
    padding: 2px 9px; border-radius: 100px;
}
.tag-up  { background: var(--green-dim); color: var(--green); }
.tag-dn  { background: rgba(255,255,255,0.06); color: var(--w50); }
.tag-inv { background: rgba(200,169,110,0.15); color: var(--gold); }
.fvc-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(34,197,94,0.20);
}
.fvc-footer span { font-size: 13px; font-weight: 500; color: var(--w50); }
.fvc-saldo { font-size: 1.2rem; font-weight: 700; color: var(--green); font-family: var(--font-display); letter-spacing: -0.02em; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */

.testimonials-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.testi-card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    transition: border-color 0.25s, background 0.25s;
    backdrop-filter: blur(10px);
}
.testi-card:hover { background: var(--card-hover); border-color: rgba(34,197,94,0.25); }
.testi-stars { color: var(--green); font-size: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 0.92rem; color: var(--w70); line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--green-dim);
    color: var(--green); font-size: 13px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 600; color: var(--white); }
.testi-role { font-size: 12px; color: var(--w30); margin-top: 1px; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */

.pricing-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; align-items: start;
}
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 32px;
    display: flex; flex-direction: column; gap: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: border-color 0.25s;
}
.pricing-card:hover { border-color: rgba(34,197,94,0.25); }
.pricing-card--featured {
    background: rgba(8,20,14,0.80);
    border-color: rgba(34,197,94,0.40);
    box-shadow: 0 0 40px rgba(34,197,94,0.12), 0 20px 60px rgba(0,0,0,0.35);
}

.pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: var(--white);
    font-size: 11.5px; font-weight: 700;
    padding: 4px 14px; border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.pricing-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.pricing-price {
    font-family: var(--font-display);
    font-size: 2.6rem; font-weight: 800; color: var(--white);
    letter-spacing: -0.03em; line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--w50); }
.pricing-desc { font-size: 0.875rem; color: var(--w50); line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li {
    display: flex; align-items: center; gap: 9px;
    font-size: 0.88rem; color: var(--w70);
}
.pricing-features li.disabled { color: var(--w30); }

.btn-pricing-primary {
    display: block; text-align: center;
    padding: 13px; background: var(--green); color: var(--white);
    font-size: 14px; font-weight: 600; border-radius: var(--r-md);
    box-shadow: 0 4px 18px var(--green-glow);
    transition: background 0.2s, transform 0.15s;
}
.btn-pricing-primary:hover { background: var(--green-hover); transform: translateY(-1px); }

.btn-pricing-outline {
    display: block; text-align: center;
    padding: 13px; background: transparent; color: var(--w70);
    font-size: 14px; font-weight: 600; border-radius: var(--r-md);
    border: 1px solid var(--line);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-pricing-outline:hover { background: var(--w08); border-color: var(--w30); color: var(--white); }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */

.section--cta { background: rgba(6,14,10,0.60); }

.cta-box {
    max-width: 680px; margin: 0 auto;
    text-align: center; position: relative;
    padding: 64px 48px;
    background: rgba(8,20,14,0.70);
    border: 1px solid rgba(34,197,94,0.22);
    border-radius: var(--r-xl);
    backdrop-filter: blur(24px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 80px rgba(34,197,94,0.06);
    overflow: hidden;
}
.cta-glow {
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(34,197,94,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

.cta-form {
    display: flex; gap: 10px;
    max-width: 420px; margin: 0 auto;
}
.cta-input {
    flex: 1;
    background: var(--w08);
    border: 1px solid var(--w15);
    border-radius: var(--r-md);
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 14px; color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.cta-input::placeholder { color: var(--w30); }
.cta-input:focus { border-color: rgba(34,197,94,0.55); background: var(--w15); }

.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    font-family: var(--font-body);
    font-size: 14px; font-weight: 600;
    padding: 13px 22px;
    border: none; border-radius: var(--r-md);
    cursor: pointer; white-space: nowrap;
    box-shadow: 0 4px 18px var(--green-glow);
    transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: var(--green-hover); transform: translateY(-1px); }

.cta-footnote {
    margin-top: 16px;
    font-size: 12px; color: var(--w30);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

.site-footer {
    background: rgba(4, 10, 7, 0.90);
    border-top: 1px solid var(--line);
    padding: 60px 40px 32px;
    position: relative; z-index: 1;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }

.footer-top {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 60px; margin-bottom: 48px;
}
.footer-brand {}
.footer-logo img { height: 28px; margin-bottom: 16px; opacity: 0.70; }
.footer-brand p { font-size: 13px; color: var(--w30); line-height: 1.65; max-width: 240px; }

.footer-links-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11.5px; font-weight: 600; color: var(--w30); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: var(--w50); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    padding-top: 28px; border-top: 1px solid var(--line);
}
.footer-bottom span { font-size: 12.5px; color: var(--w30); }

.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    color: var(--w30);
    border: 1px solid var(--line); border-radius: 8px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a:hover { color: var(--white); border-color: var(--w30); background: var(--w08); }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 6px var(--green-glow); }
    50%       { box-shadow: 0 0 16px rgba(34,197,94,0.60); }
}
@keyframes scrollBob {
    0%, 100% { transform: scaleY(1);   opacity: 0.6; }
    50%       { transform: scaleY(0.5); opacity: 0.2; }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 480px; }
    .float-badge--tl { top: -12px; left: 0; }
    .float-badge--br { bottom: -12px; right: 0; }
    .features-layout { grid-template-columns: 1fr; gap: 48px; }
    .features-right { max-width: 480px; }
}

@media (max-width: 860px) {
    .steps-grid        { grid-template-columns: 1fr; gap: 2px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pricing-grid      { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .step-arrow        { display: none; }
    .footer-top        { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .btn-nav-cta { display: none; }
    .hamburger   { display: flex; }
    .nav-menu {
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(4,10,7,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column; gap: 4px;
        padding: 16px; border-bottom: 1px solid var(--line);
        transform: translateY(-110%);
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu li a { display: block; border-radius: var(--r-sm); padding: 10px 16px; }
}

@media (max-width: 600px) {
    .hero      { padding: 100px 20px 60px; }
    .section   { padding: 72px 20px; }
    .trust-strip { padding: 18px 20px; }
    .cta-box   { padding: 40px 24px; }
    .cta-form  { flex-direction: column; }
    .site-footer { padding: 48px 20px 28px; }
    .footer-links-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .home-stats { gap: 20px; }
    .stat-divider { display: none; }
    .float-badge { display: none; }
    .pricing-card--featured { margin-top: 0; }
    .pricing-badge { top: -12px; }
}
