/* ====================== LEGS ON THE GROUND - v2.0 ====================== */
/* ====================== 1. CSS VARIABLES ====================== */
:root {
    /* Premium Color Palette - Refined & Sophisticated */

    /* Primary - Refined Coral (Less aggressive, more premium) */
    --coral-50: #FFF5F5;
    --coral-100: #FFE3E3;
    --coral-200: #FFC9C9;
    --coral-300: #FFA8A8;
    --coral-400: #FF8787;
    --coral-500: #FF6B6B;     /* Primary coral */
    --coral-600: #FA5252;     /* Hover state */
    --coral-700: #F03E3E;     /* Active state */
    --coral-800: #E03131;
    --coral-900: #C92A2A;

    /* Navy - Warmer, less oppressive (60-30-10 rule primary) */
    --navy-50: #F0F4F8;
    --navy-100: #D9E2EC;
    --navy-200: #BCCCDC;
    --navy-300: #9FB3C8;
    --navy-400: #829AB1;
    --navy-500: #627D98;
    --navy-600: #486581;
    --navy-700: #334E68;     /* Primary navy (warmer than before) */
    --navy-800: #243B53;
    --navy-900: #102A43;     /* Darkest navy */

    /* Teal - Accent color (10% of 60-30-10 rule) */
    --teal-50: #F0FCFB;
    --teal-100: #C6F6F0;
    --teal-200: #8EEEE4;
    --teal-300: #4ECDC4;     /* Primary teal */
    --teal-400: #3AB8AB;
    --teal-500: #2BA599;
    --teal-600: #1D8B82;
    --teal-700: #0B9A8D;     /* Text safe */
    --teal-800: #087B6F;
    --teal-900: #065D54;

    /* Neutrals - Warmer, more sophisticated (30% of 60-30-10 rule) */
    --warm-white: #FAFBF8;   /* Off-white with warmth */
    --white: #FFFFFF;
    --off-white: #FAFBF8;
    --black: #000000;

    --gray-50: #F7F9FA;
    --gray-100: #F0F3F5;
    --gray-200: #E4E9ED;
    --gray-300: #CBD2D9;
    --gray-400: #9AA5B1;
    --gray-500: #7B8794;     /* Body text */
    --gray-600: #616E7C;
    --gray-700: #52606D;     /* Headings */
    --gray-800: #3E4C59;
    --gray-900: #323F4B;     /* Darkest text */
    /* Spacing Scale - 8pt Grid System (Fortune 100 Standard) */
    --space-0: 0;
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 0.75rem;     /* 12px */
    --space-base: 1rem;      /* 16px - base unit */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 2.5rem;     /* 40px */
    --space-3xl: 3rem;       /* 48px */
    --space-4xl: 4rem;       /* 64px */
    --space-5xl: 5rem;       /* 80px */
    --space-6xl: 6rem;       /* 96px */
    --space-7xl: 8rem;       /* 128px */
    --space-8xl: 10rem;      /* 160px */

    /* Premium Typography System - Dual Font Strategy */
    --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", "Courier New", monospace;

    /* Legacy font variables for compatibility */
    --font-family: var(--font-body);
    --font-family-headings: var(--font-display);

    /* Type Scale - Major Third (1.25) - Professional Hierarchy */
    --text-xs: 0.64rem;      /* 10.24px */
    --text-sm: 0.8rem;       /* 12.8px */
    --text-base: 1rem;       /* 16px - body */
    --text-lg: 1.25rem;      /* 20px */
    --text-xl: 1.563rem;     /* 25px */
    --text-2xl: 1.953rem;    /* 31.25px */
    --text-3xl: 2.441rem;    /* 39px */
    --text-4xl: 3.052rem;    /* 48.83px */
    --text-5xl: 3.815rem;    /* 61px */

    /* Legacy font sizes for compatibility */
    --font-size-xs: var(--text-xs);
    --font-size-sm: var(--text-sm);
    --font-size-base: var(--text-base);
    --font-size-lg: var(--text-lg);
    --font-size-xl: var(--text-xl);
    --font-size-2xl: var(--text-2xl);
    --font-size-3xl: var(--text-3xl);
    --font-size-4xl: var(--text-4xl);
    --font-size-5xl: var(--text-5xl);

    /* Font Weights - Full Spectrum */
    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Line Heights - Optimized for Premium Readability */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Legacy line heights */
    --line-height-tight: var(--leading-tight);
    --line-height-snug: var(--leading-snug);
    --line-height-normal: var(--leading-normal);
    --line-height-relaxed: var(--leading-relaxed);
    --line-height-loose: var(--leading-loose);

    /* Letter Spacing - Subtle Refinement */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    /* Border Radius - Consistent Strategy (8pt based) */
    --radius-none: 0;
    --radius-sm: 0.25rem;    /* 4px - Small elements */
    --radius-md: 0.5rem;     /* 8px - Inputs, tags */
    --radius-lg: 0.75rem;    /* 12px - Buttons, cards */
    --radius-xl: 1rem;       /* 16px - Large cards */
    --radius-2xl: 1.5rem;    /* 24px - Hero elements */
    --radius-full: 9999px;   /* Circular */

    /* Premium 8-Level Shadow System (Material Design Inspired) */
    --shadow-none: none;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px 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.05);

    /* Focus Ring Shadows - Accessibility */
    --shadow-focus: 0 0 0 3px rgba(255, 107, 107, 0.15);
    --shadow-focus-coral: 0 0 0 3px rgba(255, 107, 107, 0.15);
    --shadow-focus-navy: 0 0 0 3px rgba(51, 78, 104, 0.15);
    --shadow-focus-teal: 0 0 0 3px rgba(78, 205, 196, 0.15);

    /* Button-Specific Shadows (Premium Feel) */
    --shadow-btn-primary: 0 1px 2px rgba(0, 0, 0, 0.05),
                          0 4px 12px rgba(255, 107, 107, 0.15);
    --shadow-btn-primary-hover: 0 4px 6px rgba(0, 0, 0, 0.07),
                                0 12px 24px rgba(255, 107, 107, 0.25);
    --shadow-btn-outline: 0 0 0 1px rgba(255, 255, 255, 0.1),
                          0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-btn-outline-hover: 0 0 0 1px rgba(255, 255, 255, 0.2),
                                0 12px 24px rgba(255, 255, 255, 0.2);

    /* Component-Specific Shadows */
    --shadow-card: var(--shadow-lg);
    --shadow-card-hover: var(--shadow-xl);
    --shadow-icon-coral: 0 4px 20px rgba(255, 107, 107, 0.4);
    --shadow-icon-teal: 0 4px 20px rgba(78, 205, 196, 0.4);
    --shadow-icon-navy: 0 4px 20px rgba(51, 78, 104, 0.4);

    /* Legacy shadow variables for backward compatibility */
    --shadow-btn-coral: var(--shadow-btn-primary);
    --shadow-btn-coral-hover: var(--shadow-btn-primary-hover);
    --shadow-success: 0 4px 20px rgba(37, 211, 102, 0.5);
    --shadow-success-hover: 0 6px 30px rgba(37, 211, 102, 0.7);

    /* Premium Easing Functions (Motion Design) */
    --ease-linear: cubic-bezier(0, 0, 1, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);        /* Apple-style smooth */
    --ease-swift: cubic-bezier(0.55, 0, 0.1, 1);        /* Swift/snappy */

    /* Transition Durations - Comprehensive Scale */
    --duration-instant: 0ms;
    --duration-fast: 100ms;
    --duration-normal: 200ms;
    --duration-moderate: 300ms;
    --duration-slow: 400ms;
    --duration-slower: 500ms;
    --duration-slowest: 700ms;

    /* Combined Transitions (Duration + Easing) */
    --transition-faster: 0.1s var(--ease-smooth);
    --transition-fast: 0.15s var(--ease-smooth);
    --transition-base: 0.2s var(--ease-smooth);
    --transition-slow: 0.3s var(--ease-smooth);
    --transition-slowest: 0.4s var(--ease-smooth);

    /* Component-Specific Transitions */
    --transition-button: all 0.2s var(--ease-smooth);
    --transition-dropdown: opacity 0.15s var(--ease-out), transform 0.15s var(--ease-out);
    --transition-modal: opacity 0.25s var(--ease-out);
    --transition-tooltip: opacity 0.15s var(--ease-smooth);
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070
    }
