/* ============================================
   GridLogic IT - Main Stylesheet
   Dark cybersecurity theme with cyan accents
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #030510;
    --bg-secondary: #070c18;
    --bg-tertiary: #111827;
    --bg-card: #131b2e;
    --bg-card-hover: #182038;
    --border-color: rgba(101, 116, 205, 0.15);
    --border-hover: rgba(101, 116, 205, 0.35);
    --text-primary: #f8faff;
    --text-secondary: #b0bfd4;
    --text-muted: #7a8da4;
    --accent: #7080e0;
    --accent-light: #929df8;
    --accent-dark: #5a68d0;
    --accent-glow: rgba(101, 116, 205, 0.15);
    --success: #22d3a0;
    --warning: #f59e0b;
    --danger: #ef4444;
    --purple: #8b5cf6;
    --gold: #c9a84c;
    --gold-light: #dbbe6a;
    --gold-subtle: rgba(201, 168, 76, 0.12);
    --gold-border: rgba(201, 168, 76, 0.2);
    --cyan: #22d3ee;
    --cyan-dark: #06b6d4;
    --cyan-glow: rgba(34, 211, 238, 0.15);
    --cyan-subtle: rgba(34, 211, 238, 0.08);
    --gradient-primary: linear-gradient(135deg, #6574cd, #818cf8);
    --gradient-wide: linear-gradient(135deg, #5b52f0, #7080e0, #929df8, #b8a4ff);
    --gradient-vivid: linear-gradient(135deg, #5b52f0, #8b4cf7, #b8a4ff);
    --gradient-accent: linear-gradient(135deg, #6574cd, #a78bfa);
    --gradient-warm: linear-gradient(135deg, #6574cd, #8b5cf6, #c084fc);
    --gradient-subtle: linear-gradient(135deg, rgba(101, 116, 205, 0.08), rgba(139, 92, 246, 0.08));
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --nav-height: 72px;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(112, 128, 224, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    --glass-bg: rgba(8, 14, 32, 0.7);
    --glass-bg-hover: rgba(12, 18, 40, 0.8);
    --glass-border: rgba(146, 157, 248, 0.14);
    --glass-border-hover: rgba(146, 157, 248, 0.3);
    --glass-shine: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --glow-indigo: 0 0 20px rgba(146, 157, 248, 0.15);
    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.12);
    --glow-gold: 0 0 20px rgba(201, 168, 76, 0.1);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background:
        /* Clean grid - just verticals and horizontals, fading toward edges */
        linear-gradient(rgba(146, 157, 248, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 157, 248, 0.04) 1px, transparent 1px),
        var(--bg-primary);
    background-size: 56px 56px, 56px 56px, 100% 100%;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grid fade - visible in center, fades at edges */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse at center, transparent 20%, var(--bg-primary) 75%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

ul { list-style: none; }

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(7, 11, 20, 0.4);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(7, 11, 20, 0.75);
    border-bottom: 1px solid rgba(146, 157, 248, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(146, 157, 248, 0.05), var(--glass-shine);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100003;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown-chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
    opacity: 0.6;
}
.nav-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 230px;
    padding: 8px 0;
    background: rgba(10, 15, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.nav-dropdown-menu a:hover {
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.06);
}

.nav-cta {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 22px;
    white-space: nowrap;
    background: var(--gradient-vivid);
    border-radius: 80px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 16px rgba(101, 116, 205, 0.35), 0 0 30px rgba(139, 92, 246, 0.1);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(101, 116, 205, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
    filter: brightness(1.1);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    white-space: nowrap;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-phone:hover { color: var(--accent-light); }

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 80px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    color: white;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4), 0 0 48px rgba(139, 92, 246, 0.12);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5), 0 0 56px rgba(139, 92, 246, 0.18);
    filter: brightness(1.15);
}

.btn-primary::before { display: none !important; }

.btn-secondary {
    background: rgba(101, 116, 205, 0.1);
    color: var(--accent-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(101, 116, 205, 0.18);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(101, 116, 205, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border-hover);
    padding: 14px 28px;
    width: 100%;
}

.btn-outline:hover {
    background: rgba(101, 116, 205, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(139, 92, 246, 0.08));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* Decrypt text - visible but scrambled, no opacity jump */
.decrypt-text {
    opacity: 1;
    -webkit-text-fill-color: var(--accent-light);
    color: var(--accent-light);
    transition: color 0.6s ease, -webkit-text-fill-color 0.6s ease, text-shadow 2s ease, filter 2s ease;
}

.decrypt-text.decrypting {
    -webkit-text-fill-color: var(--accent-light);
    color: var(--accent-light);
}

.decrypt-text.decrypted {
    -webkit-text-fill-color: inherit;
    color: inherit;
    text-shadow: none;
    filter: none;
}

/* Persistent glow on gradient headings */
.gradient-text {
    filter: drop-shadow(0 0 12px rgba(146, 157, 248, 0.18));
}

/* Subtle glow on all glass-border section borders */
.why-us, .team, .social-proof {
    border-image: linear-gradient(90deg, transparent, rgba(146, 157, 248, 0.1), rgba(34, 211, 238, 0.06), rgba(146, 157, 248, 0.1), transparent) 1;
}

/* decryptFadeIn no longer needed - text stays visible throughout */

@keyframes byteBubbleIn {
    from { opacity: 0; transform: translateX(-50%) translateY(6px) scale(0.9); }
    to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* During decrypt animation, text glows as plain accent color */
.decrypt-text.decrypting {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--accent-light) !important;
    color: var(--accent-light) !important;
    text-shadow: 0 0 20px rgba(146, 157, 248, 0.5), 0 0 40px rgba(139, 92, 246, 0.25);
    filter: brightness(1.2);
    transition: none;
}

/* Resolved: smoothly transition back to gradient */
.decrypt-text.decrypted {
    text-shadow: none;
    filter: none;
    -webkit-text-fill-color: inherit;
    color: inherit;
    transition: color 0.8s ease, -webkit-text-fill-color 0.8s ease, text-shadow 2s ease, filter 2s ease;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 60px;
}

/* ===== Particle canvas ===== */
.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ===== Animated section dividers ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    z-index: 2;
}

.divider-line {
    height: 1px;
    flex: 1;
    max-width: 200px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.2), rgba(146, 157, 248, 0.3), rgba(201, 168, 76, 0.2), transparent);
    animation: dividerPulse 4s ease-in-out infinite;
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.5), 0 0 30px rgba(34, 211, 238, 0.2);
    animation: dividerDotPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes dividerDotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(34, 211, 238, 0.5), 0 0 30px rgba(34, 211, 238, 0.2); }
    50% { transform: scale(1.4); box-shadow: 0 0 18px rgba(34, 211, 238, 0.7), 0 0 40px rgba(34, 211, 238, 0.3); }
}

