/**
 * Sterbegeld Vergleich - Premium Landing Page Styles
 * Hochwertig, Vertrauenswürdig, Konversionsoptimiert
 */

/* ============================================
   CSS Variables - Premium Color Palette
   ============================================ */
:root {
    /* Primary - Warm, Trustworthy Blue-Teal */
    --primary-50: #f0f9fa;
    --primary-100: #d4f1f4;
    --primary-200: #a8e4eb;
    --primary-300: #7dd3e0;
    --primary-400: #4fb8c9;
    --primary-500: #2d9db0;
    --primary-600: #1f7a8a;
    --primary-700: #1a5f6c;
    --primary-800: #164c57;
    --primary-900: #123d46;

    /* Accent - Warm Coral/Amber for friendliness */
    --gold-50: #fff8f0;
    --gold-100: #ffedd5;
    --gold-200: #fed7aa;
    --gold-300: #fdba74;
    --gold-400: #fb923c;
    --gold-500: #f97316;
    --gold-600: #ea580c;
    --gold-700: #c2410c;

    /* Success - Friendly Green */
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-200: #bbf7d0;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;

    /* Neutral - Warm Grays */
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;

    /* Warning/Error */
    --warning-100: #fef3c7;
    --warning-500: #f59e0b;
    --error-100: #fee2e2;
    --error-500: #ef4444;

    /* Warm Background */
    --bg-warm: #fffbf7;
    --bg-soft: #faf8f6;

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius - More subtle for premium feel */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;

    /* Shadows - Subtle, refined depth */
    --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.04);
    --shadow-md: 0 2px 8px rgba(16, 42, 67, 0.06), 0 1px 3px rgba(16, 42, 67, 0.04);
    --shadow-lg: 0 4px 16px rgba(16, 42, 67, 0.08), 0 2px 6px rgba(16, 42, 67, 0.04);
    --shadow-xl: 0 8px 24px rgba(16, 42, 67, 0.1), 0 4px 12px rgba(16, 42, 67, 0.05);
    --shadow-2xl: 0 16px 48px rgba(16, 42, 67, 0.12);
    --shadow-glow: 0 0 40px rgba(51, 78, 104, 0.1);
    --shadow-gold: 0 4px 16px rgba(184, 155, 90, 0.2);

    /* Premium Borders */
    --border-subtle: 1px solid rgba(16, 42, 67, 0.08);
    --border-light: 1px solid rgba(16, 42, 67, 0.06);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-700);
    background-color: var(--bg-warm);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

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

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-700);
}

ul {
    list-style: none;
}

/* ============================================
   Typography - Premium
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* ============================================
   Container
   ============================================ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Trust Banner - Warm & Welcoming
   ============================================ */
.trust-banner {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
}

.trust-item svg {
    color: var(--gold-400);
    opacity: 0.9;
}

/* ============================================
   Header - Premium Refined
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: var(--border-light);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-800);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--neutral-600);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-800);
    font-weight: 600;
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--primary-300);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.nav-phone:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
    color: var(--primary-900);
}

.nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

.nav-whatsapp svg {
    width: 20px;
    height: 20px;
}

/* IHK Badge in Header */
.header-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--neutral-500);
    padding: 4px 10px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-full);
}

.header-badge svg {
    color: var(--success-600);
}

@media (max-width: 968px) {
    .nav-link, .header-badge {
        display: none;
    }
}

/* ============================================
   Hero Section - Warm & Welcoming
   ============================================ */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + 2rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(45, 157, 176, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(251, 146, 60, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-100);
    color: var(--gold-700);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--gold-200);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary-700);
}

.hero h1 span.highlight {
    color: var(--primary-600);
    position: relative;
}

/* Hero Benefits List - Conversion-optimiert */
.hero-benefits {
    list-style: none;
    margin: 0 0 var(--space-xl) 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--neutral-700);
}

.hero-benefits li svg {
    color: var(--success-500);
    flex-shrink: 0;
}

.hero-benefits li strong {
    color: var(--neutral-800);
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.cta-hint {
    font-size: 0.875rem;
    color: var(--neutral-500);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Pulsing CTA Button */
.btn-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    }
    50% {
        box-shadow: 0 4px 24px rgba(249, 115, 22, 0.55);
    }
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: var(--border-subtle);
}

.trust-badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.trust-badge-mini svg {
    color: var(--primary-500);
}