/* ====================== 2. UTILITY CLASSES ====================== */
/* Card Base - Provides background, border, shadow, padding, hover lift effect
   Modifiers: .card-testimonial (border accent), .card-faq (accordion) */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative
    }
.card:hover {
    transform: translatey(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(216, 67, 67, 0.3)
    }
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(216, 67, 67, 0.02) 0%, rgba(11, 154, 141, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-lg);
    pointer-events: none
    }
.card:hover::before {
    opacity: 1
    }
.card-testimonial {
    border-left: 4px solid var(--coral-700)
    }
/* Icon Badge Base Component */
.icon-badge {
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
    box-shadow: var(--shadow-icon-coral);
    position: relative;
    z-index: 1
    }
.icon-badge-sm {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: var(--space-md)
    }
.icon-badge-md {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin: -35px auto var(--space-lg)
    }
.icon-badge-lg {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin: var(--space-lg) auto
    }
.icon-badge-teal {
    background: linear-gradient(135deg, var(--teal-300) 0%, var(--teal-400) 100%);
    box-shadow: var(--shadow-icon-teal)
    }
.icon-badge-navy {
    background: linear-gradient(135deg, var(--navy-700) 0%, #1a4570 100%);
    box-shadow: var(--shadow-icon-navy)
    }
/* Dark Context Utility */
.dark-context h1, .dark-context h2, .dark-context h3, .dark-context h4, .dark-context h5, .dark-context h6 {
    color: var(--white) !important
    }
.dark-context p, .dark-context li, .dark-context .text-secondary {
    color: rgba(255, 255, 255, 0.9)
    }
/* Hover Lift Utilities */
.hover-lift-sm:hover {
    transform: translatey(-2px)
    }
.hover-lift:hover {
    transform: translatey(-4px)
    }
.hover-lift-lg:hover {
    transform: translatey(-6px)
    }
.hover-shadow-sm:hover {
    box-shadow: var(--shadow-md)
    }
.hover-shadow:hover {
    box-shadow: var(--shadow-lg)
    }
.hover-shadow-lg:hover {
    box-shadow: var(--shadow-xl)
    }
/* Transition Utilities */
.transition-all {
    transition: all var(--transition-base)
    }
.transition-transform {
    transition: transform var(--transition-base)
    }
.transition-colors {
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast)
    }
.transition-fast {
    transition: all var(--transition-fast)
    }
.transition-slow {
    transition: all var(--transition-slow)
    }
/* Focus Ring Utility */
.focus-ring:focus-visible {
    outline: 2px solid var(--coral-700);
    outline-offset: 2px;
    border-radius: 2px
    }
/* Gradient Overlay Utility */
.gradient-overlay {
    position: relative
    }
.gradient-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 69, 112, 0.9) 100%);
    z-index: 1
    }
.gradient-overlay > * {
    position: relative;
    z-index: 2
    }

/* ====================== 2B. UTILITY CLASSES - DRY FOUNDATION ====================== */

/* === SPACING UTILITIES === */
/* Padding - All Sides */
.p-0 { padding: 0; }
.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-base { padding: var(--space-base); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }
.p-3xl { padding: var(--space-3xl); }

/* Padding - Horizontal */
.px-0 { padding-left: 0; padding-right: 0; }
.px-xs { padding-left: var(--space-xs); padding-right: var(--space-xs); }
.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-base { padding-left: var(--space-base); padding-right: var(--space-base); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }
.px-2xl { padding-left: var(--space-2xl); padding-right: var(--space-2xl); }
.px-3xl { padding-left: var(--space-3xl); padding-right: var(--space-3xl); }

/* Padding - Vertical */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-base { padding-top: var(--space-base); padding-bottom: var(--space-base); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
.py-4xl { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }
.py-5xl { padding-top: var(--space-5xl); padding-bottom: var(--space-5xl); }

/* Padding - Individual Sides */
.pt-0 { padding-top: 0; }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }
.pt-xl { padding-top: var(--space-xl); }
.pt-2xl { padding-top: var(--space-2xl); }
.pt-3xl { padding-top: var(--space-3xl); }

.pb-0 { padding-bottom: 0; }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }
.pb-xl { padding-bottom: var(--space-xl); }
.pb-2xl { padding-bottom: var(--space-2xl); }
.pb-3xl { padding-bottom: var(--space-3xl); }

/* Margin */
.m-0 { margin: 0; }
.m-auto { margin: 0 auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* Gap (flexbox/grid) */
.gap-0 { gap: 0; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-base { gap: var(--space-base); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }
.gap-3xl { gap: var(--space-3xl); }

/* === FLEXBOX UTILITIES === */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }

/* === GRID UTILITIES === */
.grid { display: grid; }
.inline-grid { display: inline-grid; }

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.grid-auto-fit { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-auto-fit-lg { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-full { grid-column: 1 / -1; }

/* === TYPOGRAPHY UTILITIES === */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

.font-thin { font-weight: var(--font-weight-thin); }
.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); }
.font-semibold { font-weight: var(--font-weight-semibold); }
.font-bold { font-weight: var(--font-weight-bold); }
.font-extrabold { font-weight: var(--font-weight-extrabold); }
.font-black { font-weight: var(--font-weight-black); }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }

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

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* === COLOR UTILITIES === */
/* Text Colors */
.text-coral-500 { color: var(--coral-500); }
.text-coral-600 { color: var(--coral-600); }
.text-coral-700 { color: var(--coral-700); }

.text-navy-500 { color: var(--navy-500); }
.text-navy-600 { color: var(--navy-600); }
.text-navy-700 { color: var(--navy-700); }
.text-navy-800 { color: var(--navy-800); }
.text-navy-900 { color: var(--navy-900); }

.text-teal-300 { color: var(--teal-300); }
.text-teal-500 { color: var(--teal-500); }
.text-teal-700 { color: var(--teal-700); }

.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-900 { color: var(--gray-900); }

.text-white { color: var(--white); }
.text-black { color: var(--black); }

/* Background Colors */
.bg-coral-50 { background-color: var(--coral-50); }
.bg-coral-500 { background-color: var(--coral-500); }
.bg-coral-600 { background-color: var(--coral-600); }

.bg-navy-50 { background-color: var(--navy-50); }
.bg-navy-700 { background-color: var(--navy-700); }
.bg-navy-800 { background-color: var(--navy-800); }
.bg-navy-900 { background-color: var(--navy-900); }

.bg-teal-50 { background-color: var(--teal-50); }
.bg-teal-300 { background-color: var(--teal-300); }
.bg-teal-500 { background-color: var(--teal-500); }

.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-200 { background-color: var(--gray-200); }

.bg-white { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }
.bg-warm-white { background-color: var(--warm-white); }
.bg-transparent { background-color: transparent; }