/* ===== Scroll reveal system ===== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-scale, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .prove-it-scan {
        animation: none;
    }
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(101, 116, 205, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(101, 116, 205, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 70%);
    animation: gridBreathe 8s ease-in-out infinite;
}

@keyframes gridBreathe {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 1100px;
    background:
        radial-gradient(circle at 25% 30%, rgba(91, 82, 240, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 70% 40%, rgba(139, 76, 247, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 50% 20%, rgba(34, 211, 238, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 15% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(34, 211, 238, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: heroGlowShift 12s ease-in-out infinite alternate;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(34, 211, 238, 0.06));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #40e8ff;
    margin-bottom: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 28px rgba(34, 211, 238, 0.12), 0 0 56px rgba(34, 211, 238, 0.04);
    animation: badgeGlow 4s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 6.5vw, 4.75rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 60px rgba(146, 157, 248, 0.15), 0 2px 40px rgba(0, 0, 0, 0.5);
}

/* Make the gradient line in the hero title extra punchy */
.hero-title .gradient-text {
    background: linear-gradient(135deg, #a0aaff, #c8b8ff, #e0b0ff, #f0d070);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 24px rgba(160, 170, 255, 0.4));
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #c8d5e8;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 36px;
}

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

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

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a0aaff, #c8b8ff, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 10px rgba(160, 170, 255, 0.25));
    letter-spacing: -0.02em;
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.78rem;
    color: #8fa0b8;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(146, 157, 248, 0.3), transparent);
    box-shadow: 0 0 8px rgba(146, 157, 248, 0.1);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.shield-container {
    position: relative;
    width: 460px;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========== Dashboard Frame ========== */

.dashboard-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(8, 10, 24, 0.6);
    border: 1px solid rgba(129, 140, 248, 0.07);
    border-radius: 20px;
    padding: 10px 14px 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 4px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    animation: sonarFloat 8s ease-in-out infinite;
}

.dash-top-bar, .dash-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 8px;
}

.dash-top-bar {
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(129, 140, 248, 0.06);
}

.dash-bottom-bar {
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(129, 140, 248, 0.06);
}

.dash-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dash-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #64748b;
}

.dash-dot.live {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
    animation: dashDotPulse 2s ease-in-out infinite;
}

@keyframes dashDotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.dash-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(129, 140, 248, 0.45);
    text-transform: uppercase;
}

.dash-title {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(129, 140, 248, 0.3);
    text-transform: uppercase;
}

.dash-readout {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(148, 163, 184, 0.35);
    text-transform: uppercase;
}

/* ========== Sonar Visual (Canvas + CRT) ========== */

.sonar-display {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow:
        0 0 40px rgba(146, 157, 248, 0.1),
        0 0 80px rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(146, 157, 248, 0.12);
}

.sonar-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* CRT scan lines */
.sonar-scanlines {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0, 0, 0, 0.035) 3px,
        rgba(0, 0, 0, 0.035) 6px
    );
    pointer-events: none;
    z-index: 3;
}

/* CRT vignette */
.sonar-vignette {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        transparent 35%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
    z-index: 4;
}

/* Slow, barely perceptible breathing scale - like a live system humming */
@keyframes sonarFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.012); }
}

@keyframes heroGlowShift {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-48%) scale(1.05); opacity: 0.85; }
    100% { transform: translateX(-52%) scale(0.98); opacity: 1; }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 24px rgba(34, 211, 238, 0.08), 0 0 48px rgba(34, 211, 238, 0.03); }
    50% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 28px rgba(34, 211, 238, 0.14), 0 0 56px rgba(34, 211, 238, 0.06); }
}

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

/* Old elements hidden */
.hex-grid { display: none; }
.shield-icon { display: none; }
.shield-check { display: none; }
.shield-scan { display: none; }
.orbit { display: none; }
.pulse-ring { display: none; }
.radar-svg { display: none; }

/* Original hex-grid CSS (inactive) */
.hex-grid-original {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: hexRotate 60s linear infinite;
}

@keyframes hexRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pulse rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(129, 140, 248, 0.15);
    animation: pulseRing 4s ease-out infinite;
}

.pulse-ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.pulse-ring-2 { width: 200px; height: 200px; animation-delay: 1.3s; }
.pulse-ring-3 { width: 200px; height: 200px; animation-delay: 2.6s; }

@keyframes pulseRing {
    0% {
        width: 200px; height: 200px;
        opacity: 0.6;
        border-color: rgba(167, 139, 250, 0.3);
    }
    100% {
        width: 500px; height: 500px;
        opacity: 0;
        border-color: rgba(79, 70, 229, 0);
    }
}

.pulse-ring-1 { animation-duration: 5.5s; }
.pulse-ring-2 { animation-duration: 5.5s; }
.pulse-ring-3 { animation-duration: 5.5s; }

