/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Brand Palette */
    --color-brand-red: #b20000;
    --color-brand-blue: #000daf;
    --color-brand-dark: #3d3d3d;
    
    /* Derived Colors */
    --color-bg: #ffffff;
    --color-bg-alt: #f8f7f5;
    --color-dark: #3d3d3d;
    --color-dark-soft: #4a4a4a;
    --color-accent: #b20000;
    --color-accent-warm: #000daf;
    --color-text: #3d3d3d;
    --color-text-soft: #5a5a5a;
    --color-text-muted: #888888;
    --color-border: rgba(0, 13, 175, 0.1);
    
    /* Typography */
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Fluid Typography */
    --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.3vw, 1.1rem);
    --text-lg: clamp(1rem, 0.95rem + 0.3vw, 1.25rem);
    --text-xl: clamp(1.1rem, 1rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.3rem, 1.1rem + 1vw, 2rem);
    --text-3xl: clamp(1.6rem, 1.3rem + 1.5vw, 2.5rem);
    --text-4xl: clamp(1.8rem, 1.5rem + 1.5vw, 3rem);
    --text-display: clamp(2.5rem, 2rem + 2vw, 4rem);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 8rem;
    
    /* Animation Curves */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

img, svg, video {
    max-width: 100%;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.full-height {
    min-height: 100vh;
    min-height: 100dvh;
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Only hide if JS is enabled - JS adds this class to html */
.js-enabled .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.js-enabled .animate-on-scroll.visible,
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 13, 175, 0.05);
    transition: all 0.4s var(--ease-out-quart);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 90rem;
    margin: 0 auto;
}

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

.nav-logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-soft);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-brand-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out-quart);
}

.nav-link:hover {
    color: var(--color-brand-blue);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    background: var(--color-brand-blue);
    border-radius: 4px;
    transition: all 0.3s var(--ease-out-quart);
}

.nav-cta:hover {
    background: var(--color-brand-dark);
    transform: translateY(-2px);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-brand-blue);
    transition: all 0.3s var(--ease-out-quart);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--space-lg)) var(--space-lg) var(--space-lg);
    overflow: hidden;
    background: var(--color-bg);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 13, 175, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(178, 0, 0, 0.05) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(1deg); }
    66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-brand-blue);
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat 25s linear infinite;
}

.particle:nth-child(2) { left: 20%; animation-delay: -5s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 40%; animation-delay: -10s; width: 8px; height: 8px; }
.particle:nth-child(4) { left: 60%; animation-delay: -15s; width: 5px; height: 5px; }
.particle:nth-child(5) { left: 80%; animation-delay: -20s; width: 7px; height: 7px; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 90rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero {
        padding: calc(80px + var(--space-2xl)) var(--space-3xl) var(--space-2xl);
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

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

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 13, 175, 0.05);
    border: 1px solid rgba(0, 13, 175, 0.1);
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

@media (max-width: 640px) {
    .hero-badge {
        margin-bottom: var(--space-2xl);
    }
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-brand-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: var(--text-display);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.hero-title-main .hero-title-emphasis {
    display: block;
    background: linear-gradient(135deg, var(--color-brand-red) 0%, var(--color-brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 28rem;
    margin: 0 auto var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        margin: 0 0 var(--space-xl) 0;
        max-width: 100%;
    }
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    background: var(--color-brand-blue);
    border-radius: 4px;
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .btn-primary {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-xs);
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-dark) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out-quart);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 13, 175, 0.3);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-brand-blue);
    border-bottom: 2px solid var(--color-brand-blue);
    transition: all 0.3s var(--ease-out-quart);
}

.btn-secondary:hover {
    color: var(--color-brand-red);
    border-color: var(--color-brand-red);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-brand-blue);
}

.hero-stat-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--color-border);
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 13, 175, 0.15),
        0 0 0 1px rgba(0, 13, 175, 0.05);
}

.hero-video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 13, 175, 0.1) 0%, rgba(178, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    max-width: 525px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.4s forwards;
    justify-self: center;
    box-shadow: 
        0 40px 80px rgba(0, 13, 175, 0.15),
        0 0 0 1px rgba(0, 13, 175, 0.05);
}

@media (min-width: 1024px) {
    .hero-video {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-video video {
        max-height: 75vh;
        object-fit: cover;
    }
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 640px) {
    .hero-video {
        max-width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro {
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .intro {
        padding: var(--space-2xl) var(--space-lg);
    }
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    max-width: 90rem;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .intro-content {
        gap: var(--space-xl);
    }
}

@media (min-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-text .text-h2 {
    margin-bottom: var(--space-xl);
}

.intro-text .text-body {
    color: var(--color-text-soft);
    max-width: 30rem;
}

.intro-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

@media (max-width: 768px) {
    .intro-visual {
        min-height: 200px;
    }
}

.intro-number {
    font-family: var(--font-display);
    font-size: clamp(10rem, 20vw, 18rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-brand-blue);
    position: relative;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .intro-number {
        font-size: clamp(6rem, 18vw, 10rem);
        -webkit-text-stroke: 1.5px var(--color-brand-blue);
    }
}

.intro-number::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--color-brand-blue);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s var(--ease-out-expo);
}

.intro-visual:hover .intro-number::after {
    opacity: 0.1;
    transform: scale(1);
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
    position: relative;
}

.values-header {
    max-width: 50rem;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.values-header .text-h2 {
    margin-bottom: var(--space-md);
}

.values-header .text-body {
    max-width: 35rem;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }
}

.value-card {
    padding: var(--space-2xl);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: all 0.6s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 13, 175, 0.03) 0%, rgba(178, 0, 0, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-blue), var(--color-brand-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 13, 175, 0.1);
    border-color: rgba(0, 13, 175, 0.15);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 13, 175, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.8s var(--ease-out-expo);
    pointer-events: none;
}

.value-card:hover .value-card-glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.value-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-xl);
    color: var(--color-brand-blue);
    position: relative;
    z-index: 1;
}

