
/* ============================================
   CSS VARIABLES - PROFESSIONAL REDESIGN
   Version: 2.0.0
   Description: Professional CSS variables for ClearFuneralCosts
   Optimized for: British audience 55+
   Date: October 2025
   ============================================ */

:root {
    /* ====================================
       PRIMARY COLORS - Professional & Trustworthy
       ==================================== */
    --primary-navy: #1e3a5f;
    --primary-navy-light: #2d5a8a;
    --primary-navy-dark: #152c47;
    
    /* ====================================
       ACCENT COLORS - Subdued & Respectful
       ==================================== */
    /* MAIN ACCENT - Sage Green (replaces burgundy) */
    --accent-sage: #5a7a5f;
    --accent-sage-light: #7a9a7f;
    --accent-sage-pale: #e8f3ea;
    --accent-sage-dark: #4a6a4f;
    
    /* ====================================
       NEUTRAL COLORS - Professional Greys
       WCAG AAA compliant (7:1 contrast)
       ==================================== */
    --neutral-900: #1a202c;  /* Primary text - 16.1:1 contrast */
    --neutral-800: #2d3748;  /* Secondary text - 11.9:1 contrast */
    --neutral-700: #4a5568;  /* Tertiary text - 8.0:1 contrast */
    --neutral-600: #718096;  /* Muted text - 5.4:1 contrast */
    --neutral-500: #a0aec0;  /* Disabled text */
    --neutral-400: #cbd5e0;  /* Borders */
    --neutral-300: #e2e8f0;  /* Dividers */
    --neutral-200: #edf2f7;  /* Hover backgrounds */
    --neutral-100: #f7fafc;  /* Light backgrounds */
    --neutral-50: #fafbfc;   /* Lightest backgrounds */
    
    /* ====================================
       BACKGROUND COLORS
       ==================================== */
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-tertiary: #edf2f7;
    --bg-subtle: #fafbfc;
    
    /* ====================================
       STATUS COLORS - WCAG AA compliant
       ==================================== */
    --success-green: #047857;     /* 4.6:1 contrast */
    --success-green-light: #10b981;
    --success-green-pale: #d1fae5;
    
    --warning-amber: #d97706;     /* 4.3:1 contrast */
    --warning-amber-light: #f59e0b;
    --warning-amber-pale: #fef3c7;
    
    --error-red: #b91c1c;         /* 4.8:1 contrast */
    --error-red-light: #dc2626;
    --error-red-pale: #fee2e2;
    
    --info-blue: #1e40af;         /* 7.5:1 contrast */
    --info-blue-light: #3b82f6;
    --info-blue-pale: #dbeafe;
    
    /* ====================================
       TYPOGRAPHY - Optimized for 55+
       ==================================== */
    /* Font Family */
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Helvetica Neue', Arial, sans-serif;
    --font-family-mono: 'Courier New', Courier, monospace;
    
    /* Font Sizes - Increased for 55+ audience */
    --text-base: 20px;           /* Increased from 18px */
    --text-xs: 14px;
    --text-sm: 16px;
    --text-md: 18px;
    --text-lg: 24px;
    --text-xl: 28px;
    --text-2xl: 32px;
    --text-3xl: 36px;
    --text-4xl: 40px;
    --text-5xl: 48px;
    --text-6xl: 56px;
    
    /* Heading Sizes - Clear hierarchy */
    --text-h1: 48px;             /* 2.4rem */
    --text-h2: 36px;             /* 1.8rem */
    --text-h3: 28px;             /* 1.4rem */
    --text-h4: 24px;             /* 1.2rem */
    --text-h5: 20px;             /* 1.0rem */
    --text-h6: 18px;             /* 0.9rem */
    
    /* Line Heights - Improved readability */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.4;
    --leading-normal: 1.6;       /* Default for body */
    --leading-relaxed: 1.8;      /* For dense text */
    --leading-loose: 2.0;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    
    /* ====================================
       SPACING - 8px based system
       ==================================== */
    --space-0: 0;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-9: 72px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;
    --space-20: 160px;
    
    /* ====================================
       BORDER RADIUS
       ==================================== */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-3xl: 24px;
    --radius-full: 9999px;
    
    /* ====================================
       BORDERS
       ==================================== */
    --border-width-0: 0;
    --border-width-1: 1px;
    --border-width-2: 2px;
    --border-width-4: 4px;
    --border-width-8: 8px;
    
    /* Border Colors */
    --border-default: var(--neutral-300);
    --border-light: var(--neutral-200);
    --border-dark: var(--neutral-400);
    --border-accent: var(--accent-sage);
    
    /* ====================================
       SHADOWS - Subtle and professional
       ==================================== */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-none: none;
    
    /* Focus Shadow */
    --shadow-focus: 0 0 0 3px rgba(90, 122, 95, 0.3);
    
    /* Common RGBA Colors - Brandbook Compliant */
    --rgba-sage-light: rgba(90, 122, 95, 0.1);
    --rgba-sage-medium: rgba(90, 122, 95, 0.2);
    --rgba-sage-dark: rgba(90, 122, 95, 0.3);
    --rgba-navy-light: rgba(30, 58, 95, 0.1);
    --rgba-navy-medium: rgba(30, 58, 95, 0.2);
    --rgba-white-light: rgba(255, 255, 255, 0.1);
    --rgba-white-medium: rgba(255, 255, 255, 0.2);
    --rgba-black-light: rgba(0, 0, 0, 0.1);
    --rgba-black-medium: rgba(0, 0, 0, 0.2);
    --rgba-success-light: rgba(5, 150, 105, 0.1);
    --rgba-success-medium: rgba(5, 150, 105, 0.2);
    --rgba-warning-light: rgba(217, 119, 6, 0.1);
    --rgba-warning-medium: rgba(217, 119, 6, 0.2);
    
    /* ====================================
       TRANSITIONS
       ==================================== */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-slower: 0.5s ease;
    
    /* Transition Properties */
    --transition-all: all 0.2s ease;
    --transition-colors: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    --transition-transform: transform 0.2s ease;
    --transition-opacity: opacity 0.2s ease;
    
    /* ====================================
       Z-INDEX SCALE
       ==================================== */
    --z-base: 0;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-notification: 1080;
    
    /* ====================================
       CONTAINER WIDTHS
       ==================================== */
    --container-xs: 400px;
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    
    /* ====================================
       BREAKPOINTS (for reference in JS)
       ==================================== */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
    
    /* ====================================
       COMPONENT-SPECIFIC VARIABLES
       ==================================== */
    
    /* Buttons */
    --btn-height-sm: 40px;
    --btn-height-md: 48px;
    --btn-height-lg: 56px;      /* Default for 55+ */
    --btn-height-xl: 64px;      /* Mobile for 55+ */
    
    --btn-padding-sm: 12px 20px;
    --btn-padding-md: 16px 28px;
    --btn-padding-lg: 18px 32px;
    --btn-padding-xl: 20px 36px;
    
    /* Cards */
    --card-padding: var(--space-6);
    --card-gap: var(--space-4);
    
    /* Forms */
    --input-height: 56px;        /* Large for 55+ */
    --input-padding: var(--space-4);
    --input-border: var(--border-width-2);
    
    /* ====================================
       ACCESSIBILITY
       ==================================== */
    --focus-outline: 3px solid var(--accent-sage);
    --focus-outline-offset: 3px;
    
    /* Touch Targets - Minimum 48px for accessibility */
    --touch-target-min: 48px;
    --touch-target-recommended: 56px;  /* For 55+ */
    --touch-target-mobile: 64px;       /* Mobile for 55+ */
    
    /* ====================================
       LEGACY SUPPORT - Deprecated Variables
       ==================================== */
    --navy-primary: var(--primary-navy);
    --navy-light: var(--primary-navy-light);
    /* DEPRECATED - Use --neutral-900 directly */
    --accent-primary: var(--accent-sage);
    --accent-primary-hover: var(--accent-sage-dark);
    --sage-green: var(--accent-sage);
    --warm-cream: var(--bg-secondary);
    --warm-grey-bg: var(--bg-tertiary);
    --pure-white: var(--bg-primary);
    --text-muted: var(--neutral-700);
    --muted-blue: var(--neutral-800);
    --font-size-base: var(--text-base);
    --line-height-base: var(--leading-normal);
    
    /* ====================================
       LEGACY SUPPORT - Deprecated Variables
       ==================================== */
    --navy-primary: var(--primary-navy);
    --navy-light: var(--primary-navy-light);
    /* DEPRECATED - Use --neutral-900 directly */
    /* DEPRECATED COLORS REMOVED - Use --accent-sage and --accent-sage-light directly */
    --border-subtle: var(--neutral-300);
    --warm-grey-bg: var(--bg-tertiary);
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    --spacing-4xl: 96px;
    --spacing-5xl: 128px;
    --spacing-6xl: 192px;
    --spacing-7xl: 256px;
    --spacing-8xl: 320px;
    --spacing-9xl: 384px;
    --spacing-10xl: 448px;
    --shadow-heavy: var(--shadow-lg);
    --shadow-medium: var(--shadow-md);
    --soft-amber: var(--warning-amber);
    
    /* Legacy font sizes */
    --font-size-h1: var(--text-h1);
    --font-size-h2: var(--text-h2);
    --font-size-h3: var(--text-h3);
    --font-size-h4: var(--text-h4);
    --font-size-h5: var(--text-h5);
    --font-size-h6: var(--text-h6);
    --font-size-body: var(--text-base);
    --font-size-small: var(--text-sm);
}

/* ====================================
   RESPONSIVE ADJUSTMENTS
   ==================================== */

