:root {
    --blue: #0066FF;
    --blue-bright: #1A7FFF;
    --blue-deep: #0044CC;
    --blue-glow: rgba(0, 102, 255, 0.4);
    --blue-dim: rgba(0, 102, 255, 0.12);
    --blue-ultra: rgba(0, 102, 255, 0.06);
    --ink: #03060F;
    --ink2: #070D1E;
    --ink3: #0B1228;
    --ink4: #0F1835;
    --white: #F0F4FF;
    --white-dim: rgba(240, 244, 255, 0.7);
    --white-ultra: rgba(240, 244, 255, 0.12);
    --steel: rgba(240, 244, 255, 0.4);
    --border: rgba(0, 102, 255, 0.2);
    --border-bright: rgba(0, 102, 255, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

/* ============ NAVBAR ============ */
.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    padding: 14px 28px;
    background: rgba(3, 6, 15, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.navbar-wrapper:hover {
    border-color: var(--border-bright);
    box-shadow: 0 0 24px var(--blue-glow), inset 0 0 24px rgba(0, 102, 255, 0.04);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
}

.nav-logo-text span {
    color: var(--blue);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--steel);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--blue);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.btn-nav {
    background: var(--blue);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
    background: var(--blue-bright);
    box-shadow: 0 0 16px var(--blue-glow);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 96px;
    background: var(--ink);
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 28%);
    min-height: calc(100vh - 96px);
    width: 100%;
}

.hero-main {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ink);
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 102, 255, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, rgba(0, 102, 255, 0.04) 0%, transparent 40%);
}

.hero-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 80px,
            rgba(0, 102, 255, 0.03) 80px,
            rgba(0, 102, 255, 0.03) 81px);
    pointer-events: none;
}

.hero-urgency-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px clamp(24px, 5vw, 64px);
    background: var(--blue);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(9px, 1.1vw, 11px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-urgency-bar i {
    font-size: 14px;
    color: #fff;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
}

.hero-main-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 6vh, 72px) clamp(24px, 5vw, 72px);
    max-width: 820px;
}

.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 6.5vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: clamp(28px, 4vh, 48px);
}

.hero-line {
    display: block;
    color: var(--white);
}

.hero-line-accent {
    color: var(--blue);
    text-shadow: 0 0 40px var(--blue-glow);
}

.hero-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: clamp(28px, 4vh, 40px);
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'DM Sans', 'Barlow', sans-serif;
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 400;
    color: var(--white-dim);
    letter-spacing: 0.01em;
}

.hero-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px var(--blue-glow);
}

.hero-check i {
    font-size: 11px;
    color: #fff;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-call {
    background: var(--blue);
    padding: 16px 32px;
    font-size: 12px;
}

.btn-hero-services {
    border-color: rgba(240, 244, 255, 0.35);
    padding: 16px 28px;
    font-size: 12px;
}

.btn-hero-services:hover {
    border-color: var(--blue);
    background: rgba(0, 102, 255, 0.08);
}

.hero-aside {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(28px, 4vh, 48px) clamp(20px, 2.5vw, 32px);
    background: var(--blue);
    color: #fff;
    text-align: center;
}

.hero-aside-pill {
    align-self: flex-end;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-aside-ring {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 0;
}

.hero-aside-circle {
    --hero-circle-size: clamp(180px, 19vw, 240px);
    position: relative;
    width: var(--hero-circle-size);
    height: var(--hero-circle-size);
    flex-shrink: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.95);
    background: #fff;
    box-shadow: 0 8px 32px rgba(3, 6, 15, 0.25);
    animation: heroPulse 3s ease-in-out infinite;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
}

@keyframes heroPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(3, 6, 15, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 8px 32px rgba(3, 6, 15, 0.25), 0 0 0 14px rgba(255, 255, 255, 0);
    }
}

.hero-aside-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
}

.hero-aside-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    text-align: center;
    padding: 0 4px;
}

.hero-circle-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
}

.hero-circle-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(7px, 0.85vw, 9px);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.hero-aside-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.hero-aside-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-aside-callout {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-aside-phone {
    margin-top: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: background 0.2s, border-color 0.2s;
}

.hero-aside-phone:hover {
    background: rgba(3, 6, 15, 0.25);
    border-color: #fff;
    color: #fff;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--blue-bright);
    box-shadow: 0 0 24px var(--blue-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    border: 1px solid var(--border-bright);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 16px rgba(0, 102, 255, 0.2);
}

/* ============ ABOUT ============ */
.about {
    padding: 120px 0;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--blue);
}

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

.about-left {
    position: relative;
}

.about-visual {
    position: relative;
    height: 440px;
}

.about-main-card {
    position: absolute;
    inset: 0;
    background: var(--ink3);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-main-card-inner {
    text-align: center;
    padding: 40px;
}

.about-icon-large {
    font-size: 80px;
    color: var(--blue);
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.about-visual-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.about-visual-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--steel);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-stat-card {
    position: absolute;
    background: var(--ink4);
    border: 1px solid var(--border-bright);
    border-radius: 4px;
    padding: 20px 24px;
    box-shadow: 0 0 24px rgba(0, 102, 255, 0.15);
}

.stat-card-1 {
    bottom: -20px;
    right: -30px;
    min-width: 160px;
}

.stat-card-2 {
    top: 30px;
    right: -30px;
    min-width: 140px;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--blue);
    line-height: 1;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--steel);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 4vw, 64px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.about-title span {
    color: var(--blue);
}

.about-body {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--blue-ultra);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.2s, background 0.2s;
}