/* Testimonial Stars Mini */
.testimonial-stars-mini {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-xs);
}

.testimonial-stars-mini svg {
    color: var(--gold-400);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    max-width: 540px;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-800);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--neutral-500);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--warning-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning-500);
}

.hero-note svg {
    color: var(--warning-500);
    flex-shrink: 0;
}

/* Hero Image Card */
.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-2xl);
    max-width: 420px;
    border: 1px solid var(--neutral-100);
    position: relative;
}

.hero-image-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-200), var(--gold-200));
    border-radius: calc(var(--radius-2xl) + 2px);
    z-index: -1;
    opacity: 0.5;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--neutral-100), var(--neutral-50));
    border-radius: var(--radius-xl);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.hero-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.testimonial-mini {
    text-align: center;
    padding: var(--space-md);
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
}

.testimonial-mini p {
    font-style: italic;
    color: var(--neutral-600);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-mini span {
    font-size: 0.85rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Trust Badges in Hero */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.trust-badge-hero {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--neutral-600);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.trust-badge-hero svg {
    width: 16px;
    height: 16px;
    color: var(--success-600);
}

.trust-badge-hero.gold {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-color: var(--gold-300);
}

.trust-badge-hero.gold svg {
    color: var(--gold-600);
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-card {
        max-width: 340px;
    }

    .hero-trust-badges {
        justify-content: center;
    }
}

/* ============================================
   Buttons - Premium Refined
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    min-height: 50px;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-700) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-800);
    border: 1px solid var(--primary-300);
}

.btn-secondary:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
}

.btn-white {
    background: white;
    color: var(--primary-800);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: #fafbfc;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    min-height: 56px;
}

/* ============================================
   Social Proof Bar - Conversion-optimiert
   ============================================ */
.social-proof {
    background: var(--bg-soft);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.social-proof .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.proof-stat {
    text-align: center;
    padding: 0 var(--space-lg);
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-700);
    line-height: 1.2;
}

.proof-label {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

@media (max-width: 640px) {
    .proof-stats {
        gap: var(--space-md);
    }
    .proof-stat {
        padding: 0 var(--space-sm);
    }
    .proof-number {
        font-size: 1.25rem;
    }
    .proof-divider {
        height: 30px;
    }
}

/* Quick CTA Bar - Direkt zum Rechner */
.quick-cta-bar {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    padding: var(--space-lg) 0;
    position: relative;
}

.quick-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.quick-cta-text {
    color: white;
}

.quick-cta-text strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.quick-cta-text span {
    font-size: 0.875rem;
    opacity: 0.85;
}

.quick-cta-bar .btn {
    flex-shrink: 0;
    background: white;
    color: var(--primary-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-cta-bar .btn:hover {
    background: var(--neutral-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.quick-cta-bar .btn svg {
    transition: transform 0.2s;
}

.quick-cta-bar .btn:hover svg {
    transform: translateY(3px);
}

@media (max-width: 640px) {
    .quick-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .quick-cta-text strong {
        font-size: 1rem;
    }
}

/* ============================================
   Section Headers - Premium
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header.light h2 {
    color: white;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Why Section - Premium Refined
   ============================================ */
.why-section {
    padding: var(--space-4xl) 0;
    background: #ffffff;
    position: relative;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.why-chart {
    background: #fafbfc;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: none;
    border: var(--border-subtle);
    position: sticky;
    top: 100px;
}

.why-chart h3 {
    font-size: 1.0625rem;
    color: var(--primary-800);
    margin-bottom: var(--space-xl);
    text-align: center;
    font-weight: 600;
}

.chart-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.donut-chart {
    width: 220px;
    height: 220px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.chart-label {
    font-size: 13px;
    fill: var(--neutral-500);
    font-weight: 500;
}

.chart-amount {
    font-size: 24px;
    font-weight: 700;
    fill: var(--primary-800);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.legend-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.legend-row:hover {
    background: var(--neutral-100);
}

.legend-row .dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-row .label {
    flex: 1;
    font-size: 0.9rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.legend-row .value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.why-fact {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: #fafbfc;
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: var(--border-subtle);
    transition: all 0.2s ease;
}

.why-fact:hover {
    background: #f4f5f7;
}

.fact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fact-icon.warning {
    background: var(--gold-100);
    color: var(--gold-600);
}

.fact-icon.danger {
    background: #fef2f2;
    color: #b91c1c;
}

.fact-icon.success {
    background: var(--success-100);
    color: var(--success-700);
}

.why-fact h4 {
    font-size: 1rem;
    color: var(--primary-800);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.why-fact p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

/* Coverage Recommendation - Premium Refined */
.coverage-recommendation {
    background: #fafbfc;
    border: var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
}

.coverage-recommendation h4 {
    font-size: 1rem;
    color: var(--primary-800);
    margin-bottom: var(--space-lg);
    text-align: center;
    font-weight: 600;
}

.coverage-options {
    display: flex;
    gap: var(--space-md);
}

.coverage-option {
    flex: 1;
    text-align: center;
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.coverage-option:hover {
    border-color: var(--primary-300);
}

.coverage-option.recommended {
    border-color: var(--gold-400);
    background: var(--gold-50);
}

.coverage-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.coverage-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-800);
    margin-bottom: 4px;
}

.coverage-desc {
    display: block;
    font-size: 0.95rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.why-cta {
    margin-top: var(--space-lg);
    width: 100%;
    justify-content: center;
}

@media (max-width: 968px) {
    .why-content {
        grid-template-columns: 1fr;
    }

    .why-chart {
        position: relative;
        top: 0;
    }

    .coverage-options {
        flex-direction: column;
    }

    .coverage-option.recommended {
        order: -1;
    }
}

/* ============================================
   Problem Section - Premium
   ============================================ */
.problem-section {
    padding: var(--space-4xl) 0;
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.problem-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    transition: all 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-card.highlight {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: #fecaca;
}

.problem-card.success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #a7f3d0;
}

.problem-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.problem-icon.warning {
    background: var(--gold-100);
    color: var(--gold-600);
}

.problem-icon.success {
    background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
    color: var(--success-700);
}

.problem-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-md);
    color: var(--neutral-800);
    font-weight: 700;
}

.problem-card ul li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
    color: var(--neutral-600);
    font-size: 1rem;
    line-height: 1.6;
}

.problem-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neutral-400);
}

.problem-card.success ul li::before {
    background: var(--success-500);
}

.problem-card.highlight ul li::before {
    background: var(--error-500);
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Calculator Section - Warm & Inviting
   ============================================ */
.calculator-section {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(251, 146, 60, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.calculator-layout {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: var(--space-lg);
    align-items: start;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.calculator-wrapper {
    max-width: 100%;
}

/* Progress Indicator - Premium Refined */
.calc-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.progress-step.active .step-dot {
    background: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.3);
}

.progress-step.completed .step-dot {
    background: var(--success-400);
}

.step-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.progress-line {
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

#calculator-container {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 650px;
    box-shadow: var(--shadow-2xl);
}

.calculator-wrapper {
    min-width: 0;
}

#calculator-container iframe {
    width: 100%;
    min-height: 700px;
    border: none;
}

/* ============================================
   MOBILE IFRAME CALCULATOR OPTIMIZATION
   ============================================ */

/* Tablet */
@media (max-width: 968px) {
    #calculator-container {
        border-radius: var(--radius-lg);
        min-height: 600px;
    }

    #calculator-container iframe {
        min-height: 650px;
    }
}

/* Mobile - Zoomable iframe */
@media (max-width: 768px) {
    .calculator-wrapper {
        margin: 0 calc(-1 * var(--space-md));
        padding: 0 var(--space-md);
        position: relative;
        overflow: visible;
    }

    #calculator-container {
        border-radius: var(--radius-lg);
        overflow: visible;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--neutral-200);
        background: white;
        /* Size controlled by JavaScript */
    }

    #calculator-container iframe {
        display: block;
        border: none;
        /* Size and transform controlled by JavaScript */
    }

    /* Zoom controls */
    .zoom-controls {
        display: flex;
        background: linear-gradient(135deg, #1f7a8a 0%, #2d9db0 100%);
        padding: 10px 16px;
        gap: 10px;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-lg);
        margin: 0 var(--space-md) var(--space-md);
    }

    .zoom-controls button {
        min-width: 40px;
        height: 40px;
        border-radius: 20px;
        border: none;
        background: white;
        color: #1f7a8a;
        font-size: 1.25rem;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .zoom-controls button:active {
        transform: scale(0.95);
        background: #f0f0f0;
    }

    .zoom-level {
        color: white;
        font-size: 0.9rem;
        font-weight: 600;
        min-width: 50px;
        text-align: center;
    }
}

/* Landscape mode - larger display */
@media (max-width: 896px) and (orientation: landscape) {
    .zoom-controls {
        padding: 8px 16px;
    }

    .zoom-controls button {
        min-width: 36px;
        height: 36px;
    }
}

/* Zoom Controls - Hidden on desktop */
.zoom-controls {
    display: none;
}

.calc-scroll-hint {
    display: none;
}

/* Landscape mode on mobile - hide info bubble and optimize layout */
@media (max-width: 896px) and (orientation: landscape) {
    .info-bubble,
    .info-bubble-trigger {
        display: none !important;
    }

    /* More compact header in landscape */
    .hero {
        padding: var(--space-lg) 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}

/* Very small screens - scale down */
@media (max-width: 400px) {
    #calculator-container iframe {
        min-width: 420px;
    }
}

.calculator-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    letter-spacing: 0.01em;
}

.trust-badge svg {
    color: var(--gold-400);
    opacity: 0.9;
}

/* Sidebars - Premium */
.calc-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidebar-content.hidden {
    display: none;
}

.expert-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    border: var(--border-subtle);
}

.expert-card.highlight {
    border: 1px solid var(--gold-300);
    background: var(--gold-50);
}

.expert-card.success {
    border: 1px solid var(--success-200);
    background: var(--success-50);
}

.expert-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.expert-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
}

.expert-avatar svg {
    width: 22px;
    height: 22px;
}

.expert-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-100);
    box-shadow: var(--shadow-sm);
}

