:root {
    --teal: #008080;
    --coral: #FF7F50;
    --navy: #0a0f1e;
    --charcoal: #1a1a2e;
    --offwhite: #f5f5f0;
    --black: #000000;
    --white: #ffffff;
    --mono: 'Space Mono', monospace;
    --body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════
NAVBAR
═══════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.35s ease;
    background: transparent;
}

#navbar.shrunk {
    padding: 12px 48px;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 128, 128, 0.15);
    border-bottom: 1px solid rgba(0, 128, 128, 0.2);
}

.nav-logo {
    font-family: var(--mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: all 0.35s ease;
    line-height: 1.2;
}

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

#navbar.shrunk .nav-logo {
    font-size: 0.85rem;
}

.nav-logo .logo-sub {
    display: block;
    font-size: 0.6em;
    color: var(--coral);
    letter-spacing: 0.15em;
    font-weight: 400;
}

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

.nav-links a {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width 0.3s;
}

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

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

.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 0.65rem !important;
    letter-spacing: 0.12em;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: #e66a3a !important;
    transform: translateY(-1px) !important;
}

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    display: block;
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: 80px 40px 40px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu ul a {
    display: block;
    padding: 16px 0;
    font-family: var(--mono);
    font-size: 1rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.08em;
}

.mobile-menu .mob-cta {
    margin-top: 24px;
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════
HERO
═══════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 128, 128, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 128, 128, 0.07) 1px, transparent 1px);
    background-size: 18px 18px;
}

.hero-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 100px 48px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
}

/* Crosshair */
.crosshair {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.crosshair-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 128, 128, 0.4);
}

.crosshair-ring:nth-child(1) {
    width: 180px;
    height: 180px;
    border-color: rgba(0, 128, 128, 0.4);
    animation: pulse-ring 3s ease-in-out infinite;
}

.crosshair-ring:nth-child(2) {
    width: 120px;
    height: 120px;
    border-color: rgba(0, 128, 128, 0.5);
    animation: pulse-ring 3s ease-in-out infinite 0.5s;
}

.crosshair-ring:nth-child(3) {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 128, 128, 0.7);
    animation: pulse-ring 3s ease-in-out infinite 1s;
}

.crosshair-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--teal), 0 0 40px rgba(0, 128, 128, 0.5);
    z-index: 2;
}

.crosshair-h,
.crosshair-v {
    position: absolute;
    background: rgba(0, 128, 128, 0.5);
}

.crosshair-h {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
}

.crosshair-v {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.04);
    }
}

/* Left panel */
.hero-left {
    text-align: left;
}

.hero-brand {
    font-family: var(--mono);
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.hero-brand .brand-accent {
    color: var(--teal);
}

.hero-brand .brand-sub {
    display: block;
    font-size: 0.45em;
    color: var(--coral);
    letter-spacing: 0.2em;
    margin-top: 4px;
}

.hero-type-line {
    font-family: var(--mono);
    font-size: clamp(0.65rem, 1.2vw, 0.9rem);
    color: var(--teal);
    margin: 24px 0 8px;
    letter-spacing: 0.05em;
}

.hero-type-line .cursor {
    display: inline-block;
    width: 8px;
    height: 1em;
    background: var(--teal);
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 340px;
    margin-bottom: 32px;
}

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

.btn-teal {
    background: var(--teal);
    color: var(--white);
    padding: 12px 28px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    transition: all 0.2s;
    border: 1px solid var(--teal);
}

.btn-teal:hover {
    background: transparent;
    color: var(--teal);
}

.btn-coral {
    background: var(--coral);
    color: var(--white);
    padding: 12px 28px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 2px;
    display: inline-block;
    transition: all 0.2s;
    border: 1px solid var(--coral);
}

.btn-coral:hover {
    background: transparent;
    color: var(--coral);
}

/* Right panel */
.hero-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-nav-link {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.hero-nav-link:hover {
    color: var(--coral);
}

.hero-nav-link .slash {
    color: var(--teal);
    margin-right: 6px;
}

.hero-coords {
    position: absolute;
    bottom: 24px;
    left: 48px;
    font-family: var(--mono);
    font-size: 0.6rem;
    color: rgba(0, 128, 128, 0.6);
    letter-spacing: 0.1em;
}

.hero-ver {
    position: absolute;
    bottom: 24px;
    right: 48px;
    font-family: var(--mono);
    font-size: 0.6rem;
    color: rgba(255, 127, 80, 0.6);
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
HOW WE WORK (FIRST)
═══════════════════════════════════════════ */
#how-it-works {
    background: var(--offwhite);
    padding: 100px 48px;
}

.section-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.1;
}

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

.section-sub {
    font-size: 0.95rem;
    color: rgba(26, 26, 46, 0.6);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 64px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 0;
}

.steps-track {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(0, 128, 128, 0.15);
}

.steps-track-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    width: 0;
    transition: width 1.5s ease;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.5s ease;
}