/* Shield breathing glow */
.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 280px;
    background: radial-gradient(ellipse,
        rgba(129, 140, 248, 0.15) 0%,
        rgba(124, 58, 237, 0.08) 30%,
        rgba(79, 70, 229, 0.03) 50%,
        transparent 70%
    );
    animation: shieldBreathe 14s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes shieldBreathe {
    0%   { transform: translate(-50%, -50%) translateY(6px) translateX(0) scale(1); opacity: 0.75; }
    20%  { transform: translate(-50%, -50%) translateY(-14px) translateX(4px) scale(1.1); opacity: 0.9; }
    40%  { transform: translate(-50%, -50%) translateY(-4px) translateX(-3px) scale(1.05); opacity: 0.8; }
    60%  { transform: translate(-50%, -50%) translateY(-18px) translateX(2px) scale(1.15); opacity: 1; }
    80%  { transform: translate(-50%, -50%) translateY(-2px) translateX(-4px) scale(1.02); opacity: 0.78; }
    100% { transform: translate(-50%, -50%) translateY(6px) translateX(0) scale(1); opacity: 0.75; }
}

/* Main shield */
.shield-icon {
    width: 220px;
    height: 260px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(129, 140, 248, 0.2))
            drop-shadow(0 0 60px rgba(101, 116, 205, 0.1));
    animation: shieldFloat 14s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%   { transform: translateY(6px) translateX(0); }
    20%  { transform: translateY(-14px) translateX(4px); }
    40%  { transform: translateY(-4px) translateX(-3px); }
    60%  { transform: translateY(-18px) translateX(2px); }
    80%  { transform: translateY(-2px) translateX(-4px); }
    100% { transform: translateY(6px) translateX(0); }
}

.shield-check {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: drawCheck 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.8s;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Scan line sweeping down the shield */
.shield-scan {
    animation: scanDown 3s ease-in-out infinite 1.5s;
}

@keyframes scanDown {
    0% { y: 10; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { y: 230; opacity: 0; }
}

/* Orbits */
.orbit {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 280px; height: 280px;
    border: 1px solid rgba(129, 140, 248, 0.08);
}
.orbit-2 {
    width: 360px; height: 360px;
    border: 1px dashed rgba(101, 116, 205, 0.06);
}
.orbit-3 {
    width: 440px; height: 440px;
    border: 1px solid rgba(79, 70, 229, 0.05);
}

.orbit-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-light), 0 0 20px rgba(139, 92, 246, 0.5);
    top: 50%;
    left: 50%;
}

.orbit-dot.dot-lg {
    width: 10px;
    height: 10px;
    background: #a78bfa;
    box-shadow: 0 0 14px #a78bfa, 0 0 30px rgba(167, 139, 250, 0.5);
}

.orbit-dot.dot-sm {
    width: 5px;
    height: 5px;
    background: #6574cd;
    box-shadow: 0 0 8px #6574cd;
}

.orbit-1 .orbit-dot { animation: orbit1 16s linear infinite; }
.orbit-2 .orbit-dot { animation: orbit2 24s linear infinite; }
.orbit-3 .orbit-dot { animation: orbit3 32s linear infinite; }

@keyframes orbit1 {
    from { transform: rotate(0deg) translateX(var(--orbit1-r, 140px)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--orbit1-r, 140px)) rotate(-360deg); }
}

@keyframes orbit2 {
    from { transform: rotate(120deg) translateX(var(--orbit2-r, 180px)) rotate(-120deg); }
    to { transform: rotate(-240deg) translateX(var(--orbit2-r, 180px)) rotate(240deg); }
}

@keyframes orbit3 {
    from { transform: rotate(240deg) translateX(var(--orbit3-r, 220px)) rotate(-240deg); }
    to { transform: rotate(600deg) translateX(var(--orbit3-r, 220px)) rotate(-600deg); }
}

/* Data particles */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(129, 140, 248, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(129, 140, 248, 0.4);
    animation: particleFloat 8s ease-in-out infinite;
}

.p1 { top: 8%;  left: 20%;  animation-duration: 11s; animation-delay: 0s; }
.p2 { top: 15%; right: 15%; animation-duration: 14s; animation-delay: 1s; width: 2px; height: 2px; }
.p3 { top: 70%; left: 10%;  animation-duration: 10s; animation-delay: 2s; }
.p4 { top: 80%; right: 20%; animation-duration: 15s; animation-delay: 0.5s; width: 4px; height: 4px; background: rgba(167, 139, 250, 0.5); }
.p5 { top: 40%; left: 5%;   animation-duration: 12s; animation-delay: 3s; width: 2px; height: 2px; }
.p6 { top: 25%; right: 8%;  animation-duration: 16s; animation-delay: 1.5s; }
.p7 { top: 60%; right: 5%;  animation-duration: 11.5s; animation-delay: 4s; width: 2px; height: 2px; background: rgba(167, 139, 250, 0.4); }
.p8 { top: 90%; left: 35%;  animation-duration: 13s; animation-delay: 2.5s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
    50% { transform: translateY(-8px) translateX(-8px); opacity: 0.5; }
    75% { transform: translateY(-25px) translateX(5px); opacity: 0.9; }
}

/* Floating status cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(10, 20, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    animation: float 10s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
}

.card-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-status-dot.green {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

.card-status-dot.cyan {
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

.card-status-dot.pulse-dot {
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.card-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 22%;
    left: -14%;
    animation-delay: 1.5s;
}

.card-3 {
    top: 50%;
    right: -12%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 5%;
    left: -5%;
    animation-delay: 4.5s;
}

/* Floating card icon animations */

/* Endpoint Secured - lock click (scales down then back like a lock engaging) */
.card-1 svg {
    animation: iconLockClick 3s ease-in-out infinite;
}
@keyframes iconLockClick {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    40% { transform: scale(1); opacity: 0.8; }
    45% { transform: scale(0.85); opacity: 1; }
    55% { transform: scale(1.05); opacity: 1; }
    65% { transform: scale(1); opacity: 0.8; }
}

/* Migration Complete - checkmark draws in then resets */
.card-2 svg polyline {
    stroke-dasharray: 30;
    animation: iconCheckDraw 3s ease-in-out infinite;
}
@keyframes iconCheckDraw {
    0% { stroke-dashoffset: 30; }
    40%, 70% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 30; }
}

/* Threat Blocked - shield bump like deflecting a hit */
.card-3 svg {
    animation: iconShieldBump 3.5s ease-in-out infinite;
}
@keyframes iconShieldBump {
    0%, 100% { transform: scale(1); filter: none; }
    45% { transform: scale(1); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 4px rgba(167, 139, 250, 0.5)); }
    60% { transform: scale(0.95); }
    70% { transform: scale(1); filter: none; }
}