/* === BORDER UTILITIES === */
.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }

.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }

.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-coral-500 { border-color: var(--coral-500); }
.border-white { border-color: var(--white); }
.border-transparent { border-color: transparent; }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius-md); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* === SHADOW UTILITIES === */
.shadow-none { box-shadow: none; }
.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* === DISPLAY UTILITIES === */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }

/* === POSITION UTILITIES === */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

/* === WIDTH/HEIGHT UTILITIES === */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-fit { height: fit-content; }

.max-w-screen { max-width: 1200px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-md { max-width: 768px; }
.max-w-full { max-width: 100%; }

.min-h-screen { min-height: 100vh; }

/* === TRANSITION UTILITIES === */
.transition { transition: var(--transition-base); }
.transition-all { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }
.transition-colors { transition: color var(--transition-base), background-color var(--transition-base); }
.transition-transform { transition: transform var(--transition-base); }
.transition-shadow { transition: box-shadow var(--transition-base); }

/* === TRANSFORM UTILITIES === */
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }

.-translate-y-1 { transform: translateY(-4px); }
.-translate-y-2 { transform: translateY(-8px); }

/* === OPACITY UTILITIES === */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* === OVERFLOW UTILITIES === */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* === CURSOR UTILITIES === */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* === OBJECT FIT === */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* === COMMON PATTERNS === */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.section-spacing {
    padding-top: var(--space-5xl);
    padding-bottom: var(--space-5xl);
}

/* ====================== 3. RESET & BASE STYLES ====================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
    }
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    scroll-padding-top: 80px
    }
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
        }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
        }
    }
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-loose);
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
    /* Establish baseline grid */
    --baseline: 8px
    }
/* Skip to Content Link - Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--navy-700);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    z-index: 9999;
    transition: top var(--transition-fast)
    }
.skip-link:focus {
    top: 0;
    outline: 3px solid var(--coral-500);
    outline-offset: 2px
    }
/* List Styles */
ul, ol {
    margin-top: 0;
    margin-bottom: var(--space-xl);
    padding-left: 0;
    list-style: none
    }
ul:last-child, ol:last-child {
    margin-bottom: 0
    }
/* List items need breathing room */
li {
    margin-bottom: var(--space-base);
    line-height: var(--line-height-loose)
    }
li:last-child {
    margin-bottom: 0
    }
/* Nested lists */
ul ul, ul ol, ol ul, ol ol {
    margin-top: var(--space-base);
    margin-bottom: var(--space-base);
    padding-left: var(--space-xl)
    }
/* Content lists (with actual bullets/numbers) */
.content ul, .content ol, article ul, article ol {
    padding-left: var(--space-xl)
    }
.content ul {
    list-style-type: disc
    }
.content ol {
    list-style-type: decimal
    }
.content li {
    padding-left: var(--space-sm)
    }
/* Links - Accessible and Elegant */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast)
    }
a:hover {
    color: var(--coral-700)
    }
a:focus {
    outline: 2px solid var(--coral-700);
    outline-offset: 2px;
    border-radius: 2px
    }
a:focus:not(:focus-visible) {
    outline: none
    }
a:focus-visible {
    outline: 2px solid var(--coral-700);
    outline-offset: 2px
    }
/* Text Emphasis */
strong, b {
    font-weight: var(--font-weight-bold);
    color: var(--navy-700)
    }
em, i {
    font-style: italic
    }
small {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal)
    }
/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block
    }
figure {
    margin: var(--space-3xl) 0
    }
figcaption {
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-style: italic;
    text-align: center
    }
/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none
    }
/* Form elements */
input, textarea, select {
    font-family: inherit;
    font-size: inherit
    }
/* Accessibility */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em 1.5em;
    background-color: var(--coral-700);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold)
    }
.skip-to-main:focus {
    left: 50%;
    transform: translatex(-50%);
    top: var(--space-md);
    outline: 3px solid var(--white);
    outline-offset: 2px
    }
/* Focus visible for better keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--coral-700);
    outline-offset: 2px;
    border-radius: 2px
    }
button:focus-visible, .btn:focus-visible {
    outline: 3px solid var(--coral-700);
    outline-offset: 3px
    }
/* ====================== 3. LAYOUT SYSTEM ====================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    margin-bottom: 32px;
    color: #000
    }
.container-fluid {
    width: 100%;
    padding: 0 var(--space-xl)
    }
.section-padding {
    padding: var(--space-5xl) 0
    }
.section-padding-sm {
    padding: var(--space-3xl) 0
    }
.section-padding-lg {
    padding: var(--space-6xl) 0
    }
.section-padding-xl {
    padding: calc(var(--space-6xl) * 1.5) 0
    }
/* Text Alignment */
.text-center {
    text-align: center
    }
.text-left {
    text-align: left
    }
.text-right {
    text-align: right
    }
/* ====================== 4. TYPOGRAPHY ====================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--navy-700);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em
    }
/* First heading has no top margin */
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0
    }
h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-2xl)
    }
h2 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.025em;
    margin-top: var(--space-4xl);
    margin-bottom: var(--space-xl)
    }
h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg)
    }
h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg)
    }
h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-base)
    }
h6 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-base)
    }
p {
    margin-top: 0;
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-loose);
    max-width: 70ch
    }
p:last-child {
    margin-bottom: 0
    }
/* Adjacent paragraphs need proper spacing */
p + p {
    margin-top: var(--space-xl)
    }
/* Paragraph after heading needs less space */
h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
    margin-top: 0
    }
.lead {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-loose);
    color: var(--gray-600);
    max-width: 65ch
    }
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--navy-700);
    margin-top: 0;
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-tight);
    letter-spacing: -0.025em
    }
.section-title.text-center {
    margin-bottom: var(--space-lg)
    }
.section-description, .section-subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    color: var(--gray-600);
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: var(--space-3xl);
    line-height: var(--line-height-loose)
    }
.text-center + .section-description, .section-title + .section-description {
    margin-top: calc(var(--space-lg) * -0.5)
    }
.page-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em
    }
.page-subtitle {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    opacity: 0.95;
    line-height: var(--line-height-relaxed);
    max-width: 65ch;
    margin: 0 auto
    }
/* ====================== 5. HEADER & NAVIGATION ====================== */
/* Top Bar - MAXIMUM EFFICIENCY */
.top-bar {
    background: var(--navy-800);  /* Darker for better contrast */
    color: var(--white);
    padding: 0.25rem 0;
    font-size: 0.875rem;  /* 14px */
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.2;  /* Tight but readable */
    }
.top-bar-content {
    flex-wrap: nowrap;
    gap: 1.5rem;
    min-height: 24px;
    max-height: 32px;
    }
.top-bar-left {
    flex-wrap: nowrap;
    }
.top-bar-link {
    color: rgba(255, 255, 255, 0.95);
    gap: 0.375rem;
    transition: var(--transition-fast);
    text-decoration: none;
    white-space: nowrap;
    }
.top-bar-link i {
    font-size: 0.875rem;
    }
.top-bar-link:hover {
    color: var(--coral-500);
    }
.top-bar-text {
    color: rgba(255, 255, 255, 0.95);
    }
/* Main Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-base)
    }
.header.scrolled {
    box-shadow: var(--shadow-md)
    }
.header-content {
    padding: 0.5rem 0;
    min-height: 50px;
    gap: var(--space-md)
    }
.logo {
    text-decoration: none;
    transition: opacity var(--transition-fast)
    }
.logo:hover {
    opacity: 0.85
    }
.logo-text {
    gap: 0.5rem
    }
.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-700);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap
    }
/* Navigation */
.nav {
    gap: var(--space-2xl);
    margin-left: auto
    }