.expert-header strong {
    display: block;
    color: var(--neutral-800);
    font-size: 0.875rem;
    font-weight: 600;
}

.expert-header span {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.expert-card p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

.tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip-list li {
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
    border-bottom: 1px solid var(--neutral-100);
}

.tip-list li:last-child {
    border-bottom: none;
}

.info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    box-shadow: var(--shadow-sm);
    border: var(--border-subtle);
}

.info-card h4 {
    font-size: 0.95rem;
    color: var(--primary-700);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* Video Teaser */
.video-teaser {
    margin-top: var(--space-md);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--neutral-800), var(--neutral-900));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder svg {
    color: white;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.video-placeholder span {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Checklist Card */
.checklist-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
}

.checklist-card h4 {
    font-size: 0.95rem;
    color: var(--neutral-700);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.checklist-card ul {
    list-style: none;
}

.checklist-card li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.checklist-card li svg {
    color: var(--success-500);
}

/* Stat Card (Right Sidebar) */
.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    border: var(--border-subtle);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-icon.warning {
    background: var(--gold-100);
    color: var(--gold-600);
}

.stat-icon.danger {
    background: #fef2f2;
    color: #b91c1c;
}

.stat-content .stat-number {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

/* Quote Card */
.quote-card {
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    border-left: 3px solid var(--gold-400);
    box-shadow: var(--shadow-sm);
    border-top: var(--border-subtle);
    border-right: var(--border-subtle);
    border-bottom: var(--border-subtle);
}

.quote-card p {
    font-style: italic;
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Advisor Card (Right Sidebar) */
.advisor-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-100);
}

.advisor-header {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-sm);
}

.advisor-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-100);
}

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

