/* ============================================================
   SLIMFIT AI — SALES PAGE STYLESHEET
   Premium Dark Mode Design System
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
    /* Core Palette */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #111118;
    --color-bg-tertiary: #1a1a24;
    --color-bg-card: #15151f;
    --color-bg-card-hover: #1c1c2a;
    --color-bg-glass: rgba(255, 255, 255, 0.03);
    --color-bg-glass-hover: rgba(255, 255, 255, 0.06);

    /* Text */
    --color-text-primary: #f0f0f5;
    --color-text-secondary: #a0a0b8;
    --color-text-muted: #6b6b82;

    /* Accent — Energetic Green / Teal */
    --color-accent-1: #00d4aa;
    --color-accent-2: #00b4d8;
    --color-accent-3: #0ea5e9;
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b4d8 50%, #0ea5e9 100%);
    --gradient-accent-hover: linear-gradient(135deg, #00e6b8 0%, #00c4e8 50%, #1eb5f9 100%);
    --gradient-accent-text: linear-gradient(135deg, #00d4aa 0%, #00b4d8 40%, #7c3aed 100%);

    /* Semantic */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;

    /* Borders */
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(255, 255, 255, 0.12);
    --color-border-accent: rgba(0, 212, 170, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 212, 170, 0.15);
    --shadow-glow-lg: 0 0 80px rgba(0, 212, 170, 0.2);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* ── Container ────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ── Section Labels & Titles ──────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-1);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--xl {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
}

.btn--primary {
    background: var(--gradient-accent);
    color: #0a0a0f;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.25);
}

.btn--primary:hover {
    background: var(--gradient-accent-hover);
    box-shadow: 0 6px 30px rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 1.5px solid var(--color-border-hover);
}

.btn--outline:hover {
    border-color: var(--color-accent-1);
    color: var(--color-accent-1);
    background: rgba(0, 212, 170, 0.05);
    box-shadow: var(--shadow-glow);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-border-hover);
}

.btn--glow {
    animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 212, 170, 0.25); }
    50% { box-shadow: 0 4px 40px rgba(0, 212, 170, 0.45), 0 0 80px rgba(0, 212, 170, 0.15); }
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
    background: transparent;
}

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

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

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

.logo-icon {
    font-size: 1.4rem;
}

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

.navbar__links {
    display: flex;
    gap: 32px;
}

.navbar__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s var(--ease-out-expo);
}

.navbar__links a:hover {
    color: var(--color-text-primary);
}

.navbar__links a:hover::after {
    width: 100%;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15), transparent 70%);
    top: -200px;
    right: -100px;
    animation: orb-float 12s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orb-float 15s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1), transparent 70%);
    top: 50%;
    left: 30%;
    animation: orb-float 18s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--color-accent-1);
    margin-bottom: 24px;
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0%, 100% { border-color: rgba(0, 212, 170, 0.12); }
    50% { border-color: rgba(0, 212, 170, 0.3); }
}

.badge__pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent-1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero__subtitle strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Proof */
.hero__proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__avatars {
    display: flex;
}

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

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

.avatar--count {
    background: var(--color-bg-tertiary);
    color: var(--color-text-secondary);
    font-size: 0.65rem;
    border-color: var(--color-border);
}

.hero__rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero__rating span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.hero__rating strong {
    color: var(--color-text-secondary);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__phone-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.hero__phone-img {
    border-radius: 24px;
    position: relative;
    z-index: 2;
    animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero__phone-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.12), transparent 70%);
    z-index: 1;
    border-radius: 50%;
    animation: glow-breathe 4s ease-in-out infinite;
}

@keyframes glow-breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Floating Cards */
.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(21, 21, 31, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    z-index: 3;
    box-shadow: var(--shadow-md);
    animation: float-card 5s ease-in-out infinite;
}

.hero__floating-card--1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 25%;
    right: -5%;
    animation-delay: 1.5s;
}

.hero__floating-card--3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 3s;
}

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

.floating-icon {
    font-size: 1.5rem;
}

.hero__floating-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero__floating-card small {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--color-accent-1);
    border-radius: 3px;
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ── SOCIAL PROOF BAR ─────────────────────────────────────── */
.social-proof-bar {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 40px 0;
}

.proof-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.proof-stat__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-stat__suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* ── PROBLEM SECTION ──────────────────────────────────────── */
.problem-section {
    padding: var(--section-padding) 0;
}

.problem__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.problem__item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out-expo);
}

.problem__item:hover {
    background: var(--color-bg-glass-hover);
    border-color: var(--color-border-hover);
    transform: translateX(8px);
}

.problem__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.problem__item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.problem__item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.problem__visual {
    position: relative;
}

.problem__image {
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.problem__image-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.caption-after {
    color: var(--color-accent-1);
    font-weight: 600;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.step {
    text-align: center;
    padding: 40px 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
}

.step:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.step__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 212, 170, 0.08);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.step__icon-wrapper {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.06);
    border: 1px solid rgba(0, 212, 170, 0.12);
    border-radius: var(--radius-lg);
}

