/* ========================================
   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: 32px;
}

.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;
    margin-left: 8px;
}

/* Nav CTA Button - Single prominent action */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
}

.btn-nav-icon {
    flex-shrink: 0;
}

.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-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

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

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

/* Hero Promise Statement */
.hero-promise {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, rgba(124, 58, 237, 0.06) 100%);
    border: 1px solid rgba(8, 145, 178, 0.15);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.promise-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .hero-promise {
        padding: 14px 24px;
    }
    
    .promise-text {
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-promise {
        padding: 12px 20px;
    }
    
    .promise-text {
        font-size: 0.9rem;
    }
}

/* 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: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.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);
}

/* Responsive Social Proof */
@media (max-width: 900px) {
    .social-proof-content {
        gap: 32px;
    }
}

@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(2, 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 {
    background: var(--gradient-subtle);
    border-color: var(--primary);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card-link:visited {
    color: inherit;
}

.service-link {
    margin-top: auto;
    padding-top: 16px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.service-card-link:hover .service-link {
    color: var(--primary-purple);
}

.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;
}

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

.services-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;
}

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

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

.services-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 400px;
}

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

@media (max-width: 768px) {
    .services-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .services-cta-text {
        max-width: 100%;
    }
    
    .services-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .services-cta-actions .btn {
        width: 100%;
    }
}

/* ========================================
   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;
}

/* About Section Review Badges */
.about-reviews {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about-reviews-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-align: center;
}

.about-review-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.about-review-badges .review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.about-review-badges .review-badge:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.1);
}

.about-review-badges .review-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    border-radius: var(--radius-md);
}

.about-review-badges .review-badge-stars {
    color: #FBBC05;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.about-review-badges .review-badge-source {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   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: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.15);
}

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

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
    font-style: italic;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

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

.author-info strong {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.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;
    }
}

/* Compact Calendly Card */
.contact-card-calendly {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--bg-white) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.calendly-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calendly-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    flex-shrink: 0;
}

.calendly-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.calendly-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-card-calendly .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.contact-card-calendly .btn .btn-icon {
    margin-right: 6px;
}

/* Form Row Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .contact-card-calendly {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    
    .calendly-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card-calendly .btn {
        width: 100%;
    }
    
    .form-row {
        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);
    }
}

@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;
    }
}

/* ========================================
   Service Landing Pages
   ======================================== */

/* Service Hero */
.service-hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.service-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;
}

.service-hero-bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse, var(--primary-subtle) 0%, transparent 60%);
    opacity: 0.9;
}

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

.service-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Service Hero Content */
.service-hero-content {
    max-width: 580px;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    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);
}

.service-hero-badge .badge-icon {
    font-size: 1.1rem;
}

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

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

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

/* Service Hero Stats */
.service-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 32px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.06) 0%, rgba(124, 58, 237, 0.04) 100%);
    border: 1px solid rgba(8, 145, 178, 0.12);
    border-radius: var(--radius-lg);
    max-width: 480px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 100px;
}

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

.hero-stat-value:first-child:not(:has(~)) {
    font-family: inherit;
}

.hero-stat:first-child .hero-stat-value {
    color: #f59e0b;
    font-family: inherit;
    letter-spacing: 2px;
}

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

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

/* Service Hero Visual */
.service-hero-visual {
    position: relative;
}

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

.visual-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-subtle);
}

.visual-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

.visual-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(5, 150, 105, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

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

.visual-metrics {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visual-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.visual-metric:hover {
    background: var(--bg-body);
    transform: translateX(4px);
}

.visual-metric-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.visual-metric-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visual-metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.visual-metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-mono);
}

.visual-activity {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-white);
}

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

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

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-dot.success {
    background: var(--success);
}

.activity-dot.warning {
    background: var(--warning);
}

.activity-dot.blocked {
    background: var(--danger, #ef4444);
}

.activity-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Service Explainer Section */
.service-explainer {
    padding: 100px 0;
    background: var(--bg-white);
}

.explainer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.explainer-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.explainer-content .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.explainer-text {
    margin-bottom: 48px;
}

.explainer-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.explainer-text p:last-child {
    margin-bottom: 0;
}

.explainer-text a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(8, 145, 178, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition-fast);
}

.explainer-text a:visited {
    color: var(--primary);
}

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

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

.explainer-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.explainer-benefit:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

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

/* Service Includes Section */
.service-includes {
    padding: 100px 0;
    background: var(--bg-body);
}

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

.include-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

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

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

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

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

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

.include-features {
    list-style: none;
}

.include-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

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

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