.nav-link {
    color: var(--navy-700);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    position: relative;
    padding: var(--space-sm) 0;
    padding-bottom: calc(var(--space-sm) + 3px);
    transition: color var(--transition-fast);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }

/* Contact button in nav - Navy version */
.nav-link.btn.btn-primary {
    padding: 0.5rem 1.25rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: none;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 100%);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--coral-600) 0%, var(--coral-700) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.nav-link.btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.2);
}

/* Focus outline only visible when keyboard navigating */
.nav-link:focus-visible {
    outline: 2px solid var(--coral-500);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral-500) 0%, var(--coral-700) 100%);
    transition: width var(--transition-base);
    border-radius: var(--radius-sm)
    }
.nav-link:hover {
    color: var(--coral-700)
    }
.nav-link:hover::after, .nav-link.active::after {
    width: 100%
    }
.nav-link.active {
    color: var(--coral-700);
    font-weight: var(--font-weight-semibold)
    }
/* Header Actions - Use utility classes: flex items-center gap-md */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
    background: none;
    border: none
    }
.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--navy-700);
    transition: var(--transition-base);
    border-radius: var(--radius-sm)
    }
/* Keyboard focus indicator for mobile menu toggle */
.mobile-menu-toggle:focus-visible {
    outline: 3px solid var(--coral-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
    }
/* ====================== 6. BUTTONS ====================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9375rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
    min-height: 42px;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: var(--transition-button);
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: none;
}

.btn:focus-visible {
    outline: 3px solid var(--shadow-focus-coral);
    outline-offset: 2px;
}
/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 50%, var(--coral-700) 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3), 0 1px 3px rgba(0, 0, 0, 0.12);
    border: none;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4),
                0 3px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg,
        var(--navy-700) 0%,
        var(--navy-800) 50%,
        var(--navy-900) 100%);
    color: white;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0px);  /* Return to original position for "pressed" feel */
    transition-duration: 0.1s;
    box-shadow: 0 2px 8px rgba(51, 78, 104, 0.35);  /* Navy shadow when pressed */
    background: var(--navy-900);  /* Solid dark navy when pressed */
}

.btn-primary:focus-visible {
    outline-color: var(--coral-400);
}
/* Secondary Button - Premium Navy */
.btn-secondary {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Outline Button - Elegant transparent style */
.btn-outline {
    background: transparent;
    color: var(--navy-700);
    border: 1.5px solid currentColor;
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--navy-700);
    color: white;
    border-color: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* Dark Context Buttons - Premium treatment for hero sections */
section.dark-context .btn-outline,
.hero .btn-outline,
.dark-context .btn-outline {
    background: rgba(255, 255, 255, 0.08);  /* Subtle bg for better visibility */
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);  /* THICKER border - increased from 1.5px */
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-btn-outline);
    font-weight: 600;  /* Stronger weight for better balance */
}

section.dark-context .btn-outline:hover,
.hero .btn-outline:hover,
.dark-context .btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-700);
    border-color: white;
    border-width: 2px;  /* Maintain thickness on hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-outline-hover);
}
/* White Button - Clean & Minimal */
.btn-white {
    background: white;
    color: var(--navy-700);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Button Size Variants - Professional Scale */
.btn-sm {
    min-height: 40px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg,
.btn-large {
    min-height: 56px;
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

.btn-xl {
    min-height: 64px;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-block,
.btn-full {
    width: 100%;
}
.btn-urgent {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    animation: pulse 2s infinite
    }
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white)
    }
.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-700)
    }
.btn-light {
    background: var(--white);
    color: var(--navy-700)
    }
/* ====================== 7. HERO SECTION ====================== */

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: clamp(380px, 45vh, 480px);
    padding: clamp(2rem, 5vh, 3rem) var(--space-lg) clamp(1.5rem, 4vh, 2.5rem);  /* ULTRA COMPACT padding */
}

/* Premium gradient overlay - sophisticated depth */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(16, 42, 67, 0.93) 0%,
        rgba(36, 59, 83, 0.90) 50%,
        rgba(51, 78, 104, 0.88) 100%
    );
    z-index: 1;
}

/* Subtle grain texture for Fortune 100 premium feel */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.025;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.9), rgba(26, 69, 112, 0.8));
    z-index: 1;
}

/* Hero content container - Positioned at top for efficiency */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    padding-top: clamp(1rem, 3vh, 2rem);
}

/* Premium Hero Title - Efficient & Impactful */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 auto 0.875rem;
    max-width: 950px;
    color: white;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Premium Hero Subtitle - Efficient & Clear */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 1rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Hero buttons - Use utility classes: flex gap-sm justify-center items-center flex-wrap m-0 */
.hero-buttons {
    gap: 0.875rem;  /* Custom tight gap */
    margin: 0;  /* ZERO margins - let subtitle control spacing */
}
.hero-trust-badges {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-2xl)
    }
.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    font-size: var(--font-size-sm)
    }
.trust-badge i {
    font-size: var(--font-size-lg);
    color: var(--teal-300)
    }
.trust-badge-text {
    color: var(--white);
    font-weight: var(--font-weight-medium)
    }
/* Page Header (for internal pages) */
.page-header {
    padding: 5rem 0 3.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%)
    }
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 69, 112, 0.9) 100%);
    z-index: 1
    }
.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center
    }
/* Page header uses .dark-context utility */
.breadcrumb {
    margin-top: var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
    color: var(--white)
    }
.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color var(--transition-fast)
    }
.breadcrumb a:hover {
    border-bottom-color: var(--white);
    color: var(--white)
    }
/* ====================== 8. COMPONENTS - Cards, Badges, Icons ====================== */
/* Cards - Now using standardized .card class in HTML */
/* Legacy selectors removed - all HTML updated to use .card + modifiers */
/* Icon Badges - Now using standardized .icon-badge class in HTML */
/* Legacy icon selectors removed - all HTML updated to use .icon-badge + modifiers */
/* Badges */
.service-badge, .service-showcase-badge, .package-badge, .pricing-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--coral-500);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
    z-index: 2
    }
.service-badge.urgent {
    background: #dc3545;
    animation: pulse 2s infinite
    }
/* Featured Cards */
.package-card.featured, .pricing-option.featured {
    border: 2px solid var(--coral-500);
    position: relative;
    transform: scale(1.05)
    }
.package-card.featured::before, .pricing-option.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral-500) 0%, var(--teal-300) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0
    }
/* ====================== 9. FAQ / ACCORDION COMPONENTS ====================== */
/* FAQ Container */
.faq-container, .faq-section {
    max-width: 900px;
    margin: 0 auto
    }
/* FAQ Category Sections */
.faq-category {
    margin-bottom: var(--space-4xl)
    }
.faq-category:last-child {
    margin-bottom: 0
    }
.faq-category-title {
    position: relative;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-lg);
    letter-spacing: -0.02em
    }
.faq-category-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--coral-700) 0%, var(--teal-700) 100%);
    border-radius: var(--radius-full)
    }
/* Accordion Item - extends .card base class */
.card-faq, .faq-item, .accordion-item {
    border: 1px solid var(--gray-200);
  
    border-radius: var(--radius-xl);
  
    margin-bottom: var(--space-xl);
    overflow: hidden;
    /* Addition: needed for accordion animation */
    padding: 0;
  
    background: var(--white)
    }
