/* ============================================================
   COFFEEGOLD — Landing Page Styles
   Modern 2026 Design System
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --gold-50:  #fdf8e8;
    --gold-100: #faf0c8;
    --gold-200: #f5e08e;
    --gold-300: #eece54;
    --gold-400: #e4bc2e;
    --gold-500: #c8a23c;
    --gold-600: #a17e1a;
    --gold-700: #7a5f14;
    --gold-800: #4d3b0d;
    --gold-900: #2a2007;

    --coffee-50:  #faf6f1;
    --coffee-100: #f0e6d6;
    --coffee-200: #dcc7a7;
    --coffee-300: #c4a373;
    --coffee-400: #a07844;
    --coffee-500: #7a5a30;
    --coffee-600: #5c4223;
    --coffee-700: #3d2c17;
    --coffee-800: #1f160c;
    --coffee-900: #100b06;

    --dark-50:  #f5f5f6;
    --dark-100: #e5e5e7;
    --dark-200: #ccccd0;
    --dark-300: #a3a3aa;
    --dark-400: #71717a;
    --dark-500: #52525b;
    --dark-600: #3f3f46;
    --dark-700: #27272a;
    --dark-800: #18181b;
    --dark-900: #09090b;

    --green:  #22c55e;
    --red:    #ef4444;
    --orange: #f97316;
    --blue:   #3b82f6;

    /* Surfaces */
    --bg:           #09090b;
    --bg-elevated:  #111113;
    --bg-card:      #151517;
    --bg-card-hover:#1c1c1f;
    --border:       rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text-primary: #fafafa;
    --text-secondary:#a1a1aa;
    --text-muted:   #71717a;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c8a23c 0%, #e4bc2e 50%, #f5e08e 100%);
    --gradient-hero: radial-gradient(ellipse at 20% 50%, rgba(200,162,60,0.15) 0%, transparent 60%),
                     radial-gradient(ellipse at 80% 20%, rgba(122,95,20,0.1) 0%, transparent 50%);
    --gradient-cta:  linear-gradient(135deg, #c8a23c 0%, #a17e1a 100%);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-py: clamp(5rem, 10vw, 8rem);
    --container-px: clamp(1.25rem, 4vw, 2rem);
    --container-max: 1200px;

    /* Radius */
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.3s;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 116px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease-out); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

::selection {
    background: var(--gold-500);
    color: var(--dark-900);
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

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

.section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(200,162,60,0.1);
    border: 1px solid rgba(200,162,60,0.2);
    color: var(--gold-400);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.section__desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
    background: var(--gradient-cta);
    color: var(--dark-900);
    padding: 12px 28px;
    box-shadow: 0 0 0 0 rgba(200,162,60,0), 0 2px 8px rgba(200,162,60,0.2);
}
.btn--primary:hover {
    box-shadow: 0 0 20px rgba(200,162,60,0.3), 0 4px 16px rgba(200,162,60,0.3);
    transform: translateY(-1px);
}

.btn--ghost {
    color: var(--text-secondary);
    padding: 12px 28px;
    border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
    color: var(--text-primary);
    border-color: var(--dark-400);
    background: rgba(255,255,255,0.03);
}

.btn--outline {
    color: var(--gold-400);
    padding: 12px 28px;
    border: 1.5px solid rgba(200,162,60,0.4);
}
.btn--outline:hover {
    background: rgba(200,162,60,0.08);
    border-color: var(--gold-400);
}

.btn--login {
    color: var(--text-secondary);
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: transparent;
}
.btn--login svg { width: 16px; height: 16px; }
.btn--login:hover {
    color: var(--text-primary);
    border-color: var(--dark-400);
    background: rgba(255,255,255,0.04);
}

.btn--sm { padding: 8px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
}
.btn--whatsapp:hover {
    background: #20bd5a;
    box-shadow: 0 0 20px rgba(37,211,102,0.3);
    transform: translateY(-1px);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration) var(--ease-out);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(9,9,11,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
}

.logo-icon { font-size: 1.5rem; }
.logo-text { color: var(--text-primary); }
.logo-gold { color: var(--gold-400); }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--duration) var(--ease-out);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
    transition: width var(--duration) var(--ease-out);
}

.nav-link:hover::after { width: 100%; }

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbar__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration) var(--ease-out);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar__mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem var(--container-px);
    border-top: 1px solid var(--border);
    background: rgba(9,9,11,0.95);
    backdrop-filter: blur(20px);
}

.navbar__mobile.open { display: flex; }