.value-card-icon svg {
    width: 100%;
    height: 100%;
}

.value-card-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 13, 175, 0.05);
    border: 1px solid rgba(0, 13, 175, 0.1);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s var(--ease-out-quart) 0.1s;
}

.value-card:hover .value-card-badge {
    opacity: 1;
    transform: translateY(0);
}

.value-card-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-brand-blue);
    position: relative;
    z-index: 1;
}

.value-card-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-soft);
    position: relative;
    z-index: 1;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
}

.services-header {
    max-width: 50rem;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.services-header .text-h2 {
    margin-bottom: var(--space-md);
}

.services-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--color-text-soft);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.loss-leaders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .loss-leaders-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.loss-leader-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-quart);
    cursor: pointer;
}

.loss-leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 13, 175, 0.12);
    border-color: var(--color-brand-blue);
}

.loss-leader-image {
    height: 240px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.loss-leader-image .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-quart);
}

.loss-leader-card:hover .loss-leader-image .service-image {
    transform: scale(1.05);
}

.loss-leader-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.loss-leader-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    color: var(--color-brand-blue);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    z-index: 2;
    background: white;
}

.loss-leader-content {
    padding: var(--space-xl);
}

.loss-leader-category {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-sm);
}

.loss-leader-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.loss-leader-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-soft);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.loss-leader-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.loss-leader-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-soft);
}

.loss-leader-features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 600;
    flex-shrink: 0;
}

.loss-leader-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.loss-leader-delivery {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.loss-leader-price {
    text-align: right;
}

.loss-leader-price-value {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-dark);
}

.loss-leader-price-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.view-all-services {
    text-align: center;
    margin-top: var(--space-2xl);
}

.view-all-services .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    background: var(--color-brand-blue);
    border-radius: 4px;
    transition: all 0.4s var(--ease-out-quart);
}

.view-all-services .btn-primary:hover {
    background: var(--color-brand-dark);
    transform: translateY(-2px);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
}

.process-header {
    max-width: 50rem;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.process-header .text-h2 {
    margin-bottom: var(--space-md);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}

.process-card {
    padding: var(--space-2xl);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    position: relative;
    transition: all 0.6s var(--ease-out-quart);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand-red), var(--color-brand-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 13, 175, 0.1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-step {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-red);
    margin-bottom: var(--space-md);
}

.process-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
    color: var(--color-brand-blue);
}

.process-icon svg {
    width: 100%;
    height: 100%;
}

.process-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-brand-blue);
    margin-bottom: var(--space-md);
}

.process-desc {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-text-soft);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg);
}

.testimonials-header {
    max-width: 50rem;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.testimonials-header .text-h2 {
    margin-bottom: var(--space-md);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    padding: var(--space-2xl);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    position: relative;
    transition: all 0.6s var(--ease-out-quart);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 13, 175, 0.08);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-bg);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-brand-blue);
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: var(--space-sm);
}

.testimonial-star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::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.03'%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");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 90rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-2xl);
    }
}

.stat-card {
    text-align: center;
    color: var(--color-bg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--text-base);
    opacity: 0.8;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    max-width: 50rem;
    text-align: center;
}

.cta-content .text-h2 {
    margin-bottom: var(--space-lg);
}

.cta-content .text-body {
    max-width: 35rem;
    margin: 0 auto var(--space-2xl);
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-form {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-dark);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 13, 175, 0.1);
}

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

.form-textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    grid-column: 1 / -1;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--color-brand-dark);
    color: var(--color-bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    opacity: 0.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-bg);
}

.footer-bottom {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        justify-content: center;
    }
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    opacity: 0.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-brand-blue);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--color-bg);
}

/* ========================================
   TYPOGRAPHY UTILITIES
   ======================================== */
.text-display { font-family: var(--font-display); font-size: var(--text-display); font-weight: 600; line-height: 1; letter-spacing: -0.03em; color: var(--color-brand-blue); }
.text-h1 { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; color: var(--color-brand-blue); }
.text-h2 { font-family: var(--font-serif); font-size: var(--text-3xl); font-weight: 400; font-style: italic; line-height: 1.1; color: var(--color-brand-blue); }
.text-h3 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--color-brand-blue); }
.text-body { font-family: var(--font-body); font-size: var(--text-base); font-weight: 400; line-height: 1.7; color: var(--color-text-soft); }
.text-caption { font-family: var(--font-display); font-size: var(--text-xs); font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); }

/* Mobile Typography */
@media (max-width: 640px) {
    .text-display { font-size: 2.5rem; line-height: 1; }
    .text-h1 { font-size: 1.8rem; line-height: 1.1; }
    .text-h2 { font-size: 1.6rem; line-height: 1.2; }
}