.step-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--offwhite), 0 0 0 6px rgba(0, 128, 128, 0.2);
    transition: transform 0.2s;
}

.step-item:hover .step-num {
    transform: scale(1.08);
}

.step-icon {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.step-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
CTA BANNER
═══════════════════════════════════════════ */
#cta-banner {
    background: var(--teal);
    position: relative;
    padding: 80px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            transparent,
            transparent 20px,
            rgba(0, 0, 0, 0.06) 20px,
            rgba(0, 0, 0, 0.06) 40px);
    animation: stripe-move 12s linear infinite;
}

@keyframes stripe-move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 80px 80px;
    }
}

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

.cta-heading {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-coral-solid {
    background: var(--coral);
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    border: 2px solid var(--coral);
    display: inline-block;
}

.btn-coral-solid:hover {
    background: transparent;
    color: var(--coral);
    border-color: var(--coral);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
    display: inline-block;
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--teal);
}

/* ═══════════════════════════════════════════
SERVICES — TUNNEL
═══════════════════════════════════════════ */
#services {
    background: var(--black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.tunnel-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tunnel-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.tunnel-ring {
    position: absolute;
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tunnel-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 60px var(--teal), 0 0 120px rgba(0, 128, 128, 0.4);
    z-index: 2;
}

.tunnel-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.services-section-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--teal);
    margin-bottom: 12px;
}

.services-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 64px;
}

.services-tunnel-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 0;
    transition: all 0.3s;
    cursor: default;
    position: relative;
}

.svc-row:hover .svc-name {
    color: var(--coral);
    letter-spacing: 0.22em;
}

.svc-num {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: rgba(0, 128, 128, 0.6);
    min-width: 28px;
    text-align: right;
}

.svc-line-l,
.svc-line-r {
    flex: 1;
    height: 1px;
    max-width: 120px;
}

.svc-line-l {
    background: linear-gradient(90deg, transparent, rgba(0, 128, 128, 0.3));
}

.svc-line-r {
    background: linear-gradient(90deg, rgba(0, 128, 128, 0.3), transparent);
}

.svc-name {
    font-family: var(--body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--white);
    transition: all 0.3s;
    text-align: center;
    flex-shrink: 0;
}

.svc-icon-wrap {
    color: var(--teal);
    font-size: 1.1em;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
WHY CHOOSE US
═══════════════════════════════════════════ */
#why-us {
    background: var(--charcoal);
    padding: 100px 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

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

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--mono);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reason-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason-card {
    border-left: 3px solid var(--teal);
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.reason-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.reason-card:hover {
    border-left-color: var(--coral);
    background: rgba(255, 255, 255, 0.07);
}

.reason-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

.reason-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════
SERVICE AREAS
═══════════════════════════════════════════ */
#areas {
    background: var(--offwhite);
    padding: 100px 48px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.chip {
    padding: 6px 14px;
    border: 1px solid var(--teal);
    border-radius: 2px;
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--charcoal);
    letter-spacing: 0.06em;
    cursor: default;
    transition: all 0.2s;
}

.chip:hover {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.areas-right {}

.areas-desc {
    font-size: 0.9rem;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.map-frame {
    border: 3px solid var(--teal);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(0, 128, 128, 0.2);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    filter: grayscale(0.3) contrast(1.05);
}

/* ═══════════════════════════════════════════
TYPEWRITER SPOTLIGHT
═══════════════════════════════════════════ */
#services-detail {
    background: var(--black);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 128, 128, 0.12), transparent 70%);
    pointer-events: none;
    transition: opacity 0.5s;
}

.spotlight-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.spot-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--teal);
    margin-bottom: 48px;
}

.spot-service-name {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.spot-cursor {
    display: inline-block;
    width: 0.06em;
    height: 1em;
    background: var(--coral);
    margin-left: 4px;
    animation: blink 0.9s step-end infinite;
    vertical-align: text-bottom;
}

.spot-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 24px;
    min-height: 60px;
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.6s;
}

.spot-desc.show {
    opacity: 1;
}

.spot-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 48px;
}

.spot-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s;
}

.spot-dot.active {
    background: var(--coral);
}

/* ═══════════════════════════════════════════
DETAILED PROCESS
═══════════════════════════════════════════ */
#process {
    background: var(--charcoal);
    padding: 100px 48px;
}

.process-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(0, 128, 128, 0.2);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 60px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step:nth-child(odd) {
    transform: translateX(-30px);
}

.process-step:nth-child(even) {
    transform: translateX(30px);
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.process-step:nth-child(even) .p-content {
    grid-column: 3;
}

.process-step:nth-child(even) .p-spacer {
    grid-column: 1;
    grid-row: 1;
}

.p-num {
    width: 56px;
    height: 56px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--charcoal), 0 0 0 6px rgba(0, 128, 128, 0.3);
}