/* ---------- BREAKING NEWS BAR ---------- */
.breaking-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    background: #09090b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    height: 36px;
    font-size: 0.8125rem;
    overflow: hidden;
}

.breaking-bar__label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
}

.breaking-bar__pulse {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.breaking-bar__track {
    flex: 1;
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.breaking-bar__slide {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: breakingScroll 80s linear infinite;
    will-change: transform;
    padding: 0 1rem;
}

.bb-item {
    white-space: nowrap;
    color: var(--text-secondary);
}

.bb-item strong {
    color: var(--gold-400);
    font-weight: 600;
}

.bb-sep {
    color: var(--dark-500);
}

@keyframes breakingScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 116px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(200,162,60,0.08);
    border: 1px solid rgba(200,162,60,0.15);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--gold-300);
    font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.badge__pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero__proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof__avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.hero__proof p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero__proof strong {
    color: var(--text-primary);
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(200,162,60,0.06),
                0 25px 50px rgba(0,0,0,0.4);
}

.dashboard-preview__header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.dashboard-preview__title {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-preview__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dp__stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.dp__stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.dp__stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.dp__stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.dp__stat-change svg { width: 14px; height: 14px; }
.dp__stat-change.positive { color: var(--green); }
.dp__stat-change.neutral  { color: var(--gold-400); }

.dp__chart {
    position: relative;
    padding: 8px 0;
}

.chart-line { width: 100%; height: auto; }

.chart-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawChart 2s var(--ease-out) forwards;
    animation-delay: 1s;
}

.chart-area {
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) forwards;
    animation-delay: 2s;
}

@keyframes drawChart {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.dp__chart-label {
    display: block;
    text-align: center;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.dp__alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--green);
}

.dp__alert svg { width: 16px; height: 16px; flex-shrink: 0; }

.dp__alert--climate {
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.15);
    color: var(--green);
}

/* Trading Signal */
.dp__signal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
}

.dp__signal--sell {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
}

.dp__signal-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dp__signal-action {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--red);
}

.dp__signal--buy .dp__signal-action { color: var(--green); }

.dp__signal-conf {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Forecasts row */
.dp__forecasts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dp__fc {
    padding: 10px 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
}

.dp__fc-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.dp__fc-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
}

.dp__fc-change {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-top: 2px;
}

.dp__fc-change.negative { color: var(--red); }
.dp__fc-change.positive { color: var(--green); }

.dp__stat-change.negative { color: var(--red); }

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

.hero__scroll a {
    color: var(--text-muted);
    transition: color var(--duration);
}

.hero__scroll a:hover { color: var(--gold-400); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- STATS ---------- */
.stats {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.stats__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat__number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__suffix {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---------- LOGOS / TRUST ---------- */
.logos {
    padding: 2.5rem 0;
    overflow: hidden;
}

.logos__title {
    text-align: center;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.logos__track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos__slide {
    display: flex;
    gap: 3rem;
    animation: logoScroll 30s linear infinite;
    width: max-content;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-400);
    white-space: nowrap;
    padding: 8px 0;
    letter-spacing: 0.02em;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- PROBLEM ---------- */
.problem { background: var(--bg); }

.problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.problem__card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease-out);
}

.problem__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.problem__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.problem__icon svg { width: 24px; height: 24px; }
.problem__icon.red    { background: rgba(239,68,68,0.1);  color: var(--red); }
.problem__icon.orange { background: rgba(249,115,22,0.1); color: var(--orange); }
.problem__icon.blue   { background: rgba(59,130,246,0.1); color: var(--blue); }

.problem__card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem__card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ---------- FEATURES ---------- */
.features { background: var(--bg-elevated); }

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: rgba(200,162,60,0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200,162,60,0.06);
}

.feature-card--large {
    grid-column: span 2;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,162,60,0.08);
    color: var(--gold-400);
    margin-bottom: 1.25rem;
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.feature-card__visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 100px;
    pointer-events: none;
}

/* AI Pulse animation */
.ai-pulse {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    position: absolute;
    bottom: 20px;
    right: 24px;
}

.ai-pulse span {
    width: 4px;
    border-radius: 4px;
    background: var(--gold-500);
    opacity: 0.4;
    animation: aiBar 1.2s ease-in-out infinite;
}

.ai-pulse span:nth-child(1) { height: 16px; animation-delay: 0s; }
.ai-pulse span:nth-child(2) { height: 28px; animation-delay: 0.15s; }
.ai-pulse span:nth-child(3) { height: 20px; animation-delay: 0.3s; }