.card-faq:last-child, .accordion-item:last-child {
    margin-bottom: 0
    }
.card-faq:hover, .accordion-item:hover {
    /* Inherits transform: translateY(-6px) from .card:hover */
    border-color: var(--gray-300);
  
    box-shadow: var(--shadow-lg);
    /* Uses CSS variable */
    transform: translatey(-2px);
  
    }
.card-faq.active, .accordion-item.active {
    border-color: var(--coral-700);
    box-shadow: 0 8px 24px rgba(216, 67, 67, 0.12)
    }
/* Accordion Question/Header - Refined */
.faq-question, .accordion-header, .accordion-question {
    width: 100%;
    padding: var(--space-2xl) var(--space-2xl);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: var(--space-xl);
    transition: all var(--transition-base);
    position: relative
    }
.faq-question::before, .accordion-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translatey(-50%);
    width: 0;
    height: 50%;
    background: linear-gradient(180deg, var(--coral-700) 0%, transparent 100%);
    opacity: 0;
    transition: all var(--transition-base);
    border-radius: 0 var(--radius-md) var(--radius-md) 0
    }
.faq-question:hover::before, .accordion-header:hover::before {
    width: 4px;
    opacity: 1
    }
/* Keyboard focus indicator for accessibility */
.faq-question:focus-visible, .accordion-header:focus-visible, .accordion-question:focus-visible {
    outline: 3px solid var(--coral-500);
    outline-offset: 2px;
    border-radius: var(--radius-md);
    }
.card-faq.active .faq-question, .accordion-item.active .accordion-header {
    background: linear-gradient(90deg, rgba(216, 67, 67, 0.03) 0%, transparent 100%)
    }
.card-faq.active .faq-question::before, .accordion-item.active .accordion-header::before {
    width: 4px;
    opacity: 1
    }
.faq-question h3, .faq-question h4, .accordion-header h3, .accordion-header h4 {
    flex: 1;
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--navy-700);
    line-height: var(--line-height-snug);
    letter-spacing: 0;
    transition: color var(--transition-fast)
    }
.faq-question:hover h3, .faq-question:hover h4, .accordion-header:hover h3, .accordion-header:hover h4 {
    color: var(--coral-700)
    }
/* Accordion Icon/Toggle - Prominent and Elegant */
.faq-toggle, .accordion-toggle, .faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-full);
    color: var(--navy-700);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-normal);
    transition: all var(--transition-base);
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    position: relative
    }
.faq-toggle::after, .accordion-toggle::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    padding: 2px;
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--teal-300) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base)
    }
.faq-question:hover .faq-toggle, .accordion-header:hover .accordion-toggle {
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    transform: scale(1.05)
    }
.faq-question:hover .faq-toggle::after, .accordion-header:hover .accordion-toggle::after {
    opacity: 1
    }
.card-faq.active .faq-toggle, .accordion-item.active .accordion-toggle, .faq-question[aria-expanded="true"] .faq-toggle {
    background: linear-gradient(135deg, var(--coral-700) 0%, var(--coral-500) 100%);
    color: var(--white);
    transform: rotate(135deg);
    box-shadow: 0 4px 12px rgba(216, 67, 67, 0.3)
    }
.card-faq.active .faq-toggle::after, .accordion-item.active .accordion-toggle::after {
    opacity: 0
    }
/* Accordion Answer/Content - Smooth Reveal */
.faq-answer, .accordion-content, .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slowest), padding var(--transition-slowest), opacity var(--transition-slow);
    opacity: 0
    }
.card-faq.active .faq-answer, .accordion-item.active .accordion-content, .faq-answer.active {
    max-height: 3000px;
    padding: 0 var(--space-2xl) var(--space-2xl) var(--space-2xl);
    padding-top: var(--space-xl);
    opacity: 1
    }
.faq-answer-content, .accordion-content-inner {
    color: var(--gray-700);
    line-height: var(--line-height-loose)
    }
/* Content inside accordion */
.faq-answer p, .accordion-content p {
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-loose)
    }
.faq-answer p:last-child, .accordion-content p:last-child {
    margin-bottom: 0
    }
.faq-answer ul, .accordion-content ul {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl)
    }
.faq-answer li, .accordion-content li {
    margin-bottom: var(--space-md);
    line-height: var(--line-height-loose);
    padding-left: var(--space-sm)
    }
.faq-answer strong, .accordion-content strong {
    font-weight: var(--font-weight-semibold);
    color: var(--navy-700)
    }
/* FAQ Category Navigation - Professional Design */
.faq-nav, .faq-categories-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-5xl);
    padding: var(--space-lg);
    background: transparent
    }
.faq-nav-item, .faq-category-link {
    position: relative;
    padding: var(--space-md) var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-base);
    overflow: hidden;
    box-shadow: var(--shadow-xs)
    }
.faq-nav-item::before, .faq-category-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-700) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1
    }
.faq-nav-item:hover, .faq-category-link:hover {
    color: var(--white);
    border-color: transparent;
    transform: translatey(-2px);
    box-shadow: var(--shadow-lg)
    }
.faq-nav-item:hover::before, .faq-category-link:hover::before {
    opacity: 1
    }
.faq-nav-item.active, .faq-category-link.active {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-md)
    }
/* Remove emoji styling - professional design doesn't need emojis */
.faq-nav-item .emoji, .faq-category-link .emoji, .faq-category-title .emoji {
    display: none
    }
/* ====================== 10. SECTIONS ====================== */
/* Value Proposition */
.value-prop {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%);
    position: relative
    }
.value-prop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none
    }
.value-prop-grid {
    gap: var(--space-2xl);
    margin-top: var(--space-3xl)
    }
.value-prop-item h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em
    }
.value-prop-item p {
    color: var(--gray-600);
    line-height: var(--line-height-loose);
    margin-bottom: 0
    }
/* Services Showcase */
.services {
    padding: clamp(2.5rem, 6vh, 3.5rem) 0;
    background: var(--white)
    }
.services-showcase {
    gap: var(--space-xl);
    }
/* NOTE: .card-service is a LAYOUT CONTAINER for responsive grid, not a card */
.card-service {
    gap: var(--space-2xl);
    align-items: center
    }
.card-service.reverse {
    direction: rtl
    }
.card-service.reverse > * {
    direction: ltr
    }
.service-showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md)
    }
.service-showcase-image img, .service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
    transition: transform var(--transition-base)
    }
.card-service:hover .service-showcase-image img, .service-detail-card:hover .service-detail-image img {
    transform: scale(1.05)
    }
.service-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg)
    }
.service-detail-image img {
    width: 100%;
    height: 250px;
    object-fit: cover
    }
.service-showcase-content h3 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em
    }
.service-desc {
    font-size: var(--font-size-base);
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    line-height: var(--line-height-loose);
    max-width: 70ch
    }
.service-desc + .service-features {
    margin-top: var(--space-xl)
    }
.service-features {
    list-style: none;
    margin: var(--space-xl) 0;
    padding: 0
    }
.service-features li {
    padding: var(--space-md) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: var(--gray-700);
    line-height: var(--line-height-loose);
    font-size: var(--font-size-base)
    }
.service-features li::before {
    content: "✓";
    color: var(--teal-700);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0
    }
.service-features i {
    color: var(--teal-700)
    }
.service-pricing {
    background: var(--gray-50);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    text-align: center
    }
.price, .pricing-amount {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    color: var(--coral-700);
    line-height: 1;
    letter-spacing: -0.02em
    }
.price-period, .pricing-amount span {
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--gray-500)
    }
