/* index.css - rules unique to index.html */

/* vietnamese */
@font-face {
    font-family: 'Barlow';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/barlow-300-italic-vietnamese.woff2") format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: 'Barlow';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/barlow-300-italic-latin-ext.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Barlow';
    font-style: italic;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/barlow-300-italic-latin.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* vietnamese */
@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/barlow-condensed-900-vietnamese.woff2") format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/barlow-condensed-900-latin-ext.woff2") format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/barlow-condensed-900-latin.woff2") format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    --black: #07111b;
    --dark: #0d1b2a;
    --dark-mid: #112236;
    --dark-card: #17304d;
    --border: #1f3f61;
    --gold: oklch(0.623 0.214 259.815);
    --gold-light: oklch(0.488 0.243 264.376);
    --gold-dim: oklch(0.488 0.243 264.376);
    --white: #f0f6ff;
    --white-dim: #9ab5d0;
    --white-muted: #5a7a96;
    --light: #ffffff;
    --light-mid: #eef3fa;
    --light-border: #c8d9ee;
    --light-text: #1a2f4a;
    --light-muted: #4a6a8a;
    --red: #c0392b;
    --radius: 4px;
    --radius-lg: 8px;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h2.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* Consistent gap between a section heading and the paragraph directly under it. */
.section-title + p {
    margin-top: 14px;
}

h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eyebrow {
    display: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn--gold {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--border);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--gold);
}

.btn--ghost:hover {
    background: oklch(0.488 0.243 264.376);
    border-color: oklch(0.488 0.243 264.376);
    color: #ffffff;
}

.gold-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 20px;
}

section {
    padding: 90px 0;
}

/* NAV + FOOTER chrome now lives in shared.css (single source for both
   pages). Page-specific body buttons (.btn--gold, .btn--outline, …) and
   section overrides (#contact .social-btn) remain below. */

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
#hero {
    /* Nav (92px) now takes its own space in the flow, so the hero fills the rest
       of the viewport and align-items:center keeps the content centered in it. */
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(7, 17, 27, 0.92) 0%, rgba(7, 17, 27, 0.78) 45%, rgba(7, 17, 27, 0.55) 100%),
        url("../images/hero-bg-af144a942cd7.png") center/cover no-repeat;
}

.hero-geo {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border: 1px solid rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-geo::before {
    content: '';
    position: absolute;
    inset: 60px;
    border: 1px solid rgba(59, 130, 246, 0.06);
    border-radius: 50%;
}

.hero-geo::after {
    content: '';
    position: absolute;
    inset: 120px;
    border: 1px solid rgba(59, 130, 246, 0.04);
    border-radius: 50%;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 2px;
    padding: 6px 14px;
    margin-bottom: 28px;
}

.hero-badge span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--gold);
    display: inline;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white-dim);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-dim);
}

.trust-item .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Hero Quote Box (replaces old form) */
.hero-form-wrap {
    background: #ffffff;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 44px 38px;
    position: relative;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.45);
}

.hero-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dim));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.quote-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--light-text);
    line-height: 1.05;
    margin-bottom: 14px;
}

.quote-line {
    width: 56px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 26px;
}

.quote-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.25;
}

.quote-sub {
    font-size: 1rem;
    color: var(--light-muted);
    margin-bottom: 28px;
    line-height: 1.55;
}

.hero-form-wrap .btn--gold {
    color: #ffffff;
}

.hero-form-wrap .btn--outline {
    color: var(--light-text);
    border-color: var(--light-border);
    background: #ffffff;
}

.hero-form-wrap .btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(59, 130, 246, 0.04);
}

.quote-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
    font-size: 0.92rem;
}

.quote-btn-sub {
    font-weight: 400;
    font-size: 0.875rem;
    opacity: 0.85;
    margin-left: 4px;
    letter-spacing: 0.04em;
    text-transform: none;
}

.value-lead {
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 24px;
    padding: 20px 0 22px;
    border-left: 3px solid var(--gold);
    padding-left: 22px;
    color: #4a6a8a
}

.value-lead strong {
    font-weight: 600;
}

.form-sub {
    font-size: 0.875rem;
    color: var(--white-muted);
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: var(--dark-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 14px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b0aea8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-field option {
    background: var(--dark-mid);
}

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

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

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

.form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--white-muted);
    margin-top: 10px;
}

/* ============================================================
   INLINE CTA BAR
   ============================================================ */