/* Monitoring Active - heartbeat line draws itself */
.card-4 svg polyline {
    stroke-dasharray: 60;
    animation: iconHeartbeatDraw 2.5s linear infinite;
}
@keyframes iconHeartbeatDraw {
    0% { stroke-dashoffset: 60; }
    100% { stroke-dashoffset: -60; }
}

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

/* --- Tech Banner --- */
.tech-banner {
    padding: 40px 0;
    border-top: 1px solid rgba(34, 211, 238, 0.06);
    border-bottom: 1px solid rgba(34, 211, 238, 0.06);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.02), transparent 70%),
        rgba(12, 18, 34, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tech-banner-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.tech-logos {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.tech-item:hover {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.25));
    transform: translateY(-2px);
}

.tech-item span {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.tech-item:hover {
    opacity: 1;
}

.tech-item:hover span {
    color: var(--text-primary);
}

.tech-item svg {
    flex-shrink: 0;
}

.tech-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Per-icon sizing to achieve visual parity */
.tech-item[data-icon="ms365"] .tech-logo-img    { height: 30px; }
.tech-item[data-icon="entra"] .tech-logo-img     { height: 34px; }
.tech-item[data-icon="sharepoint"] .tech-logo-img { height: 34px; }
.tech-item[data-icon="intune"] .tech-logo-img    { height: 32px; }
.tech-item[data-icon="defender"] .tech-logo-img  { height: 36px; }
.tech-item[data-icon="exchange"] .tech-logo-img  { height: 32px; }
.tech-item[data-icon="teams"] .tech-logo-img     { height: 34px; }
.tech-item[data-icon="copilot"] .tech-logo-img   { height: 34px; }
.tech-item[data-icon="azure"] .tech-logo-img    { height: 34px; }

/* --- Services Section --- */
.services {
    padding: 120px 0;
    position: relative;
}

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

.service-card {
    position: relative;
    padding: 40px 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-lg);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: var(--glass-shine);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-dark), var(--accent-light), var(--purple), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    border-left-color: var(--accent-light);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(101, 116, 205, 0.1),
        var(--glass-shine);
}

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

.service-card.featured {
    border-color: var(--glass-border-hover);
    background: linear-gradient(180deg, rgba(101, 116, 205, 0.1) 0%, var(--glass-bg) 40%);
}

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

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 16px rgba(129, 140, 248, 0.08);
    border: 1px solid rgba(129, 140, 248, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--accent-light);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-icon,
.why-feature:hover .why-feature-icon,
.step-content:hover .step-icon {
    transform: translateY(-2px) rotate(8deg) scale(1.1);
    filter: drop-shadow(0 0 16px rgba(129, 140, 248, 0.35));
}

/* === Shared icon animations === */
/* TODO: Remove this rule to re-enable all icon animations */
.anim-draw, .anim-compass-spin, .anim-gear-ticks, .anim-starburst-spin,
.anim-pulse-stroke, .anim-clock-hand, .anim-fade-in, .anim-heartbeat,
.ci-radar, .ci-verify-ring, .ci-shield-appear, .ci-lock-pulse,
.ci-bulb-rays, .ci-restore {
    animation: none !important;
    opacity: revert;
    stroke-dashoffset: 0;
}


/* Draw: stroke draws in then resets on loop */
.anim-draw {
    stroke-dasharray: 60;
    animation: animDraw 3s ease-in-out infinite;
}
@keyframes animDraw {
    0% { stroke-dashoffset: 60; }
    40%, 80% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 60; }
}

/* Compass arms rotate around center on hover (Cloud Migration) */
.anim-compass-spin {
    transform-origin: 24px 28px;
    animation: animCompassSpin 6s linear infinite;
}
@keyframes animCompassSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Gear tick marks rotate around gear center (Professional IT) */
.anim-gear-ticks {
    transform-origin: 30px 30px;
    animation: animGearTicks 5s linear infinite;
}
@keyframes animGearTicks {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Starburst lines rotate around center (Migrate step) */
.anim-starburst-spin {
    transform-origin: 24px 24px;
    animation: animStarburstSpin 8s linear infinite;
}
@keyframes animStarburstSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulse stroke: stroke opacity pulses on hover (shields) */
.anim-pulse-stroke {
    animation: animPulseStroke 2.5s ease-in-out infinite;
}
@keyframes animPulseStroke {
    0%, 100% { stroke-opacity: 1; }
    50% { stroke-opacity: 0.4; }
}

/* Clock hand: rotates on hover */
.why-feature .anim-clock-hand {
    transform-origin: 12px 12px;
    animation: animClock 4s linear infinite;
}
.step-content .anim-clock-hand {
    transform-origin: 24px 24px;
    animation: animClock 4s linear infinite;
}
@keyframes animClock {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Fade in: element fades in on hover (secondary people) */
.anim-fade-in {
    animation: animFadeInOut 3s ease-in-out infinite;
}
@keyframes animFadeInOut {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

/* Heartbeat: line draws and pulses */
.anim-heartbeat {
    stroke-dasharray: 60;
    animation: animHeartbeat 3s ease-in-out infinite;
}
@keyframes animHeartbeat {
    0% { stroke-dashoffset: 60; }
    40%, 80% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 60; }
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

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

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-light);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-light);
    transform: translateY(-50%);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--cyan);
}
.service-link::after {
    background: linear-gradient(90deg, var(--cyan), var(--accent-light)) !important;
    box-shadow: 0 0 4px rgba(34, 211, 238, 0.25) !important;
}

/* --- Why Us Section --- */
.why-us {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(201, 168, 76, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(101, 116, 205, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #0e1528 0%, #111d35 50%, #0e1528 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.why-us-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(34, 211, 238, 0.06));
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: var(--radius-sm);
    color: var(--accent-light);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.08);
    animation: iconFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.8s);
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Founder card */
.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    box-shadow: var(--glass-shine);
}

