@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
}

/* ===== PREMIUM COLOR SYSTEM ===== */
:root {
    /* Primary Blues - Sophisticated, deep palette */
    --primary-50: #f0f7ff;
    --primary-100: #e0efff;
    --primary-200: #b9dfff;
    --primary-300: #7cc4ff;
    --primary-400: #36a6ff;
    --primary-500: #0c8ce9;
    --primary-600: #006fcc;
    --primary-700: #0058a6;
    --primary-800: #004a89;
    --primary-900: #003d71;
    --primary-950: #00274a;
    
    /* Accent - Warm Orange/Amber */
    --accent-50: #fff8f0;
    --accent-100: #ffedd5;
    --accent-200: #fed7aa;
    --accent-300: #fdba74;
    --accent-400: #fb923c;
    --accent-500: #f97316;
    --accent-600: #ea580c;
    --accent-700: #c2410c;
    --accent-800: #9a3412;
    --accent-900: #7c2d12;
    
    /* Success Green */
    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;
    
    /* Neutral Grays - Warmer tones */
    --gray-25: #fcfcfd;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
    
    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Colored Shadows */
    --shadow-primary: 0 10px 40px -10px rgba(0, 111, 204, 0.35);
    --shadow-accent: 0 10px 40px -10px rgba(249, 115, 22, 0.35);
    --shadow-success: 0 10px 40px -10px rgba(34, 197, 94, 0.35);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--gray-25) 0%, var(--gray-50) 100%);
    min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hidden { display: none; }
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }

/* ===== SIZING ===== */
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }

/* ===== SPACING ===== */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