.cta-bar {
    background: var(--dark-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.cta-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-bar p {
    font-size: 1.2rem;
    color: var(--white);
}

.cta-bar p strong {
    color: var(--white);
}

/* ============================================================
   SECTION 2 — VALUE PROP
   ============================================================ */
#value {
    background: var(--light);
}

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

.value-content p {
    color: var(--white-dim);
    line-height: 1.75;
    margin-bottom: 16px;
}

.value-content p strong {
    color: var(--white);
}

.value-cta {
    margin-top: 28px;
}

/* ============================================================
   SECTION 3 — ABOUT
   ============================================================ */
#about {
    background: var(--light-mid);
}

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

.about-photo {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--white-muted);
    font-size: 0.85rem;
    font-style: italic;
    position: relative;
    overflow: hidden;
}

.about-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(59, 130, 246, 0.02) 20px,
            rgba(59, 130, 246, 0.02) 21px);
}

/* .about-photo img (fills the box) now lives in shared.css — both pages
   have a photo in the About section. */

.about-content p {
    color: var(--white-dim);
    line-height: 1.75;
    margin-bottom: 16px;
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.check-item .check {
    color: var(--gold);
    font-size: 1rem;
}

/* ============================================================
   SECTION 4 — SERVICES
   ============================================================ */
#services {
    background: var(--dark);
}

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

.services-header p {
    color: var(--white-dim);
    max-width: 560px;
    margin: 16px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--dark-card);
    padding: 36px 28px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    background: #1f2126;
}

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-offer {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 2px;
    padding: 4px 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    width: fit-content;
}

.service-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

/* ============================================================
   SECTION 5 — WHY CHOOSE
   ============================================================ */
#why {
    background: var(--light);
}

.why-header {
    margin-bottom: 56px;
}

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

.usp-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.usp-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.usp-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 6px;
}

.usp-text p {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.6;
}

/* ============================================================
   SECTION 6 — PROCESS
   ============================================================ */
#process {
    background: var(--light);
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--gold-dim), var(--border), transparent);
}

.process-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: background 0.25s, border-color 0.25s;
}

.process-step:hover .step-num {
    background: rgba(59, 130, 246, 0.1);
    border-color: var(--gold);
}

.step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.55;
}

/* ============================================================
   SECTION 7 — REVIEWS
   ============================================================ */
/* Reviews section now lives in shared.css + partials/reviews.njk
   (single source, identical light theme on every page). */

/* ============================================================
   SECTION 8 — CERTIFICATIONS
   ============================================================ */
#certs {
    background: var(--light);
}

.certs-header {
    margin-bottom: 52px;
}

.cert-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.cert-badge {
    flex: 1;
    min-width: 200px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: border-color 0.25s;
}

.cert-badge:hover {
    border-color: var(--gold-dim);
}

/* .cert-badge-icon (logo image) now lives in shared.css — used by both
   pages (index .cert-badge, services .cert-item). */

.cert-badge h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 6px;
}

.cert-badge p {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.5;
}

.cert-note {
    font-style: italic;
    font-size: 0.875rem;
    color: var(--white-muted);
}

/* ============================================================
   SECTION 9 — SERVICE AREAS
   ============================================================ */
#locations {
    background: var(--light-mid);
}

.locations-content p {
    color: var(--white-dim);
    line-height: 1.75;
    margin-bottom: 24px;
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.area-pill {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 8px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-dim);
    transition: all 0.2s;
    cursor: pointer;
}

.area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================================
   SECTION 10 — FAQ
   ============================================================ */
#faq {
    background: var(--light);
}

.faq-header {
    margin-bottom: 52px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 48px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    color: var(--gold);
    transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.72;
}

/* ============================================================
   SECTION 11 — FINAL CTA
   ============================================================ */
#final-cta {
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.final-cta-inner .section-title {
    margin-bottom: 0;
}

.final-cta-inner p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-offer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2px;
    padding: 8px 18px;
    margin-bottom: 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

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

/* ============================================================
   SECTION 12 — MAP / LOCATION
   ============================================================ */
/* #contact is now the shared .map-section (partials/map.njk); its
   background and map styling come from shared.css. */

/* Location map styling now lives in shared.css (.map-section / .map-embed),
   rendered via partials/map.njk on every page. */

/* FOOTER chrome (footer, .footer-tagline, .footer-contact-line,
   .footer-col-title, .footer-nav, .footer-copy, .social-btn) now lives
   in shared.css — single source so it matches every page. */

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

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

.hero-badge {
    animation: fadeUp 0.5s ease both;
}