.founder-photo {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(129, 140, 248, 0.2);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.1);
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.founder-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.founder-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.founder-quote {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Cat CSO easter egg */
.cso-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-top: 20px;
    box-shadow: var(--glass-shine);
    transition: border-color 0.3s ease;
}

.cso-card:hover {
    border-color: var(--glass-border-hover);
}

.cso-photo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(129, 140, 248, 0.15);
}

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

.cso-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cso-role {
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 0.04em;
}

.cso-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-style: italic;
}

.why-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== Terminal ========== */
.terminal-window {
    background: rgba(13, 17, 23, 0.75);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(101, 116, 205, 0.08), var(--glass-shine);
    position: relative;
}

.terminal-window::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.25), rgba(139, 92, 246, 0.08), rgba(79, 70, 229, 0.25));
    z-index: -1;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(129, 140, 248, 0.08);
}

.terminal-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 2;
}

.terminal-line {
    display: flex;
    gap: 8px;
    opacity: 0;
    animation: terminalFadeIn 0.3s ease forwards;
}

.terminal-line:nth-child(1) { animation-delay: 0.2s; }
.terminal-line:nth-child(2) { animation-delay: 0.7s; }
.terminal-line:nth-child(3) { animation-delay: 1.2s; }
.terminal-line:nth-child(4) { animation-delay: 1.6s; }
.terminal-line:nth-child(5) { animation-delay: 2.0s; }
.terminal-line:nth-child(6) { animation-delay: 2.4s; }
.terminal-line:nth-child(7) { animation-delay: 2.8s; }
.terminal-line:nth-child(8) { animation-delay: 3.2s; }
.terminal-line:nth-child(9) { animation-delay: 3.6s; }
.terminal-line:nth-child(10) { animation-delay: 4.0s; }

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

.terminal-prompt { color: var(--accent-light); font-weight: 600; }
.terminal-command { color: var(--text-primary); }
.terminal-output { color: var(--text-secondary); }
.terminal-output.success { color: var(--success); }
.terminal-output.warning { color: var(--warning); }
.terminal-output.dim { color: var(--text-muted); }

.terminal-cursor {
    color: var(--accent-light);
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* --- Certification Trust Strip --- */
.cert-strip {
    padding: 32px 0;
}

.cert-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cert-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    white-space: nowrap;
}

.cert-badges {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.cert-badge:hover {
    opacity: 1;
}

.cert-icon {
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.cert-icon-wide {
    height: 28px;
}

.cert-text {
    display: flex;
    flex-direction: column;
}

.cert-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.2;
}

.cert-detail {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.cert-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

@media (max-width: 768px) {
    .cert-strip .container { flex-direction: column; gap: 16px; }
    .cert-badges { gap: 16px; }
}

@media (max-width: 480px) {
    .cert-badges { flex-direction: column; gap: 12px; }
    .cert-divider { width: 40px; height: 1px; }
}

/* --- Process Section --- */
.process {
    padding: 120px 0;
    position: relative;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 340px;
    position: relative;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(129, 140, 248, 0.2), rgba(139, 92, 246, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 16px;
}

.step-content {
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: var(--glass-shine);
}

.step-content:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--glass-shine);
    background: var(--glass-bg-hover);
}

.step-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

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

.step-icon {
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 0 6px rgba(146, 157, 248, 0.15));
}

.step-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-details li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 120px;
    color: var(--text-muted);
    opacity: 0.4;
}

/* --- Cybersecurity Section --- */
.cybersecurity {
    padding: 120px 0;
    position: relative;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(34, 211, 238, 0.025) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.02) 0%, transparent 50%),
        var(--bg-secondary);
    border-top: 1px solid rgba(34, 211, 238, 0.06);
    border-bottom: 1px solid rgba(34, 211, 238, 0.06);
    overflow: hidden;
}

.cyber-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cyber-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(101, 116, 205, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(101, 116, 205, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.cyber-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cyber-card {
    padding: 32px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shine);
}

.cyber-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--glass-border-hover);
    border-left-color: var(--cyan);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(34, 211, 238, 0.08),
        var(--glass-shine);
    background: var(--glass-bg-hover);
}

.cyber-card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(129, 140, 248, 0.1));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.cyber-card:hover .cyber-card-icon {
    filter: drop-shadow(0 0 16px rgba(129, 140, 248, 0.25));
    transform: translateY(-2px);
}

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

/* 1: Radar sweep - rotates on hover */
.ci-radar {
    transform-origin: 24px 22px;
    opacity: 0.5;
    animation: radarSweep 2.5s linear infinite;
}

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

/* 2: Verify ring - draws around fingerprint on hover */
.ci-verify-ring {
    transform: rotate(-90deg);
    transform-origin: 24px 24px;
    animation: verifyDraw 3s ease-in-out infinite;
}
@keyframes verifyDraw {
    0% { stroke-dashoffset: 113; opacity: 0; }
    30% { opacity: 0.5; }
    50% { stroke-dashoffset: 0; opacity: 0.5; }
    80% { opacity: 0.5; }
    100% { stroke-dashoffset: 113; opacity: 0; }
}

/* 3: Shield fades in over devices on hover */
.ci-shield-appear {
    transform-origin: 18px 26px;
    animation: shieldAppear 3s ease-in-out infinite;
}
@keyframes shieldAppear {
    0%, 100% { opacity: 0; transform: translateY(4px) scale(0.8); }
    30%, 70% { opacity: 1; transform: translateY(0) scale(1); }
}

/* 4: Lock pulse - radiates from lock on hover */
.ci-lock-pulse {
    animation: lockPulse 2s ease-out infinite;
}

@keyframes lockPulse {
    0% { opacity: 0.4; r: 5; }
    100% { opacity: 0; r: 12; }
}

/* 5: Lightbulb rays appear on hover */
.ci-bulb-rays {
    animation: bulbGlow 2s ease-in-out infinite;
}

@keyframes bulbGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* 6: Restore arrows spin on hover */
.ci-restore {
    transform-origin: 24.5px 28px;
    animation: restoreSpin 4s linear infinite;
}

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

.cyber-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cyber-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Packages Section --- */
.packages {
    padding: 120px 0;
}

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