@keyframes aiBar {
    0%, 100% { transform: scaleY(1); opacity: 0.3; }
    50% { transform: scaleY(1.8); opacity: 0.7; }
}

/* Swarm dots animation */
.swarm-dots {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 120px;
    height: 80px;
}

.swarm-dots span {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    opacity: 0.3;
    animation: swarm 4s ease-in-out infinite;
}

.swarm-dots span:nth-child(1) { top: 30%; left: 20%; animation-delay: 0s; }
.swarm-dots span:nth-child(2) { top: 50%; left: 60%; animation-delay: 0.5s; }
.swarm-dots span:nth-child(3) { top: 20%; left: 80%; animation-delay: 1s; }
.swarm-dots span:nth-child(4) { top: 70%; left: 40%; animation-delay: 1.5s; }
.swarm-dots span:nth-child(5) { top: 40%; left: 30%; animation-delay: 2s; }
.swarm-dots span:nth-child(6) { top: 60%; left: 70%; animation-delay: 0.3s; }
.swarm-dots span:nth-child(7) { top: 10%; left: 50%; animation-delay: 0.8s; }
.swarm-dots span:nth-child(8) { top: 80%; left: 15%; animation-delay: 1.3s; }
.swarm-dots span:nth-child(9) { top: 45%; left: 90%; animation-delay: 1.8s; }

@keyframes swarm {
    0%, 100% { transform: translate(0,0); opacity: 0.2; }
    25% { transform: translate(10px,-5px); opacity: 0.6; }
    50% { transform: translate(-5px,8px); opacity: 0.4; }
    75% { transform: translate(8px,3px); opacity: 0.5; }
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works { background: var(--bg); }

.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--duration) var(--ease-out);
}

.step:hover {
    border-color: rgba(200,162,60,0.2);
    transform: translateX(4px);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.step__content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step__content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.step__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,162,60,0.08);
    color: var(--gold-400);
    flex-shrink: 0;
    margin-left: auto;
}

.step__icon svg { width: 20px; height: 20px; }

.step__connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(200,162,60,0.3), rgba(200,162,60,0.05));
    margin: 0 auto;
}

.steps__cta {
    text-align: center;
    margin-top: 3rem;
}

/* ---------- ROI Calculator ---------- */
.roi-calculator {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.roi__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.roi__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.roi__content > p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.roi__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.roi__card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.roi__inputs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.roi-input-group label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 6px;
}

.roi-input-group input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--dark-700);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.roi-input-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-400);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(200,162,60,0.4);
}

.roi-input-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-400);
    cursor: pointer;
    border: none;
}

.roi-input-value {
    text-align: right;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.roi__result {
    text-align: center;
    padding: 1.5rem;
    background: rgba(200,162,60,0.06);
    border: 1px solid rgba(200,162,60,0.15);
    border-radius: var(--radius-lg);
}

.roi__result-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.roi__result-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}

.roi__result-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg-elevated); }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease-out);
}

.testimonial:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial__stars {
    color: var(--gold-400);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__author strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
}

.testimonial__author span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ---------- PRICING ---------- */
.pricing { background: var(--bg); }

.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--duration);
}

.toggle-label.active { color: var(--text-primary); }

.toggle-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34,197,94,0.1);
    color: var(--green);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--dark-600);
    border-radius: var(--radius-full);
    position: relative;
    transition: background var(--duration);
}

.toggle-switch.active { background: var(--gold-600); }

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform var(--duration) var(--ease-spring);
}

