:root {
    --glacier: #38BDF8;
    --glacier-light: #7DD3FC;
    --glacier-dark: #0EA5E9;
    --ink: #0A0F1A;
    --ink2: #111827;
    --ink3: #1E2A3A;
    --olive: #6B7A2A;
    --olive-light: #A3B142;
    --white: #F8FAFC;
    --muted: #94A3B8;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Inline icon spacing (Font Awesome) */
.icon-inline {
    margin-right: 8px;
    font-size: 0.95em;
    vertical-align: -0.08em;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1280px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 20px;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 40px rgba(56, 189, 248, 0.12), 0 2px 8px rgba(0, 0, 0, 0.4);
    background: rgba(10, 15, 26, 0.85);
    top: 10px;
}

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

.nav-logo-img {
    height: 94px;
    width: auto;
    display: block;
}

/* Crisp SVG rendering on most browsers */
.nav-logo-img {
    shape-rendering: geometricPrecision;
    text-rendering: geometricPrecision;
}

@media (max-width: 1024px) {
    .nav-logo-img {
        height: 40px;
    }
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--glacier);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--glacier-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}

/* ========== HERO — DOUBLE EXPOSURE SLICES ========== */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slice {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    height: 100%;
}

.slice-divider {
    width: 2px;
    background: var(--olive);
    opacity: 0.5;
    flex-shrink: 0;
    height: 100%;
}

/* Slice 1 — 8vw: olive gradient, brand name vertical */
.slice-1 {
    width: 8vw;
    background: linear-gradient(180deg, #1a1f0a 0%, #2a3010 50%, #0A0F1A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slice-1-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--olive-light);
    letter-spacing: 0.35em;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Slice 2 — 22vw: image with headline word */
.slice-2 {
    width: 22vw;
    position: relative;
}

.slice-2 img,
.slice-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.4) contrast(1.1) brightness(0.7);
    transition: filter 0.5s ease;
    display: block;
}

.slice-2:hover img,
.slice-4:hover img {
    filter: sepia(0.1) contrast(1.05) brightness(0.9);
}

.slice-word {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(44px, 6vw, 88px);
    color: #fff;
    line-height: 0.9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.slice-word-top {
    position: absolute;
    top: 40px;
    left: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(44px, 6vw, 88px);
    color: #fff;
    line-height: 0.9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

/* Slice 3 — 28vw: dark, main content */
.slice-3 {
    width: 28vw;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 32px 60px 40px;
    position: relative;
}

.slice-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-headline-main {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 8vw, 112px);
    color: var(--glacier);
    line-height: 0.88;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 36px;
    border-left: 2px solid var(--glacier);
    padding-left: 16px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glacier);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s;
    width: fit-content;
}

.btn-primary:hover {
    background: var(--glacier-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: var(--glacier);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s;
    width: fit-content;
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: var(--glacier);
}

/* Slice 4 — 22vw */
.slice-4 {
    width: 22vw;
    position: relative;
}

/* Slice 5 — 20vw */
.slice-5 {
    width: 20vw;
    background: var(--ink2);
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.03);
}

.trust-badge-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--glacier);
    line-height: 1;
}

.trust-badge-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-phone {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--glacier-light);
    letter-spacing: 0.05em;
    margin-top: 8px;
    text-decoration: none;
}

.hero-phone:hover {
    color: var(--glacier);
}

.hero-address {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 4px;
}

/* ========== WHY CHOOSE US ========== */
.why-section {
    padding: 120px 60px;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

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

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--glacier);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    margin-bottom: 60px;
}

.section-title em {
    font-style: italic;
    color: var(--glacier);
    font-family: var(--font-serif);
    font-weight: 600;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    background: rgba(56, 189, 248, 0.08);
}

.why-card {
    background: var(--ink);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.why-card:hover {
    background: var(--ink3);
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--glacier);
    transition: width 0.4s ease;
}

.why-card:hover::after {
    width: 100%;
}

.why-card.featured {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(160deg, var(--ink3) 0%, #0A1520 100%);
    border: 1px solid rgba(56, 189, 248, 0.15);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.why-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 100px;
    color: rgba(56, 189, 248, 0.06);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
    pointer-events: none;
}

.why-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    color: var(--white);
}

.why-card-desc {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
}

.why-card.featured .why-card-title {
    font-size: 34px;
    color: var(--glacier-light);
}

.why-cta {
    margin-top: auto;
    padding-top: 32px;
}

/* ========== CTA MID ========== */
.cta-mid {
    padding: 0 60px;
    position: relative;
}

.cta-mid-inner {
    background: linear-gradient(135deg, var(--glacier-dark) 0%, var(--glacier) 50%, var(--glacier-light) 100%);
    border-radius: 24px;
    padding: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.cta-mid-inner::before {
    content: 'KEYS';
    position: absolute;
    right: -20px;
    top: -30px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
}

.cta-mid-text {
    flex: 1;
}

.cta-mid-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 4vw, 60px);
    color: var(--ink);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-mid-sub {
    font-family: var(--font-serif);
    font-size: 18px;
    color: rgba(10, 15, 26, 0.75);
}