.package-card {
    position: relative;
    padding: 40px 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: var(--glass-shine);
}

.package-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow), var(--glass-shine);
    background: var(--glass-bg-hover);
}

.package-card.featured {
    border-color: transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(135deg, rgba(201, 168, 76, 0.35), rgba(101, 116, 205, 0.3), rgba(201, 168, 76, 0.35)) border-box;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid transparent;
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.08), 0 0 60px rgba(101, 116, 205, 0.04), var(--glass-shine);
}

.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
    border-radius: inherit;
    pointer-events: none;
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

/* Premium tier - subtle top-shelf treatment */
.package-card.premium {
    border-color: transparent;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
                linear-gradient(160deg, rgba(201, 168, 76, 0.22), rgba(219, 190, 106, 0.12), rgba(201, 168, 76, 0.22)) border-box;
    border: 1px solid transparent;
}

.package-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

.package-card.premium .package-tier {
    color: var(--gold-light);
}

.package-card.premium .package-name {
    background: linear-gradient(135deg, #f8faff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.package-card.premium:hover {
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(201, 168, 76, 0.08),
        var(--glass-shine);
    border-left-color: var(--gold);
}

.package-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: linear-gradient(135deg, #c9a84c, #dbbe6a, #c9a84c);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1200;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.package-header {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

/* Mascot canvas */
.mascot-canvas {
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Ensure card content stays above mascot canvas */
.package-card .package-header {
    position: relative;
    z-index: 2;
}

.package-card .package-features {
    position: relative;
    z-index: 2;
}

.package-card > .btn {
    position: relative;
    z-index: 2;
}

/* Keep popular badge absolutely positioned but above canvas */
.package-card .package-popular {
    z-index: 3;
}

/* All package card buttons full width */
.package-card > .btn {
    width: 100%;
}

.package-tier {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 8px 0;
    letter-spacing: -0.02em;
}

.package-price {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 8px 0 10px;
}

.package-price span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.package-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dual pricing layout */
.package-pricing-dual {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin: 16px 0 18px;
}

.price-prove-it, .price-contract {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    border-radius: var(--radius-md);
    position: relative;
}

.price-prove-it {
    background: rgba(146, 157, 248, 0.07);
    border: 1px solid rgba(146, 157, 248, 0.15);
}

.price-contract {
    background: rgba(34, 211, 238, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.1);
}

.price-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    margin-bottom: 6px;
}

.price-contract .price-label {
    color: var(--cyan);
}

.price-prove-it .package-price {
    margin: 0;
}

.price-prove-it .package-price span {
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.7;
}

.contract-price {
    margin: 0;
}

.contract-price span {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    color: var(--cyan) !important;
}

.price-note {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 5px;
    letter-spacing: 0.02em;
}

.price-savings {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--success);
    background: rgba(34, 211, 160, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 6px;
}

.price-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(146, 157, 248, 0.15), transparent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .package-pricing-dual { flex-direction: column; gap: 8px; }
    .price-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(146, 157, 248, 0.12), transparent); }
}

/* Prove-It Banner */
.prove-it-banner {
    text-align: center;
    padding: 40px 32px;
    margin-bottom: 48px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shine);
    position: relative;
    overflow: hidden;
}

.prove-it-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-dark), var(--accent-light), var(--cyan-dark));
}

/* Accent line as real element so spotlight pseudo-elements stay intact */
.prove-it-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-dark), var(--accent-light), var(--cyan-dark));
    z-index: 3;
    pointer-events: none;
}

/* Slow security-scan sweep */
.prove-it-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(34, 211, 238, 0.03) 42%, rgba(146, 157, 248, 0.04) 50%, rgba(34, 211, 238, 0.03) 58%, transparent 70%, transparent 100%);
    transform: translateX(-100%);
    animation: bannerScan 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bannerScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.prove-it-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.18);
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.prove-it-headline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.prove-it-copy {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 12px;
}

.prove-it-tagline {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-light);
    font-style: italic;
}

.prove-it-savings-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(34, 211, 160, 0.04);
    border: 1px solid rgba(34, 211, 160, 0.1);
    border-left: 3px solid var(--success);
    border-radius: var(--radius-sm);
}

.prove-it-savings-icon {
    flex-shrink: 0;
    opacity: 0.7;
}

.prove-it-savings-line strong {
    color: var(--success);
    font-size: 0.95rem;
    text-shadow: 0 0 20px rgba(34, 211, 160, 0.3);
}

/* Prove-It Steps */
.prove-it-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Horizontal connecting line behind step cards */
.prove-it-steps::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.15), rgba(146, 157, 248, 0.12), rgba(34, 211, 238, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}
.prove-it-steps::before {
    content: '';
    position: absolute;
    top: 43px;
    left: 5%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--accent-light), transparent);
    pointer-events: none;
    z-index: 1;
    border-radius: 2px;
    animation: proveItLineTravel 4s ease-in-out infinite;
    filter: blur(0.5px);
}
@keyframes proveItLineTravel {
    0% { left: 2%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(95% - 80px); opacity: 0; }
}

.prove-it-step {
    padding: 28px 22px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shine);
    transition: all 0.4s ease;
}

.prove-it-step:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
}

.prove-it-step-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 14px;
}

.prove-it-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.prove-it-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .prove-it-steps { grid-template-columns: repeat(2, 1fr); }
    .prove-it-steps::after { display: none; }
    .prove-it-steps::before { display: none; }
}

@media (max-width: 768px) {
    .prove-it-steps { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .prove-it-steps::after {
        display: block;
        top: 5%;
        bottom: 5%;
        left: 50%;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.1), rgba(146, 157, 248, 0.1), rgba(34, 211, 238, 0.1), transparent);
        transform: translateX(-50%);
    }
    .prove-it-steps::before {
        display: block;
        top: 2%;
        left: 50%;
        width: 3px;
        height: 60px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, var(--cyan), var(--accent-light), transparent);
        animation: proveItLineTravelV 4s ease-in-out infinite;
    }
    @keyframes proveItLineTravelV {
        0% { top: 2%; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { top: calc(95% - 60px); opacity: 0; }
    }
    .package-pricing-dual { flex-direction: column; gap: 10px; }
    .price-divider { width: 100%; height: 1px; }
}