.advisor-info strong {
    font-size: 1rem;
    color: var(--neutral-800);
}

.advisor-info > span {
    font-size: 0.95rem;
    color: var(--neutral-500);
}

.advisor-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--success-600);
    font-weight: 600;
    margin-top: 2px;
}

.advisor-badge svg {
    color: var(--success-500);
}

.advisor-quote {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-md);
    padding-left: var(--space-sm);
    border-left: 2px solid var(--primary-200);
}

.advisor-actions {
    display: flex;
    gap: var(--space-sm);
}

.advisor-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.advisor-btn.phone {
    background: var(--primary-600);
    color: white;
}

.advisor-btn.phone:hover {
    background: var(--primary-700);
}

.advisor-btn.callback {
    background: var(--neutral-100);
    color: var(--neutral-700);
    border: 1px solid var(--neutral-200);
}

.advisor-btn.callback:hover {
    background: var(--neutral-200);
    border-color: var(--neutral-300);
}

/* Modern Info Card (Right Sidebar - Upgraded) */
.info-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-md);
    border: var(--border-subtle);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-600);
}

.info-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1.3;
}

.info-card-desc {
    font-size: 0.95rem;
    color: var(--neutral-500);
    line-height: 1.4;
}

/* Motivation Card */
.motivation-card {
    background: linear-gradient(135deg, var(--primary-50), var(--gold-50));
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    border: 1px solid var(--primary-100);
}

