/* ========================================
   CYBER UNIT - Light Theme Styles
   Premium, Professional, Trust-Building
   ======================================== */

/* CSS Variables - Light Theme */
:root {
    /* Primary Colors */
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --primary-light: #22d3ee;
    --primary-subtle: #ecfeff;
    
    /* Accent Colors */
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-subtle: #f5f3ff;
    --success: #059669;
    --success-light: #d1fae5;
    --warning: #d97706;
    --danger: #dc2626;
    
    /* Background Colors */
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-subtle: #f1f5f9;
    --bg-muted: #e2e8f0;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-dark: #0f172a;
    --bg-nav: rgba(255, 255, 255, 0.9);
    
    /* Text Colors */
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;
    
    /* Border */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --border-focus: #0891b2;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
    --gradient-subtle: linear-gradient(135deg, #ecfeff 0%, #f5f3ff 100%);
    --gradient-hero: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-primary: 0 4px 14px rgba(8, 145, 178, 0.25);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Background Effects (Subtle for Light)
   ======================================== */

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--border) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Subtle Vertical Lines */
.cyber-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(8, 145, 178, 0.04) 49.5%, rgba(8, 145, 178, 0.04) 50.5%, transparent 50.5%);
    background-size: 120px 100%;
    pointer-events: none;
    z-index: 0;
}

.cyber-lines-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(0, 212, 255, 0.08) 49.5%, rgba(0, 212, 255, 0.08) 50.5%, transparent 50.5%);
    background-size: 120px 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: linear-gradient(180deg, var(--primary-subtle) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-accent {
    position: absolute;
    top: 200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-subtle) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: transparent;
}

.nav.scrolled {
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    transition: var(--transition-fast);
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 24px);
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
    border-radius: 1px;
    transform-origin: center;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(8, 145, 178, 0.08);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(8, 145, 178, 0.1);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition-base);
    border-radius: 1px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 999;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    color: var(--text);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--primary);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
    margin-top: 24px;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-inverse);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.35);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-inverse);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

/* Navigation Secondary Button - Sleek & Subtle */
.btn-nav-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-nav-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-nav-secondary:hover {
    color: var(--text-inverse);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.25);
}

.btn-nav-secondary:hover::before {
    opacity: 1;
}

.btn-icon-sm {
    font-size: 0.95em;
    margin-right: 2px;
}

/* Scrolled nav button adjustments */
.nav.scrolled .btn-nav-secondary {
    border-color: rgba(8, 145, 178, 0.2);
    background: rgba(8, 145, 178, 0.05);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 1.1em;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero .cyber-lines {
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-body) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, var(--primary-subtle) 0%, transparent 60%);
    opacity: 0.8;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, var(--accent-subtle) 0%, transparent 60%);
    opacity: 0.6;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.stat-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.stat-symbol {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
}