.pricing-frequency {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--navy-700);
    font-size: var(--font-size-sm);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm)
    }
/* Service CTA */
.services-cta {
    background: linear-gradient(135deg, var(--navy-700), #1a4570);
    color: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: var(--space-3xl)
    }
.services-cta h3 {
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    /* Color handled by .dark-context on .services-cta */
    }
.services-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl)
    }
/* Why Choose Us */
.why-choose {
    padding: clamp(3rem, 8vh, 4.5rem) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative
    }
.why-grid {
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    }
.why-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md)
    }
.why-image img, .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base)
    }
/* Specific image hover effects - removed generic .card:hover img to prevent conflicts */
.card:hover .why-image img {
    transform: scale(1.05)
    }
.why-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em
    }
.why-content p {
    color: var(--gray-600);
    line-height: var(--line-height-loose);
    margin-bottom: 0
    }
/* Testimonials - Fortune 100 Design */
.testimonials {
    padding: clamp(3rem, 8vh, 4.5rem) 0;
    background: var(--white);
    position: relative;
    }
.testimonials-grid {
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    align-items: stretch;
    }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--coral-500);
    opacity: 0.15;
    font-weight: 700;
    line-height: 1;
    }
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--coral-500);
    }
.testimonial-rating {
    gap: 0.25rem;
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    color: #F59E0B;
    position: relative;
    z-index: 1;
    }
.testimonial-rating i {
    transition: transform var(--transition-swift);
    }
.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
    }
.testimonial-quote {
    font-size: clamp(1rem, 2vw, 1.0625rem);
    line-height: 1.7;
    color: var(--navy-700);
    margin-bottom: var(--space-xl);
    font-style: normal;
    font-weight: 400;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    }
.testimonial-author {
    border-top: 2px solid var(--gray-100);
    padding-top: var(--space-md);
    margin-top: auto;
    }
.testimonial-name {
    font-weight: var(--font-weight-bold);
    font-size: 1.0625rem;
    color: var(--navy-800);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
    }
.testimonial-location {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 500;
    }
/* Value Propositions Section */
.value-props {
    padding: clamp(3rem, 8vh, 4.5rem) 0;
    background: var(--white)
    }
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    }
.value-prop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative
    }
.value-prop-card:hover {
    transform: translatey(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--coral-500)
    }
.value-prop-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-icon-coral)
    }
.value-prop-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em
    }
.value-prop-description {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: var(--line-height-relaxed)
    }
/* Services Grid Section - Fortune 100 TIGHT Spacing */
.services-grid {
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    }
.service-card:hover {
    transform: translatey(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-300)
    }
.service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
    color: var(--white);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    background: linear-gradient(135deg, var(--teal-300) 0%, var(--teal-400) 100%);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-icon-teal)
    }
.service-title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-bottom: var(--space-xs);
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.3;
    }
.service-price {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--coral-700);
    text-align: center;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    line-height: 1;
    }
.service-description {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
    flex-grow: 1;
    text-align: center;
    }
.service-card .service-features {
    list-style: none;
    margin: var(--space-sm) 0 var(--space-md) 0;
    padding: 0;
    width: 100%;
    }
.service-card .service-features li {
    padding: 0.375rem 0;
    gap: var(--space-sm);
    color: var(--gray-700);
    line-height: 1.4;
    font-size: 0.9375rem;
    }
.service-card .service-features li::before {
    content: "✓";
    color: var(--teal-700);
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    font-size: 1rem;
    }
.service-card .btn {
    align-items: center;
    margin-top: var(--space-sm);
    width: 100%;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    }
/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    }
.why-choose-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base)
    }
.why-choose-card:hover {
    transform: translatey(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--coral-500)
    }
.why-choose-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--gray-100)
    }
.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-base);
    display: block
    }
.why-choose-card:hover .why-choose-image img {
    transform: scale(1.05)
    }
.why-choose-content {
    padding: var(--space-lg);
    }
.why-choose-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--navy-700);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em
    }
.why-choose-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: var(--line-height-relaxed)
    }
/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--coral-500);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-sm);
    }
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    font-size: 4rem;
    color: var(--coral-500);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
    }
.testimonial-card:hover {
    transform: translatey(-4px);
    box-shadow: var(--shadow-lg)
    }
.testimonial-rating {
    color: #F59E0B;
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em
    }
.testimonial-quote {
    font-size: 16px;
    line-height: var(--line-height-loose);
    color: #333;
    margin-bottom: var(--space-lg);
    font-style: italic;
    }
.testimonial-name {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    color: var(--navy-700);
    margin-bottom: var(--space-xs);
    }
.testimonial-location {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    }
/* CTA Sections */
/* ======================
   PREMIUM CTA SECTION - Fortune 100 Treatment
   Perfect Contrast, Generous Spacing, Professional Layout
   ====================== */

/* CRITICAL: Actual CTA class used in HTML */
.cta {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: clamp(3rem, 8vh, 4.5rem) var(--space-xl) clamp(2.5rem, 6vh, 3.5rem);
    text-align: center;
    overflow: hidden;
}

/* Override inline background with proper overlay - !important needed to override inline styles */
.cta::before {
    content: '' !important;  /* Required: Override inline pseudo-element */
    position: absolute !important;  /* Required: Override inline positioning */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(16, 42, 67, 0.85);  /* DARK OVERLAY for text contrast */
    z-index: 1 !important;  /* Required: Ensure overlay is below content */
}

.cta .container,
.cta .cta-content {
    position: relative;
    z-index: 2;
}

/* CTA Title - WHITE for contrast */
.cta .cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 auto 1.25rem;
    max-width: 800px;
    color: white;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CTA Subtitle - HIGH CONTRAST WHITE */
.cta .cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 1.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* CTA Guarantee - HIGH CONTRAST WHITE */
.cta .cta-guarantee {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-guarantee i {
    color: var(--teal-300);
    margin-right: 0.5rem;
    font-size: 1.125em;
}

/* White button for CTA section */
.btn-white {
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy-700);
    border: 2px solid white;
    font-weight: 600;
}

.btn-white:hover {
    background: white;
    color: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 50%, var(--navy-800) 100%);
    color: white;
    padding: clamp(3rem, 8vh, 4.5rem) var(--space-xl) clamp(2.5rem, 6vh, 3.5rem);  /* COMPACT - 40% reduction */
    text-align: center;
    overflow: hidden;
}

/* Add subtle pattern for depth */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

/* CTA Title - PERFECT CONTRAST & COMPACT */
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);  /* Slightly smaller for efficiency */
    font-weight: 700;
    line-height: 1.15;  /* Tighter */
    letter-spacing: -0.02em;
    margin: 0 auto 1.25rem;
    max-width: 800px;
    color: white;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

/* CTA Description - HIGH CONTRAST & READABLE */
.cta-description {
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);  /* Slightly smaller */
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 auto 1.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons - COMPACT spacing */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 1.75rem auto 1.5rem;  /* COMPACT - reduced significantly */
}

/* CTA Note/Guarantee - VISIBLE & PROMINENT */
.cta-note {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.4vw, 1rem);  /* Slightly smaller */
    font-weight: 500;  /* Slightly bold for prominence */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;  /* More compact padding */
    display: inline-block;
}

/* Make guarantee stand out with icon */
.cta-note i,
.cta-note .fa-check-circle {
    color: var(--teal-300);  /* Teal accent for trust */
    margin-right: 0.5rem;
    font-size: 1.125em;
}
/* ====================== 11. FORMS ====================== */
.form-group {
    margin-bottom: 20px
    }