.motivation-card svg {
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.motivation-card p {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.5;
    font-weight: 500;
}

/* Testimonial Sidebar */
.testimonial-sidebar {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
}

.testimonial-sidebar .stars {
    display: flex;
    gap: 2px;
    color: var(--gold-500);
    margin-bottom: var(--space-sm);
}

.testimonial-sidebar p {
    font-size: 0.95rem;
    color: var(--neutral-600);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.testimonial-sidebar .author {
    font-size: 0.8rem;
    color: var(--neutral-500);
    font-weight: 500;
}

/* Help Card */
.help-card {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.help-card h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.help-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    color: var(--primary-700);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.help-phone:hover {
    transform: scale(1.05);
    color: var(--primary-800);
}

.help-hours {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    margin-top: var(--space-sm);
}

/* Security Card */
.security-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-md);
}

.security-card h4 {
    font-size: 1rem;
    color: var(--neutral-800);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.security-list {
    list-style: none;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.security-list li svg {
    color: var(--success-500);
}

/* Guarantee Card */
.guarantee-card {
    background: linear-gradient(135deg, var(--success-500), var(--success-600));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.guarantee-card svg {
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

.guarantee-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    font-weight: 700;
}

.guarantee-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Success Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-lg);
}

.success-overlay.hidden {
    display: none;
}

.success-content {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-2xl);
}

.success-icon {
    color: var(--success-500);
    margin-bottom: var(--space-lg);
}

.success-content h2 {
    color: var(--neutral-900);
    margin-bottom: var(--space-md);
}

.success-content > p {
    color: var(--neutral-600);
    margin-bottom: var(--space-xl);
}

.success-next {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: left;
    margin-bottom: var(--space-lg);
}

.success-next h3 {
    font-size: 1rem;
    color: var(--neutral-800);
    margin-bottom: var(--space-md);
}

.success-next ol {
    padding-left: var(--space-lg);
}

.success-next li {
    padding: var(--space-xs) 0;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.success-contact {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

.success-contact a {
    color: var(--primary-600);
    font-weight: 600;
}

/* Mobile Context */
.mobile-context {
    display: none;
    margin-top: var(--space-xl);
}

/* Responsive Calculator */
@media (max-width: 1400px) {
    .calculator-layout {
        grid-template-columns: 220px 1fr 220px;
        gap: var(--space-md);
    }
}

@media (max-width: 1200px) {
    .calculator-layout {
        grid-template-columns: 200px 1fr 200px;
        gap: var(--space-sm);
    }
}

@media (max-width: 968px) {
    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .calc-sidebar {
        display: none;
    }

    .mobile-context {
        display: block;
    }

    .calc-progress .step-label {
        display: none;
    }

    .calc-progress {
        gap: var(--space-xs);
    }
}

@media (max-width: 640px) {
    .calculator-trust {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
}

/* ============================================
   Benefits Section - Warm
   ============================================ */
.benefits-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-soft);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.25s ease;
    border: var(--border-subtle);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-700);
    transition: all 0.25s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-200);
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-800);
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   How It Works - Premium
   ============================================ */
.how-it-works {
    padding: var(--space-4xl) 0;
    background: white;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.step {
    text-align: center;
    max-width: 280px;
    padding: var(--space-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-800);
    font-weight: 600;
}

.step p {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 1px;
    background: var(--primary-200);
    margin-top: 28px;
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        background: linear-gradient(180deg, var(--primary-300), var(--primary-200));
    }
}

/* ============================================
   Testimonials - Premium Refined
   ============================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: #fafbfc;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: var(--border-subtle);
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    background: #f4f5f7;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: var(--gold-400);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-100);
    color: var(--primary-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-avatar-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-100);
    box-shadow: var(--shadow-sm);
}

.testimonial-author strong {
    display: block;
    color: var(--primary-800);
    font-weight: 600;
    font-size: 0.9375rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--neutral-500);
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   FAQ Section - Premium
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: var(--neutral-300);
}

.faq-item.active {
    border-color: var(--primary-300);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-800);
    transition: all 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-600);
}

.faq-question svg {
    color: var(--neutral-400);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-600);
}

.faq-answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--neutral-600);
    line-height: 1.7;
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-100);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: var(--space-md);
}

.faq-answer ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.faq-answer li {
    padding: var(--space-xs) 0;
    list-style: disc;
}

/* ============================================
   Transparency Section - Warm
   ============================================ */