.cta-mid-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: var(--glacier);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-dark:hover {
    background: var(--ink2);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(10, 15, 26, 0.3);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ========== SERVICES — DIPTYCH ========== */
.services-section {
    padding: 120px 60px;
    background: var(--ink);
}

.services-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.diptych-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diptych {
    display: flex;
    gap: 4px;
    height: 360px;
    border: 1px solid rgba(163, 177, 66, 0.12);
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
}

.diptych:hover {
    gap: 12px;
}

.diptych:hover .diptych-left::after,
.diptych:hover .diptych-right::before {
    opacity: 1;
}

/* Perforation line */
.diptych::before {
    content: '';
    position: absolute;
    left: 45%;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: repeating-linear-gradient(to bottom, var(--olive) 0px, var(--olive) 8px, transparent 8px, transparent 16px);
    z-index: 10;
    opacity: 0.25;
    transition: opacity 0.3s;
    pointer-events: none;
}

.diptych:hover::before {
    opacity: 0
}

.diptych-left {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.diptych-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.1) brightness(0.75);
    transition: filter 0.4s;
}

.diptych:hover .diptych-left img {
    filter: sepia(0.1) contrast(1.05) brightness(0.9);
}

.diptych-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 40%);
}

.diptych-left-glow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, rgba(163, 177, 66, 0.12));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.diptych:hover .diptych-left-glow {
    opacity: 1;
}

.diptych-svc-num {
    position: absolute;
    bottom: 16px;
    left: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.10);
    line-height: 1;
    z-index: 2;
}

.diptych-svc-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(22px, 2.5vw, 36px);
    color: #fff;
    z-index: 3;
    line-height: 1.1;
}

.diptych-right {
    flex: 1;
    background: var(--ink2);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.diptych-right-glow {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, transparent, rgba(163, 177, 66, 0.12));
    opacity: 0;
    transition: opacity 0.4s;
}

.diptych:hover .diptych-right-glow {
    opacity: 1;
}

.diptych-svc-echo {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--glacier);
    margin-bottom: 16px;
}

.diptych-desc {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.88;
    color: var(--muted);
    flex: 1;
}

.diptych-process {
    display: flex;
    gap: 0;
    margin: 20px 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 8px;
    color: rgba(56, 189, 248, 0.3);
    font-size: 12px;
}

.process-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--glacier);
    margin: 0 auto 6px;
}

.process-step-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.diptych-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag-pill {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--glacier);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
}

.diptych-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--glacier);
    text-decoration: none;
    border-bottom: 1px solid rgba(56, 189, 248, 0.3);
    padding-bottom: 2px;
    transition: all 0.2s;
    width: fit-content;
}

.diptych-cta:hover {
    color: var(--glacier-light);
    border-color: var(--glacier-light);
    gap: 10px;
}

.diptych-thumb {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    filter: sepia(0.3) brightness(0.8);
    border: 1px solid rgba(56, 189, 248, 0.12);
}

/* ========== HOW WE WORK ========== */
.how-section {
    padding: 120px 60px;
    background: var(--ink2);
    position: relative;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(56, 189, 248, 0.06);
    margin-top: 60px;
}

.how-step {
    background: var(--ink);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.how-step:hover {
    background: var(--ink3);
}

.how-step-line {
    position: absolute;
    top: 36px;
    right: 0;
    height: 1px;
    width: 50%;
    background: linear-gradient(to right, rgba(56, 189, 248, 0.3), transparent);
}

.how-step:last-child .how-step-line {
    display: none;
}

.how-step-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 64px;
    color: rgba(56, 189, 248, 0.12);
    line-height: 1;
    margin-bottom: 24px;
}

.how-step-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.how-step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    color: var(--white);
}

.how-step-desc {
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

/* ========== SERVICE CARDS (AI Style) ========== */
.service-cards-section {
    padding: 120px 60px;
    background: var(--ink);
}

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

.svc-card {
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 16px;
    overflow: hidden;
    background: var(--ink2);
    transition: all 0.35s;
    position: relative;
    group: true;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
}

.svc-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.1) brightness(0.7);
    transition: filter 0.4s, transform 0.4s;
}

.svc-card:hover .svc-card-img {
    filter: sepia(0.1) brightness(0.85);
    transform: scale(1.03);
}

.svc-card-body {
    padding: 32px 28px;
}

.svc-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--glacier);
    margin-bottom: 10px;
}

.svc-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 12px;
}

.svc-card-desc {
    font-family: var(--font-serif);
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 24px;
}