.form-group:last-child {
    margin-bottom: 0
    }
.form-group label {
    display: block;
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    color: var(--navy-700);
    letter-spacing: 0.01em
    }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    font-family: inherit
    }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--coral-700);
    box-shadow: var(--shadow-focus)
    }
.form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible {
    outline: 2px solid var(--coral-700);
    outline-offset: 2px;
    border-color: var(--coral-700)
    }
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--gray-400)
    }
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg)
    }
.form-note {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: var(--space-md);
    text-align: center
    }
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 400;
    cursor: pointer
    }
.checkbox-label input[type="checkbox"] {
    width: auto
    }
/* Trust Bar - Improved spacing and visual prominence */
.trust-bar {
    background: var(--navy-700);
    padding: 1.5rem 0;
    border-top: 4px solid var(--coral-500);  /* THICKER border - more prominent */
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.1);  /* Subtle depth */
    }
.trust-items {
    gap: 1.5rem;  /* Increased gap for breathing room */
    max-width: 1100px;  /* Constrain width */
    margin: 0 auto;  /* Center */
    padding: 0 var(--space-lg);
    }

/* Hero Trust Bar - Above the Fold Integration */
.hero-trust-bar {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    gap: var(--space-lg);
    justify-content: center;
    }

.trust-item {
    gap: 0.625rem;  /* Slightly larger gap */
    color: var(--white);
    font-size: 0.9375rem;  /* Slightly larger for readability */
    font-weight: 600;  /* Bolder */
    white-space: nowrap;
    }
.trust-item i {
    color: var(--coral-500);
    font-size: 1.5rem;  /* Larger icons for visual impact */
    flex-shrink: 0;
    }
/* FAQ Section - Fortune 100 Professional Design */
.faq-section {
    padding: clamp(2.5rem, 6vh, 3.5rem) 0;
    background: var(--gray-50);
    }
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    }
.faq-item {
    margin-bottom: var(--space-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
.faq-item:hover {
    border-color: var(--coral-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    }
.faq-item.active {
    border-color: var(--coral-500);
    box-shadow: var(--shadow-lg);
    }
.faq-question {
    width: 100%;
    padding: 1.125rem 1.25rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: clamp(1rem, 2vw, 1.0625rem);
    font-weight: var(--font-weight-semibold);
    color: var(--navy-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
    line-height: 1.4;
    }
.faq-question:hover {
    background: var(--gray-50);
    color: var(--coral-500);
    }
.faq-question:focus {
    outline: 2px solid var(--coral-500);
    outline-offset: -2px;
    }
.faq-question[aria-expanded="true"] {
    background: var(--gray-50);
    color: var(--coral-500);
    padding-bottom: 1rem;
    }
.faq-question span {
    flex: 1;
    }
.faq-question i {
    color: var(--coral-500);
    transition: transform var(--transition-smooth);
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
    }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    background: var(--white);
    }
.faq-answer p {
    padding: 0 1.25rem 1.25rem 1.25rem;
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 0.9375rem;
    }
.faq-item.active .faq-answer {
    max-height: 800px;
    }
/* Contact Form Section */
.contact-form-section {
    background: var(--bg-light)
    }
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    max-width: 1200px;
    margin: 0 auto
    }
.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md)
    }
.form-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg)
    }
.form-group {
    margin-bottom: var(--space-lg)
    }
.form-group label {
    display: block;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
    color: var(--navy-700)
    }
.form-group .required {
    color: var(--coral-500)
    }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease
    }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--coral-500)
    }
.form-group textarea {
    resize: vertical;
    min-height: 120px
    }
.form-message {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: none
    }
.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb
    }
.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb
    }
.contact-info-sidebar {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: fit-content
    }
.contact-info-sidebar h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-xl);
    color: var(--navy-700)
    }
.contact-info-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl)
    }
.contact-info-item i {
    color: var(--coral-500);
    font-size: var(--font-size-xl);
    margin-top: 4px
    }
.contact-info-item strong {
    display: block;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-xs);
    color: var(--navy-700)
    }
.contact-info-item a {
    color: var(--text-color);
    text-decoration: none
    }
.contact-info-item a:hover {
    color: var(--coral-500)
    }
.contact-info-item p {
    margin: 0;
    color: var(--text-color)
    }
.response-time {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
    gap: var(--space-sm);
    }
.response-time i {
    color: var(--coral-500)
    }
.response-time p {
    margin: 0;
    font-size: var(--font-size-sm)
    }
/* ====================== 12. FOOTER ====================== */
.footer {
    background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
    color: var(--white);
    padding: clamp(2rem, 5vh, 2.75rem) 0 clamp(1.25rem, 3vh, 1.75rem);  /* TIGHTER - 20% more reduction */
    border-top: 3px solid var(--coral-700);
    }
.footer-content, .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-md) !important;
    align-items: start;  /* FIX: Align all columns to top */
    }
.footer-section, .footer-col {
    color: var(--white)
    }
.footer-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem) !important;  /* EVEN LARGER - 20% increase */
    font-weight: 900;  /* Maximum boldness */
    margin-bottom: 0.375rem !important;  /* TIGHTER - better grouping with tagline */
    letter-spacing: -0.025em;
    color: var(--white);
    text-transform: none;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.25);  /* More prominent shadow */
    }
.footer-description {
    color: rgba(255, 255, 255, 0.9);  /* Good contrast */
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    }

/* Footer text - same as description */
.footer-text {
    color: rgba(255, 255, 255, 0.88);  /* Slightly lighter for hierarchy */
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.footer-heading {
    font-size: 1.1875rem;
    font-weight: 800;  /* MUCH BOLDER - increased from 700 */
    margin-bottom: var(--space-sm);
    color: var(--white);
    letter-spacing: 0.05em;  /* MORE tracking for uppercase */
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);  /* Subtle depth */
    }
.footer-links, .footer-contact {
    list-style: none
    }
.footer-links li, .footer-contact li {
    margin-bottom: 0.625rem;
    }
.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.92);  /* BRIGHTER for better readability */
    transition: var(--transition-fast);
    display: inline-block;
    line-height: 1.6;
    font-size: 0.9375rem;  /* Consistent sizing */
    font-weight: 400;  /* Regular weight for links */
    }
.footer-links a:hover, .footer-contact a:hover {
    color: var(--coral-500);
    transform: translateX(3px);  /* Subtle hover effect */
    text-decoration: underline;  /* Visual feedback */
    }

/* CRITICAL: Make contact info prominent and well-spaced */
.footer-contact li {
    margin-bottom: 0.625rem;
    line-height: 1.6;
}

.footer-contact a,
.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.92);  /* Higher contrast */
    font-weight: 400;  /* Regular weight for consistency */
    line-height: 1.6;
    display: inline;
}

/* Style for contact labels - INLINE with consistent spacing */
.footer-contact strong,
.footer-contact b {
    color: rgba(255, 255, 255, 0.7);  /* Subtle label */
    font-weight: 600;
    display: inline;
    margin-bottom: 0;
    margin-right: 0.25rem;
    font-size: 0.875rem;
    min-width: 70px;
    text-align: left;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-sm);
    margin-top: var(--space-sm);
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    flex-direction: column-reverse;  /* CRITICAL: Reverse order - Back to Top first */
    gap: 0.5rem;
    }
.footer .footer-bottom p {
    margin: 0;  /* REMOVE all margins */
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    }

/* Back to Top link styling */
.footer-back-top {
    order: -1;
}