.about-feature:hover {
    border-color: var(--border-bright);
    background: var(--blue-dim);
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--blue-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
}

.about-feature-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 2px;
}

.about-feature-text span {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.5;
}

/* ============ STATS SECTION ============ */
.stats-section {
    padding: 80px 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 60px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item {
    padding: 48px 32px;
    text-align: center;
    background: var(--blue);
    position: relative;
    transition: background 0.2s;
}

.stat-item:hover {
    background: var(--blue-deep);
}

.stat-item-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 68px;
    color: #fff;
    line-height: 1;
    display: block;
}

.stat-item-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-item-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
}

.stat-item-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

/* ============ SERVICES (SPINE) ============ */
.services-section {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 5vw, 72px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--blue);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--steel);
    max-width: 500px;
    margin: 0 auto;
}

.spine-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.spine-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 102, 255, 0.12);
    transform: translateX(-50%);
    z-index: 1;
}

.spine-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--blue);
    height: 0%;
    transition: height 0.1s linear;
    box-shadow: 0 0 12px var(--blue-glow);
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-block {
    padding: 40px 36px;
    background: var(--ink3);
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-block:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.1);
}

.service-block.left {
    margin-right: 48px;
}

.service-block.right {
    margin-left: 48px;
}

.service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: rgba(0, 102, 255, 0.08);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-name i {
    color: var(--blue);
    font-size: 20px;
}

.service-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.service-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--blue);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--ink4) 0%, rgba(0, 102, 255, 0.2) 50%, var(--ink4) 100%);
    border-radius: 3px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-img-icon {
    font-size: 56px;
    color: rgba(0, 102, 255, 0.5);
    z-index: 1;
}

.service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            rgba(0, 102, 255, 0.03) 0px,
            rgba(0, 102, 255, 0.03) 1px,
            transparent 1px,
            transparent 12px);
}

.spine-node {
    width: 14px;
    height: 14px;
    background: var(--blue);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 16px var(--blue-glow);
    position: relative;
    z-index: 3;
}

.empty-spine {
    width: 2px;
}

/* ============ SERVICE AREAS ============ */
.areas-section {
    padding: 100px 0;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

.areas-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.areas-header {
    text-align: center;
    margin-bottom: 56px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.area-item {
    padding: 22px 18px;
    background: var(--ink3);
    text-align: center;
    transition: background 0.2s;
    cursor: default;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.area-item:hover {
    background: var(--ink4);
    border-color: rgba(0, 102, 255, 0.25);
    z-index: 2;
    position: relative;
}

.area-icon {
    width: 32px;
    height: 32px;
    background: var(--blue-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 12px;
}

.area-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    line-height: 1.2;
}

.area-state {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--steel);
    letter-spacing: 0.08em;
}

/* ============ FAQ ============ */
.faq-section {
    padding: 120px 0;
    background: #F2F4F8;
    position: relative;
}

.faq-section .section-label {
    color: var(--blue);
}

.faq-section .section-label::before {
    background: var(--blue);
}

.faq-section .section-title {
    color: #03060F;
}

.faq-section .section-subtitle {
    color: #555;
}

.faq-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    background: rgba(0, 102, 255, 0.02);
}

.faq-ink-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    background: rgba(0, 102, 255, 0.12);
    height: 100%;
    transition: background 0.3s;
}

.faq-ink-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--blue);
    height: 0%;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

.faq-item.open .faq-ink-fill {
    height: 100%;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 28px 32px 28px 36px;
    cursor: pointer;
    gap: 20px;
}

.faq-q-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0A0A14;
    flex: 1;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.faq-item:hover .faq-q-text {
    color: var(--blue);
}

.faq-item.open .faq-q-text {
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 32px 28px 88px;
    font-size: 15px;
    color: #444;
    line-height: 1.75;
}

/* ============ TICKER SERVICES ============ */
.ticker-section {
    padding: 100px 0 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.ticker-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.ticker-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border);
}