.transparency-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-soft);
}

.transparency-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: var(--border-subtle);
}

.transparency-box h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--primary-800);
    font-weight: 600;
}

.transparency-box > p {
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-size: 0.9375rem;
}

.transparency-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.transparency-badges .badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--success-50);
    color: var(--success-700);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--success-200);
}

/* ============================================
   Final CTA - Warm & Encouraging
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    padding: var(--space-4xl) 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta .container {
    position: relative;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: white;
    font-weight: 700;
}

.final-cta > .container > p {
    font-size: 1.0625rem;
    opacity: 0.85;
    margin-bottom: var(--space-xl);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-note {
    margin-top: var(--space-lg);
    font-size: 0.95rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-note svg {
    opacity: 0.9;
}

/* Final CTA - Neue Elemente */
.final-cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.final-cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-benefits svg {
    color: var(--gold-300);
}

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

@keyframes pulse-glow-light {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 28px rgba(255, 255, 255, 0.35);
    }
}

/* ============================================
   Footer - Warm & Professional
   ============================================ */
.footer {
    background: var(--primary-800);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col p {
    margin-bottom: var(--space-sm);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-col ul li {
    padding: var(--space-xs) 0;
}

/* Trust Seals in Footer */
.footer-seals {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.seal {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--neutral-400);
}

.seal svg {
    color: var(--gold-400);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--neutral-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-seals {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Callback Modal
   ============================================ */
.callback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: var(--space-md);
}

.callback-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-2xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.callback-modal-overlay.active .callback-modal {
    transform: translateY(0);
}

.callback-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--neutral-400);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.callback-close:hover {
    background: var(--neutral-100);
    color: var(--neutral-600);
}

.callback-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.callback-advisor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-100);
}

.callback-header h3 {
    font-size: 1.25rem;
    color: var(--neutral-800);
    margin-bottom: 4px;
}

.callback-header p {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.callback-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.callback-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
}

.callback-form input,
.callback-form select {
    padding: 12px 14px;
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--neutral-800);
    transition: all 0.2s;
}

.callback-form input:focus,
.callback-form select:focus {
    outline: none;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 3px rgba(45, 157, 176, 0.1);
}

.callback-form input::placeholder {
    color: var(--neutral-400);
}

.callback-submit {
    margin-top: var(--space-sm);
    width: 100%;
    justify-content: center;
}

.callback-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: 0.95rem;
    color: var(--neutral-500);
}

.callback-note svg {
    color: var(--success-500);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--neutral-800);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--neutral-800);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 90px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   Mobile CTA (Sticky) - Premium
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 100;
    border-top: 1px solid var(--neutral-100);
}

.mobile-cta .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   Welcome Pop-up - Premium
   ============================================ */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.welcome-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-2xl);
    animation: popupSlideIn 0.4s ease-out;
    border: 1px solid var(--neutral-100);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-header {
    margin-bottom: var(--space-xl);
}

.popup-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.popup-header h2 {
    font-size: 1.5rem;
    color: var(--primary-900);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.popup-header p {
    color: var(--neutral-500);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.popup-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    border: var(--border-subtle);
}

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

.popup-stat .stat-value {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-800);
}

.popup-stat .stat-desc {
    font-size: 0.8rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.popup-btn.primary {
    background: var(--primary-800);
    color: white;
    box-shadow: var(--shadow-md);
}

.popup-btn.primary:hover {
    background: var(--primary-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.popup-btn.secondary {
    background: white;
    color: var(--primary-800);
    border: 1px solid var(--primary-300);
}

.popup-btn.secondary:hover {
    border-color: var(--primary-400);
    background: var(--primary-50);
}

.popup-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-lg);
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.popup-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.popup-trust svg {
    color: var(--success-500);
}

/* ============================================
   Info Bubble - Premium
   ============================================ */
.info-bubble {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 340px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--neutral-100);
}

.info-bubble.visible {
    transform: translateX(0);
}

.bubble-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 18px;
    color: var(--neutral-500);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.bubble-close:hover {
    background: white;
    color: var(--neutral-700);
    transform: scale(1.1);
}

.bubble-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
}

