/* ========================================
   HILFEO - Premium Dark Theme
   Inspired by Phenix Digital aesthetic
   ======================================== */

/* ========================================
   1. CSS VARIABLES & DESIGN TOKENS
   ======================================== */
:root {
    /* Primary Colors - Dark Theme */
    --bg-primary: #070c14;
    --bg-secondary: #0a1018;
    --bg-elevated: #0f1724;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;

    /* Accent Colors */
    --accent-blue: #1c64ff;
    --accent-blue-light: #2a7fff;
    --accent-blue-dark: #122f94;
    --accent-gradient: linear-gradient(135deg, #122f94 0%, #1c64ff 100%);
    --accent-gradient-hover: linear-gradient(135deg, #1c64ff 0%, #2a7fff 100%);

    /* Text Colors */
    --text-primary: #f2f9fe;
    --text-secondary: #a8b4c4;
    --text-muted: #6b7a8f;
    --text-heading: #ffffff;

    /* Light Section Colors */
    --bg-light: #f5f7fa;
    --bg-light-card: #ffffff;
    --text-dark: #1a1f2e;
    --text-dark-secondary: #4a5568;

    /* Borders & Effects */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    --border-accent: rgba(28, 100, 255, 0.4);
    --glow-blue: rgba(28, 100, 255, 0.25);
    --glow-blue-strong: rgba(28, 100, 255, 0.5);

    /* Glassmorphism */
    --glass-bg: rgba(17, 24, 39, 0.8);
    --glass-bg-light: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(28, 100, 255, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --container-max: 1280px;
    --container-narrow: 900px;
}

/* ========================================
   2. BASE STYLES & RESET
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

a {
    color: var(--accent-blue-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--text-primary);
}

/* Text Utilities */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-accent {
    color: var(--accent-blue-light);
}

/* ========================================
   4. LAYOUT & CONTAINERS
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

.section-padding-sm {
    padding: var(--spacing-2xl) 0;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.gap-sm {
    gap: var(--spacing-sm);
}

.gap-md {
    gap: var(--spacing-md);
}

.gap-lg {
    gap: var(--spacing-lg);
}

/* ========================================
   5. NAVIGATION
   ======================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) var(--spacing-lg);
    transition: all var(--transition-base);
}

.navbar {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(7, 12, 20, 0.95);
    box-shadow: var(--shadow-md);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.625rem 1.25rem;
    background: var(--accent-gradient);
    color: var(--text-primary) !important;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1px solid var(--accent-blue-light);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
    z-index: 1002;
    /* Above overlay */
}

.mobile-menu-btn:hover {
    background: var(--glass-bg-light);
    border-color: var(--border-accent);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 12, 20, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 120px var(--spacing-lg) var(--spacing-lg);
    display: flex;
    /* Always flex, toggled via opacity/visibility */
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    z-index: 1001;
    /* Above header-wrapper to ensure visibility */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-overlay .nav-link {
    font-size: 1.5rem;
    padding: var(--spacing-sm) 0;
    border-bottom: none;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-overlay .nav-link:hover,
.nav-overlay .nav-link.active {
    color: var(--text-primary);
    transform: scale(1.05);
}

/* ========================================
   6. BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    border: 1px solid var(--accent-blue-light);
    box-shadow: 0 4px 15px rgba(28, 100, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 100, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--glass-bg-light);
    border-color: var(--accent-blue);
}

.btn-glass {
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn i {
    font-size: 0.875em;
}

/* ========================================
   7. CARDS
   ======================================== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

/* Glass Card - Dark & Premium */
.glass-card {
    background: rgba(10, 22, 41, 0.6);
    /* Darker, richer navy */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    /* Subtle top light */
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy feel */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Service Card (Inherits Glass + Extra) */
.service-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(56, 189, 248, 0.3);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card .icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(15, 23, 42, 0.5);
    /* Deep dark */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.4s;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--accent-blue);
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--accent-blue);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.service-card:hover .card-link i {
    transform: translateX(4px);
}

/* Light Card (for light sections) */
.card-light {
    background: var(--bg-light-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    /* Reduced from xl to lg for more space */
    transition: all var(--transition-base);
    height: 100%;
    /* Ensure uniform height */
    display: flex;
    flex-direction: column;
}

.card-light p {
    line-height: 1.6;
    /* Improve readability */
}

.card-light:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

/* Comparison Card */
.comparison-card {
    background: var(--bg-light-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    height: 100%;
}

.comparison-card.featured {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    position: relative;
}

.comparison-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.comparison-card .card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.comparison-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark-secondary);
}

.comparison-card.featured .card-icon {
    background: #0a1629;
    color: white;
}

.comparison-card h4 {
    color: var(--text-dark);
    margin: 0;
}

.comparison-card.featured h4 {
    color: var(--text-primary);
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-dark-secondary);
    font-size: 0.9375rem;
}

.comparison-card.featured li {
    color: var(--text-secondary);
}

.comparison-card li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-card li .fa-xmark {
    color: #ef4444;
}

.comparison-card li .fa-check {
    color: #22c55e;
}

/* ========================================
   8. HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 var(--spacing-3xl);
    background: var(--bg-primary);
    overflow: hidden;
}

/* Animated background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(28, 100, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Subtle grid pattern */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: rgba(28, 100, 255, 0.15);
    border: 1px solid rgba(28, 100, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--accent-blue-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

.hero-badge i {
    color: #22c55e;
}

.hero-text h1 {
    margin-bottom: var(--spacing-lg);
}

.hero-text h1 span {
    display: block;
}

.hero-text>p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Trust Badges in Hero */
.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.trust-badge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: all var(--transition-base);
}

.trust-badge-card:hover {
    border-color: var(--border-accent);
    background: rgba(28, 100, 255, 0.1);
}

.trust-badge-card .icon-circle {
    width: 48px;
    height: 48px;
    background: #0a1629;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.25rem;
    color: white;
    transition: all var(--transition-base);
}

.trust-badge-card:hover .icon-circle {
    background: #0f1e36;
    transform: scale(1.05);
}

.trust-badge-card .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-badge-card .label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Reviews Pill */
.reviews-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    margin-top: var(--spacing-lg);
}

.reviews-pill .stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.reviews-pill span {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Hero Form Card */
.hero-form-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.hero-form-card h3 i {
    color: var(--accent-blue-light);
}

.input-group {
    margin-bottom: var(--spacing-md);
}

.input-field {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.input-field::placeholder {
    color: var(--text-muted);
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(28, 100, 255, 0.05);
}

.hero-form-card .form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ========================================
   9. SECTIONS
   ======================================== */

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Dark Section */
.section-dark {
    background: var(--bg-primary);
}

/* Light Section */
.section-light {
    background: var(--bg-light);
}

.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--text-dark);
}

.section-light p {
    color: var(--text-dark-secondary);
}

/* Gradient Section */
.section-gradient {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* ========================================
   10. STATS SECTION
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.stat-card .icon-circle {
    width: 64px;
    height: 64px;
    background: #0a1629;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.5rem;
    color: white;
    transition: all var(--transition-base);
}

.stat-card:hover .icon-circle {
    background: #0f1e36;
    transform: scale(1.1);
}

.stat-card .value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-xs);
}