.m-0 { margin: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-64 { margin-left: 16rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-6 { margin-right: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }

/* ===== TYPOGRAPHY UTILITIES ===== */
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-xl { font-size: 1.25rem; line-height: 1.5; }
.text-2xl { font-size: 1.5rem; line-height: 1.4; letter-spacing: -0.01em; }
.text-3xl { font-size: 1.875rem; line-height: 1.3; letter-spacing: -0.02em; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; letter-spacing: -0.02em; }
.text-5xl { font-size: 3rem; line-height: 1.1; letter-spacing: -0.02em; }
.text-6xl { font-size: 3.75rem; line-height: 1; letter-spacing: -0.02em; }
.text-9xl { font-size: 8rem; line-height: 1; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.7; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.whitespace-nowrap { white-space: nowrap; }
.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.list-none { list-style: none; padding: 0; margin: 0; }

/* ===== COLORS ===== */
.text-white { color: #fff; }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.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-blue-100 { color: var(--primary-100); }
.text-blue-200 { color: var(--primary-200); }
.text-blue-300 { color: var(--primary-300); }
.text-blue-400 { color: var(--primary-400); }
.text-blue-500 { color: var(--primary-500); }
.text-blue-600 { color: var(--primary-600); }
.text-blue-700 { color: var(--primary-700); }
.text-blue-800 { color: var(--primary-800); }
.text-green-300 { color: #86efac; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: var(--success-500); }
.text-green-600 { color: var(--success-600); }
.text-green-700 { color: var(--success-700); }
.text-green-800 { color: #166534; }
.text-yellow-200 { color: #fef08a; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-yellow-800 { color: #854d0e; }
.text-orange-100 { color: var(--accent-100); }
.text-orange-200 { color: var(--accent-200); }
.text-orange-400 { color: var(--accent-400); }
.text-orange-500 { color: var(--accent-500); }
.text-orange-600 { color: var(--accent-600); }
.text-orange-700 { color: var(--accent-700); }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-purple-600 { color: #9333ea; }

.bg-white { background-color: #fff; }
.bg-gray-25 { background-color: var(--gray-25); }
.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-gray-700 { background-color: var(--gray-700); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }
.bg-gray-950 { background-color: var(--gray-950); }
.bg-blue-50 { background-color: var(--primary-50); }
.bg-blue-100 { background-color: var(--primary-100); }
.bg-blue-500 { background-color: var(--primary-500); }
.bg-blue-600 { background-color: var(--primary-600); }
.bg-blue-700 { background-color: var(--primary-700); }
.bg-blue-800 { background-color: var(--primary-800); }
.bg-blue-900 { background-color: var(--primary-900); }
.bg-blue-950 { background-color: var(--primary-950); }
.bg-green-50 { background-color: var(--success-50); }
.bg-green-100 { background-color: var(--success-100); }
.bg-green-500 { background-color: var(--success-500); }
.bg-green-600 { background-color: var(--success-600); }
.bg-orange-50 { background-color: var(--accent-50); }
.bg-orange-100 { background-color: var(--accent-100); }
.bg-orange-500 { background-color: var(--accent-500); }
.bg-orange-600 { background-color: var(--accent-600); }
.bg-orange-700 { background-color: var(--accent-700); }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-red-700 { background-color: #b91c1c; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-purple-100 { background-color: #f3e8ff; }

/* Gradient backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-bl { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)); }
.from-blue-900 { --tw-gradient-from: var(--primary-900); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-blue-950 { --tw-gradient-from: var(--primary-950); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), var(--primary-800), var(--tw-gradient-to, transparent); }
.via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), var(--primary-900), var(--tw-gradient-to, transparent); }
.to-blue-900 { --tw-gradient-to: var(--primary-900); }
.to-blue-950 { --tw-gradient-to: var(--primary-950); }
.from-orange-600 { --tw-gradient-from: var(--accent-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(234, 88, 12, 0)); }
.via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); }
.to-orange-700 { --tw-gradient-to: var(--accent-700); }

/* Semi-transparent backgrounds */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-blue-600\/10 { background-color: rgba(0, 111, 204, 0.1); }
.bg-blue-600\/20 { background-color: rgba(0, 111, 204, 0.2); }
.bg-blue-800\/50 { background-color: rgba(0, 74, 137, 0.5); }
.bg-blue-900\/80 { background-color: rgba(0, 61, 113, 0.8); }
.bg-blue-900\/90 { background-color: rgba(0, 61, 113, 0.9); }
.bg-blue-900\/95 { background-color: rgba(0, 61, 113, 0.95); }
.bg-blue-900\/40 { background-color: rgba(0, 61, 113, 0.4); }
.bg-orange-600\/20 { background-color: rgba(234, 88, 12, 0.2); }
.bg-green-600\/20 { background-color: rgba(22, 163, 74, 0.2); }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-red-500\/20 { background-color: rgba(239, 68, 68, 0.2); }

/* ===== BORDERS ===== */
.border { border-width: 1px; border-style: solid; border-color: var(--gray-200); }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; border-top-style: solid; border-color: var(--gray-200); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-color: var(--gray-200); }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-transparent { border-color: transparent; }
.border-gray-100 { border-color: var(--gray-100); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-gray-600 { border-color: var(--gray-600); }
.border-gray-800 { border-color: var(--gray-800); }
.border-blue-100 { border-color: var(--primary-100); }
.border-blue-200 { border-color: var(--primary-200); }
.border-blue-500 { border-color: var(--primary-500); }
.border-blue-600 { border-color: var(--primary-600); }
.border-green-400 { border-color: #4ade80; }
.border-green-500 { border-color: var(--success-500); }
.border-orange-500 { border-color: var(--accent-500); }
.border-red-200 { border-color: #fecaca; }
.border-red-400 { border-color: #f87171; }
.border-red-500 { border-color: #ef4444; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-red-500\/50 { border-color: rgba(239, 68, 68, 0.5); }

.rounded { border-radius: var(--radius-sm); }
.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-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-t-2xl { border-top-left-radius: var(--radius-2xl); border-top-right-radius: var(--radius-2xl); }
.rounded-b-2xl { border-bottom-left-radius: var(--radius-2xl); border-bottom-right-radius: var(--radius-2xl); }
.rounded-bl-lg { border-bottom-left-radius: var(--radius-lg); }

/* ===== SHADOWS ===== */
.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.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); }
.shadow-inner { box-shadow: var(--shadow-inner); }
.shadow-none { box-shadow: none; }
.shadow-primary { box-shadow: var(--shadow-primary); }
.shadow-accent { box-shadow: var(--shadow-accent); }
.shadow-orange-500\/25 { box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.25), 0 4px 6px -4px rgba(249, 115, 22, 0.25); }
.shadow-red-500\/25 { box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.25), 0 4px 6px -4px rgba(239, 68, 68, 0.25); }

/* ===== OVERFLOW & POSITION ===== */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-24 { top: 6rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-bottom-8 { bottom: -2rem; }
.-left-6 { left: -1.5rem; }
.-left-8 { left: -2rem; }
.-right-6 { right: -1.5rem; }
.-right-8 { right: -2rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* ===== EFFECTS ===== */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.grayscale { filter: grayscale(100%); }
.scale-105 { transform: scale(1.05); }
.scale-100 { transform: scale(1); }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.select-none { user-select: none; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ===== TRANSITIONS ===== */
.transition { transition: all var(--transition-base); }
.transition-all { transition: all var(--transition-base); }
.transition-colors { transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base); }
.transition-opacity { transition: opacity var(--transition-base); }
.transition-transform { transition: transform var(--transition-base); }
.transition-shadow { transition: box-shadow var(--transition-base); }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== DIVIDERS ===== */
.divide-y > * + * { border-top-width: 1px; border-color: var(--gray-200); }
.divide-gray-100 > * + * { border-color: var(--gray-100); }
.divide-gray-200 > * + * { border-color: var(--gray-200); }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:inline { display: inline; }
    .sm\:hidden { display: none; }
}

@media (min-width: 768px) {
    .md\:hidden { display: none !important; }
    .md\:flex { display: flex !important; }
    .md\:block { display: block; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .md\:text-2xl { font-size: 1.5rem; line-height: 1.4; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 1.3; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 1.2; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .md\:h-80 { height: 20rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:gap-12 { gap: 3rem; }
    .md\:gap-16 { gap: 4rem; }
}

/* Mobile Menu Responsive Styles */
@media (max-width: 767px) {
    /* Hide desktop nav on mobile */
    header .md\:flex {
        display: none !important;
    }
    
    /* Show mobile menu button */
    #mobile-menu-btn {
        display: flex !important;
    }
    
    /* Mobile menu styling when open */
    #mobile-menu:not(.hidden) {
        display: block !important;
        animation: slideDown 0.2s ease-out;
    }
}

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

@media (min-width: 768px) {
    /* Hide mobile menu button on desktop */
    #mobile-menu-btn {
        display: none !important;
    }
    
    /* Always hide mobile menu on desktop */
    #mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1100px) {
    .nav-dropdown-trigger { font-size: 0.875rem; }
    header .text-gray-700 { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1.1; }
    .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:min-h-screen { min-height: 100vh; }
    .lg\:mt-0 { margin-top: 0; }
    .lg\:p-8 { padding: 2rem; }
}

/* ===== HOVER STATES ===== */
.hover\:bg-gray-50:hover { background-color: var(--gray-50); }
.hover\:bg-gray-100:hover { background-color: var(--gray-100); }
.hover\:bg-gray-200:hover { background-color: var(--gray-200); }
.hover\:bg-gray-800:hover { background-color: var(--gray-800); }
.hover\:bg-blue-50:hover { background-color: var(--primary-50); }
.hover\:bg-blue-600:hover { background-color: var(--primary-600); }
.hover\:bg-blue-700:hover { background-color: var(--primary-700); }
.hover\:bg-blue-800:hover { background-color: var(--primary-800); }
.hover\:bg-orange-600:hover { background-color: var(--accent-600); }
.hover\:bg-orange-700:hover { background-color: var(--accent-700); }
.hover\:bg-red-600:hover { background-color: #dc2626; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }

.hover\:text-white:hover { color: #fff; }
.hover\:text-gray-700:hover { color: var(--gray-700); }
.hover\:text-gray-900:hover { color: var(--gray-900); }
.hover\:text-blue-600:hover { color: var(--primary-600); }
.hover\:text-blue-700:hover { color: var(--primary-700); }
.hover\:text-blue-800:hover { color: var(--primary-800); }
.hover\:text-orange-300:hover { color: var(--accent-300); }
.hover\:text-orange-700:hover { color: var(--accent-700); }
.hover\:text-green-300:hover { color: #86efac; }
.hover\:text-yellow-200:hover { color: #fef08a; }
.hover\:text-red-800:hover { color: #991b1b; }

.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:shadow-2xl:hover { box-shadow: var(--shadow-2xl); }
.hover\:shadow-primary:hover { box-shadow: var(--shadow-primary); }

.hover\:border-blue-500:hover { border-color: var(--primary-500); }
.hover\:border-gray-300:hover { border-color: var(--gray-300); }

.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:grayscale-0:hover { filter: grayscale(0%); }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:opacity-80:hover { opacity: 0.8; }

/* Group hover states */
.group:hover .group-hover\:text-white { color: #fff; }
.group:hover .group-hover\:text-blue-700 { color: var(--primary-700); }
.group:hover .group-hover\:text-blue-800 { color: var(--primary-800); }
.group:hover .group-hover\:bg-blue-600 { background-color: var(--primary-600); }
.group:hover .group-hover\:bg-blue-700 { background-color: var(--primary-700); }
.group:hover .group-hover\:bg-orange-600 { background-color: var(--accent-600); }
.group:hover .group-hover\:bg-green-600 { background-color: var(--success-600); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-80 { opacity: 0.8; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group-open .group-open\:rotate-180 { transform: rotate(180deg); }

/* Focus states */
.focus\:ring-2:focus { 
    box-shadow: 0 0 0 3px var(--primary-100); 
    outline: none; 
}
.focus\:ring-blue-500:focus { 
    box-shadow: 0 0 0 3px rgba(0, 111, 204, 0.2); 
}
.focus\:ring-orange-500:focus { 
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2); 
}
.focus\:border-blue-500:focus { border-color: var(--primary-500); }
.focus\:border-orange-500:focus { border-color: var(--accent-500); }
.focus\:outline-none:focus { outline: none; }

/* Peer states */
.peer:checked ~ .peer-checked\:border-red-500 { border-color: #ef4444; }
.peer:checked ~ .peer-checked\:bg-red-50 { background-color: #fef2f2; }
.peer:checked ~ .peer-checked\:border-orange-500 { border-color: var(--accent-500); }
.peer:checked ~ .peer-checked\:bg-orange-50 { background-color: var(--accent-50); }
.peer:checked ~ .peer-checked\:border-blue-500 { border-color: var(--primary-500); }
.peer:checked ~ .peer-checked\:bg-blue-50 { background-color: var(--primary-50); }

.last\:mb-0:last-child { margin-bottom: 0; }

/* ===== ACCESSIBILITY ===== */
.sr-only { 
    position: absolute; 
    width: 1px; 
    height: 1px; 
    padding: 0; 
    margin: -1px; 
    overflow: hidden; 
    clip: rect(0, 0, 0, 0); 
    white-space: nowrap; 
    border-width: 0; 
}
.scroll-mt-20 { scroll-margin-top: 5rem; }

/* ===== HEADER ===== */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

header .text-2xl.font-bold {
    color: #1e40af;
}

header .text-2xl.font-light {
    color: #6b7280;
}

header .bg-blue-700 {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

header .bg-blue-700:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Mobile menu button - visibility controlled by responsive styles above */

/* ===== NAVIGATION DROPDOWNS ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    cursor: pointer;
    padding: 0.5rem 0;
}

.nav-dropdown-trigger:hover {
    color: var(--primary-600);
}

.nav-dropdown-trigger svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-base);
    opacity: 0.6;
}

.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 1rem;
}

.nav-dropdown-panel h6 {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
    margin: 0.125rem 0;
}

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

.nav-dropdown-link svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.nav-dropdown-link:hover svg {
    color: var(--primary-600);
}

.nav-dropdown-link-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    color: var(--primary-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-dropdown-link-all:hover {
    color: var(--primary-700);
}

.nav-dropdown-link-all svg {
    width: 1rem;
    height: 1rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown-link-all:hover svg {
    transform: translateX(4px);
}

.services-dropdown-panel {
    min-width: 540px;
}

.services-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

/* Mobile menu */
.mobile-dropdown {
    border-radius: var(--radius-lg);
}

.mobile-submenu {
    display: none;
    padding-left: 0.75rem;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid var(--primary-100);
    margin-left: 1rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin 0.2s ease;
}

.mobile-submenu.active {
    display: block;
    max-height: 500px;
    opacity: 1;
}

.mobile-submenu a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--gray-600);
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-submenu a:hover {
    background: var(--gray-50);
    color: var(--primary-600);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem;
    color: var(--gray-700);
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: background-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background-color: var(--gray-50);
}

.mobile-menu-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform var(--transition-base);
    color: var(--gray-400);
    flex-shrink: 0;
}

.mobile-menu-toggle.active {
    background-color: var(--gray-50);
    color: var(--primary-600);
}

.mobile-menu-toggle.active svg {
    transform: rotate(180deg);
    color: var(--primary-600);
}

/* Mobile hamburger icon animation */
#mobile-menu-btn .hamburger-line {
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

#mobile-menu-btn.menu-open .line1 {
    transform: translateY(6px) rotate(45deg);
}

#mobile-menu-btn.menu-open .line2 {
    opacity: 0;
}

#mobile-menu-btn.menu-open .line3 {
    transform: translateY(-6px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #374151;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    text-decoration: none;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* ===== FORMS ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.375rem;
}

/* ===== PREMIUM CARDS ===== */
.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    background: white;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-200);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Stats counter styles */
.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--gray-500);
    margin-top: 0.75rem;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* ===== IMAGE OVERLAY ===== */
.image-overlay {
    position: relative;
}

.image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 39, 74, 0.95) 0%,
        rgba(0, 61, 113, 0.85) 40%,
        rgba(0, 74, 137, 0.6) 70%,
        rgba(0, 88, 166, 0.3) 100%
    );
}

@media (max-width: 1024px) {
    .image-overlay::after {
        background: linear-gradient(
            180deg,
            rgba(0, 39, 74, 0.92) 0%,
            rgba(0, 61, 113, 0.88) 100%
        );
    }
}

.object-mobile-center {
    object-position: center;
}

@media (max-width: 768px) {
    .object-mobile-center {
        object-position: 25% center;
    }
}

.min-h-mobile-auto {
    min-height: auto;
}

@media (max-width: 1024px) {
    .min-h-mobile-auto {
        min-height: 600px;
    }
}

/* ===== PROSE STYLES ===== */
.prose {
    max-width: 65ch;
    color: var(--gray-600);
}

.prose p { 
    margin-bottom: 1.5em; 
    line-height: 1.8;
}

.prose h2 { 
    font-size: 1.75rem; 
    font-weight: 700; 
    margin-top: 2.5em; 
    margin-bottom: 1em; 
    color: var(--gray-900); 
    letter-spacing: -0.02em;
}

.prose h3 { 
    font-size: 1.375rem; 
    font-weight: 600; 
    margin-top: 2em; 
    margin-bottom: 0.75em; 
    color: var(--gray-900); 
}

.prose ul { 
    list-style-type: disc; 
    padding-left: 1.75em; 
    margin-bottom: 1.5em; 
}

.prose ol { 
    list-style-type: decimal; 
    padding-left: 1.75em; 
    margin-bottom: 1.5em; 
}

.prose li { 
    margin-bottom: 0.625em; 
    line-height: 1.7;
}

.prose a { 
    color: var(--primary-600); 
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(0, 111, 204, 0.3);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.prose a:hover { 
    color: var(--primary-700);
    text-decoration-color: var(--primary-700);
}

/* ===== HERO SECTION ===== */
.hero-transition {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.hero-fade-out {
    opacity: 0;
    transform: translateY(16px);
}

.hero-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-indicator.active {
    background-color: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Hero Form Card */
section .bg-white.rounded-2xl.shadow-2xl {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero CTA Buttons */
section .bg-blue-600.hover\:bg-blue-700 {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    font-weight: 600;
}

section .bg-blue-600.hover\:bg-blue-700:hover {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    box-shadow: var(--shadow-xl), var(--shadow-primary);
    transform: translateY(-2px);
}

/* Trust bar pills */
section .bg-white\/10.rounded-full {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== TESTIMONIALS ===== */
section .bg-white.rounded-2xl.shadow-sm {
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

section .bg-white.rounded-2xl.shadow-sm:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Star ratings */
.text-yellow-400 svg {
    filter: drop-shadow(0 1px 2px rgba(250, 204, 21, 0.4));
}

/* ===== SOLUTIONS GRID (Dark Section) ===== */
section.bg-gray-900 {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
}

section .bg-white\/5 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

section .bg-white\/5:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* Solution card icons */
section .bg-blue-600\/20 {
    background: rgba(0, 111, 204, 0.15);
    border: 1px solid rgba(0, 111, 204, 0.2);
}

section .bg-orange-600\/20 {
    background: rgba(234, 88, 12, 0.15);
    border: 1px solid rgba(234, 88, 12, 0.2);
}

section .bg-green-600\/20 {
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* ===== FLOATING CTA BUTTONS ===== */
.floating-cta-container {
    position: fixed;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: 1rem;
    z-index: 40;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.floating-cta-container.floating-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(100%) !important;
}

.floating-call-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
    text-decoration: none;
    transition: all 0.2s ease;
}

.floating-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.call-btn-text {
    display: none;
}

@media (min-width: 640px) {
    .call-btn-text {
        display: inline;
    }
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
    text-decoration: none;
    transition: all 0.2s ease;
}

.floating-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

@media (max-width: 640px) {
    .floating-cta-container {
        left: 1rem;
        justify-content: center;
    }
    
    .floating-cta-btn,
    .floating-call-btn {
        flex: 1;
        justify-content: center;
        padding: 0.875rem;
    }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
}

footer h6 {
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

footer a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

footer a:hover {
    color: white;
}

footer .text-gray-400 {
    font-size: 0.9375rem;
    line-height: 1.6;
}

footer .border-gray-800 {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Social icons */
footer .text-gray-500 {
    transition: all var(--transition-fast);
}

footer .text-gray-500:hover {
    color: white;
    transform: translateY(-2px);
}

/* ===== MODALS ===== */
@keyframes modal-in {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalFadeIn {
    from { 
        opacity: 0; 
        transform: scale(0.9) translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

.animate-modal-in {
    animation: modal-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#success-modal .bg-white,
#error-modal .bg-white {
    border-radius: var(--radius-3xl);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ===== UTILITIES ===== */
.font-mono { 
    font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, Consolas, monospace; 
}

.max-h-5 { max-height: 1.25rem; }
.max-h-6 { max-height: 1.5rem; }

table {
    border-collapse: collapse;
}

details summary::-webkit-details-marker {
    display: none;
}

/* Modern link styles */
a {
    text-decoration: none;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Section spacing improvements */
section {
    position: relative;
}

section + section {
    border-top: 1px solid transparent;
}

/* Premium section backgrounds */
section.bg-white {
    background: linear-gradient(180deg, white 0%, var(--gray-25) 100%);
}

section.bg-gray-50 {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

/* Premium badges */
.absolute.top-0.right-0.bg-orange-500 {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.875rem;
    border-bottom-left-radius: var(--radius-lg);
}

/* Premium info boxes */
.absolute.-bottom-8.-left-8.bg-orange-600 {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-2xl);
}

.absolute.-bottom-6.-right-6.bg-blue-600 {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
}

/* Premium icon boxes */
.w-12.h-12.bg-blue-100 {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border: 1px solid var(--primary-100);
}

.w-10.h-10.bg-blue-100 {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border: 1px solid var(--primary-100);
}

/* Premium numbered circles */
.w-8.h-8.bg-blue-600 {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    box-shadow: var(--shadow-md);
}

/* CTA Section backgrounds */
section.bg-blue-900 {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-950) 100%);
}

/* Certifications hover effect */
.bg-white.rounded-xl.shadow-sm.hover\:shadow-lg {
    transition: all var(--transition-base);
}

.bg-white.rounded-xl.shadow-sm.hover\:shadow-lg:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Inline code styling */
code:not(pre code) {
    background: var(--gray-100);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    font-size: 0.875em;
    color: var(--gray-700);
}

/* Selection styling */
::selection {
    background: var(--primary-100);
    color: var(--primary-900);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

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

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

/* Focus improvements for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    header, footer, .floating-cta-container {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