/* Service Difference Section */
.service-difference {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.difference-text .section-tag {
    margin-bottom: 16px;
}

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

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

.difference-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.difference-point {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

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

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

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

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

/* Comparison Visual */
.difference-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.comparison-card-new {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
}

.comparison-header {
    padding: 16px 24px;
    font-weight: 700;
}

.comparison-header-old {
    background: var(--bg-subtle);
    color: var(--text-muted);
}

.comparison-header-new {
    background: var(--gradient-primary);
    color: white;
}

.comparison-label {
    font-size: 0.95rem;
}

.comparison-list {
    list-style: none;
    padding: 20px 24px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list-old li {
    color: var(--text-muted);
}

.comparison-list-old .comparison-icon {
    color: var(--danger);
    font-weight: 700;
}

.comparison-list-new li {
    color: var(--text);
}

.comparison-list-new .comparison-icon {
    color: var(--success);
    font-weight: 700;
}

/* Service Audience Section */
.service-audience {
    padding: 100px 0;
    background: var(--bg-body);
}

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

.audience-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.audience-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

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

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

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

/* Service Related Section */
.service-related {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.related-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.related-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

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

.related-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.related-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.related-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s ease;
}

.related-card:hover .related-link {
    color: var(--primary-dark);
}

/* Service FAQ Section */
.service-faq {
    padding: 100px 0;
    background: var(--bg-body);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

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

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(8, 145, 178, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition-fast);
}

.faq-answer a:visited {
    color: var(--primary);
}

.faq-answer a:hover {
    text-decoration-color: var(--primary);
}

/* Service Process Section */
.service-process {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 60px;
}

.process-step-card {
    flex: 1;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
}

.process-step-card .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 20px;
}

.process-step-card .step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
}

.process-step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-align: center;
}

.process-step-card .step-tagline {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-align: center;
}

.process-step-card > p:not(.step-tagline) {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-step-card .step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step-card .step-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.process-step-card .step-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.process-steps .step-connector {
    position: static;
    width: 60px;
    height: auto;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-steps .step-connector::before {
    content: '→';
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.process-steps:hover .step-connector::before {
    opacity: 1;
}

@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .process-steps .step-connector {
        width: 100%;
        height: 50px;
    }
    
    .process-steps .step-connector::before {
        content: '↓';
        font-size: 2rem;
    }
}

/* Service CTA Section */
.service-cta {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 64px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.service-cta-card::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;
}

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

.service-cta-content .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;
}

.service-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.2;
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--primary-light) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn-secondary-light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-secondary-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Service Page Responsive */
@media (max-width: 1200px) {
    .service-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-hero-content {
        max-width: 100%;
    }
    
    .service-hero-cta {
        justify-content: center;
    }
    
    .service-hero-stats {
        justify-content: center;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .service-hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .difference-text .section-title {
        text-align: center;
    }
    
    .difference-visual {
        flex-direction: row;
    }
    
    .comparison-card {
        flex: 1;
    }
    
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .related-card {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }
    
    .service-hero-visual {
        display: none;
    }
    
    .service-hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .explainer-benefits {
        grid-template-columns: 1fr;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-visual {
        flex-direction: column;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }
    
    .service-cta-text {
        max-width: 100%;
    }
    
    .service-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .service-cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .service-hero-cta .btn {
        width: 100%;
    }
    
    .include-card {
        padding: 24px 20px;
    }
    
    .faq-item {
        padding: 24px 20px;
    }
}

/* ========================================
   INSIGHTS PREVIEW SECTION (Homepage)
   ======================================== */

.insights-preview {
    padding: var(--section-padding) 0;
    background: var(--bg-subtle);
    position: relative;
    overflow: hidden;
}

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

.insights-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.insights-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.insight-preview-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(8, 145, 178, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.insight-preview-card:hover::before {
    opacity: 1;
}

.insight-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(8, 145, 178, 0.15), var(--shadow-xl);
    border-color: transparent;
}

.insight-preview-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.insight-preview-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-muted) 100%);
}

.insight-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-preview-card:hover .insight-preview-image img {
    transform: scale(1.08);
}

.insight-preview-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-preview-placeholder .placeholder-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.insight-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.insight-preview-card:hover .insight-preview-overlay {
    opacity: 1;
}

.insight-preview-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.insight-preview-card:hover .insight-preview-cta {
    transform: translateY(0);
}

.insight-preview-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-preview-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.insight-preview-category {
    background: linear-gradient(135deg, var(--primary-subtle) 0%, rgba(124, 58, 237, 0.1) 100%);
    color: var(--primary-dark);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(8, 145, 178, 0.15);
}

.insight-preview-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.insight-preview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.insight-preview-card:hover .insight-preview-title {
    color: var(--primary);
}

.insight-preview-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-preview-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.insight-preview-readmore svg {
    transition: transform 0.3s ease;
}

.insight-preview-card:hover .insight-preview-readmore {
    color: var(--primary-dark);
}

.insight-preview-card:hover .insight-preview-readmore svg {
    transform: translateX(4px);
}

.insights-preview-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-insights-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-insights-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.btn-insights-all:hover {
    border-color: transparent;
    color: var(--text-inverse);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(8, 145, 178, 0.4);
}