.hero-h1 {
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-sub {
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-trust {
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-form-wrap {
    animation: fadeUp 0.7s 0.2s ease both;
}

/* ============================================================
   LIGHT SECTION OVERRIDES
   ============================================================ */
#value,
#about,
#why,
#process,
#certs,
#locations,
#faq,
#contact {
    color: var(--light-text);
}

#value .section-title,
#about .section-title,
#why .section-title,
#process .section-title,
#certs .section-title,
#locations .section-title,
#faq .section-title,
#contact .section-title {
    color: var(--light-text);
}

#value p,
#about p,
#why p,
#process p,
#certs p,
#locations p,
#faq p,
#contact p {
    color: var(--light-muted);
}

#value p strong,
#about p strong {
    color: var(--light-text);
}

#value .eyebrow,
#about .eyebrow,
#why .eyebrow,
#process .eyebrow,
#certs .eyebrow,
#locations .eyebrow,
#faq .eyebrow,
#contact .eyebrow {
    color: var(--gold);
}

#value .gold-line,
#about .gold-line,
#why .gold-line,
#process .gold-line,
#certs .gold-line,
#locations .gold-line,
#faq .gold-line,
#contact .gold-line {
    background: var(--gold);
}

#about .about-photo {
    background: #dde8f5;
    border-color: var(--light-border);
    color: var(--light-muted);
}

#about .check-item {
    color: var(--light-text);
}

#why .usp-text h4 {
    color: var(--light-text);
}

#why .usp-text p {
    color: var(--light-muted);
}

#process .step-num {
    background: var(--light);
    border-color: var(--light-border);
    color: var(--gold);
}

#process .step-title {
    color: var(--light-text);
}

#process .step-desc {
    color: var(--light-muted);
}

#certs .cert-badge {
    background: var(--light);
    border-color: var(--light-border);
}

#certs .cert-badge h4 {
    color: var(--light-text);
}

#certs .cert-badge p {
    color: var(--light-muted);
}

#certs .cert-badge:hover {
    border-color: var(--gold);
}

#certs .cert-note {
    color: var(--light-muted);
}

#locations .area-pill {
    background: var(--light);
    border-color: var(--light-border);
    color: var(--light-muted);
}

#locations .area-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

#locations .btn--outline {
    color: var(--gold);
    border-color: var(--gold);
    background: transparent;
}

#locations .btn--outline:hover {
    background: var(--gold);
    color: var(--light);
    border-color: var(--gold);
}

#faq .faq-question {
    color: var(--light-text);
}

#faq .faq-question:hover {
    color: var(--gold);
}

#faq .faq-icon {
    background: var(--light-mid);
    border-color: var(--light-border);
}

#faq .faq-item {
    border-color: var(--light-border);
}

#faq .faq-answer-inner {
    color: var(--light-muted);
}

#faq .faq-item.open .faq-icon {
    background: rgba(59, 130, 246, 0.1);
}

#contact .social-btn {
    background: var(--light);
    border-color: var(--light-border);
    color: var(--light-muted);
}

#contact .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

#contact .section-title {
    color: var(--light-text);
}

.cta-bar {
    background: var(--dark-mid) !important;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
    background: var(--dark);
}

.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-header p {
    color: var(--white-dim);
    max-width: 520px;
    margin: 14px auto 0;
    font-size: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark-card);
    border: 1px solid var(--border);
    cursor: pointer;
}

/* Make select items span 2 rows for masonry feel */
.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(7, 17, 27, 0.92));
    padding: 28px 16px 14px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.gallery-caption-sub {
    font-size: 0.875rem;
    color: var(--gold-light);
    margin-top: 2px;
}

.gallery-note {
    text-align: center;
    margin-top: 28px;
    font-style: italic;
    font-size: 0.875rem;
    color: var(--white-muted);
}

/* ============================================================
   KLARNA FINANCING CTA
   ============================================================ */
.klarna-cta {
    background: var(--light-mid);
    padding: 84px 0;
}

.klarna-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid var(--light-border);
    border-radius: 14px;
    padding: 56px 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px -20px rgba(13, 27, 42, 0.18);
    max-width: 920px;
    margin: 0 auto;
}

.klarna-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold);
}

.klarna-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
}

.klarna-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.klarna-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.12;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 18px;
    text-wrap: balance;
}

.klarna-h2-em {
    color: var(--gold);
}

.klarna-copy {
    color: var(--light-muted);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 680px;
}

.klarna-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
