/* =============================================
   DESIGN TOKENS & RESET
   ============================================= */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fa;
    --bg-tertiary: #f0f2f5;
    --bg-card: #ffffff;
    --border-color: #e5e7eb;
    --border-hover: #d1d5db;
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-blue-bg: rgba(37, 99, 235, 0.06);
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --gradient-main: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --font-main: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Common */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 900;
    color: white;
}

.logo-accent {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav CTA with social proof badge */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.nav-cta-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO — CRO: 3-second comprehension
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: #f0f4f8;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 28px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4)
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0)
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CRO: Price Anchoring in hero */
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.price-anchor-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
}

.price-anchor-highlight {
    font-size: 1.4em;
    color: var(--accent-blue);
    font-weight: 900;
}

/* CRO: Countdown timer */
.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 12px 24px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-right: 8px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-unit {
    text-align: center;
}

.countdown-unit span {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-blue);
    font-variant-numeric: tabular-nums;
}

.countdown-unit small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.countdown-sep {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.5;
}

/* CRO: Social proof nudge */
.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -8px;
    border: 2px solid white;
}

.proof-avatar:first-child {
    margin-left: 0;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--accent-blue);
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        top: -50%
    }

    100% {
        top: 100%
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #2563eb, #60a5fa, #2563eb);
    border-radius: inherit;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(8px)
    }

    50% {
        opacity: 0.7;
        filter: blur(12px)
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   TRUST METRICS
   ============================================= */
.trust {
    padding: 0;
    position: relative;
    z-index: 3;
    margin-top: -50px;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 44px 64px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-number {
    font-size: 2.6rem;
    font-weight: 900;
    display: inline;
    color: var(--accent-blue);
}

.trust-suffix {
    display: inline;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.trust-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.trust-label small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* =============================================
   S2: CHECKLIST — Empathy Section
   ============================================= */
.checklist {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.check-card {
    cursor: pointer;
}

.check-input {
    display: none;
}

.check-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.check-input:checked+.check-card-inner {
    border-color: var(--accent-blue);
    background: var(--accent-blue-bg);
}

.check-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.check-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

.check-card-inner:hover {
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.checklist-result {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.result-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.result-text span {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-blue);
}

/* =============================================
   S3: BENEFITS — 3 Core Cards
   ============================================= */
.benefits {
    padding: 120px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 40px 32px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.benefit-card.featured {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.benefit-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.benefit-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-blue);
    opacity: 0.4;
    margin-bottom: 8px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-headline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-proof {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.proof-badge {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.08);
    color: var(--accent-green);
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Benefits CTA */
.benefits-cta {
    text-align: center;
    margin-top: 56px;
}

.cta-nudge {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* =============================================
   S4: EVIDENCE — Trust 3-tier
   ============================================= */
.evidence {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.evidence-card {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.evidence-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.evidence-result {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.evidence-condition {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.evidence-interpret {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.evidence-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
}

/* =============================================
   S5: PRODUCTS — Price Anchoring
   ============================================= */
.products {
    padding: 120px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--accent-blue-bg);
    color: var(--accent-blue);
    border: 1px solid rgba(37, 99, 235, 0.15);
    margin-bottom: 16px;
}

.product-badge.popular {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CRO: Price anchoring (original → promo) */
.product-price {
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-original {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-from {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin-left: 4px;
}

.price-unit {
    font-size: 1rem;
    font-weight: 600;
}

.price-save {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    background: rgba(239, 68, 68, 0.06);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.product-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.btn-product {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-align: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-product:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-hover);
}

.btn-product-featured {
    background: var(--gradient-main);
    color: white;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-align: center;
    justify-content: center;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.btn-product-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* =============================================
   S6: LOCATIONS — Scarcity signals
   ============================================= */
.locations {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.location-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.location-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-card:hover .location-img img {
    transform: scale(1.08);
}

.location-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.location-status {
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.location-status.near-full {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border-color: rgba(239, 68, 68, 0.2);
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.location-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.location-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.location-tags span {
    padding: 3px 10px;
    font-size: 0.68rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
}

/* CRO: Real-time viewers nudge */
.location-viewers {
    font-size: 0.75rem;
    color: var(--accent-red);
    font-weight: 600;
}

.locations-more {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   S7: REVIEWS — Static cards grid
   ============================================= */
.reviews {
    padding: 120px 0;
}

.review-summary-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-top: 8px;
}

.review-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card-static {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.review-card-static:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.review-stars {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.reviews-cta {
    text-align: center;
    margin-top: 56px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--accent-blue);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =============================================
   CTA BANNER — Dark section
   ============================================= */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1629 0%, #1a2744 50%, #0d1b3e 100%);
    color: #fff;
}

.cta-bg-effect {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    opacity: 0.1;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.cta-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    opacity: 0.06;
    bottom: -100px;
    right: 10%;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact {
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-blue-bg);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-badge-item {
    font-size: 0.82rem;
    color: var(--accent-green);
    font-weight: 600;
}

.contact-form {
    padding: 36px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-group select option {
    background: #fff;
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-privacy {
    text-align: center;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.form-privacy a {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 56px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* =============================================
   CRO: STICKY CTA (Mobile)
   ============================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn {
    font-size: 0.95rem;
    padding: 14px 20px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .evidence-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 48px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        flex-wrap: wrap;
        gap: 32px;
        padding: 36px 40px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-countdown {
        flex-wrap: wrap;
        gap: 4px;
        padding: 10px 16px;
    }

    .trust {
        margin-top: -30px;
    }

    .trust-grid {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .review-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-desc br {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* CRO: Show sticky CTA on mobile */
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-social-proof {
        flex-direction: column;
    }

    .contact-form {
        padding: 24px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .evidence-badges {
        flex-direction: column;
        align-items: center;
    }
}