.bubble-header span {
    font-weight: 700;
    font-size: 0.95rem;
}

.pie-chart-container {
    padding: var(--space-lg);
    text-align: center;
}

.pie-chart {
    width: 160px;
    height: 160px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.pie-total {
    font-size: 12px;
    fill: var(--neutral-500);
}

.pie-amount {
    font-size: 18px;
    font-weight: 800;
    fill: var(--neutral-800);
}

.cost-legend {
    padding: 0 var(--space-lg) var(--space-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 0;
    font-size: 0.85rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-label {
    flex: 1;
    color: var(--neutral-600);
}

.legend-value {
    font-weight: 700;
    color: var(--neutral-800);
}

.bubble-recommendation {
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--success-50), #d1fae5);
    border-top: 1px solid var(--success-200);
}

.bubble-recommendation strong {
    display: block;
    font-size: 0.85rem;
    color: var(--success-700);
    margin-bottom: 4px;
}

.bubble-recommendation p {
    font-size: 0.85rem;
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.4;
}

/* Info Bubble Trigger - Premium Refined */
.info-bubble-trigger {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    background: var(--primary-800);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.2s ease;
    z-index: 999;
}

.info-bubble-trigger:hover {
    background: var(--primary-900);
    transform: translateY(-1px);
    box-shadow: var(--shadow-xl);
}

.info-bubble-trigger.hidden {
    display: none;
}

@media (max-width: 768px) {
    /* Hide info bubble completely on mobile */
    .info-bubble,
    .info-bubble-trigger {
        display: none !important;
    }
}

    .popup-stats {
        gap: var(--space-md);
    }

    .popup-stat .stat-value {
        font-size: 1.35rem;
    }
}

/* Inline Info Button */
.inline-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--primary-100);
    color: var(--primary-600);
    border: 1px solid var(--primary-200);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    margin-left: 6px;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.inline-info-btn:hover {
    background: var(--primary-200);
    transform: scale(1.15);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ============================================
   Utilities
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .trust-banner,
    .header,
    .mobile-cta,
    .final-cta,
    .calculator-section,
    .welcome-popup,
    .info-bubble,
    .info-bubble-trigger {
        display: none;
    }
}

/* ============================================
   Additional Premium Refinements
   ============================================ */

/* Smoother font rendering */
* {
    text-rendering: optimizeLegibility;
}

/* Refined link styling */
a:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Better form element focus states */
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* Warm selection color */
::selection {
    background: var(--primary-200);
    color: var(--primary-800);
}

/* Refined scrollbar (WebKit) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f4f5f7;
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neutral-400);
}

/* Problem cards warm */
.problem-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
}

.problem-card.highlight {
    background: var(--gold-50);
    border-color: var(--gold-200);
}

.problem-card.success {
    background: var(--success-50);
    border-color: var(--success-200);
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

/* FAQ warm */
.faq-section {
    background: white;
}

.faq-answer {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    background: white;
    font-size: 0.9375rem;
}

/* How it works warm */
.how-it-works {
    background: var(--bg-soft);
}

/* Hero image card refined */
.hero-image-card {
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    border: var(--border-subtle);
}

.hero-image-card::before {
    background: linear-gradient(135deg, var(--primary-100), var(--gold-100));
    opacity: 0.3;
}

.image-placeholder {
    border-radius: var(--radius-lg);
    height: 180px;
}

.testimonial-mini {
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

/* Legend refined */
.legend-row {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.legend-row .dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

/* Mobile CTA refined */
.mobile-cta {
    box-shadow: 0 -2px 12px rgba(16, 42, 67, 0.08);
    border-top: var(--border-light);
}

/* ============================================
   Testimonial Carousel - Infinite Scroll
   ============================================ */

.testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: var(--space-lg);
    padding: var(--space-md) 0;
    position: relative;
}

/* Gradient fade on edges */
.testimonial-carousel-wrapper::before,
.testimonial-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--neutral-50), transparent);
}

.testimonial-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--neutral-50), transparent);
}

.testimonial-carousel {
    display: flex;
    gap: 24px;
    animation: scrollTestimonials 60s linear infinite;
    width: max-content;
}

.testimonial-carousel:hover {
    animation-play-state: paused;
}

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