.package-features {
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.package-features li svg {
    min-width: 18px;
}

/* Feature category dividers */
.package-features li.feature-category {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    opacity: 0.5;
    padding: 14px 0 2px;
    border-bottom: none;
    gap: 0;
}

.package-features li.feature-category:first-child {
    padding-top: 2px;
}

/* Flagship feature highlight */
.package-features li.feature-flagship {
    color: var(--text-primary);
}

.package-features li.feature-flagship svg {
    stroke: var(--cyan);
}

/* --- Social Proof Section --- */
.social-proof {
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.02) 0%, transparent 60%),
        var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.proof-stat {
    text-align: center;
    padding: 32px 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
    box-shadow: var(--glass-shine);
}

.proof-stat:hover {
    border-color: rgba(34, 211, 238, 0.2);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(34, 211, 238, 0.06),
        var(--glass-shine);
    background: var(--glass-bg-hover);
}

.proof-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
    background: linear-gradient(135deg, var(--cyan), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.15));
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.proof-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.proof-detail {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.testimonial-card {
    padding: 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shine);
}

.testimonial-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--glass-shine);
    background: var(--glass-bg-hover);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-vivid);
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.author-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-role {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--accent-light);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--glass-shine), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(101, 116, 205, 0.5), 0 0 40px rgba(146, 157, 248, 0.2);
    transform: translateY(-2px);
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(91, 82, 240, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(34, 211, 238, 0.025) 0%, transparent 40%),
        var(--bg-secondary);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Form */
.cta-form-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shine), 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(7, 11, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    background: rgba(7, 11, 20, 0.5);
}

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