.p-spacer {}

.p-content {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 24px;
    border-top: 2px solid var(--teal);
}

.p-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 128, 128, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
    margin-bottom: 12px;
}

.p-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 8px;
}

.p-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
FAQ
═══════════════════════════════════════════ */
#faq {
    background: var(--offwhite);
    padding: 100px 48px;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    display: flex;
    gap: 24px;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

.faq-ink {
    width: 3px;
    background: rgba(26, 26, 46, 0.12);
    flex-shrink: 0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.faq-ink-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    border-radius: 4px;
    background: var(--teal);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-ink-fill {
    height: 100%;
    background: var(--coral);
}

.faq-body {
    flex: 1;
}

.faq-q {
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--charcoal);
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
    gap: 16px;
}

.faq-q:hover {
    color: var(--teal);
}

.faq-item.open .faq-q {
    color: var(--charcoal);
    border-color: transparent;
}

.faq-arrow {
    font-size: 0.7rem;
    color: var(--teal);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--coral);
}

.faq-a {
    font-size: 0.88rem;
    color: rgba(26, 26, 46, 0.65);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    opacity: 0;
    padding-top: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
    padding-top: 16px;
    padding-bottom: 20px;
}

/* ═══════════════════════════════════════════
CONTACT
═══════════════════════════════════════════ */
#contact {
    background: var(--navy);
    padding: 100px 48px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 64px;
}

.contact-card {
    border-top: 3px solid var(--teal);
    background: rgba(255, 255, 255, 0.04);
    padding: 28px 24px;
    border-radius: 0 0 4px 4px;
    text-align: center;
    transition: all 0.2s;
}

.contact-card:hover {
    background: rgba(0, 128, 128, 0.1);
    transform: translateY(-4px);
}

.contact-card .cc-icon {
    font-size: 1.8rem;
    color: var(--teal);
    margin-bottom: 16px;
}

.cc-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--coral);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cc-value {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.5;
}

.cc-value a {
    color: var(--white);
    text-decoration: none;
}

.cc-value a:hover {
    color: var(--teal);
}

.map-section {
    max-width: 900px;
    margin: 0 auto;
}

.map-heading {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
FOOTER — CASSETTE
═══════════════════════════════════════════ */
#footer {
    background: var(--charcoal);
    padding: 60px 48px;
}

.cassette-wrap {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #1c1c2e;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 32px 1fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
    filter: contrast(1.05) brightness(0.95);
}

.cassette-spine {
    background: var(--teal);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 4px;
}

.cassette-side {
    padding: 28px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.cassette-side:last-child {
    border-right: none;
}

.cassette-side-header {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--coral);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cassette-tracks {
    list-style: none;
}

.cassette-tracks li {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    letter-spacing: 0.04em;
}

.cassette-tracks li .t-time {
    color: rgba(0, 128, 128, 0.8);
}

.cassette-info {
    font-family: var(--mono);
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    line-height: 1.8;
}

.cassette-badge {
    display: inline-block;
    border: 1px solid var(--coral);
    color: var(--coral);
    font-family: var(--mono);
    font-size: 0.5rem;
    padding: 2px 6px;
    letter-spacing: 0.1em;
    margin-top: 12px;
}

.cassette-tape-svg {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0.6;
}

.cassette-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cassette-play-time {
    font-family: var(--mono);
    font-size: 0.55rem;
    color: rgba(0, 128, 128, 0.7);
    letter-spacing: 0.1em;
}

.cassette-copy {
    font-family: var(--mono);
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-track {
        display: none;
    }

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

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero-right {
        display: none;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .process-line {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-step:nth-child(even) .p-content {
        grid-column: 1;
    }

    .process-step:nth-child(even) .p-spacer {
        display: none;
    }

    .p-num {
        margin: 0 auto 16px;
    }

    .p-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 16px 24px;
    }

    #navbar.shrunk {
        padding: 10px 24px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    #hero,
    #how-it-works,
    #cta-banner,
    #services,
    #why-us,
    #areas,
    #services-detail,
    #process,
    #faq,
    #contact,
    #footer {
        padding: 80px 24px;
    }

    .hero-inner {
        padding: 80px 24px 60px;
    }

    .hero-coords,
    .hero-ver {
        display: none;
    }

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

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

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

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

    .cassette-wrap {
        grid-template-columns: 28px 1fr;
    }

    .cassette-side:last-child {
        display: none;
    }

    .cassette-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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


* ══════════════════════════════════════════════ ABOUT US ══════════════════════════════════════════════ */ #about {
    background: var(--navy);
    padding: 120px 48px;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-img-stack {
    position: relative;
    height: 540px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 78%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(0.2) contrast(1.08);
    border: 2px solid rgba(0, 128, 128, 0.3);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 52%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(0.15) contrast(1.1);
    border: 2px solid rgba(255, 127, 80, 0.35);
    box-shadow: -12px -12px 0 rgba(0, 128, 128, 0.15);
}

.about-img-badge {
    position: absolute;
    bottom: 52%;
    right: 21%;
    transform: translate(50%, 50%);
    width: 80px;
    height: 80px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 3px solid var(--navy);
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.4);
}

.about-img-badge .badge-num {
    font-family: var(--mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.about-img-badge .badge-lbl {
    font-family: var(--mono);
    font-size: 0.36rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 2px;
}

.about-content {}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-tag::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--teal);
}

.about-headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.about-headline em {
    font-style: normal;
    color: var(--teal);
}

.about-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-body {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    margin: 28px 0;
}

.about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}