.testimonial-card-carousel {
    flex-shrink: 0;
    width: 320px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--neutral-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-carousel:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tc-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.tc-stars .star-empty {
    color: #d1d5db;
}

.tc-text {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0 0 16px 0;
    min-height: 72px;
}

.tc-author {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.tc-author strong {
    color: var(--neutral-700);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .testimonial-card-carousel {
        width: 280px;
        padding: 20px;
    }

    .tc-text {
        font-size: 0.9rem;
        min-height: 80px;
    }

    .testimonial-carousel-wrapper::before,
    .testimonial-carousel-wrapper::after {
        width: 40px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Mobile Navigation - Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 968px) {
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Navigation Drawer */
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        display: block !important;
        padding: 16px 0;
        border-bottom: 1px solid var(--neutral-100);
        font-size: 1.1rem;
    }

    .nav-phone {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

    .mobile-nav-overlay {
        display: block;
    }

    /* Trust Banner - Scrollable on Mobile */
    .trust-banner {
        padding: 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .trust-items {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: var(--space-lg);
        padding: 0 var(--space-md);
        min-width: max-content;
    }

    .trust-item {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Header spacing */
    .header .container {
        padding: 0 var(--space-md);
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }
}

/* Small Mobile Devices */
@media (max-width: 640px) {
    /* Container padding */
    .container {
        padding: 0 var(--space-md);
    }

    /* Hero Section */
    .hero {
        padding: var(--space-2xl) 0 var(--space-xl);
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .hero-benefits li {
        font-size: 0.9rem;
        text-align: left;
    }

    /* Hero Badge smaller */
    .hero-badge,
    .hero-content > div[style*="inline-flex"] {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    /* CTA Buttons - Full Width on Mobile */
    .hero-cta-group {
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.9375rem;
        min-height: 52px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Social Proof */
    .social-proof {
        padding: var(--space-md) 0;
    }

    .proof-stat {
        padding: 0 var(--space-xs);
    }

    .proof-number {
        font-size: 1.125rem;
    }

    .proof-label {
        font-size: 0.75rem;
    }

    .proof-divider {
        height: 24px;
    }

    /* Calculator Section */
    .calculator-section {
        padding: var(--space-2xl) 0;
    }

    .calculator-card {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }

    /* FAQ */
    .faq-question {
        padding: var(--space-md);
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 var(--space-md) var(--space-md);
        font-size: 0.875rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }

    .footer-grid {
        gap: var(--space-xl);
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }

    /* Cookie Banner Mobile */
    #cookie-consent-banner > div {
        flex-direction: column !important;
        text-align: center;
    }

    #cookie-consent-banner > div > div:last-child {
        width: 100%;
    }

    #cookie-consent-banner button {
        width: 100%;
    }
}

/* Extra Small Mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-benefits li {
        font-size: 0.85rem;
    }

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

    .proof-stats {
        gap: var(--space-sm);
    }

    .proof-number {
        font-size: 1rem;
    }

    .proof-label {
        font-size: 0.7rem;
    }

    /* Hide some trust items on very small screens */
    .trust-item:nth-child(4) {
        display: none;
    }
}

/* Touch-Friendly Targets */
@media (max-width: 968px) {
    /* Ensure all interactive elements are at least 44x44px */
    a, button, input, select, textarea {
        min-height: 44px;
    }

    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Better tap targets for FAQ */
    .faq-question {
        min-height: 56px;
    }

    /* Form inputs */
    input, select {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        padding: 14px 16px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 896px) and (orientation: landscape) {
    /* Hide info bubble in landscape */
    .info-bubble,
    .info-bubble-trigger {
        display: none !important;
    }

    .hero {
        padding: var(--space-xl) 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .mobile-cta {
        padding: var(--space-sm) var(--space-md);
    }

    body {
        padding-bottom: 60px;
    }

    body.cta-hidden {
        padding-bottom: 0;
    }
}

/* Improve Mobile CTA Bar */
@media (max-width: 768px) {
    .mobile-cta {
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-cta .btn {
        min-height: 48px;
        font-size: 1rem;
        font-weight: 600;
    }

    /* Hide CTA when calculator is visible */
    .mobile-cta.hidden {
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }

    /* Add safe area for iPhone notch */
    body {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }

    /* When CTA is hidden, reduce body padding */
    body.cta-hidden {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Better focus states for accessibility */
@media (max-width: 968px) {
    a:focus, button:focus, input:focus, select:focus {
        outline: 2px solid var(--primary-500);
        outline-offset: 2px;
    }
}