/* Tablets and smaller */
@media (max-width: 1024px) {
    :root {
        --text-base: 19px;
        --text-h1: 40px;
        --text-h2: 32px;
        --text-h3: 26px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --text-base: 19px; /* Reduced by only 1px from desktop 20px (within brandbook tolerance) */
        --text-h1: 36px;
        --text-h2: 28px;
        --text-h3: 24px;
        
        /* Increase touch targets on mobile */
        --btn-height-lg: 64px;
        --input-height: 64px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    :root {
        --text-base: 18px; /* Minimum acceptable for 50+ audience - 18px is within brandbook tolerance */
        --text-h1: 32px;
        --text-h2: 26px;
        --text-h3: 22px;
        
        /* Further spacing adjustments */
        --space-10: 64px;
        --space-12: 80px;
    }
}

/* ====================================
   ACCESSIBILITY PREFERENCES
   ==================================== */

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-navy: #000080;
        --neutral-900: #000000;
        --accent-sage: #2d5a30;
        --neutral-700: #333333;
        
        /* Increase border widths */
        --border-width-1: 2px;
        --border-width-2: 3px;
        --border-width-4: 5px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    :root {
        --transition-fast: 0.01ms;
        --transition-normal: 0.01ms;
        --transition-slow: 0.01ms;
        --transition-slower: 0.01ms;
    }
}

/* Dark Mode Support (if needed in future) */
/* @media (prefers-color-scheme: dark) {
    :root {
        Currently not implemented - funeral services are traditionally light themed
        This can be uncommented if dark mode is required:
        --bg-primary: #111827;
        --bg-secondary: #1f2937;
        --neutral-900: #f9fafb;
        --primary-navy: #60a5fa;
        --accent-sage: #86efac;
    }
} */

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    line-height: 1.8; /* Increased from 1.6 for better readability during emotional distress */
    color: var(--neutral-900);
    font-size: var(--text-base);
    background-color: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SECTION STANDARDIZATION === */
.section {
    padding: 100px 0; /* Increased from 80px for better visual breathing room */
}

.section-standard {
    padding: 100px 0; /* Increased for better visual hierarchy */
}

.section-large {
    padding: 120px 0; /* Increased for better visual hierarchy */
}

.section-medium {
    padding: 100px 0; /* Increased from 80px for better visual hierarchy */
}

.section-small {
    padding: 60px 0; /* Increased for better visual hierarchy */
}

/* === ENHANCED VISUAL HIERARCHY === */
.section-spacing-large {
    margin: 60px 0; /* Increased from 40px for better visual separation */
}

.section-spacing-medium {
    margin: 40px 0; /* Medium spacing between related sections */
}

.section-spacing-small {
    margin: 20px 0; /* Small spacing between minor elements */
}

/* === COLOR ACCENTS FOR IMPORTANT ELEMENTS === */
.highlight-important {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--success-green) 100%);
    color: var(--pure-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--rgba-success-medium);
    border-left: 4px solid var(--success-green);
}

.highlight-warning {
    background: linear-gradient(135deg, var(--soft-amber) 0%, #f59e0b 100%);
    color: var(--pure-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--rgba-warning-medium);
    border-left: 4px solid #f59e0b;
}

.highlight-info {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-primary) 100%);
    color: var(--pure-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--rgba-navy-medium);
    border-left: 4px solid var(--navy-primary);
}

/* === ENHANCED FOCUS STATES === */
.cta-primary:focus,
.cta-secondary:focus,
.cta-button:focus,
.plan-button:focus {
    outline: 3px solid var(--success-green);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.3);
}

/* === TEXT READABILITY OPTIMIZATION === */
.text-content {
    max-width: 65ch; /* Optimal line length for readability */
    line-height: 1.6;
    margin: 0 auto;
}

.text-content-wide {
    max-width: 75ch; /* Slightly wider for less dense content */
    line-height: 1.6;
    margin: 0 auto;
}

.text-content-narrow {
    max-width: 55ch; /* Narrower for dense technical content */
    line-height: 1.6;
    margin: 0 auto;
}

/* === PARAGRAPH OPTIMIZATION === */
p {
    max-width: 65ch; /* Optimal line length for paragraphs */
    line-height: 1.8; /* Increased from 1.6 for better readability during emotional distress */
    margin-bottom: 1.75rem; /* Increased from 1rem for better spacing */
}

.paragraph-wide {
    max-width: 75ch; /* For less dense paragraphs */
    line-height: 1.6;
}

.paragraph-narrow {
    max-width: 55ch; /* For technical or dense paragraphs */
    line-height: 1.6;
}

/* === SECTION CONTENT OPTIMIZATION === */
.section-content {
    max-width: 65ch;
    line-height: 1.6;
    margin: 0 auto;
}

.section-content-wide {
    max-width: 75ch;
    line-height: 1.6;
    margin: 0 auto;
}

.section-content-narrow {
    max-width: 55ch;
    line-height: 1.6;
    margin: 0 auto;
}

/* === BUTTON STANDARDIZATION === */
.cta-primary {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #ffffff;
    padding: 20px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    touch-action: manipulation;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
    border: 2px solid transparent; /* Enhanced focus state */
}

.cta-secondary {
    background: transparent;
    color: var(--accent-sage);
    padding: 18px 32px; /* Standardized padding */
    border: 2px solid var(--accent-sage);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    touch-action: manipulation;
    box-shadow: 0 2px 8px rgba(125, 90, 80, 0.2); /* Enhanced contrast */
}

.cta-button {
    background: var(--accent-sage);
    color: var(--pure-white);
    padding: 18px 32px; /* Standardized padding */
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    touch-action: manipulation;
}

.plan-button {
    background: var(--accent-sage);
    color: var(--pure-white);
    padding: 18px 32px; /* Standardized padding */
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 48px;
    touch-action: manipulation;
}

.plan-button.secondary {
    background: transparent;
    color: var(--accent-sage);
    border: 2px solid var(--accent-sage);
}

/* Button hover states */
.cta-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
    border-color: transparent;
}

.cta-button:hover,
.plan-button:hover {
    background: var(--accent-sage-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 90, 80, 0.4);
    border-color: var(--accent-sage-light);
}

.cta-secondary:hover,
.plan-button.secondary:hover {
    background: var(--accent-sage);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 90, 80, 0.4);
    border-color: var(--accent-sage);
}

/* Button focus states */
.cta-primary:focus,
.cta-secondary:focus,
.cta-button:focus,
.plan-button:focus {
    outline: 2px solid var(--focus-outline);
    outline-offset: 2px;
}