.stat-card .label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-card .description {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   11. PROCESS/HOW IT WORKS
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-subtle);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: #0a1629;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background: #0f1e36;
    transform: scale(1.1);
}

.process-step h4 {
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* ========================================
   12. TESTIMONIALS
   ======================================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #0a1629;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
    margin-top: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.testimonial-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================================
   13. CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--accent-blue-dark) 0%, var(--accent-blue) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-card h2 {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.cta-card p {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
}

.cta-card .btn {
    position: relative;
}

.cta-card .btn-primary {
    background: var(--text-primary);
    color: var(--accent-blue);
    border-color: var(--text-primary);
}

.cta-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ========================================
   14. FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg-light);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-blue);
    color: var(--text-primary);
}

/* ========================================
   15. ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* ========================================
   15. PRICING (PREMIUM TUFF)
   ======================================== */
.pricing-card {
    background: linear-gradient(145deg, rgba(13, 25, 48, 0.8), rgba(6, 11, 25, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(56, 189, 248, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(18, 35, 66, 0.9), rgba(8, 16, 35, 0.98));
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.2);
}

.pricing-card.featured::after {
    content: 'BELIEBT';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.pricing-card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card .price span {
    font-size: 1.5rem;
    vertical-align: top;
    opacity: 0.6;
    margin-left: 2px;
    font-weight: 600;
}

.pricing-card .price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    width: 600px;
    max-width: 100%;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
    background: rgba(56, 189, 248, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* New Neon Icon Wrapper */
.icon-glow-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.icon-glow-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.icon-glow-wrapper i {
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
}

.service-card:hover .icon-glow-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.3);
    border-color: rgba(56, 189, 248, 0.5);
}

.service-card:hover .icon-glow-wrapper i {
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.8));
}

/* ========================================
   Service Cards & Text Visibility
   ======================================== */