.btn-insights-all:hover::before {
    opacity: 1;
}

.btn-insights-text {
    position: relative;
    z-index: 1;
}

.btn-insights-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-insights-arrow svg {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.btn-insights-all:hover .btn-insights-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.btn-insights-all:hover .btn-insights-arrow svg {
    transform: translateX(3px);
    color: var(--text-inverse);
}

/* Insights Preview Responsive */
@media (max-width: 1024px) {
    .insights-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .insights-preview-grid .insight-preview-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .insights-preview {
        padding: 60px 0;
    }
    
    .insights-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .insights-preview-grid .insight-preview-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .insight-preview-content {
        padding: 20px;
    }
    
    .insight-preview-title {
        font-size: 1.125rem;
    }
}

/* ========================================
   INSIGHTS / BLOG STYLES
   ======================================== */

/* Insights Hero */
.insights-hero {
    padding: 140px 0 60px;
    background: var(--gradient-hero);
}

.insights-hero .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Insights Listing */
.insights-listing {
    padding: 48px 0 100px;
}

.insights-listing .container {
    max-width: 1140px;
}

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

.insight-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.insight-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-subtle);
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.insight-category {
    background: var(--primary-subtle);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.insight-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.insight-card:hover .insight-link {
    color: var(--primary-dark);
}

.no-posts-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

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

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

.no-posts-message p {
    color: var(--text-secondary);
}

/* Pagination */
.pagination {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pagination-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

.pagination-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-prev,
.pagination-next {
    min-width: auto;
}

@media (max-width: 768px) {
    .pagination-number:not(.active):not(:nth-child(-n+3)):not(:nth-last-child(-n+2)) {
        display: none;
    }
    
    .pagination-links {
        gap: 4px;
    }
    
    .pagination-link {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 0.8125rem;
    }
}

/* =====================================================
   ARTICLE PAGE - Modern Reading Experience
   ===================================================== */

/* Article Base */
.article {
    padding-top: 80px;
}

/* Article Header - Compact Hero */
.article-header {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.article-header .container {
    max-width: 1000px;
}

.article-header-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px;
    align-items: start;
}

.article-header-content {
    min-width: 0;
}

/* Breadcrumb */
.article-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
    margin-bottom: 20px;
}

.article-breadcrumb a:hover {
    color: var(--primary-dark);
}

/* Article Meta */
.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.article-category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.article-date::before {
    content: "";
}


/* Article Title */
.article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Article Description */
.article-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Header Image - Compact Accent */
.article-header-image {
    position: relative;
    margin-top: 68px; /* Align with title (skip breadcrumb + meta) */
}

.article-header-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Article Body Layout */
.article-body {
    padding: 56px 0 64px;
}

.article-body .container {
    max-width: 760px;
}

/* Article Content */
.article-content {
    min-width: 0;
}

.article-content > p:first-child {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--text);
}

.article-content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text);
    margin: 48px 0 16px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 12px;
    line-height: 1.4;
}

.article-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content li::marker {
    color: var(--primary);
}

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

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(8, 145, 178, 0.3);
    text-underline-offset: 3px;
    transition: var(--transition-fast);
}

.article-content a:hover {
    text-decoration-color: var(--primary);
}

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

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

.article-content em {
    color: var(--text-muted);
}

/* Article CTA */
.article-cta {
    padding: 0 0 64px;
}

.article-cta-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, #0e7490 100%);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.article-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-cta-badge {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.article-cta-card h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.article-cta-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.article-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.article-cta-actions .btn-primary {
    background: white;
    color: var(--primary);
}

.article-cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.article-cta-actions .btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.article-cta-actions .btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Article Footer */
.article-footer {
    padding: 32px 0 48px;
    border-top: 1px solid var(--border);
}

.article-footer .container {
    max-width: 760px;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

/* =====================================================
   ARTICLE RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .article-header-inner {
        grid-template-columns: 1fr 200px;
        gap: 40px;
    }
    
    .article-header-image img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 32px 0 24px;
    }
    
    .article-header-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .article-header-image {
        order: -1;
        margin-top: 0;
    }
    
    .article-header-image img {
        height: 180px;
        width: 100%;
    }
    
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-description {
        font-size: 1rem;
    }
    
    .article-body {
        padding: 32px 0;
    }
    
    .article-content h2 {
        font-size: 1.375rem;
        margin-top: 36px;
    }
    
    .article-content h3 {
        font-size: 1.125rem;
    }
    
    .article-content p,
    .article-content ul,
    .article-content ol {
        font-size: 1rem;
    }
    
    .article-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .article-cta-content {
        flex-direction: column;
    }
    
    .article-cta-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .article-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 24px 0 20px;
    }
    
    .article-meta {
        gap: 8px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-header-image img {
        height: 140px;
    }
}

/* Insights Grid Responsive (keep existing) */
@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-hero {
        padding: 120px 0 40px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