.svc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--glacier);
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.svc-card-btn:hover {
    background: var(--glacier-light);
    transform: translateY(-1px);
}

/* ========== FAQ ========== */
.faq-section {
    padding: 120px 60px;
    background: var(--ink2);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.faq-sidebar {}

.faq-sidebar-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 32px;
}

.faq-phone-big {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--glacier);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.faq-phone-big:hover {
    color: var(--glacier-light);
}

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

.faq-item {
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    gap: 20px;
}

.faq-q-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.01em;
    color: var(--white);
    transition: color 0.2s;
}

.faq-item.active .faq-q-text {
    color: var(--glacier);
}

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

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glacier);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.active .faq-toggle {
    background: var(--glacier);
    color: var(--ink);
    transform: rotate(45deg);
}

.faq-item:hover .faq-toggle {
    background: var(--glacier);
    color: var(--ink);
    transform: rotate(45deg);
}

.faq-a {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    padding: 0 0 24px 0;
    display: none;
}

.faq-item.active .faq-a {
    display: block;
}

.faq-item:hover .faq-a {
    display: block;
}

/* ========== CITIES & ADDITIONAL SERVICES ========== */
.cities-section {
    padding: 100px 60px;
    background: var(--ink);
    border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.city-chip {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid rgba(56, 189, 248, 0.15);
    padding: 10px 18px;
    border-radius: 40px;
    transition: all 0.2s;
    cursor: default;
}

.city-chip:hover {
    color: var(--glacier);
    border-color: rgba(56, 189, 248, 0.5);
    background: rgba(56, 189, 248, 0.04);
}

.additional-services {
    margin-top: 80px;
}

.add-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(56, 189, 248, 0.06);
    margin-top: 40px;
}

.add-svc-item {
    background: var(--ink2);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

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

.add-svc-icon {
    font-size: 22px;
}

.add-svc-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    color: var(--white);
}

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

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: rgba(56, 189, 248, 0.05);
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.contact-info-card {
    padding: 48px 40px;
    border-right: 1px solid rgba(56, 189, 248, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-card:last-child {
    border-right: none;
}

.contact-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--glacier);
    margin-bottom: 4px;
}

.contact-card-val {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-val:hover {
    color: var(--glacier);
}

.contact-card-sub {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--muted);
}

.contact-map-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.contact-map {
    width: 1500px;
    background: var(--ink3);
    position: relative;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.3) brightness(0.9);
}

.contact-form-area {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--ink);
}

.contact-form-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

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

.form-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--glacier);
}

.form-input,
.form-textarea {
    background: rgba(56, 189, 248, 0.04);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--glacier);
}

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

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

/* ========== FOOTER ========== */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    padding: 60px 60px 40px;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.08);
    margin-bottom: 32px;
}

.footer-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    max-width: 220px;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    background: var(--ink2);
    padding: 8px;
    display: block;
}

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

.footer-nav a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: var(--glacier);
    color: var(--glacier);
    background: rgba(56, 189, 248, 0.06);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.footer-address-footer {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(148, 163, 184, 0.5);
    letter-spacing: 0.05em;
    text-align: right;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .slice {
        width: 100% !important;
        height: auto !important;
    }

    .slice-1 {
        padding: 20px 32px;
        flex-direction: row;
        height: 56px !important;
    }

    .slice-1-brand {
        writing-mode: horizontal-tb;
        font-size: 14px;
        letter-spacing: 0.2em;
    }

    .slice-2,
    .slice-4 {
        height: 260px !important;
    }

    .slice-3 {
        padding: 48px 32px;
    }

    .slice-5 {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 32px;
        height: auto !important;
    }

    .trust-badge {
        flex: 1;
        min-width: 120px;
    }

    .slice-divider {
        display: none;
    }

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

    .why-card.featured {
        grid-row: auto;
    }

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

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

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

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

    .contact-info-card {
        border-right: none;
        border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    }

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

    .contact-map {
        height: 300px;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .cities-section,
    .services-section,
    .why-section,
    .how-section,
    .service-cards-section,
    .faq-section {
        padding: 80px 24px;
    }

    .cta-mid {
        padding: 0 24px;
    }

    .cta-mid-inner {
        padding: 48px 36px;
        flex-direction: column;
        text-align: center;
    }

    footer {
        padding: 48px 24px 32px;
    }

    .navbar {
        width: calc(100% - 24px);
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .diptych {
        flex-direction: column;
        height: auto;
    }

    .diptych-left {
        width: 100%;
        height: 240px;
    }

    .diptych::before {
        display: none;
    }

    .diptych-thumb {
        display: none;
    }
}

/* Animate in */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.anim {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.anim-d1 {
    animation-delay: 0.1s;
}

.anim-d2 {
    animation-delay: 0.25s;
}

.anim-d3 {
    animation-delay: 0.4s;
}

.anim-d4 {
    animation-delay: 0.55s;
}