.toggle-switch.active .toggle-thumb {
    transform: translateX(22px);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all var(--duration) var(--ease-out);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-card--popular {
    border-color: rgba(200,162,60,0.3);
    background: linear-gradient(180deg, rgba(200,162,60,0.04) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 40px rgba(200,162,60,0.06);
}

.pricing-card--popular:hover {
    border-color: rgba(200,162,60,0.5);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--gradient-cta);
    color: var(--dark-900);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    white-space: nowrap;
    font-family: var(--font-heading);
}

.pricing-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-value.free-label {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-card__billing {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-card__features li svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

.pricing__note svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- NEWS TICKER ---------- */
.blog { background: var(--bg); }

.news-ticker {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
}

.news-ticker__label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(239,68,68,0.1);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-right: 1px solid var(--border);
}

.news-ticker__label svg { width: 14px; height: 14px; }

.news-ticker__track {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.news-ticker__slide {
    display: flex;
    gap: 2rem;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
    padding: 12px 0;
}

.ticker-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.ticker-sep {
    color: var(--text-muted);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- BLOG CARDS ---------- */
.blog__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.blog-card--featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.blog-card__img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.blog-card:hover .blog-card__img img {
    transform: scale(1.05);
}

.blog-card--featured .blog-card__img {
    height: auto;
    flex: 1;
    min-height: 260px;
}

.blog-card__category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.blog-card__body {
    padding: 1.5rem;
}

.blog-card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.blog-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-card__body p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-400);
    transition: gap var(--duration) var(--ease-out);
}

.blog-card__link svg { width: 14px; height: 14px; }

.blog-card__link:hover { gap: 10px; }

/* ---------- SIGNUP / CTA ---------- */
.signup {
    position: relative;
    overflow: hidden;
}

.signup__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.signup__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,162,60,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(122,95,20,0.08) 0%, transparent 40%);
}

.signup__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.signup__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.signup__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.signup__benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

/* Signup Form */
.signup-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.signup-form__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.signup-form__subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
}

.input-wrapper:focus-within {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(200,162,60,0.1);
}

.input-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.input-wrapper input {
    flex: 1;
    padding: 14px 0;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.input-wrapper input::placeholder {
    color: var(--dark-500);
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: var(--red);
    margin-top: 4px;
    min-height: 1em;
}

.signup-form .btn {
    margin-top: 0.5rem;
}

.signup-form__terms {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

.signup-form__terms a {
    color: var(--gold-400);
    text-decoration: underline;
}

/* Success state */
.signup-success {
    background: var(--bg-card);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    text-align: center;
}

.success-icon {
    margin-bottom: 1rem;
}

.success-icon svg {
    width: 56px;
    height: 56px;
    color: var(--green);
}

.signup-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.signup-success p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.success-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-elevated); }

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--duration);
}

.faq-item[open] {
    border-color: rgba(200,162,60,0.2);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    list-style: none;
    transition: color var(--duration);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary span { flex: 1; }

.faq-item summary svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform var(--duration) var(--ease-out);
    flex-shrink: 0;
}

.faq-item[open] summary svg {
    transform: rotate(45deg);
    color: var(--gold-400);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- FOOTER ---------- */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__col h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer__col a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color var(--duration);
}

.footer__col a:hover { color: var(--gold-400); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all var(--duration) var(--ease-out);
}

.footer__social a svg { width: 16px; height: 16px; }
.footer__social a:hover {
    color: var(--gold-400);
    border-color: rgba(200,162,60,0.3);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--duration) var(--ease-out);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--gold-400);
    border-color: rgba(200,162,60,0.3);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ---------- REFERRAL BANNER ---------- */
.referral {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, rgba(200,162,60,0.04) 100%);
}

.referral__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.referral__content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.referral__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(34,197,94,0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.referral__icon svg { width: 24px; height: 24px; }

.referral__content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.referral__content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ---------- ANIMATIONS (initial states for GSAP) ---------- */
[data-animate] {
    opacity: 0;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

.animated {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__cta { justify-content: center; }
    .hero__proof { justify-content: center; }
    .hero__badge { margin-left: auto; margin-right: auto; }

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

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

    .feature-card--large { grid-column: span 2; }

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

    .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

    .blog__grid { grid-template-columns: 1fr; }
    .blog-card--featured { grid-row: span 1; }

    .signup__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .signup__content { text-align: center; }
    .signup__benefits { align-items: center; }

    .roi__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .roi__content { text-align: center; }

    .footer__top { grid-template-columns: 1fr; gap: 2rem; }

    .referral__inner { flex-direction: column; text-align: center; }
    .referral__content { flex-direction: column; }
}

@media (max-width: 768px) {
    .breaking-bar { font-size: 0.75rem; height: 32px; }
    .breaking-bar__label { padding: 0 10px; font-size: 0.625rem; }
    .navbar { top: 32px; }
    .hero { padding-top: 112px; }

    .navbar__links { display: none; }
    .navbar__hamburger { display: flex; }

    .stats__inner { grid-template-columns: repeat(2, 1fr); }

    .features__grid { grid-template-columns: 1fr; }
    .feature-card--large { grid-column: span 1; }

    .footer__links { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .stats__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .step { flex-direction: column; text-align: center; }
    .step__icon { margin: 0 auto; }
    .signup-form { padding: 1.5rem; }
    .footer__links { grid-template-columns: 1fr; }
}