.hero-dashboard {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 0;
    padding: 24px;
    color: var(--text);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.dashboard-title {
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.metric-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.dash-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-value span {
    font-size: 1rem;
}

.dash-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
    font-weight: 600;
}

.dashboard-activity {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.activity-title {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

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

.activity-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
    border-radius: 50%;
    font-size: 0.7rem;
}

.activity-icon.blocked {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.activity-text {
    flex: 1;
    color: var(--text);
    font-weight: 500;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 20px;
    left: -60px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 40px;
    right: -40px;
    animation-delay: -2s;
}

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

.floating-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-light);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.floating-icon.accent {
    background: var(--primary-subtle);
}

.floating-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.floating-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   Social Proof Bar
   ======================================== */

.social-proof-bar {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-proof-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.social-proof-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

.proof-headline {
    text-align: left;
}

.proof-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(8, 145, 178, 0.2);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.proof-headline h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.proof-headline p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.proof-badges {
    display: flex;
    gap: 20px;
}

.proof-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.proof-badge:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proof-badge-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proof-badge-header svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.proof-source {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.proof-rating {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.proof-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.proof-stars {
    font-size: 1rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

.proof-count {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.proof-quote {
    text-align: right;
    padding-left: 32px;
    border-left: 2px solid rgba(124, 58, 237, 0.4);
}

.proof-quote blockquote {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.proof-quote cite {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
}

/* Responsive Social Proof */
@media (max-width: 1200px) {
    .social-proof-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .proof-headline {
        text-align: center;
    }
    
    .proof-badges {
        justify-content: center;
    }
    
    .proof-quote {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(124, 58, 237, 0.3);
        padding-top: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .social-proof-bar {
        padding: 60px 0;
    }
    
    .proof-headline h3 {
        font-size: 1.75rem;
    }
    
    .proof-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-badge {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   Process Section - 3 Step Journey
   ======================================== */

.process-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-white) 50%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--border) 10%, var(--border) 90%, transparent 100%);
    opacity: 0.5;
    z-index: 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-top: 60px;
}

/* Process Step */
.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    position: relative;
    min-height: 400px;
}

.process-step[data-step="1"] .step-card {
    grid-column: 1;
    justify-self: end;
    margin-right: 40px;
}

.process-step[data-step="1"] .step-visual {
    display: none;
}

.process-step[data-step="2"] .step-card {
    grid-column: 3;
    justify-self: start;
    margin-left: 40px;
}

.process-step[data-step="2"] .step-visual {
    display: none;
}

.process-step[data-step="3"] .step-card {
    grid-column: 1;
    justify-self: end;
    margin-right: 40px;
}

.process-step[data-step="3"] .step-visual {
    display: none;
}

/* Step Number - Center Column */
.step-number {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    position: relative;
    z-index: 2;
}

.step-number span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-mono);
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.35);
    position: relative;
    z-index: 2;
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Connector Line */
.step-connector {
    position: absolute;
    left: 50%;
    top: 100px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Step Card */
.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 520px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

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

.step-card-featured {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    border-color: rgba(8, 145, 178, 0.2);
}

.step-card-featured::before {
    opacity: 1;
}

/* Step Icon */
.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.25);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Step Content */
.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.step-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Step Features */
.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success-light);
    color: var(--success);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Step Visual Elements (Desktop) */
.step-visual {
    position: absolute;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step[data-step="1"] .step-visual,
.process-step[data-step="3"] .step-visual {
    right: -200px;
}

.process-step[data-step="2"] .step-visual {
    left: -200px;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.assessment-badge {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.optimization-badge {
    border-color: rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
}

.resilience-badge {
    border-color: rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
}

/* Progress Visual */
.visual-progress {
    padding: 16px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.progress-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: var(--bg-subtle);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0; }
}

/* Security Score Visual */
.security-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.score-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.score-circle svg {
    width: 100%;
    height: 100%;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
}

.score-value span {
    font-size: 0.875rem;
}

.score-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Uptime Display */
.uptime-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.uptime-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    font-family: var(--font-mono);
    line-height: 1;
}

.uptime-value span {
    font-size: 1rem;
}

.uptime-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Process CTA */
.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
    padding: 48px 56px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(8, 145, 178, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.process-cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(8, 145, 178, 0.2);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.cta-badge-icon {
    font-size: 1rem;
}

.cta-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
}

.process-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Process Section */
@media (max-width: 1200px) {
    .process-step {
        grid-template-columns: 60px 1fr;
        min-height: auto;
    }
    
    .step-number {
        grid-column: 1;
        padding-top: 0;
    }
    
    .process-step[data-step="1"] .step-card,
    .process-step[data-step="2"] .step-card,
    .process-step[data-step="3"] .step-card {
        grid-column: 2;
        justify-self: start;
        margin: 0 0 40px 0;
        max-width: 100%;
    }
    
    .step-connector {
        left: 30px;
        top: 60px;
    }
    
    .process-section::before {
        display: none;
    }
    
    .step-visual {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .cta-subtext {
        max-width: 100%;
    }
    
    .process-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .process-cta-actions .btn {
        width: 100%;
    }
    
    .step-card {
        padding: 32px 24px;
    }
    
    .step-number span {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }
    
    .step-pulse {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .process-step {
        grid-template-columns: 48px 1fr;
    }
    
    .step-connector {
        left: 24px;
        top: 48px;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   Section Styles
   ======================================== */

section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-subtle);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card-featured {
    grid-row: span 2;
    background: var(--gradient-subtle);
    border-color: var(--primary);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
}

/* ========================================
   Why Us Section
   ======================================== */

.why-us {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-tag {
    margin-bottom: 16px;
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-us-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.why-us-features {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Metrics Card */
.metrics-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 32px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.metric {
    text-align: center;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.metric:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.metric-unit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

/* ========================================
   Solutions Section
   ======================================== */

.solutions {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Assessment CTA Section
   ======================================== */

.assessment-cta {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.assessment-card {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 60px;
    background: var(--gradient-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.assessment-content {
    position: relative;
    z-index: 1;
}

.assessment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.assessment-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}

.assessment-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.assessment-features {
    list-style: none;
    margin-bottom: 32px;
}

.assessment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.assessment-form {
    margin-top: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.assessment-form input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition-fast);
}

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

.assessment-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Assessment Visual */
.assessment-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield-visual {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--border);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite;
}

.shield-inner {
    width: 200px;
    height: 200px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.shield-icon {
    font-size: 4rem;
}

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

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-featured {
    grid-column: span 2;
    background: var(--gradient-subtle);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-featured .testimonial-text {
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.result-value {
    font-weight: 600;
    color: var(--success);
}

/* ========================================
   Service Area Section
   ======================================== */

.service-area {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-white) 100%);
    overflow: hidden;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.service-area-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-subtle);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.service-area-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-area-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-area-stats {
    display: flex;
    gap: 40px;
}

.area-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.area-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.area-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-area-map {
    position: relative;
}

.north-america-map {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.map-region {
    transition: all 0.3s ease;
}

.map-pin {
    cursor: default;
}

.pin-pulse {
    fill: rgba(8, 145, 178, 0.2);
    animation: pinPulse 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.pin-dot {
    fill: #0891b2;
    filter: url(#glow);
}

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

/* Responsive Service Area */
@media (max-width: 1024px) {
    .service-area-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-area-stats {
        justify-content: center;
    }
    
    .service-area-map {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .service-area {
        padding: 60px 0;
    }
    
    .service-area-title {
        font-size: 1.75rem;
    }
    
    .service-area-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .area-stat {
        flex: 1;
        min-width: 100px;
    }
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content .section-tag {
    margin-bottom: 16px;
}

.contact-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Phone Number Styling */
.contact-item-phone .phone-number {
    display: inline;
}

.contact-item-phone .phone-prefix {
    color: var(--text-secondary);
}

.contact-item-phone .phone-vanity {
    font-weight: 600;
    color: var(--primary);
}

.contact-item-phone .phone-digits {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Contact Graphic */
.contact-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgba(8, 145, 178, 0.08) 100%);
    border-radius: var(--radius-lg);
    margin-top: 20px;
}

.graphic-shield {
    width: 80px;
    height: 96px;
    margin-bottom: 16px;
    animation: pulse-shield 3s ease-in-out infinite;
}

.shield-svg {
    width: 100%;
    height: 100%;
}

@keyframes pulse-shield {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.graphic-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin: 0;
}

/* Contact Form */
.contact-card {
    padding: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition-fast);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-subtle);
}

/* Form Note */
.form-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    background: #fef3c7;
    border: 1px solid #fcd34d;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px !important;
}

.form-business-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-align: center;
    margin: 8px 0 16px;
}

/* Checkbox Group */
.form-group-checkboxes {
    margin-bottom: 8px;
}

.checkbox-group-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.checkbox-group-label .label-hint {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkbox-item:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-item .checkbox-text {
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-item:has(input:checked) {
    border-color: var(--primary);
    background: var(--primary-subtle);
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 80px 0 40px;
    background: var(--bg-white);
    color: var(--text);
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-img {
    height: 32px;
}

.footer-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Footer Reviews Section */
.footer-reviews h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-review-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.review-badge-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-subtle);
    border-radius: 10px;
}

.review-badge-icon svg {
    width: 24px;
    height: 24px;
}

.review-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-badge-stars {
    font-size: 0.875rem;
    color: #f59e0b;
    letter-spacing: 1px;
}

.review-badge-score {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.review-badge-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   Animations
   ======================================== */

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

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

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-featured {
        grid-row: auto;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-us-content .section-title {
        text-align: center;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .assessment-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .assessment-visual {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content .section-title {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-featured {
        grid-column: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .metrics-card {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-logos {
        gap: 24px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   Blog Styles
   ======================================== */

.blog-listing {
    padding: 120px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.blog-card-content {
    padding: 24px;
}

.blog-card time {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 12px 0;
    line-height: 1.4;
}

.blog-card h2 a {
    color: var(--text);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--primary);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .read-more {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.blog-card .read-more:hover {
    text-decoration: underline;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 60px 20px;
}

/* Blog Post */
.blog-post {
    padding-top: 100px;
}

.post-header {
    padding: 60px 0 40px;
    background: var(--gradient-subtle);
    border-bottom: 1px solid var(--border);
}

.post-header .back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.post-header .back-link:hover {
    text-decoration: underline;
}

.post-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.post-tags {
    display: flex;
    gap: 8px;
}

.post-tags .tag {
    background: var(--primary-subtle);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-content {
    padding: 60px 0 80px;
    max-width: 800px;
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin: 48px 0 20px;
}

.post-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
    margin: 36px 0 16px;
}

.post-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.post-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.post-content strong {
    color: var(--text);
    font-weight: 600;
}

.post-content a {
    color: var(--primary);
    text-decoration: underline;
}

.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.post-content code {
    background: var(--bg-subtle);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background: var(--bg-dark);
    color: var(--text-inverse);
    padding: 20px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 24px 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
}

/* ========================================
   Legal Pages (Terms, Privacy)
   ======================================== */

.legal-page {
    padding: 140px 0 100px;
    background: var(--bg-body);
}

.legal-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.legal-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    box-shadow: var(--shadow-lg);
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 40px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.legal-content h3:first-of-type {
    margin-top: 24px;
    padding-top: 0;
    border-top: none;
}

.legal-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.legal-end {
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-address {
    background: var(--bg-subtle);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-content {
        padding: 32px 24px;
    }
    
    .legal-content h3 {
        font-size: 1.15rem;
    }
}