.service-card {
    background: linear-gradient(145deg, rgba(13, 25, 48, 0.6), rgba(6, 11, 25, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: left;
    /* CHANGED from center */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(18, 35, 66, 0.8), rgba(8, 16, 35, 0.9));
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    color: white;
    font-size: 1.25rem;
    margin: 20px 0 10px;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ensure Pricing Card Text is Visible */
.pricing-card p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card .price-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   16. UTILITIES
   ======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Spacing utilities */
.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mb-xl {
    margin-bottom: var(--spacing-xl);
}

/* ========================================
   17. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .hero-text {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-text>p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-badges {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-pill {
        display: flex;
        justify-content: center;
    }

    .hero-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-2xl: 4rem;
        --spacing-3xl: 5rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-trust-badges {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure cards don't overflow */
    .service-card,
    .card-light,
    .pricing-card,
    .glass-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
    }

    .hero-form-card {
        padding: var(--spacing-lg);
    }
}

/* ========================================
   19. FAQ SECTION
   ======================================== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: var(--accent-blue);
    background: rgba(28, 100, 255, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    border-radius: 0 4px 4px 0;
    transition: height var(--transition-base);
}

.faq-item.active .faq-question::before {
    height: 60%;
}

.faq-question:hover {
    color: var(--accent-blue-light);
    padding-left: calc(var(--spacing-xl) + 8px);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--accent-blue-light);
    background: rgba(28, 100, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-gradient);
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    padding-left: calc(var(--spacing-xl) + 4px);
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* FAQ responsive */
@media (max-width: 768px) {
    .faq-question {
        font-size: 0.9375rem;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }
}

/* ========================================
   20. PRINT STYLES
   ======================================== */
@media print {

    .header-wrapper,
    .mobile-menu-btn,
    .nav-overlay,
    .cta-section {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        background: white;
        min-height: auto;
        padding: 2rem 0;
    }
}

/* ========================================
   21. COMPONENT FIXES (Contrast & Scoping)
   ======================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-secondary);
    /* Will adapt to scope */
}

.check-list li i {
    color: var(--accent-blue);
    min-width: 20px;
    text-align: center;
}

/* LIGHT MODE OVERRIDES - CRITICAL CONTRAST FIX */
.section-light {
    /* Redefine global text variables to Dark for light backgrounds */
    --text-primary: #1e293b;
    /* Slate 800 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-heading: #0f1724;
    /* Dark Navy */
    --text-muted: #64748b;
    /* Slate 500 */

    background-color: var(--bg-light);
    color: var(--text-secondary);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
    color: var(--text-heading);
}

.section-light p,
.section-light li,
.section-light span {
    color: var(--text-secondary);
}

/* Exception: Dark Components inside Light Section */
.section-light .pricing-card,
.section-light .service-card,
.section-light .glass-card,
.section-light .btn-primary {
    /* Reset variables back to Dark Mode defaults */
    --text-primary: #f2f9fe;
    --text-secondary: #a8b4c4;
    --text-heading: #ffffff;
    --text-muted: #94a3b8;

    color: var(--text-secondary);
}

.section-light .pricing-card h3,
.section-light .service-card h3 {
    color: var(--text-heading);
}

.section-light .pricing-card .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Fixes Override */
.header-wrapper {
    z-index: 2002 !important;
}

.mobile-menu-btn {
    z-index: 2003 !important;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

.nav-overlay {
    z-index: 2000 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    overflow-y: auto;
    padding: 20px;
}

.nav-overlay.active {
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* ========================================
   9. NEW ADDITIONS (Trust Badge & Sticky)
   ======================================== */
.trust-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(28, 100, 255, 0.1);
    border: 1px solid rgba(28, 100, 255, 0.4);
    border-radius: 999px;
    color: #2a7fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #122f94 0%, #1c64ff 100%);
    color: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUpFade 0.5s ease-out;
}

.mobile-sticky-btn:hover {
    color: white;
    transform: translateY(-2px);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mobile-sticky-btn {
        display: flex;
    }
}


/* Payment Icons */
.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    opacity: 0.7;
}

.payment-icon {
    font-size: 1.5rem;
    color: #cbd5e1;
}


/* Service Van Section Logic - Mobile Fix */
.van-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Default mobile - Stacked */
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .van-section-grid {
        grid-template-columns: 1fr 1fr;
        /* Desktop - Side by Side */
    }
}
/* ========================================
   22. DESIGN POLISH ENHANCEMENTS
   ======================================== */

/* Scroll-triggered fade-in animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover states for cards */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Pulsing animation for live indicator */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.live-indicator {
    animation: pulse-green 2s infinite;
}