.about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-pillar-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 128, 128, 0.12);
    border: 1px solid rgba(0, 128, 128, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.about-pillar-text .pt-title {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    margin-bottom: 3px;
}

.about-pillar-text .pt-desc {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.about-signature {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-sig-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--teal), rgba(0, 128, 128, 0.4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid rgba(0, 128, 128, 0.4);
}

.about-sig-text .sig-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--white);
}

.about-sig-text .sig-role {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--coral);
    letter-spacing: 0.1em;
}



/* ══════════════════════════════════════════════
   DETAIL SERVICES (two image layout)
══════════════════════════════════════════════ */
#services-detail {
    background: var(--black);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.svc-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.svc-detail-img-side {
    position: relative;
    overflow: hidden;
}

.svc-detail-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.6s ease;
}

.svc-detail-img-side:hover img {
    transform: scale(1.03);
}

.svc-detail-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3) 0%, transparent 60%);
}

.svc-detail-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-left: 2px solid var(--teal);
}

.svc-detail-content {
    padding: 80px 60px;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sdc-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--teal);
    margin-bottom: 20px;
}

.sdc-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.sdc-title span {
    color: var(--teal);
}

.sdc-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.sdc-body {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    margin-bottom: 16px;
}

.sdc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}

.sdc-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.sdc-feat i {
    color: var(--teal);
    font-size: 0.75rem;
}

/* Second image strip */
.svc-detail-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.svc-strip-img {
    position: relative;
    overflow: hidden;
}

.svc-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) contrast(1.1);
    transition: transform 0.6s;
}

.svc-strip-img:hover img {
    transform: scale(1.04);
}

.svc-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 127, 80, 0.2), transparent 60%);
}

.svc-strip-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
}

.svc-strip-content {
    background: var(--navy);
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-strip-content .sdc-title {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.svc-list {
    list-style: none;
    margin: 20px 0 28px;
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.svc-list li i {
    color: var(--coral);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive for about + gallery + detail */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img-stack {
        height: 380px;
        margin-bottom: 48px;
    }

    .gallery-floor {
        grid-template-columns: 1fr 1fr;
    }

    .svc-detail-hero {
        grid-template-columns: 1fr;
    }

    .svc-detail-img-side {
        min-height: 320px;
    }

    .svc-detail-strip {
        grid-template-columns: 1fr;
    }

    .svc-strip-img {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 80px 24px;
    }

    .about-img-stack {
        height: 300px;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .gallery-entrance {
        padding: 60px 24px 40px;
    }

    .gallery-floor {
        grid-template-columns: 1fr;
        padding: 0 16px 60px;
    }

    .svc-detail-content {
        padding: 48px 28px;
    }

    .sdc-features {
        grid-template-columns: 1fr;
    }

    .svc-strip-content {
        padding: 40px 24px;
    }
}

/* ══════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-track {
        display: none;
    }

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

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .hero-right {
        display: none;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .process-line {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step .p-num {
        margin: 0 auto 16px;
    }

    .process-step:nth-child(even) .p-content {
        order: 1;
    }

    .process-step:nth-child(even) .p-num {
        order: 2;
    }

    .process-step:nth-child(even) .p-spacer {
        display: none;
    }

    .process-step:nth-child(odd) .p-spacer {
        display: none;
    }
}

@media (max-width: 768px) {
    .para-stack {
        display: none;
    }

    .nav-brand {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #how-it-works,
    #cta-banner,
    #services,
    #why-us,
    #areas,
    #process,
    #faq,
    #contact,
    #footer {
        padding: 80px 24px;
    }

    .hero-inner {
        padding: 80px 24px 60px;
    }

    .hero-coords,
    .hero-ver {
        display: none;
    }

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

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

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

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

    .cassette-wrap {
        grid-template-columns: 28px 1fr;
    }

    .cassette-side:last-child {
        display: none;
    }

    .cassette-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}