.back-to-top {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.back-to-top:hover {
    color: var(--coral-500);
    transform: translateY(-2px);
}
.footer-legal {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.375rem;
    }
.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    /* FIX: Improved from 0.7 to 0.85 */
    }
.footer-legal a:hover {
    color: var(--white)
    }
/* Social Links */
.social-links {
    flex-wrap: wrap
    }
.social-link, .social-icon {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-base);
    transition: var(--transition-fast)
    }
.social-link:hover, .social-icon:hover {
    color: var(--coral-500);
    transform: translatey(-2px)
    }
/* ====================== 13. UTILITIES ====================== */
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 1.8rem;
    box-shadow: var(--shadow-success);
    z-index: 9999;
    text-decoration: none;
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite
    }
.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-success-hover);
    color: var(--white)
    }
.whatsapp-icon {
    font-size: inherit
    }
/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--navy-700);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.3);
    font-size: var(--font-size-xl);
    z-index: 9998
    }
.scroll-top.visible {
    opacity: 1;
    visibility: visible
    }
.scroll-top:hover {
    background: var(--coral-500);
    transform: translatey(-3px)
    }
/* Section Background Colors */
.bg-gray {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 50%, var(--white) 100%)
    }
.bg-white {
    background-color: var(--white)
    }
/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-200) 50%, transparent 100%);
    margin: var(--space-5xl) 0
    }
.bg-dark {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    color: var(--white)
    }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 {
    color: var(--white) !important
    }
.bg-dark p, .bg-dark li {
    color: rgba(255, 255, 255, 0.9)
    }
/* Spacing Utilities */
.mb-0 {
    margin-bottom: 0 !important
    }
.mb-xs {
    margin-bottom: var(--space-xs) !important
    }
.mb-sm {
    margin-bottom: var(--space-sm) !important
    }
.mb-md {
    margin-bottom: var(--space-md) !important
    }
.mb-base {
    margin-bottom: var(--space-base) !important
    }
.mb-lg {
    margin-bottom: var(--space-lg) !important
    }
.mb-xl {
    margin-bottom: var(--space-xl) !important
    }
.mb-2xl {
    margin-bottom: var(--space-2xl) !important
    }
.mb-3xl {
    margin-bottom: var(--space-3xl) !important
    }
.mt-0 {
    margin-top: 0 !important
    }
.mt-xs {
    margin-top: var(--space-xs) !important
    }
.mt-sm {
    margin-top: var(--space-sm) !important
    }
.mt-md {
    margin-top: var(--space-md) !important
    }
.mt-base {
    margin-top: var(--space-base) !important
    }
.mt-lg {
    margin-top: var(--space-lg) !important
    }
.mt-xl {
    margin-top: var(--space-xl) !important
    }
.mt-2xl {
    margin-top: var(--space-2xl) !important
    }
.mt-3xl {
    margin-top: var(--space-3xl) !important
    }
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
    }
.py-sm {
    padding-top: var(--space-sm) !important;
    padding-bottom: var(--space-sm) !important
    }
.py-md {
    padding-top: var(--space-md) !important;
    padding-bottom: var(--space-md) !important
    }
.py-lg {
    padding-top: var(--space-lg) !important;
    padding-bottom: var(--space-lg) !important
    }
.py-xl {
    padding-top: var(--space-xl) !important;
    padding-bottom: var(--space-xl) !important
    }
/* Typography Utilities */
.text-balance {
    text-wrap: balance
    }
.text-pretty {
    text-wrap: pretty
    }
.measure {
    max-width: 65ch
    }
.measure-wide {
    max-width: 80ch
    }
.measure-narrow {
    max-width: 45ch
    }
/* ====================== 14. ANIMATIONS ====================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        } 50% {
        transform: scale(1.05);
        }
    }
@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
        transform: scale(1);
        } 50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.08);
        transform: scale(1.02);
        }
    }
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
.fade-in-up {
    animation: fadeInUp 0.6s ease-out
    }
/* ====================== 15. MEDIA QUERIES - RESPONSIVE DESIGN ====================== */
/* Tablets and below (968px) */
@media (max-width: 968px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2rem
        }
    .faq-question, .accordion-header {
        padding: var(--space-lg) var(--space-xl)
        }
    .faq-nav, .faq-categories-nav {
        padding: var(--space-md)
        }
    .nav {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--white);
        flex-direction: column;
        padding: var(--space-2xl);
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        z-index: var(--z-dropdown)
        }
    .nav.active {
        left: 0
        }
    .mobile-menu-toggle {
        display: flex
        }
    .hero-title {
        font-size: var(--font-size-4xl)
        }
    .card-service {
        grid-template-columns: 1fr
        }
    .card-service.reverse {
        direction: ltr
        }
    .why-grid, .testimonials-grid, .value-prop-grid {
        grid-template-columns: 1fr
        }
    }
/* Mobile (768px) */
@media (max-width: 768px) {
    :root {
        --space-4xl: 3rem;
        --space-3xl: 2.5rem
        }
    .container, .container-fluid {
        padding: 0 var(--space-lg)
        }
    .logo-name {
        font-size: 1.25rem;
        }
    .section-title {
        font-size: var(--font-size-3xl)
        }
    .page-title {
        font-size: var(--font-size-3xl)
        }
    .hero-buttons, .cta-buttons {
        flex-direction: column
        }
    .trust-items {
        flex-direction: column;
        gap: var(--space-md)
        }
    .trust-item {
        font-size: var(--font-size-base)
        }
    .btn {
        align-items: center;
        width: 100%
        }
    .contact-form-wrapper {
        grid-template-columns: 1fr
        }
    .form-row {
        grid-template-columns: 1fr
        }
    .footer-grid, .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl)
        }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px
        }
    .scroll-top {
        right: 80px;
        width: 40px;
        height: 40px
        }
    }
/* Small Mobile (480px) */
@media (max-width: 480px) {
    .logo-name {
        font-size: 1.125rem;
        }
    .container, .container-fluid {
        padding: 0 var(--space-base)
        }
    .hero-title, .page-title {
        font-size: var(--font-size-3xl);
        line-height: 1.2
        }
    .section-title {
        font-size: var(--font-size-3xl);
        line-height: 1.2
        }
    .hero-subtitle, .page-subtitle {
        font-size: var(--font-size-base)
        }
    .faq-question, .accordion-header {
        padding: var(--space-lg) var(--space-base);
        gap: var(--space-md)
        }
    .card-faq.active .faq-answer, .accordion-item.active .accordion-content {
        padding: var(--space-md) var(--space-base) var(--space-lg)
        }
    .faq-toggle, .accordion-toggle {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-xl)
        }
    .faq-nav, .faq-categories-nav {
        gap: var(--space-sm)
        }
    .faq-nav-item, .faq-category-link {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.75rem
        }
    .btn {
        align-items: center;
        padding: 12px 24px;
        font-size: var(--font-size-sm)
        }
    .btn-lg {
        padding: 1rem 2rem;
        font-size: var(--font-size-base)
        }
    .form-row {
        grid-template-columns: 1fr
        }
    .pricing-amount, .price {
        font-size: var(--font-size-3xl)
        }
    .top-bar-content {
        flex-direction: column;
        text-align: center
        }
    }
/* ====================== 16. PRINT STYLES ====================== */
@media print {
    .header, .top-bar, .whatsapp-float, .scroll-top, .mobile-menu-toggle, .btn, .footer {
        display: none !important
        }
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000
        }
    .section-padding {
        padding: 1rem 0
        }
    a {
        text-decoration: underline
        }
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* ======================
   END OF STYLESHEET