.step__icon {
    font-size: 2rem;
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.step__connector {
    display: none;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features {
    padding: var(--section-padding) 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-card--large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.feature-card--large .feature-card__visual {
    height: 100%;
    overflow: hidden;
}

.feature-card--large .feature-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card--large .feature-card__content {
    padding: 40px 40px 40px 0;
}

.feature-card__icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ── RESULTS ──────────────────────────────────────────────── */
.results {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.result-card {
    padding: 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out-expo);
}

.result-card:hover {
    border-color: var(--color-border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.result-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.result-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.result-card__header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.result-card__location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.result-card__badge {
    margin-left: auto;
    padding: 6px 14px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--color-accent-1);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.result-card__timeline {
    margin-bottom: 16px;
}

.timeline-bar {
    height: 6px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
}

.timeline-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transition: width 1.5s var(--ease-out-expo);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.result-card__quote {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.7;
    border-left: 3px solid rgba(0, 212, 170, 0.2);
    padding-left: 16px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
    padding: var(--section-padding) 0;
}

.testimonials__carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    padding: 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out-expo);
}

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

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-accent-1);
}

/* ── COMPARISON ───────────────────────────────────────────── */
.comparison {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.comparison__table {
    max-width: 800px;
    margin: 60px auto 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison__header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
}

.comparison__header .comparison__col {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 0.9rem;
}

.comparison__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.3s ease;
}

.comparison__row:last-child {
    border-bottom: none;
}

.comparison__row:hover {
    background: rgba(0, 212, 170, 0.02);
}

.comparison__col {
    padding: 14px 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.comparison__col--feature {
    color: var(--color-text-secondary);
}

.comparison__col--others,
.comparison__col--us {
    justify-content: center;
    text-align: center;
}

.comparison__yes {
    color: var(--color-accent-1);
    font-weight: 700;
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
}

.comparison__no {
    color: var(--color-danger);
    font-weight: 700;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
}

.comparison__partial {
    color: var(--color-warning);
    font-weight: 700;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
}

.comparison__price-other {
    color: var(--color-text-muted);
    font-weight: 600;
    text-decoration: line-through;
}

.comparison__price-us {
    color: var(--color-accent-1);
    font-weight: 700;
}

.comparison__row--price {
    background: rgba(0, 212, 170, 0.03);
}

/* ── GUARANTEE ────────────────────────────────────────────── */
.guarantee {
    padding: var(--section-padding) 0;
}

.guarantee__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.guarantee__badge {
    flex-shrink: 0;
}

.guarantee__shield {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee__shield-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-1);
    margin-top: 4px;
}

.guarantee__content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.guarantee__content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.guarantee__small {
    font-size: 0.85rem;
    color: var(--color-accent-1);
    font-weight: 500;
}

/* ── PRICING ──────────────────────────────────────────────── */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: start;
}

.pricing-card {
    padding: 36px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

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

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.05) 0%, var(--color-bg-card) 100%);
    border-color: rgba(0, 212, 170, 0.25);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-glow-lg);
}

.pricing-card--featured:hover {
    transform: scale(1.05) translateY(-4px);
    border-color: rgba(0, 212, 170, 0.4);
}

.pricing-card__popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-accent);
    color: #0a0a0f;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card__header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-card__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-original {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
    width: 100%;
}

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

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.pricing-card__savings {
    font-size: 0.8rem;
    color: var(--color-accent-1);
    margin-bottom: 24px;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.06);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.pricing-card__features {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.pricing-card__features li.disabled {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.pricing-card__features .check {
    color: var(--color-accent-1);
    font-weight: 700;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-card__features .x {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.btn__arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* Trust Badges */
.pricing__trust {
    margin-top: 48px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.trust-badge svg {
    color: var(--color-accent-1);
    flex-shrink: 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
    padding: var(--section-padding) 0;
}

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

.faq__item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq__item:hover {
    border-color: var(--color-border-hover);
}

.faq__item.active {
    border-color: var(--color-border-accent);
}

.faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
    gap: 16px;
}

.faq__question:hover {
    color: var(--color-accent-1);
}

.faq__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-accent-1);
    transition: transform 0.4s var(--ease-out-expo);
    flex-shrink: 0;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ── FINAL CTA ────────────────────────────────────────────── */
.final-cta {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.final-cta__bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.final-cta__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.12), transparent 70%);
    top: -200px;
    left: -100px;
}

.final-cta__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
    bottom: -150px;
    right: -100px;
}

.final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.final-cta__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.final-cta__urgency {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    text-align: left;
}

.urgency-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.final-cta__urgency strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-warning);
    margin-bottom: 2px;
}

.final-cta__urgency p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.final-cta__guarantee {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    padding: 60px 0 30px;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer__brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 300px;
}

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

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.footer__col a {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--color-accent-1);
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.footer__disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* ── STICKY CTA ───────────────────────────────────────────── */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__proof {
        justify-content: center;
    }

    .hero__floating-card--1 {
        left: 5%;
    }

    .hero__floating-card--2 {
        right: 5%;
    }

    .problem__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .feature-card--large .feature-card__content {
        padding: 32px;
    }

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

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

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

    .pricing-card--featured {
        transform: scale(1);
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .navbar__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 998;
    }

    .navbar__links.active {
        display: flex;
    }

    .navbar__links a {
        font-size: 1.25rem;
    }

    .navbar__toggle {
        display: flex;
        z-index: 999;
    }

    .navbar__cta {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero__floating-card {
        display: none;
    }

    .hero__phone-wrapper {
        max-width: 280px;
    }

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

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

    .comparison__col--feature {
        font-size: 0.8rem;
    }

    .comparison__col {
        padding: 12px 12px;
    }

    .guarantee__inner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .proof-bar__inner {
        gap: 24px;
    }

    .proof-divider {
        display: none;
    }

    .proof-stat__number {
        font-size: 2rem;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* Show sticky CTA on mobile */
    .sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .final-cta__urgency {
        flex-direction: column;
        text-align: center;
    }

    .comparison__header,
    .comparison__row {
        grid-template-columns: 1.5fr 0.75fr 0.75fr;
    }
}

/* ── Selection Color ──────────────────────────────────────── */
::selection {
    background: rgba(0, 212, 170, 0.2);
    color: var(--color-text-primary);
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}