/* Button disabled states */
.cta-primary:disabled,
.cta-button:disabled,
.plan-button:disabled {
    background: #95989d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* === TYPOGRAPHY HIERARCHY === */
h1 {
    font-size: var(--font-size-h1);
    color: var(--navy-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    color: var(--navy-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: var(--font-size-h3);
    color: var(--navy-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: var(--font-size-h4);
    color: var(--navy-primary);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: var(--font-size-h5);
    color: var(--navy-primary);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: var(--font-size-h6);
    color: var(--navy-primary);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.clear-highlight {
    color: var(--accent-sage);
    font-weight: 700;
}

/* === HEADER === */
.site-header {
    background: var(--pure-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

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

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.header-guarantee {
    font-size: 1rem;
    color: var(--accent-sage);
    font-weight: 600;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    color: var(--pure-white);
    padding: 100px 20px 80px; /* Hero section - exception for visual impact */
    min-height: 700px;
    display: flex;
    align-items: center;
}

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

.hero-content {
    text-align: left;
}

.hero-headline {
    font-size: 3.5rem; /* Увеличиваем для лучшей видимости */
    font-weight: 600;
    margin-bottom: 16px; /* Унифицированный отступ */
    line-height: 1.2;
    color: var(--pure-white);
}

/* Regional page headline - smaller for longer text */
.regional-hero .hero-headline {
    font-size: 2.25rem; /* 36px - same as main page for consistency */
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 1.25rem; /* 20px - consistent with main page */
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8; /* Better readability */
    max-width: 65ch; /* Optimal line length for readability */
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
}


/* === HERO PHONE SECTION === */
.hero-phone-section {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-phone-text {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pure-white);
    text-decoration: none;
    background: var(--accent-sage);
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(125, 90, 80, 0.3);
}

.hero-phone-number:hover {
    background: var(--accent-sage-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(125, 90, 80, 0.4);
}

/* === HERO MINIMAL VERSION === */
.hero-minimal {
    background: linear-gradient(135deg, #2d5a8a 0%, #1e3a5f 100%);
    color: var(--pure-white);
    padding: 60px 20px 50px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* Hero Background Image */
.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><defs><pattern id="subtle-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="25" cy="25" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="1200" height="800" fill="url(%23subtle-pattern)"/></svg>');
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.hero-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-minimal .hero-container {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-minimal .hero-content {
    max-width: 500px;
}

/* Minimal Headline - NO yellow highlight */
.hero-headline-minimal {
    font-size: 2.25rem; /* 36px */
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.hero-headline-minimal strong {
    font-weight: 700;
    color: #ffffff; /* White, not yellow */
}

/* Minimal Subheadline */
.hero-subheadline-minimal {
    font-size: 1.25rem; /* 20px */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px;
    font-weight: 400;
}

/* Minimal Description */
.hero-description-minimal {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Hide elements that are removed in minimal version */
.hero-minimal .hero-empathy-badge {
    display: none;
}

.hero-minimal .hero-empathy-box {
    display: none;
}

.hero-minimal .hero-cta-group {
    display: none;
}

.hero-minimal .hero-trust-indicators {
    display: none;
}

/* Responsive Styles for Minimal Hero */
@media (max-width: 768px) {
    .hero-minimal {
        padding: 40px 16px 35px;
    }
    
    .hero-minimal .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-headline-minimal {
        font-size: 1.875rem; /* 30px */
    }
    
    .hero-subheadline-minimal {
        font-size: 1.125rem; /* 18px */
    }
    
    .hero-description-minimal {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-headline-minimal {
        font-size: 1.625rem; /* 26px */
    }
    
    .hero-subheadline-minimal {
        font-size: 1rem;
    }
}

/* Subtle background pattern (опционально) */
.hero-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-improved .hero-container {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-improved .hero-content {
    max-width: 800px;
}

/* Empathy Badge */
.hero-empathy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 8px 16px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.empathy-icon {
    width: 18px;
    height: 18px;
    color: #fca5a5; /* Soft pink-red for heart */
    flex-shrink: 0;
}

/* Региональная метка */
.regional-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 12px;
    color: #10b981;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.location-icon {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* Improved Headline */
.hero-headline-improved {
    font-size: 2.25rem; /* было 2.75rem (44px), теперь 36px */
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    max-width: 65ch;
}

.highlight-warm {
    color: #fbbf24;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Subtle underline animation (опционально) */
.highlight-warm::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    opacity: 0.5;
    border-radius: 2px;
}

/* Improved Subheadline */
.hero-subheadline-improved {
    font-size: 1.25rem; /* 20px */
    line-height: 1.8; /* увеличено с 1.6 */
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 65ch;
}

/* Empathy Box */
.hero-empathy-box {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 65ch;
}

.hero-empathy-box p {
    margin: 0;
    color: #ffffff;
    line-height: 1.8; /* увеличено с 1.7 для лучшей читаемости в стрессе */
    font-size: 1rem;
}

.hero-empathy-box strong {
    color: #fbbf24;
    font-weight: 600;
}

/* Региональный вариант */
.regional-empathy {
    border-left-color: #10b981;
}

.regional-empathy strong {
    color: #10b981;
}

/* Benefits List */
/* Benefits List - supports both SVG icons and text checkmarks */
.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    max-width: 65ch;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Items without SVG icons (text-only with checkmark) */
.benefit-item:not(:has(.benefit-icon)) {
    gap: 0;
}

.benefit-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
}

.benefit-item span {
    flex: 1;
    color: #ffffff;
}

.benefit-item span strong {
    color: #ffffff;
    font-weight: 600;
}

/* Региональная статистика (новый элемент) */
.regional-stats-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 32px 0;
    backdrop-filter: blur(10px);
    max-width: 65ch;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-number {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: #10b981;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8125rem; /* 13px */
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 16px;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    max-width: 400px;
}

/* Primary CTA - новый зеленый цвет */
.cta-primary-new {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #ffffff;
    padding: 18px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 14px rgba(4, 120, 87, 0.35),
        0 0 0 0 rgba(4, 120, 87, 0.5);
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.cta-primary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary-new:hover::before {
    left: 100%;
}

.cta-primary-new:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(4, 120, 87, 0.45),
        0 0 0 4px rgba(4, 120, 87, 0.2);
}

.cta-primary-new:focus {
    outline: none;
    box-shadow: 
        0 6px 20px rgba(4, 120, 87, 0.45),
        0 0 0 4px rgba(251, 191, 36, 0.5);
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cta-subtext {
    font-size: 0.8125rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.2;
}

/* White text for cta-subtext on dark backgrounds */
.hero .cta-subtext,
.hero-minimal .cta-subtext,
.regional-hero .cta-subtext,
.final-cta .cta-subtext {
    color: #ffffff;
    opacity: 0.9;
}

/* White text for cta-secondary on dark backgrounds */
.final-cta .cta-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Secondary CTA - outline стиль */
.cta-secondary-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    padding: 18px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 48px;
}

.cta-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-secondary-new:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.3);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 65ch;
}

.hero-trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Responsive Styles for Improved Hero */
@media (max-width: 768px) {
    .hero-improved {
        padding: 40px 16px 35px;
    }
    
    .hero-improved .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-headline-improved {
        font-size: 1.875rem; /* было 2.5rem, теперь 30px */
        margin-bottom: 16px;
    }
    
    .hero-subheadline-improved {
        font-size: 1.125rem; /* 18px */
        margin-bottom: 24px;
    }
    
    .hero-empathy-badge {
        font-size: 0.8125rem;
        padding: 6px 12px;
    }
    
    .regional-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .hero-empathy-box {
        padding: 16px 18px;
        margin-bottom: 24px;
    }
    
    .hero-empathy-box p {
        font-size: 0.9375rem;
    }
    
    .benefit-item {
        font-size: 0.9375rem;
        padding: 8px 0;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
    }
    
    .cta-primary-new,
    .cta-secondary-new {
        width: 100%;
        padding: 16px 24px;
        min-height: 52px; /* увеличено для мобильных */
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-subtext {
        font-size: 0.75rem;
    }
    
    .regional-stats-highlight {
        flex-direction: column;
        gap: 20px;
        padding: 20px 16px;
    }
    
    .stat-divider {
        width: 60%;
        height: 1px;
        margin: 0;
    }
    
    .hero-trust-indicators {
        gap: 16px;
        padding-top: 16px;
        justify-content: center;
    }
    
    .trust-item {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .hero-headline-improved {
        font-size: 1.625rem; /* 26px */
    }
    
    .hero-subheadline-improved {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

.hero-empathetic-text p {
    color: var(--pure-white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    max-width: 65ch;
    margin: 0 auto;
}

/* === HERO TRUST BADGE === */
.hero-trust-badge {
    margin: 20px 0; /* Унифицированный отступ */
    text-align: left;
}

.trust-rating {
    display: inline-block;
    background: var(--success-green);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* === SHORT DISCLAIMER === */
.short-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    border: 1px solid rgba(125, 90, 80, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.disclaimer-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    opacity: 1;
    color: var(--accent-sage);
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--neutral-900);
    opacity: 1;
    line-height: 1.4;
    font-weight: 500;
}

.disclaimer-link {
    color: var(--accent-sage);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.disclaimer-link:hover {
    opacity: 0.8;
}

.hero-proof {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pure-white);
    text-align: left;
    margin: 30px 0;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

/* === INFORMATION SERVICE === */
.information-service {
    background: var(--pure-white);
    padding: 44px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: auto;
}

.information-service .micro-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    padding: 5px 0;
    line-height: 1.4;
}

.information-headline {
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 16px; /* Унифицированный отступ */
}

.information-subheadline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.information-disclaimer {
    background: rgba(85, 107, 122, 0.06);
    border-left: 3px solid var(--muted-blue);
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--neutral-900);
    line-height: 1.6;
}

.information-form {
    width: 100%;
}

/* === FORM ELEMENTS === */
.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 6px;
    font-size: 1rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-subtle);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: inherit;
    background-color: var(--pure-white);
    color: var(--neutral-900);
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-sage);
    outline: none;
    box-shadow: 0 0 0 3px rgba(125, 90, 80, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.form-help {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* === MESSAGE BOX === */
.message-box {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    font-size: 1rem;
    animation: fadeIn 0.5s ease-in-out;
}

.message-box.error {
    background-color: rgba(139, 92, 88, 0.1);
    color: #8b5c58;
    border: 1px solid #8b5c58;
}

.message-box.success {
    background-color: rgba(90, 122, 95, 0.1);
    color: var(--sage-green);
    border: 1px solid var(--sage-green);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === ESTIMATE PREVIEW === */
.estimate-preview {
    background: var(--warm-grey-bg);
    padding: 16px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 4px solid var(--accent-sage);
}

#email-form-container {
    display: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    padding-bottom: 20px;
}

#email-form-container.visible {
    display: block;
    opacity: 1;
    max-height: 600px;
    overflow: visible;
}

/* === CALCULATING ANIMATION === */
.calculating-animation {
    text-align: center;
    padding: 20px 0;
    color: var(--navy-primary);
    font-weight: 600;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--accent-sage);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* REGIONAL HERO SECTION */
.regional-hero {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    color: var(--pure-white);
    padding: 100px 20px 80px;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.regional-hero .hero-container {
    align-items: start;
}

.regional-hero .hero-content {
    padding-top: 0;
}

.regional-hero .hero-headline {
    margin-top: 0;
}


/* Regional hero paragraphs use hero-subheadline class, no separate style needed */

/* REGIONAL STATISTICS */
.regional-stats {
    background: var(--warm-grey-bg);
    padding: 80px 0; /* Standardized padding */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    background: var(--pure-white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-subtle);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* === UK-WIDE STATISTICS SECTION === */
.uk-statistics-section {
    background: var(--warm-grey-bg);
    padding: 80px 0;
}

.uk-statistics-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.uk-statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.uk-stat-item {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uk-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.uk-stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.uk-stat-label {
    font-size: 1rem;
    color: var(--neutral-700);
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .uk-statistics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .uk-stat-item {
        padding: 32px 24px;
    }
    
    .uk-stat-number {
        font-size: 2.25rem;
    }
}

/* REGIONAL CALCULATOR */
.regional-calculator {
    background: var(--pure-white);
    padding: 80px 0; /* Standardized padding */
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}




/* REGIONAL COMPARISON */
.regional-comparison {
    background: var(--warm-grey-bg);
    padding: 80px 0; /* Standardized padding */
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.comparison-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-header {
    background: var(--navy-primary);
    color: var(--pure-white);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-weight: 600;
}

.comparison-header > div {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-header > div:last-child {
    border-right: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

.comparison-row > div:last-child {
    border-right: none;
}

.comparison-row:nth-child(even) {
    background: var(--warm-grey-bg);
}

.region-name {
    font-weight: 600;
    color: var(--navy-primary);
}

.cost-value {
    font-weight: 600;
    color: var(--neutral-900);
}

.trend-up {
    color: var(--success-green);
}

.trend-down {
    color: var(--error-red);
}

.trend-stable {
    color: var(--text-muted);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .regional-hero {
        padding: 80px 20px 60px;
        min-height: 500px;
    }
    
    
    .regional-hero p {
        font-size: 1.1rem; /* Унифицированный мобильный размер */
    }
    
    .regional-stats {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .regional-calculator {
        padding: 40px 0;
    }
    
    .information-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .regional-comparison {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    
    .information-headline {
        font-size: 1.6rem;
    }
    
    .information-subheadline {
        font-size: 1rem;
    }
    
    .information-form {
        padding: 20px;
    }
    
    .comparison-title {
        font-size: 1.8rem;
    }
}

/* === EMOTIONAL HOOK MOBILE STYLES === */
@media (max-width: 480px) {
    .emotional-hook h3 {
        font-size: 1.5rem;
    }
    
    .emotional-hook p {
        font-size: 1rem;
    }
}

/* === COMPLIMENTARY SECTION === */
.complimentary-section {
    background: var(--warm-grey-bg);
    padding: 100px 0; /* Enhanced visual hierarchy */
    margin: 40px 0; /* Additional spacing */
}

.complimentary-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 40px;
}

.complimentary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.complimentary-item {
    background: var(--pure-white);
    padding: 32px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--sage-green);
    text-align: center;
    transition: transform 0.3s ease;
}

.complimentary-item:hover {
    transform: translateY(-5px);
}

.complimentary-item h3 {
    color: var(--navy-primary);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.3rem;
}

.complimentary-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* === SERVICE DEFINITION SECTION === */
.service-definition-section {
    background: var(--bg-primary, #ffffff);
    padding: 80px 0;
}

.service-definition-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.service-definition-title {
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
    text-align: center;
}

.service-definition-subtitle {
    font-size: var(--text-base, 20px);
    color: var(--neutral-700, #4a5568);
    max-width: 65ch;
    margin: 0 auto 50px;
    line-height: var(--leading-normal, 1.6);
}

.service-definition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
    justify-items: center;
}

.service-definition-item {
    background: var(--bg-primary, #ffffff);
    padding: 30px 20px;
    border-radius: var(--radius-xl, 12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--neutral-300, #e2e8f0);
    text-align: left;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
}

.service-definition-item:hover {
    border-color: var(--accent-sage, #5a7a5f);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.service-definition-item h3 {
    color: var(--primary-navy, #1e3a5f);
    font-size: var(--text-h4, 24px);
    font-weight: var(--font-semibold, 600);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
}

.service-definition-item p {
    color: var(--neutral-700, #4a5568);
    font-size: var(--text-base, 20px);
    line-height: var(--leading-normal, 1.6);
    margin: 0;
}

/* === REGIONAL PROBLEM STATS === */
/* Duplicate .regional-stats removed - using main definition above */

.regional-stats .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.regional-stats .section-title {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.regional-stats .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 65ch; /* Optimal line length for readability */
    margin: 0 auto;
}

.regional-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === REGIONAL PROBLEMS SECTION === */
.regional-problems {
    background: var(--pure-white);
    padding: 80px 0; /* Standardized padding */
}

.regional-problems .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.regional-problems .section-title {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.regional-problems .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 65ch; /* Optimal line length for readability */
    margin: 0 auto;
}

.regional-problems .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

/* === УНИФИЦИРОВАННОЕ ВЫРАВНИВАНИЕ РЕГИОНАЛЬНЫХ СЕКЦИЙ === */
.regional-stats .section-header,
.regional-problems .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--warm-grey-bg);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(30, 58, 138, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: rgba(30, 58, 138, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-sage);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* === HOW WE CALCULATE SECTION === */
.how-it-works {
    background: var(--warm-grey-bg);
    padding: 80px 0; /* Standardized padding */
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works .section-title {
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
}

.how-it-works .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 75ch; /* Slightly wider for process descriptions */
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-card {
    background: var(--pure-white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-sage);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 55ch; /* Optimal for step descriptions */
}

/* === BRIGHTON CASE STUDY === */
.examples-section {
    background: var(--pure-white);
    padding: 80px 0; /* Standardized padding */
}

.examples-section .section-title {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    background: var(--navy-primary);
    color: var(--pure-white);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-weight: 600;
}

.comparison-header > div {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.comparison-header > div:last-child {
    border-right: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

.comparison-row > div:last-child {
    border-right: none;
}

.comparison-row:nth-child(even) {
    background: var(--warm-grey-bg);
}

.feature {
    font-weight: 600;
    color: var(--navy-primary);
}

/* === DETAILED GUIDANCE SECTION === */
.detailed-guidance-section {
    background: var(--pure-white);
    padding: 80px 0; /* Standardized padding */
}

.detailed-guidance-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 40px;
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.guidance-item {
    background: var(--warm-grey-bg);
    padding: 32px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-sage);
}

.guidance-item h3 {
    color: var(--navy-primary);
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.3rem;
}

.guidance-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 16px;
}

.guidance-item ul {
    list-style: none;
    padding: 0;
}

.guidance-item li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.5;
}

.guidance-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: bold;
}

/* === VALUE SECTION === */
.value-section {
    background: var(--warm-grey-bg);
    padding: 80px 0; /* Standardized padding */
}

.value-section h2 {
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    text-align: center;
    margin-bottom: 40px;
    line-height: var(--leading-tight, 1.25);
}

.plans-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.plan-card {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-subtle);
    text-align: center;
    position: relative;
}

.plan-card.recommended {
    border: 2px solid var(--accent-sage);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-sage);
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-sage);
    margin-bottom: 20px;
}

.plan-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: var(--neutral-900);
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: 600;
}

.plan-features li.limited {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-features li.limited:before {
    content: "✗";
    color: var(--error-red);
}

.plan-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.plan-button.primary {
    background: var(--accent-sage);
    color: var(--pure-white);
}

.plan-button.primary:hover {
    background: var(--accent-sage-light);
    transform: translateY(-2px);
}

.plan-button.secondary {
    background: var(--navy-primary);
    color: var(--pure-white);
}

.plan-button.secondary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

/* === CHOOSE YOUR AREA SECTION === */
.choose-area-section {
    background: var(--bg-secondary, #f7fafc);
    padding: 80px 0;
}

.choose-area-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.choose-area-section .section-title {
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
}

.choose-area-section .section-subtitle {
    font-size: var(--text-base, 20px);
    color: var(--neutral-700, #4a5568);
    max-width: 65ch;
    margin: 0 auto;
    line-height: var(--leading-normal, 1.6);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

.region-card {
    background: var(--bg-primary, #ffffff);
    padding: 40px 30px;
    border-radius: var(--radius-xl, 12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--neutral-300, #e2e8f0);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.region-card:hover {
    border-color: var(--accent-sage, #5a7a5f);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.region-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.region-card.coming-soon:hover {
    transform: none;
    border-color: var(--neutral-300, #e2e8f0);
}

.region-name {
    font-size: var(--text-h3, 28px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 12px;
    line-height: var(--leading-tight, 1.25);
}

.region-status {
    font-size: var(--text-base, 20px);
    color: var(--neutral-700, #4a5568);
    font-weight: var(--font-medium, 500);
    line-height: var(--leading-normal, 1.6);
}

.region-status.available {
    color: var(--accent-sage, #5a7a5f);
    font-weight: var(--font-semibold, 600);
}

.guarantee-box {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-box h3 {
    color: var(--navy-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.guarantee-box p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* === COMBINED STATS AND HOW IT WORKS SECTION === */
.combined-stats-how-it-works {
    background: var(--warm-grey-bg);
    padding: 80px 0; /* Standardized padding */
}

.combined-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-side {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-subtle);
}

.how-it-works-side {
    background: var(--pure-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--border-subtle);
}

.stats-side .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 30px;
    text-align: center;
}

.how-it-works-side .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 16px;
    text-align: center;
}

.how-it-works-side .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.stats-side .stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stats-side .stat-card {
    background: var(--warm-grey-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.stats-side .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-sage);
    margin-bottom: 8px;
}

.stats-side .stat-label {
    font-size: 1rem;
    color: var(--navy-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.stats-side .stat-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.how-it-works-side .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.how-it-works-side .step-card {
    background: var(--warm-grey-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.how-it-works-side .step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-sage);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px auto;
}

.how-it-works-side .step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.how-it-works-side .step-card p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   COMBINED VALUE & OPTIMIZATION SECTION
   Free vs Premium + 5-Factor System
   Optimized for British audience 55+
   ============================================ */

/* === MAIN COMBINED SECTION === */
.combined-value-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 3px solid var(--primary-navy);
    border-bottom: 3px solid var(--primary-navy);
}

.combined-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SECTION HEADER === */
.combined-header {
    text-align: center;
    margin-bottom: 50px;
}

.combined-title {
    font-size: 2.5rem; /* 40px - крупный для 55+ */
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.combined-subtitle {
    font-size: 1.3rem; /* 20px - увеличенный размер */
    color: var(--neutral-700);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* === PLANS COMPARISON === */
.plans-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    background: var(--bg-primary);
    border: 2px solid var(--neutral-300);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.plan-card.recommended {
    border: 3px solid var(--accent-sage);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-sage);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-sage);
    margin-bottom: 20px;
}

.plan-description {
    font-size: 1.1rem;
    color: var(--neutral-700);
    line-height: 1.5;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    padding-left: 25px;
    font-size: 1rem;
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-200);
    position: relative;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-sage);
    font-weight: 600;
}

.plan-features li.limited {
    color: var(--neutral-500);
    text-decoration: line-through;
}

.plan-features li.limited:before {
    content: "✗";
    color: var(--error-red);
}

.plan-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.plan-button.primary {
    background: var(--accent-sage);
    color: white;
    border: 2px solid var(--accent-sage);
}

.plan-button.primary:hover {
    background: var(--accent-sage-light);
    border-color: var(--accent-sage-light);
}

.plan-button.secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.plan-button.secondary:hover {
    background: var(--primary-navy);
    color: white;
}

/* === TRANSITION TO OPTIMIZATION === */
.optimization-transition {
    text-align: center;
    margin: 50px 0;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 2px solid var(--accent-sage);
}

.optimization-transition-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.optimization-transition-text {
    font-size: 1.2rem;
    color: var(--neutral-700);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* === OPTIMIZATION STRATEGIES === */
.optimization-strategies {
    margin-top: 40px;
}

.optimization-strategies-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 30px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.strategy-block {
    background: var(--bg-primary);
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    padding: 25px;
    position: relative;
}

.strategy-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: var(--primary-navy);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.strategy-title {
    font-size: 1.3rem; /* 20px - крупный заголовок */
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
    margin-top: 8px;
}

.strategy-savings {
    background: var(--success-green-pale);
    color: var(--success-green);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid var(--success-green-light);
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.strategy-column {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 5px;
    border-left: 3px solid var(--accent-sage);
}

.strategy-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.strategy-column-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--neutral-700);
}

.strategy-example {
    background: var(--info-blue-pale);
    border: 1px solid var(--info-blue-light);
    border-radius: 5px;
    padding: 12px;
    margin-top: 12px;
}

.strategy-example-title {
    font-weight: 600;
    color: var(--info-blue);
    margin-bottom: 6px;
    font-size: 1rem;
}

.strategy-example-text {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* === COMBINED STRATEGY POWER === */
.combined-power {
    background: var(--bg-primary);
    border: 3px solid var(--accent-sage);
    border-radius: 10px;
    padding: 35px;
    text-align: center;
    margin-top: 35px;
}

.combined-power-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 18px;
}

.combined-power-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.savings-approaches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.savings-approach {
    background: var(--bg-secondary);
    border: 2px solid var(--neutral-300);
    border-radius: 8px;
    padding: 18px;
}

.savings-approach-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.savings-approach-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--success-green);
    margin-bottom: 6px;
}

.savings-approach-description {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.4;
}

/* === GUARANTEE SECTION === */
.guarantee-section {
    background: var(--bg-primary);
    border: 2px solid var(--neutral-300);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.guarantee-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--neutral-700);
    line-height: 1.5;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .service-definition-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .regional-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .regional-problems .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plans-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .region-card {
        min-height: 150px;
        padding: var(--space-4, 32px) var(--space-3, 24px);
    }
    
    .region-name {
        font-size: var(--text-h4, 24px);
    }
    
    .region-status {
        font-size: var(--text-base, 20px);
    }
    
    .plan-card.recommended {
        transform: none;
    }
    
    /* Combined Value Section Mobile */
    .combined-container {
        padding: 0 15px;
    }
    
    .combined-title {
        font-size: 2rem; /* 32px на мобильных */
    }
    
    .combined-subtitle {
        font-size: 1.1rem; /* 18px на мобильных */
    }
    
    .plans-comparison {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .strategy-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .strategy-block {
        padding: 20px 15px;
    }
    
    .strategy-number {
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .combined-power {
        padding: 25px 15px;
    }
    
    .savings-approaches {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-header,
    .comparison-row {
        display: block;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        display: block;
        width: 100%;
        padding: 8px 0;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .comparison-header > div:before,
    .comparison-row > div:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--navy-primary);
        display: inline-block;
        width: 120px;
    }
    
    .comparison-header > div:first-child:before,
    .comparison-row > div:first-child:before {
        content: "";
        display: none;
    }
    
    /* Combined section mobile styles */
    .combined-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-side,
    .how-it-works-side {
        padding: 30px 20px;
    }
    
    .stats-side .section-title,
    .how-it-works-side .section-title {
        font-size: 1.5rem;
    }
}

.estimate-title {
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 6px;
    font-size: 1rem;
}

.estimate-range {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage-green);
    margin-bottom: 4px;
}

.estimate-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.data-freshness {
    background: rgba(90, 122, 95, 0.1);
    padding: 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--sage-green);
    margin-bottom: 8px;
}

.unlock-notice {
    background: rgba(125, 90, 80, 0.1);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--accent-sage);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
    color: var(--neutral-900);
    font-weight: 500;
}

/* === BUTTONS === */
/* Button styles are now standardized in the BUTTON STANDARDIZATION section above */

/* === TRUST INDICATORS === */
.trust-indicators {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.trust-item {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 18px;
}


/* === INFO NOTES === */
.info-note {
    background: rgba(107, 114, 128, 0.08);
    border-left: 3px solid var(--muted-blue);
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--neutral-900);
    line-height: 1.6;
}

/* === SECTIONS === */
.report-section {
    padding: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
}

.section-subtitle {
    font-size: var(--text-base, 20px);
    color: var(--neutral-700, #4a5568);
    max-width: 65ch;
    margin: 0 auto;
    line-height: var(--leading-normal, 1.6);
}

/* === HOW IT WORKS === */
.how-it-works {
    background: var(--pure-white);
    padding: 80px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: var(--warm-grey-bg);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    background: var(--accent-sage);
    color: var(--pure-white);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 14px;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* === REGIONAL STATS === */
/* Duplicate styles removed - using main regional-stats styles above */

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 12px;
    display: block;
    line-height: 1.2;
}

.stat-label {
    color: var(--muted-blue);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: auto;
}

.emotional-hook {
    text-align: center;
    margin-top: 50px;
    padding: 44px;
    background: rgba(30, 58, 95, 0.06);
    border-radius: 15px;
}

.emotional-hook h3 {
    font-size: 2rem;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.emotional-hook p {
    font-size: 1.2rem;
    color: var(--neutral-900);
    line-height: 1.5;
}


/* Center alignment for testimonials and FAQ sections */
/* === УНИФИЦИРОВАННОЕ ВЫРАВНИВАНИЕ ЗАГОЛОВКОВ === */
.testimonials .section-title,
.faq-section .section-title {
    text-align: center;
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
}

.comparison-table {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    background: var(--navy-primary);
    color: var(--pure-white);
    font-weight: 600;
}

.comparison-header > div {
    padding: 24px;
    text-align: center;
    font-size: 1rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr;
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-row > div {
    padding: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature {
    background: var(--warm-grey-bg);
    font-weight: 600;
    color: var(--navy-primary);
}


/* === TESTIMONIALS === */
.testimonials {
    background: var(--warm-grey-bg);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-sage);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 0;
    color: var(--neutral-900);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 65ch; /* Optimal for testimonials */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--navy-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--neutral-200);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-sage-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-sage-light) 0%, var(--accent-sage) 100%);
    color: var(--pure-white);
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author-info strong {
    font-weight: 600;
    color: var(--navy-primary);
}

.testimonial-author-info span {
    font-size: 0.875rem;
    color: var(--neutral-600);
    font-weight: 400;
}

.testimonial-strategies {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--neutral-300);
    font-size: 0.9375rem;
    color: var(--neutral-700);
    line-height: 1.6;
}

.testimonial-strategies strong {
    font-weight: 600;
    color: var(--navy-primary);
}

.testimonial-outcome {
    background: var(--sage-green);
    color: var(--pure-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

/* === LOCAL LINKS SECTION === */
.local-links {
    background: var(--warm-cream);
    padding: 80px 20px;
}

.local-links h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 30px;
}

.region-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    list-style: none;
    margin: 40px auto;
    max-width: 1000px;
}

.region-links li {
    background: var(--pure-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.region-links li.available:hover {
    transform: translateY(-5px);
}

.region-links li.coming-soon {
    background: #f8f9fa;
    opacity: 0.6;
    cursor: default;
}

.region-links a {
    display: block;
    padding: 24px;
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
}

.region-links a:hover {
    color: var(--accent-sage);
}

.region-links li.coming-soon span {
    display: block;
    padding: 24px;
    color: #6c757d;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    font-size: 1rem;
}

.region-links li.coming-soon small {
    font-size: 0.85rem;
    color: #adb5bd;
    font-weight: 400;
    font-style: italic;
    margin-top: 8px;
    display: block;
}

.muted {
    color: var(--muted-blue);
    text-align: center;
    font-size: 1rem;
    margin-top: 30px;
}

/* === FAQ SECTION === */
.faq-section {
    background: var(--warm-grey-bg);
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background-color: rgba(30, 58, 95, 0.03);
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent-sage);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 800px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-answer li strong {
    color: var(--primary-navy);
    font-weight: var(--font-semibold);
}

.faq-answer p strong {
    color: var(--primary-navy);
    font-weight: var(--font-semibold);
}

/* Statistics Disclaimer */
.statistics-disclaimer {
    text-align: center;
    margin-top: 20px;
    color: var(--neutral-700);
    font-size: 1rem;
}

/* === COMPLIANCE SECTION === */
.compliance-section {
    background: var(--warm-grey-bg);
    padding: 80px 0; /* Standardized padding */
}

.compliance-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--navy-primary);
    text-align: center;
    margin-bottom: 40px;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.disclaimer-item {
    background: var(--pure-white);
    padding: 24px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-sage);
    text-align: center;
}

.disclaimer-item h4 {
    color: var(--navy-primary);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.disclaimer-item p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* === ABOUT SECTION === */
.about-section {
    background: var(--pure-white);
    padding: 80px 20px;
    border-top: 1px solid var(--border-subtle);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section .section-title {
    font-size: var(--text-h2, 36px);
    font-weight: var(--font-semibold, 600);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    line-height: var(--leading-tight, 1.25);
}

.about-tagline {
    font-size: var(--text-base, 20px);
    color: var(--accent-sage, #5a7a5f);
    font-weight: var(--font-medium, 500);
    margin-top: 12px;
    line-height: var(--leading-normal, 1.6);
}

.story-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--neutral-300, #e2e8f0);
}

.story-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.story-block h3 {
    color: var(--primary-navy, #1e3a5f);
    font-size: var(--text-h3, 28px);
    font-weight: var(--font-semibold, 600);
    margin-bottom: 24px;
    line-height: var(--leading-tight, 1.25);
}

.story-block p {
    color: var(--neutral-900, #1a202c);
    line-height: var(--leading-normal, 1.6);
    font-size: var(--text-base, 20px);
    margin-bottom: 20px;
}

.mission-block {
    background: var(--bg-secondary, #f7fafc);
    padding: 40px;
    border-radius: var(--radius-xl, 12px);
    border-left: 4px solid var(--accent-sage, #5a7a5f);
}

.independence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.independence-item {
    background: var(--warm-grey-bg);
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid var(--muted-blue);
}

.independence-item h4 {
    color: var(--primary-navy, #1e3a5f);
    font-size: var(--text-lg, 20px);
    font-weight: var(--font-semibold, 600);
    margin-bottom: 12px;
    line-height: var(--leading-tight, 1.25);
}

.independence-item p {
    color: var(--neutral-700, #4a5568);
    font-size: var(--text-base, 20px);
    line-height: var(--leading-normal, 1.6);
    margin: 0;
}

.commitment-block {
    background: var(--bg-secondary, #f7fafc);
    padding: 40px;
    border-radius: var(--radius-xl, 12px);
}

.contact-block {
    background: var(--warm-grey-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-block a {
    color: var(--accent-sage);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-block a:hover {
    color: var(--accent-sage-light);
    text-decoration: underline;
}

/* === FINAL CTA === */
.final-cta {
    background: var(--navy-primary);
    color: var(--pure-white);
    padding: 80px 20px;
    text-align: center;
}

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

.cta-headline {
    font-size: var(--font-size-h3); /* Используем H3 размер - должен быть меньше hero */
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.cta-subheadline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

/* CTA button styles are now standardized in the BUTTON STANDARDIZATION section above */

.guarantee-text {
    font-size: 1rem;
    opacity: 0.8;
}

.final-cta .guarantee-text {
    color: var(--pure-white);
    opacity: 0.95;
}

/* === FOOTER === */
.site-footer {
    background: var(--neutral-900);
    color: var(--pure-white);
    padding: 60px 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pure-white);
    opacity: 0.9;
    margin-bottom: 12px;
    text-align: left;
}

.footer-section p a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section p a:hover {
    opacity: 1;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.coming-soon {
    color: var(--pure-white);
    opacity: 0.6;
    font-style: italic;
}

.coming-soon small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-note {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 16px;
    color: var(--pure-white);
    text-align: left;
}

.contact-note strong {
    color: var(--pure-white);
    opacity: 0.9;
}

.contact-note a {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-note a:hover {
    opacity: 1;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--pure-white);
    opacity: 0.7;
    line-height: 1.5;
    margin-top: 16px;
    font-style: italic;
    text-align: left;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 20px;
    text-align: center;
}

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

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

    .information-service {
        max-width: 500px;
        margin: 0 auto;
    }

    .plans-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .service-definition-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-header > div,
    .comparison-row > div {
        border-bottom: 1px solid var(--border-subtle);
    }
}

@media (max-width: 768px) {
    body {
        font-size: var(--text-base); /* Uses 19px on mobile (brandbook compliant) */
    }

    /* Mobile Typography Hierarchy */
    h1 {
        font-size: 2rem; /* 32px - optimized for mobile */
    }

    h2 {
        font-size: 1.75rem; /* 28px - optimized for mobile */
    }

    h3 {
        font-size: 1.5rem; /* 24px - optimized for mobile */
    }

    h4 {
        font-size: 1.25rem; /* 20px - optimized for mobile */
    }

    /* Enhanced Mobile Visual Hierarchy */
    .section-standard {
        padding: 80px 0; /* Reduced for mobile */
    }

    .section-large {
        padding: 100px 0; /* Reduced for mobile */
    }

    .section-medium {
        padding: 60px 0; /* Reduced for mobile */
    }

    .section-small {
        padding: 40px 0; /* Reduced for mobile */
    }

    .section-spacing-large {
        margin: 60px 0; /* Increased spacing for mobile */
    }

    .section-spacing-medium {
        margin: 30px 0; /* Reduced for mobile */
    }

    .section-spacing-small {
        margin: 15px 0; /* Reduced for mobile */
    }

    /* Mobile Text Readability Optimization */
    .text-content,
    .text-content-wide,
    .text-content-narrow {
        max-width: 100%; /* Full width on mobile for better readability */
        padding: 0 20px;
    }

    p,
    .paragraph-wide,
    .paragraph-narrow {
        max-width: 100%; /* Full width on mobile */
        padding: 0 10px;
    }

    .section-content,
    .section-content-wide,
    .section-content-narrow {
        max-width: 100%; /* Full width on mobile */
        padding: 0 20px;
    }

    .hero-subheadline {
        max-width: 100%; /* Full width on mobile */
        padding: 0 20px;
    }

    .section-subtitle {
        max-width: 100%; /* Full width on mobile */
        padding: 0 20px;
    }

    .testimonial-text {
        max-width: 100%; /* Full width on mobile */
        padding: 0 10px;
    }

    /* Mobile Hero Phone Section */
    .hero-phone-section {
        margin: 20px 0;
        padding: 15px;
    }

    .hero-phone-number {
        font-size: 1.5rem;
        padding: 12px 24px;
    }

    .hero-empathetic-text {
        margin: 20px 0;
        padding: 15px;
    }

    .hero-empathetic-text p {
        font-size: var(--text-base);
        padding: 0 10px;
    }

    .trust-rating {
        font-size: var(--text-sm);
        padding: 10px 20px;
    }

    .hero-headline {
        font-size: 3rem; /* Увеличиваем для лучшей видимости на планшетах */
    }

    /* Regional page headline - smaller for longer text on tablets */
    .regional-hero .hero-headline {
        font-size: 1.875rem; /* 30px - same as main page */
    }

    .information-headline {
        font-size: 1.5rem; /* 24px */
    }

    .section-title {
        font-size: 1.75rem; /* 28px */
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 60px 20px;
    }

    .information-service {
        padding: 32px 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        min-height: 160px;
        padding: 28px 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .faq-section,
    .about-section {
        padding: 60px 20px; /* Mobile: reduced padding */
    }
    
    .complimentary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guidance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 20px;
        font-size: var(--text-base);
    }

    .faq-answer {
        font-size: var(--text-base);
    }

    .faq-answer ul {
        margin: 12px 0;
        padding-left: 16px;
    }

    .faq-answer li {
        font-size: var(--text-base);
        margin-bottom: 6px;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .independence-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-block h3 {
        font-size: 1.5rem;
    }

    .mission-block,
    .commitment-block,
    .contact-block {
        padding: 28px 24px;
    }

    /* Enhanced Mobile Touch Targets */
    .cta-button,
    .cta-primary,
    .cta-primary-new,
    .cta-secondary,
    .cta-secondary-new {
        min-height: 52px; /* Increased from 48px for better touch targets */
        padding: 16px 28px;
    }

    input,
    select,
    .form-input,
    .form-select {
        min-height: 56px; /* Increased touch target for better usability */
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px; /* Consistent with 768px for better readability */
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    /* Small Mobile Text Readability */
    .text-content,
    .text-content-wide,
    .text-content-narrow {
        max-width: 100%; /* Full width on small mobile */
        padding: 0 15px;
    }

    p,
    .paragraph-wide,
    .paragraph-narrow {
        max-width: 100%; /* Full width on small mobile */
        padding: 0 5px;
    }

    .section-content,
    .section-content-wide,
    .section-content-narrow {
        max-width: 100%; /* Full width on small mobile */
        padding: 0 15px;
    }

    .hero-subheadline {
        max-width: 100%; /* Full width on small mobile */
        padding: 0 15px;
    }

    .section-subtitle {
        max-width: 100%; /* Full width on small mobile */
        padding: 0 15px;
    }

    .testimonial-text {
        max-width: 100%; /* Full width on small mobile */
        padding: 0 5px;
    }

    /* Small Mobile Hero Elements */
    .hero-phone-section {
        margin: 15px 0;
        padding: 12px;
    }

    .hero-phone-number {
        font-size: 1.3rem;
        padding: 10px 20px;
    }

    .hero-empathetic-text {
        margin: 15px 0;
        padding: 12px;
    }

    .hero-empathetic-text p {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .trust-rating {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    }

    /* Small Mobile Typography Hierarchy */
    h1 {
        font-size: 1.75rem; /* 28px - optimized for small mobile */
    }

    h2 {
        font-size: 1.5rem; /* 24px - optimized for small mobile */
    }

    h3 {
        font-size: 1.25rem; /* 20px - optimized for small mobile */
    }

    h4 {
        font-size: 1.125rem; /* 18px - optimized for small mobile */
    }

    .hero-headline {
        font-size: 2.5rem; /* Увеличиваем для лучшей видимости на мобильных */
    }

    /* Regional page headline - smaller for longer text on small mobile */
    .regional-hero .hero-headline {
        font-size: 1.625rem; /* 26px - same as main page */
    }

    .information-service {
        padding: 28px 24px;
    }

    .section-title {
        font-size: 1.5rem; /* 24px */
    }

    .about-tagline {
        font-size: 1.1rem;
    }

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

/* === ACCESSIBILITY === */
.cta-button,
.cta-primary,
.cta-secondary,
.plan-button {
    min-height: 48px;
    touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
    .step-card:hover {
        transform: none;
    }
    
    .cta-primary:hover,
    .cta-button:hover,
    .plan-button:hover {
        transform: none;
    }
}

.form-input:focus,
.form-select:focus,
.cta-button:focus,
.cta-primary:focus,
.cta-secondary:focus,
.plan-button:focus,
.faq-question:focus {
    outline: 2px solid var(--focus-outline);
    outline-offset: 2px;
}

/* Enhanced focus styles for better visibility */
.faq-question:focus {
    background-color: rgba(30, 58, 95, 0.05);
    outline: 2px solid var(--focus-outline);
    outline-offset: 2px;
}

/* Skip links for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--navy-primary);
    color: var(--pure-white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Screen reader only content */
.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;
}

@media (prefers-contrast: high) {
    :root {
        --charcoal-text: #000000;
        --muted-blue: #000000;
    }
}

/* 404 ERROR PAGE STYLES */
.error-header {
    background: var(--navy-primary);
    color: var(--pure-white);
    padding: 20px 0;
    text-align: center;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.error-content {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--accent-sage);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.error-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.error-help {
    text-align: left;
    background: var(--warm-grey-bg);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--sage-green);
}

.error-help h2 {
    color: var(--navy-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.error-help ul {
    list-style: none;
    padding: 0;
}

.error-help li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.error-help li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

.error-footer {
    background: var(--warm-grey-bg);
    padding: 40px 0;
    margin-top: 60px;
}


.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* Mobile responsiveness for 404 page */
@media (max-width: 768px) {
    .error-container {
        padding: 40px 15px;
    }
    
    .error-content {
        padding: 40px 20px;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-help {
        padding: 20px;
    }
}


/* HEADER NAVIGATION STYLES */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.header-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    color: var(--neutral-900);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-list a:hover,
.nav-list a:focus {
    background: var(--warm-grey-bg);
    color: var(--accent-sage);
    outline: 2px solid var(--accent-sage);
    outline-offset: 2px;
}

.nav-list a[aria-current='page'] {
    background: var(--accent-sage);
    color: var(--pure-white);
}

/* Mobile navigation */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-list a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}



.faq-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--warm-grey-bg);
    border-radius: 12px;
    border-left: 5px solid var(--sage-green);
}

.faq-intro h3 {
    color: var(--navy-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-instructions {
    font-size: 1.1rem;
    color: var(--neutral-900);
    line-height: 1.6;
    margin: 0;
}

.faq-item-enhanced {
    margin-bottom: 20px;
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--pure-white);
    box-shadow: 0 2px 8px var(--shadow-light);
    transition: all 0.3s ease;
}

.faq-item-enhanced:hover {
    border-color: var(--sage-green);
    box-shadow: 0 4px 16px var(--shadow-medium);
}

.faq-question-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--warm-grey-bg);
    border-radius: 10px 10px 0 0;
}

.faq-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-primary);
    transition: all 0.3s ease;
}

.faq-toggle-btn:hover {
    color: var(--accent-sage);
}

.faq-question-text {
    flex: 1;
    margin-right: 15px;
    line-height: 1.4;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--sage-green);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-toggle-btn[aria-expanded='true'] .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-alternative {
    margin-left: 15px;
}

.faq-read-all-btn {
    background: var(--sage-green);
    color: var(--pure-white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-read-all-btn:hover {
    background: #047857;
    transform: translateY(-1px);
}

.faq-answer-enhanced {
    display: none;
    padding: 0 20px 20px 20px;
    background: var(--pure-white);
    border-radius: 0 0 10px 10px;
}

.faq-answer-enhanced[aria-expanded='true'] {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-content {
    padding: 20px 0;
}

.faq-answer-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-900);
}

.faq-answer-content p strong {
    color: var(--navy-primary);
    font-weight: 600;
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-900);
}

.faq-show-all {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--warm-grey-bg);
    border-radius: 12px;
    border: 2px dashed var(--sage-green);
}

.show-all-btn {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    color: var(--pure-white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.show-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.show-all-icon {
    font-size: 1.2rem;
}

/* Mobile responsiveness for enhanced FAQ */
@media (max-width: 768px) {
    .faq-container-enhanced {
        padding: 15px;
    }
    
    .faq-question-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .faq-toggle-btn {
        width: 100%;
        font-size: 1rem;
    }
    
    .faq-alternative {
        margin-left: 0;
        width: 100%;
    }
    
    .faq-read-all-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .faq-answer-content p {
        font-size: 0.95rem;
    }
    
    .show-all-btn {
        width: 100%;
        padding: 18px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-intro {
        padding: 15px;
    }
    
    .faq-intro h3 {
        font-size: 1.5rem;
    }
    
    .faq-instructions {
        font-size: 1rem;
    }
    
    .faq-question-enhanced {
        padding: 15px;
    }
    
    .faq-answer-enhanced {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-content {
        padding: 15px 0;
    }
}

/* ============================================ */
/* COST EDUCATION & DIGNITY ASSURANCE SECTIONS */
/* ============================================ */

/* Cost Education Section */
.cost-education {
    background-color: var(--warm-cream);
    padding: 80px 0;
}

.cost-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cost-factor-item {
    background: var(--pure-white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--sage-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.cost-factor-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cost-factor-item h3 {
    color: var(--navy-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-serif);
}

.cost-factor-item p {
    color: var(--neutral-900);
    line-height: 1.4;
    margin: 0;
    font-size: 0.95rem;
}

.education-conclusion {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--pure-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--navy-primary);
}

.education-conclusion p {
    font-size: 1.1rem;
    color: var(--navy-primary);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

/* Dignity Assurance Section */
.dignity-assurance {
    background-color: var(--pure-white);
    padding: 80px 0;
}

.dignity-explanation {
    margin-top: 30px;
    text-align: center;
}

.dignity-explanation p {
    font-size: 1.1rem;
    color: var(--neutral-900);
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cost-education,
    .dignity-assurance {
        padding: 60px 0; /* Mobile: reduced padding */
    }
    
    .cost-factors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .cost-factor-item {
        padding: 20px 15px;
    }
    
    .cost-factor-item h3 {
        font-size: 1.2rem;
    }
    
    .education-conclusion {
        margin-top: 30px;
        padding: 25px;
    }
    
    .education-conclusion p {
        font-size: 1rem;
    }
    
    .dignity-explanation p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .cost-education,
    .dignity-assurance {
        padding: 40px 0; /* Small mobile: minimal padding */
    }
    
    .cost-factor-item {
        padding: 18px 12px;
    }
    
    /* Mobile button adjustments */
    .cta-primary,
    .cta-secondary,
    .cta-button,
    .plan-button {
        padding: 16px 24px; /* Reduced padding for mobile */
        font-size: 1.1rem;
    }
    
    .cost-factor-item h3 {
        font-size: 1.1rem;
    }
    
    .dignity-explanation p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .education-conclusion {
        padding: 20px;
    }
}

/* === BREADCRUMBS STYLES === */
.breadcrumbs {
    background-color: var(--warm-grey-bg);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
    font-size: 0.9rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-sage);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-weight: 400;
    margin: 0 4px;
}

.breadcrumb-current {
    color: var(--neutral-900);
    font-weight: 600;
}

/* Mobile breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 10px 0;
        font-size: 0.85rem;
    }
    
    .breadcrumb-list {
        gap: 6px;
    }
    
    .breadcrumb-separator {
        margin: 0 2px;
    }
}

/* === TRUST SIGNALS STYLES === */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 16px;
    background-color: var(--warm-cream);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}

.trust-signal-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--neutral-900);
}

.trust-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.trust-text {
    font-weight: 500;
    line-height: 1.4;
}

.data-sources {
    margin: 16px 0;
    padding: 12px 16px;
    background-color: var(--warm-grey-bg);
    border-radius: 6px;
    border-left: 3px solid var(--sage-green);
}

.data-sources-text {
    font-size: 0.85rem;
    color: var(--neutral-900);
    margin: 0;
    line-height: 1.5;
}

.source-link {
    color: var(--navy-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.source-link:hover {
    color: var(--accent-sage);
    text-decoration: underline;
}

/* Mobile trust signals */
@media (max-width: 768px) {
    .trust-signals {
        flex-direction: column;
        gap: 12px;
        margin: 16px 0;
        padding: 12px;
    }
    
    .trust-signal-item {
        font-size: 0.85rem;
    }
    
    .data-sources {
        margin: 12px 0;
        padding: 10px 12px;
    }
    
    .data-sources-text {
        font-size: 0.8rem;
    }
}

/* === FOOTER TRUST SIGNALS STYLES === */
.footer-trust-list {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

.footer-trust-list li {
    color: var(--pure-white);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 0;
    opacity: 0.8;
}

.footer-trust-list li:before {
    content: "•";
    color: var(--sage-green);
    font-weight: bold;
    margin-right: 8px;
}

.footer-data-sources {
    font-size: 0.85rem;
    color: var(--pure-white);
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.footer-data-sources a {
    color: var(--pure-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer-data-sources a:hover {
    opacity: 1;
}

/* ============================================
   ROI CALLOUT STYLES
   ============================================ */

.roi-callout {
    background: linear-gradient(135deg, var(--accent-sage-pale) 0%, var(--bg-secondary) 100%);
    border: 2px solid var(--accent-sage);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-8) 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(90, 122, 95, 0.15);
}

.roi-content {
    max-width: 800px;
    margin: 0 auto;
}

.roi-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: var(--space-4);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.roi-stat {
    background: var(--bg-primary);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-sage);
    font-size: var(--text-base);
    color: var(--neutral-700);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    min-width: 200px;
    text-align: center;
}

.roi-stat strong {
    color: var(--accent-sage);
    font-weight: var(--font-semibold);
}

.roi-message {
    font-size: var(--text-h4);
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
    margin: 0;
    padding: var(--space-4);
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-sage-light);
}

.roi-message strong {
    color: var(--primary-navy);
    font-weight: var(--font-semibold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .roi-callout {
        padding: var(--space-4);
        margin: var(--space-6) 0;
    }
    
    .roi-stats {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .roi-stat {
        min-width: auto;
        width: 100%;
        padding: var(--space-2) var(--space-3);
        font-size: 0.9rem;
    }
    
    .roi-message {
        font-size: var(--text-base);
        padding: var(--space-3);
    }
}

@media (max-width: 480px) {
    .roi-stat {
        font-size: 0.85rem;
        padding: var(--space-2);
    }
    
    .roi-message {
        font-size: 0.9rem;
        padding: var(--space-2);
    }
}

/* ============================================
   NEW HERO SECTION STYLES - Regional Pages
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: white;
    padding: var(--space-12) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: var(--text-h1);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle-accent {
    display: block;
    font-size: var(--text-h3);
    font-weight: var(--font-medium);
    color: var(--accent-sage-light);
    margin-top: var(--space-3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: var(--text-h4);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Duplicate .stat-item removed - using main definition above */

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--accent-sage-light);
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    display: block;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    margin-top: var(--space-8);
}

.hero-cta .btn-primary {
    background: var(--accent-sage);
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-h4);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 122, 95, 0.3);
    min-height: 60px;
    display: inline-block;
    text-decoration: none;
}

.hero-cta .btn-primary:hover {
    background: var(--accent-sage-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(90, 122, 95, 0.4);
}

.cta-reassurance {
    margin-top: var(--space-4);
    font-size: var(--text-base);
    opacity: 0.9;
    font-weight: var(--font-medium);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--space-8) 0;
    }
    
    .hero-container {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: var(--text-h2);
        margin-bottom: var(--space-4);
    }
    
    .hero-subtitle-accent {
        font-size: var(--text-h4);
        margin-top: var(--space-2);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-bottom: var(--space-6);
    }
    
    .stat-item {
        padding: var(--space-4);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta .btn-primary {
        width: 100%;
        padding: var(--space-4);
        font-size: var(--text-base);
    }
    
    .cta-reassurance {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-item {
        min-height: 140px;
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Mobile footer trust signals */
@media (max-width: 768px) {
    .footer-trust-list li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .footer-data-sources {
        font-size: 0.8rem;
    }
}

/* ============================================
   INVESTMENT CARD COMPONENT
   ============================================ */
.investment-card {
    background: var(--bg-primary);
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    padding: 28px;
    margin: 32px 0;
    text-align: center;
    font-family: 'Georgia', 'Times New Roman', serif;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.investment-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0 0 20px 0;
}

.investment-card__price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-sage);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.investment-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

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

.investment-card__stat-label {
    display: block;
    font-size: 16px;
    color: var(--neutral-600);
    margin-bottom: 4px;
}

.investment-card__stat-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
}

.investment-card__description {
    text-align: left;
}

.investment-card__description p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 8px 0;
    color: var(--neutral-700);
}

.investment-card__description p:last-child {
    margin-bottom: 0;
}

.investment-card__description strong {
    color: var(--primary-navy);
    font-weight: 600;
}

/* Responsive Design for Investment Card */
@media (max-width: 768px) {
    .investment-card {
        padding: 24px;
        margin: 28px 20px;
    }
    
    .investment-card__title {
        font-size: 20px;
    }
    
    .investment-card__price {
        font-size: 24px;
    }
    
    .investment-card__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .investment-card__stat-value {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .investment-card {
        padding: 20px;
        margin: 24px 16px;
    }
    
    .investment-card__title {
        font-size: 18px;
    }
    
    .investment-card__price {
        font-size: 22px;
    }
    
    .investment-card__stat-label {
        font-size: 14px;
    }
    
    .investment-card__stat-value {
        font-size: 16px;
    }
    
    .investment-card__description p {
        font-size: 14px;
    }
    
    /* Combined Value Section Small Mobile */
    .combined-value-section {
        padding: 40px 0;
    }
    
    .combined-title {
        font-size: 1.8rem; /* 28px на маленьких экранах */
    }
    
    .strategy-block {
        padding: 18px 12px;
    }
    
    .strategy-number {
        left: 12px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .combined-power {
        padding: 20px 12px;
    }
}

/* ============================================
   UNIQUE VALUE SECTION - WHAT MAKES US DIFFERENT
   ============================================ */
.unique-value-section {
    background: var(--bg-secondary, #f7fafc);
    padding: 80px 0;
}

.uvp-header {
    text-align: center;
    margin-bottom: 60px;
}

.unique-value-section .section-title {
    font-size: var(--text-h2, 36px);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 16px;
    font-weight: var(--font-semibold, 600);
    line-height: var(--leading-tight, 1.25);
}

.unique-value-section .section-subtitle {
    font-size: var(--text-base, 20px);
    color: var(--neutral-700, #4a5568);
    line-height: var(--leading-normal, 1.6);
    max-width: 65ch;
    margin: 0 auto;
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.comparison-card {
    background: var(--bg-primary, #ffffff);
    border-radius: var(--radius-xl, 12px);
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--neutral-300, #e2e8f0);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.comparison-card.others-card {
    border-left: 4px solid var(--neutral-300, #e2e8f0);
}

.comparison-card.our-card {
    border-left: 4px solid var(--accent-sage, #5a7a5f);
}

.card-badge {
    display: inline-block;
    background: var(--neutral-700, #4a5568);
    color: var(--bg-primary, #ffffff);
    padding: 8px 16px;
    border-radius: var(--radius-md, 6px);
    font-size: var(--text-sm, 16px);
    font-weight: var(--font-semibold, 600);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.card-badge.recommended {
    background: var(--accent-sage, #5a7a5f);
}

.card-title {
    font-size: var(--text-h4, 24px);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 24px;
    font-weight: var(--font-semibold, 600);
    line-height: var(--leading-tight, 1.25);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-item {
    padding: 12px 0;
    font-size: var(--text-base, 20px);
    line-height: var(--leading-normal, 1.6);
    color: var(--neutral-900, #1a202c);
    border-bottom: 1px solid var(--neutral-300, #e2e8f0);
    position: relative;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.highlight {
    background: var(--bg-secondary, #f7fafc);
    margin: 0 -20px;
    padding: 16px 20px;
    border-radius: var(--radius-lg, 8px);
    border-bottom: none;
    border-left: 3px solid var(--accent-sage, #5a7a5f);
}

.feature-item.no-feature {
    color: var(--neutral-700, #4a5568);
}

.feature-item.no-feature::before {
    content: "✗";
    color: var(--neutral-700, #4a5568);
    font-weight: var(--font-bold, 700);
    margin-right: 8px;
}

.feature-item.has-feature::before {
    content: "✓";
    color: var(--accent-sage, #5a7a5f);
    font-weight: var(--font-bold, 700);
    margin-right: 8px;
}

.feature-text {
    display: inline;
}

.card-outcome {
    background: var(--bg-secondary, #f7fafc);
    padding: 20px;
    border-radius: var(--radius-lg, 8px);
    font-size: var(--text-base, 20px);
    line-height: var(--leading-normal, 1.6);
    color: var(--neutral-900, #1a202c);
    border-left: 4px solid var(--neutral-300, #e2e8f0);
}

.card-outcome.success {
    background: var(--accent-sage-pale, #e8f3ea);
    border-left-color: var(--accent-sage, #5a7a5f);
}

.card-outcome strong {
    color: var(--primary-navy, #1e3a5f);
    font-weight: var(--font-semibold, 600);
}

.uvp-explainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.uvp-explainer h3 {
    font-size: var(--text-h4, 24px);
    color: var(--primary-navy, #1e3a5f);
    margin-bottom: 20px;
    font-weight: var(--font-semibold, 600);
    line-height: var(--leading-tight, 1.25);
}

.uvp-explainer p {
    font-size: var(--text-base, 20px);
    color: var(--neutral-900, #1a202c);
    line-height: var(--leading-normal, 1.6);
    margin-bottom: 16px;
}

.uvp-explainer p strong {
    color: var(--primary-navy, #1e3a5f);
    font-weight: var(--font-semibold, 600);
}

.uvp-emphasis {
    font-size: var(--text-lg, 24px);
    color: var(--accent-sage, #5a7a5f);
    font-weight: var(--font-semibold, 600);
    font-style: italic;
    margin-top: 20px;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 15px;
    }
    
    .unique-value-section .section-title {
        font-size: 1.75rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .uvp-explainer {
        padding: 30px 20px;
    }
}

/* ============================================
   CTA BUTTONS - 55+ ACCESSIBILITY STANDARDS
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 18px 36px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-height: 56px; /* Минимум для 55+ */
    line-height: 1.4;
}

.cta-primary {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    color: #ffffff;
    border: 3px solid transparent;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
    transform: translateY(-2px);
}

.cta-primary:active {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    border-color: transparent;
    transform: translateY(1px);
}

.cta-secondary {
    background: transparent;
    color: var(--accent-sage);
    border: 3px solid var(--accent-sage);
}

.cta-secondary:hover {
    background: var(--accent-sage-pale);
    border-color: var(--accent-sage-dark);
    color: var(--accent-sage-dark);
}

/* White secondary button on dark backgrounds */
.final-cta .cta-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.cta-subtext {
    font-size: var(--text-sm, 16px);
    color: var(--neutral-700, #4a5568);
    margin-top: 12px;
    text-align: center;
    line-height: var(--leading-normal, 1.6);
    font-weight: var(--font-normal, 400);
}

/* White text for cta-subtext on dark backgrounds */
.final-cta .cta-subtext {
    color: #ffffff;
    opacity: 0.9;
}

/* Focus state для accessibility */
.cta-button:focus {
    outline: 3px solid var(--accent-sage);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .cta-button {
        font-size: 18px;
        padding: 16px 28px;
        width: 100%;
        max-width: 400px;
    }
}

/* ============================================
   SIMPLIFIED STRATEGIES SECTION
   ============================================ */
.strategies-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.strategy-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-subtle);
    border-left: 4px solid var(--sage-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.strategy-number {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.strategy-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.strategy-savings {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-green);
    margin-bottom: 16px;
}

.strategy-example {
    font-size: 1rem;
    color: var(--neutral-900);
    font-style: italic;
    margin-bottom: 20px;
    padding: 12px;
    background: var(--warm-grey-bg);
    border-radius: 6px;
    border-left: 3px solid var(--sage-green);
}

.strategy-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-free,
.feature-premium {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 4px;
    line-height: 1.4;
}

.feature-free {
    background: var(--warm-grey-bg);
    color: var(--neutral-900);
    border-left: 3px solid var(--border-subtle);
}

.feature-premium {
    background: var(--sage-green-pale);
    color: var(--navy-primary);
    border-left: 3px solid var(--sage-green);
    font-weight: 500;
}

/* Mobile responsive for strategies */
@media (max-width: 768px) {
    .strategies-simple-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .strategy-card {
        padding: 20px;
    }
    
    .strategy-title {
        font-size: 1.2rem;
    }
    
    .strategy-savings {
        font-size: 1rem;
    }
    
    .strategy-example {
        font-size: 0.95rem;
    }
}