.form-group select {
    padding: 12px 16px;
    background: rgba(7, 11, 20, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn.full-width {
    grid-column: span 2;
    width: 100%;
}

/* --- Footer --- */
.footer {
    padding: 80px 0 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(146, 157, 248, 0.08);
    box-shadow: 0 -1px 30px rgba(146, 157, 248, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--accent);
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

.footer-links-group a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.byte-track {
    position: relative;
    width: 100%;
    height: 0;
    border-top: 1px solid var(--border-color);
    overflow: visible;
}

.footer-service-area {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.florida-outline {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.85;
    object-fit: contain;
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 9999;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
    z-index: 9999;
}

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

/* --- Card Spotlight Effect --- */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(129, 140, 248, 0.07),
        rgba(139, 92, 246, 0.03) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.spotlight-card:hover::after {
    opacity: 1;
}

/* Spotlight border glow */
.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(
        400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(129, 140, 248, 0.12),
        transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    padding: 1px;
}

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

/* Override for cards that already use ::before for a top bar */
.service-card.spotlight-card::before {
    height: 3px;
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    mask: none;
    -webkit-mask: none;
    padding: 0;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

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

/* --- Page Loader --- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Container matches the full assembled logo aspect ratio (1050x809) */
.loader-smash {
    position: relative;
    width: 130px;  /* ~1050 * (100/809) */
    height: 100px;
}

.spark-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 2;
}

/* Each half image is 601x809 from a 1050-wide logo.
   Scale to container: height=100px, so each image width = 601*(100/809) = ~74px
   Position both at left:0 so they overlay to form the full logo */
.loader-half {
    position: absolute;
    top: 0;
    height: 100px;
    width: auto;
    z-index: 1;
}

/* Left half: its content starts at x=0 in the source, which maps to left=0 */
.loader-left {
    left: 0;
    animation: smashLeft 0.9s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}

/* Right half: its content starts at x=457 in the 1050-wide source.
   At scale: 457*(130/1050) = ~56.5px from left */
.loader-right {
    left: 57px;
    animation: smashRight 0.9s cubic-bezier(0.12, 0, 0.39, 0) forwards;
}

@keyframes smashLeft {
    0% { transform: translateX(-250px); opacity: 0; }
    8% { opacity: 1; }
    88% { transform: translateX(0); }
    92% { transform: translateX(5px); }
    96% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

@keyframes smashRight {
    0% { transform: translateX(250px); opacity: 0; }
    8% { opacity: 1; }
    88% { transform: translateX(0); }
    92% { transform: translateX(-5px); }
    96% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

.loader-smash.impact {
    animation: screenShake 0.3s ease;
}

@keyframes screenShake {
    0%, 100% { transform: translate(0, 0); }
    15% { transform: translate(-3px, 2px); }
    30% { transform: translate(3px, -2px); }
    45% { transform: translate(-2px, -1px); }
    60% { transform: translate(2px, 1px); }
    75% { transform: translate(-1px, 1px); }
}


/* --- Hero Stagger Animation --- */
.hero-stagger {
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-stagger[data-delay="1"] { animation-delay: 0.6s; }
.hero-stagger[data-delay="2"] { animation-delay: 0.8s; }
.hero-stagger[data-delay="3"] { animation-delay: 1.0s; }
.hero-stagger[data-delay="4"] { animation-delay: 1.2s; }
.hero-stagger[data-delay="5"] { animation-delay: 1.4s; }

@keyframes heroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* --- Team Section --- */
.team {
    padding: 120px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 36px 28px;
    width: 280px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shine);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow), var(--glass-shine);
}

.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto 20px;
    border: 3px solid rgba(129, 140, 248, 0.15);
    box-shadow: 0 0 24px rgba(129, 140, 248, 0.08);
    display: block;
}

.team-card-cat .team-photo {
    object-position: center center;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- FAQ Section --- */
.faq {
    padding: 120px 0;
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--glass-shine);
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
}

.faq-item[data-open="true"] {
    border-color: var(--glass-border-hover);
    border-left: 3px solid var(--accent-light);
    box-shadow: var(--shadow-glow), var(--glass-shine), 0 0 40px rgba(146, 157, 248, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[data-open="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 24px;
}

.faq-item[data-open="true"] .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Responsive Design --- */
/* --- Responsive: Tablet (1024px) --- */
@media (max-width: 1024px) {
    .hero {
        position: relative;
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 40px;
        min-height: 100vh;
        min-height: 100dvh;
        gap: 0;
        justify-content: center;
        overflow: visible;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }

    /* Shield becomes a full-bleed centered background behind the text */
    .hero-visual {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.3;
        pointer-events: none;
        z-index: 0;
        flex: none;
        width: auto;
        height: auto;
    }

    .hero-content { z-index: 2; position: relative; }

    .shield-container { width: 400px; height: 420px; }
    .sonar-display { width: 340px; height: 340px; }
    .dash-title { font-size: 0.48rem; }
    .dash-label { font-size: 0.48rem; }

    /* Reposition floating cards closer to center so they don't clip */
    .floating-card { font-size: 0.68rem; padding: 8px 12px; opacity: 0.7; }
    .card-1 { top: 5%; right: 2%; }
    .card-2 { bottom: 22%; left: 2%; }
    .card-3 { top: 50%; right: 0%; }
    .card-4 { bottom: 5%; left: 2%; }

    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .why-us-layout { grid-template-columns: 1fr; gap: 48px; }

    .process-timeline { flex-direction: column; align-items: center; }
    .process-connector { padding-top: 0; transform: rotate(90deg); }
    .process-step { max-width: 500px; width: 100%; }

    .cyber-grid-layout { grid-template-columns: repeat(2, 1fr); }

    .proof-stats-row { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-4px); }

    .team-grid { gap: 16px; }

    .cta-layout { grid-template-columns: 1fr; gap: 48px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    /* Reduce section padding */
    .services, .why-us, .process, .cybersecurity, .packages,
    .team, .social-proof, .faq, .cta-section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
}

/* --- Responsive: Mobile (768px) --- */
@media (max-width: 768px) {
    .nav { height: 64px; }
    .nav-container { padding: 0 16px; position: relative; justify-content: center; }
    .nav-logo { position: relative; z-index: 100003; }
    .nav-logo .logo-img { height: 34px; max-width: 55vw; }
    .nav-toggle { display: flex; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); z-index: 100002; }

    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: rgba(5, 8, 16, 0.98) !important;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 28px;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 100001 !important;
    }

    .nav-links.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .nav-link { font-size: 1.3rem; font-weight: 600; }
    .nav-phone { font-size: 1.1rem; }
    .nav-cta { font-size: 1.05rem; padding: 16px 32px; }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 0 8px 0;
        min-width: 0;
    }
    .nav-dropdown-menu a {
        padding: 6px 0 6px 16px;
        font-size: 1rem;
        color: var(--text-secondary);
    }
    .nav-dropdown-chevron { display: none; }

    .hero-title { font-size: clamp(2.25rem, 10vw, 3rem); line-height: 1.08; }
    .hero-subtitle { font-size: 1.05rem; line-height: 1.7; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }

    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }

    .hero-visual { opacity: 0.25; }
    .shield-container { width: 350px; height: 370px; }
    .sonar-display { width: 300px; height: 300px; }
    .dash-title { display: none; }
    .floating-card { opacity: 0.5; font-size: 0.6rem; padding: 5px 8px; }
    .floating-card svg { width: 14px; height: 14px; }
    .card-status-dot { width: 5px; height: 5px; }

    .section-title { font-size: clamp(1.6rem, 6vw, 2.1rem); }
    .section-subtitle { font-size: 0.95rem; }

    .cyber-grid-layout { grid-template-columns: 1fr; }

    .proof-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .proof-number { font-size: 1.75rem; }
    .proof-stat { padding: 24px 12px; }

    .team-grid { max-width: 300px; }
    .team-card { width: 100%; }
    .team-photo { width: 90px; height: 90px; }

    .founder-card { flex-direction: column; text-align: center; }
    .founder-photo { margin: 0 auto; }

    .cta-form { grid-template-columns: 1fr; }
    .form-group.full-width, .btn.full-width { grid-column: span 1; }

    .cta-title { font-size: clamp(1.5rem, 6vw, 2rem); }

    .faq-question { padding: 16px 18px; font-size: 0.88rem; }
    .faq-answer { padding: 0 18px; }
    .faq-item[data-open="true"] .faq-answer { padding: 0 18px 16px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .tech-item span { display: none; }
    .tech-logo-img { height: 28px !important; }

    .terminal-body { padding: 16px; font-size: 0.68rem; }

    /* Reduce section padding further */
    .services, .why-us, .process, .cybersecurity, .packages,
    .team, .social-proof, .faq, .cta-section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }

    /* Disable vignette on mobile - saves performance */
    body::after { display: none; }

    /* Lift footer above body::before radial vignette so footer text stays readable on mobile */
    .footer { position: relative; z-index: 1; }

    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }

    .cso-card { margin-top: 16px; }
}

/* --- Responsive: Small Mobile (480px) --- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding-left: 16px; padding-right: 16px; }

    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .hero-title { font-size: clamp(2rem, 11vw, 2.5rem); line-height: 1.08; }

    .hero-visual { opacity: 0.2; }
    .shield-container { width: 300px; height: 320px; }
    .sonar-display { width: 260px; height: 260px; }
    .dash-top-bar, .dash-bottom-bar { display: none; }
    .floating-card { display: none; }

    .step-content, .cta-form-container, .package-card,
    .service-card, .cyber-card { padding: 24px 18px; }

    .proof-stats-row { grid-template-columns: 1fr; gap: 12px; }
    .proof-number { font-size: 1.5rem; }

    .tech-logo-img { height: 24px !important; }

    .terminal-body { padding: 12px; font-size: 0.62rem; line-height: 1.6; }

    .services, .why-us, .process, .cybersecurity, .packages,
    .team, .social-proof, .faq, .cta-section { padding: 48px 0; }
    .section-header { margin-bottom: 28px; }

    .footer { padding: 48px 0 0; }
    .footer-grid { gap: 32px; }

    .nav-container { padding: 0 12px; }
    .nav-logo .logo-img { height: 32px; max-width: 50vw; }
}