.ticker-col {
    overflow: hidden;
    border-right: 1px solid var(--border);
    height: 640px;
    position: relative;
}

.ticker-col:last-child {
    border-right: none;
}

.ticker-col-inner {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.ticker-col-left .ticker-col-inner {
    animation-name: scrollUp;
    animation-duration: 20s;
}

.ticker-col-right .ticker-col-inner {
    animation-name: scrollDown;
    animation-duration: 22s;
}

.ticker-columns:hover .ticker-col-inner {
    animation-play-state: paused;
}

.ticker-item {
    height: 160px;
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    background: var(--ink);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
}

.ticker-item:hover {
    background: var(--ink3);
}

.ticker-item.image-item {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--ink3);
}

.ticker-item-img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ink2) 0%, rgba(0, 102, 255, 0.25) 50%, var(--ink2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item-img-icon {
    font-size: 52px;
    color: rgba(0, 102, 255, 0.5);
}

.ticker-item-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 6, 15, 0.95) 0%, rgba(3, 6, 15, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 28px;
}

.ticker-img-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ticker-timestamp {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--blue);
    letter-spacing: 0.04em;
    width: 70px;
    flex-shrink: 0;
}

.ticker-center {
    flex: 1;
}

.ticker-svc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-svc-name i {
    color: var(--blue);
    font-size: 16px;
}

.ticker-svc-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--steel);
    letter-spacing: 0.04em;
}

.ticker-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--blue-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.ticker-active-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    color: var(--blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticker-item.expanded {
    height: 320px;
    background: var(--ink3);
    border-color: rgba(0, 102, 255, 0.3);
    align-items: flex-start;
    padding-top: 24px;
    flex-direction: column;
}

.ticker-expanded-content {
    display: none;
}

.ticker-item.expanded .ticker-expanded-content {
    display: block;
    padding: 0 28px 24px;
    width: 100%;
}

.ticker-expanded-desc {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.7;
    margin-bottom: 14px;
}

.ticker-item.expanded .ticker-timestamp,
.ticker-item.expanded .ticker-center,
.ticker-item.expanded .ticker-indicator {
    flex-shrink: 0;
}

.ticker-item.expanded .ticker-header-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 16px;
}

/* ============ CONTACT ============ */
.contact-section {
    padding: 120px 0;
    background: var(--ink2);
    position: relative;
}

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

.contact-map {
    height: 400px;
    background: var(--ink3);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) brightness(0.85) contrast(1.1);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.contact-title span {
    color: var(--blue);
}

.contact-card {
    background: var(--ink3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    border-color: var(--border-bright);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.12);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-card-info strong {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-card-info span {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

.contact-form {
    background: var(--ink3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px;
    margin-top: 8px;
}

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

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

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: var(--steel);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: var(--ink4);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 12px 14px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.15);
}

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

/* ============ FOOTER ============ */
.footer {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-cta {
    text-align: center;
    padding: 0 40px 80px;
    position: relative;
    z-index: 1;
}

.footer-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 8vw, 100px);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    text-shadow: 0 0 60px rgba(0, 102, 255, 0.3);
}

.footer-headline span {
    color: var(--blue);
}

.footer-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--steel);
    margin-bottom: 36px;
}

.footer-bar {
    border-top: 1px solid var(--border);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--blue);
}

.footer-nav {
    display: flex;
    gap: 28px;
    list-style: none;
}

.footer-nav a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--steel);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--blue);
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(240, 244, 255, 0.3);
    letter-spacing: 0.06em;
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============ MOBILE ============ */
@media (max-width: 768px) {
    .navbar-wrapper {
        width: calc(100% - 24px);
        padding: 12px 16px;
        top: 12px;
    }

    .nav-links {
        display: none;
    }

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

    .about-visual {
        height: 280px;
    }

    .stat-card-1,
    .stat-card-2 {
        display: none;
    }

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

    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .spine-line,
    .spine-node,
    .empty-spine {
        display: none;
    }

    .service-block.left,
    .service-block.right {
        margin: 0;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bar {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ticker-columns {
        grid-template-columns: 1fr;
    }

    .ticker-col-right {
        display: none;
    }

    .hero {
        padding-top: 88px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-aside {
        order: -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 24px 20px;
        min-height: auto;
    }

    .hero-aside-pill {
        align-self: center;
        width: 100%;
        text-align: center;
    }

    .hero-aside-ring {
        flex: 0;
        padding: 0;
    }

    .hero-aside-circle {
        --hero-circle-size: 156px;
    }

    .hero-circle-main {
        font-size: 22px;
    }

    .hero-aside-footer {
        flex: 1;
        min-width: 140px;
        align-items: flex-start;
        text-align: left;
    }

    .hero-aside-phone {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .hero-main-body {
        padding: 32px 20px 48px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}