/*
Theme Name: Trust Relocation Experts
Author: ASSET TAI
Description: Premium moving consultation service
Version: 2.0
*/


/* ================================================================
   TABLE OF CONTENTS
   1.  Reset & Base
   2.  Global Tokens (CSS Variables)
   3.  Global Components
       3a. Badge
       3b. Buttons
       3c. Section Header
       3d. Scroll Animation (.is-visible)
       3e. Keyframes
   4.  Navigation & Burger
   5.  Front Page  (fp-)
   6.  About Page  (ab-)
   7.  Services Page  (sv-)
   8.  FAQ Page  (fq-)
   9.  Contact Page  (ct-)
   10. Legal Pages  (lg-)
   11. Footer  (ft-)
   12. Responsive — Navigation
================================================================ */


/* ================================================================
   1. RESET & BASE
================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    background: #0a1628;
}

h1, h2, h3, h4 {
    font-family: 'Cal Sans', 'Inter', sans-serif;
}

a {
    color: #c9a84c;
    text-decoration: none;
    transition: opacity 0.15s;
}
a:hover { opacity: 0.8; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ================================================================
   2. GLOBAL TOKENS
================================================================ */
/* ─── Tokens ──────────────────────────────────────────── */
:root {
    --fp-navy:    #0a1628;
    --fp-navy2:   #0d1e38;
    --fp-navy3:   #0f2040;
    --fp-navy4:   #162d52;
    --fp-border:  rgba(255,255,255,0.07);
    --fp-border2: rgba(255,255,255,0.12);
    --fp-gold:    #c9a84c;
    --fp-gold2:   #e2c070;
    --fp-gold-bg: rgba(201,168,76,0.10);
    --fp-gold-br: rgba(201,168,76,0.22);
    --fp-red:     #ef4444;
    --fp-red-bg:  rgba(239,68,68,0.10);
    --fp-red-br:  rgba(239,68,68,0.22);
    --fp-muted:   #8a9ab8;
    --fp-muted2:  #a8b8d0;
    --fp-radius:  14px;
    --fp-shadow:  0 4px 24px rgba(0,0,0,0.28), 0 1px 4px rgba(0,0,0,0.18);
    --fp-shadow2: 0 8px 40px rgba(0,0,0,0.38);
}

/* ─── Badge ───────────────────────────────────────────── */
.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fp-gold-bg);
    border: 1px solid var(--fp-gold-br);
    color: var(--fp-gold2);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.fp-badge--red {
    background: var(--fp-red-bg);
    border-color: var(--fp-red-br);
    color: #f87171;
}
.fp-badge__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--fp-gold);
    flex-shrink: 0;
    animation: fp-pulse 2s ease-in-out infinite;
}
.fp-badge__dot--red { background: var(--fp-red); }
@keyframes fp-pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: .4; }
}

/* ─── Buttons ─────────────────────────────────────────── */
.fp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fp-gold);
    color: #0a1628;
    padding: 13px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 2px 12px rgba(201,168,76,.30);
}
.fp-btn-primary:hover {
    background: var(--fp-gold2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.40);
    opacity: 1;
}
.fp-btn-primary--lg { padding: 15px 32px; font-size: 15px; }

.fp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--fp-border2);
    transition: border-color .15s, color .15s, background .15s, transform .15s;
}
.fp-btn-ghost:hover {
    border-color: var(--fp-gold);
    color: var(--fp-gold2);
    background: var(--fp-gold-bg);
    transform: translateY(-1px);
    opacity: 1;
}
.fp-btn-ghost--lg { padding: 15px 30px; font-size: 15px; }

/* ─── Section header ──────────────────────────────────── */
.fp-section-header {
    text-align: center;
    margin-bottom: 52px;
}
.fp-section-header h2 {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.7px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.15;
}
.fp-section-header p {
    font-size: 15px;
    color: var(--fp-muted2);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ================================================================
   3. GLOBAL COMPONENTS
================================================================ */

/* ─── 3d. Scroll Animation ─────────────────────────────────── */
.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0) !important;
}

/* ─── 3e. Keyframes ─────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}


/* ================================================================
   4. NAVIGATION & BURGER
================================================================ */
/* ================================
   NAVIGATION
================================ */
.site-nav {
    position: sticky;
    top: 0;
    background: rgba(10, 22, 40, 0.97);
    border-bottom: 1px solid #525f78;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo a {
    text-decoration: none;
}

.logo-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #c9a84c;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #abb5c0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-menu a {
    display: block;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: #abb5c0;
    text-decoration: none;
    transition: all 0.15s;
}

.nav-menu a:hover {
    background: #0f2040;
    color: #ffffff;
    opacity: 1;
}

.nav-menu .current-menu-item a {
    color: #ffffff;
    background: #0f2040;
}

.nav-cta {
    background: #c9a84c;
    color: #0a1628 !important;
    padding: 8px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s;
    margin-left: 8px;
}

.nav-cta:hover {
    background: #e2c070;
    opacity: 1;
}

/* ================================
   BURGER MENU
================================ */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 10;
    }

    .nav-backdrop.active {
        display: block;
    }

body.menu-open .site-main {
        filter: blur(4px);
        transition: filter 0.25s ease;
    }


/* ================================================================
   5. FRONT PAGE  (fp-)
================================================================ */

/* ─── Buttons ─────────────────────────────────────────── */
.fp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fp-gold);
    color: #0a1628;
    padding: 13px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 2px 12px rgba(201,168,76,.30);
}
.fp-btn-primary:hover {
    background: var(--fp-gold2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.40);
    opacity: 1;
}
.fp-btn-primary--lg { padding: 15px 32px; font-size: 15px; }

.fp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    padding: 13px 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--fp-border2);
    transition: border-color .15s, color .15s, background .15s, transform .15s;
}
.fp-btn-ghost:hover {
    border-color: var(--fp-gold);
    color: var(--fp-gold2);
    background: var(--fp-gold-bg);
    transform: translateY(-1px);
    opacity: 1;
}
.fp-btn-ghost--lg { padding: 15px 30px; font-size: 15px; }

/* ─── Section header ──────────────────────────────────── */

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.fp-hero {
    position: relative;
    padding: 88px 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--fp-border);
}

/* subtle dot-grid background */
.fp-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 70% 20%, rgba(201,168,76,.06) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    pointer-events: none;
}

.fp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    position: relative;
}

/* copy */
.fp-hero__h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.5px;
    color: #fff;
    margin-bottom: 20px;
}
.fp-hero__h1-em {
    display: block;
    color: var(--fp-gold);
    font-style: normal;
    margin-top: 4px;
}
.fp-hero__sub {
    font-size: 16px;
    color: var(--fp-muted2);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 440px;
}
.fp-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.fp-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--fp-border);
    color: var(--fp-muted2);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
}
.fp-pill i { color: var(--fp-gold); font-size: 11px; }

/* services card */
.fp-hero__card {
    background: linear-gradient(145deg, #0f2040 0%, #0d1c35 100%);
    border: 1px solid var(--fp-border2);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--fp-shadow2);
    position: relative;
}
.fp-hero__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
    pointer-events: none;
}
.fp-hero__card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fp-gold);
    margin-bottom: 8px;
}
.fp-hero__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -.1px;
}
.fp-hero__card-sub {
    font-size: 12px;
    color: var(--fp-muted);
    margin-bottom: 20px;
}

/* service rows */
.fp-svc-list { display: flex; flex-direction: column; gap: 8px; }

.fp-svc-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: 10px;
    padding: 12px 14px;
    text-decoration: none;
    transition: border-color .15s, background .15s, transform .15s;
}
.fp-svc-row:hover {
    border-color: var(--fp-gold-br);
    background: var(--fp-gold-bg);
    transform: translateX(2px);
    opacity: 1;
}
.fp-svc-row--featured {
    border-color: var(--fp-gold-br);
    background: rgba(201,168,76,.06);
}
.fp-svc-row__badge {
    position: absolute;
    top: -8px; right: 12px;
    background: var(--fp-gold);
    color: #0a1628;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 2px 8px;
    border-radius: 10px;
}
.fp-svc-row__icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--fp-gold-bg);
    border: 1px solid var(--fp-gold-br);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--fp-gold);
    flex-shrink: 0;
}
.fp-svc-row__body { flex: 1; min-width: 0; }
.fp-svc-row__name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
.fp-svc-row__desc {
    font-size: 11px;
    color: var(--fp-muted);
    margin-top: 2px;
}
.fp-svc-row__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--fp-gold);
    flex-shrink: 0;
}
.fp-svc-row__arrow {
    font-size: 10px;
    color: var(--fp-muted);
    flex-shrink: 0;
    transition: transform .15s;
}
.fp-svc-row:hover .fp-svc-row__arrow { transform: translateX(3px); color: var(--fp-gold); }

/* photo strip */
.fp-hero__photo-strip {
    position: relative;
    margin-top: 64px;
    height: 420px;
    overflow: hidden;
    border-top: 1px solid var(--fp-border);
}
.fp-hero__photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(.55) saturate(.85);
}
.fp-hero__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,22,40,.85) 0%, rgba(10,22,40,.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 48px 40px;
}
.fp-hero__photo-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fp-hero__photo-num {
    font-size: 52px;
    font-weight: 700;
    color: var(--fp-gold);
    letter-spacing: -1.5px;
    line-height: 1;
    display: block;
}
.fp-hero__photo-label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    max-width: 280px;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════════════════ */
.fp-problem {
    padding: 96px 0;
    border-bottom: 1px solid var(--fp-border);
}
.fp-problem__layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}
.fp-problem__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fp-prob-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #0f2040 0%, #0d1c35 100%);
    border: 1px solid var(--fp-border);
    border-left: 3px solid var(--fp-red);
    border-radius: 12px;
    padding: 20px 22px;
    transition: border-color .2s, background .2s, transform .2s;
}
.fp-prob-card:hover {
    border-color: rgba(239,68,68,.5);
    background: linear-gradient(135deg, #162030 0%, #0f1c30 100%);
    transform: translateX(4px);
}
.fp-prob-card__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.fp-prob-card__icon--red {
    background: var(--fp-red-bg);
    border: 1px solid var(--fp-red-br);
    color: var(--fp-red);
}
.fp-prob-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.fp-prob-card__desc {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.6;
}
.fp-problem__photo {
    position: sticky;
    top: 80px;
}
.fp-problem__photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--fp-radius);
    border: 1px solid var(--fp-border);
    filter: brightness(.8);
    display: block;
}
.fp-problem__photo-caption {
    margin-top: 14px;
    background: var(--fp-red-bg);
    border: 1px solid var(--fp-red-br);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 12px;
    color: #f87171;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.fp-problem__photo-caption i { flex-shrink: 0; }
.fp-problem__photo-caption strong { color: #fff; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════
   SOLUTION
═══════════════════════════════════════════════════════ */
.fp-solution {
    padding: 96px 0;
    background: var(--fp-navy2);
    border-bottom: 1px solid var(--fp-border);
}
.fp-sol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.fp-sol-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-top: 2px solid var(--fp-gold-br);
    border-radius: var(--fp-radius);
    padding: 24px;
    cursor: pointer;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.fp-sol-card:hover {
    border-color: var(--fp-gold-br);
    background: rgba(201,168,76,.04);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.fp-sol-card--open {
    border-color: var(--fp-gold) !important;
    background: rgba(201,168,76,.06) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.3) !important;
}
.fp-sol-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.fp-sol-card__ico {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--fp-gold-bg);
    border: 1px solid var(--fp-gold-br);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--fp-gold);
    flex-shrink: 0;
}
.fp-sol-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}
.fp-sol-card__chev {
    font-size: 11px;
    color: var(--fp-muted);
    transition: transform .25s;
}
.fp-sol-card--open .fp-sol-card__chev { transform: rotate(180deg); }
.fp-sol-card__desc {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.65;
}
.fp-sol-card__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, margin-top .3s ease;
}
.fp-sol-card--open .fp-sol-card__details {
    max-height: 220px;
    margin-top: 16px;
}
.fp-sol-card__details ul {
    list-style: none;
    border-top: 1px solid var(--fp-border);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fp-sol-card__details ul li {
    font-size: 12px;
    color: var(--fp-muted2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.fp-sol-card__details ul li::before {
    content: "✓";
    color: var(--fp-gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.fp-how {
    padding: 96px 0;
    border-bottom: 1px solid var(--fp-border);
}
.fp-how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
/* connecting line */
.fp-how__steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: linear-gradient(to right, var(--fp-gold-br), var(--fp-gold), var(--fp-gold-br));
    z-index: 0;
}
.fp-how__step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 28px;
    z-index: 1;
}
.fp-how__step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--fp-navy);
    border: 2px solid var(--fp-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--fp-gold);
    margin-bottom: 24px;
    box-shadow: 0 0 0 6px var(--fp-navy);
}
.fp-how__step-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.fp-how__step-body p {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.65;
    margin-bottom: 14px;
}
.fp-how__step-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fp-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--fp-gold-br);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}
.fp-how__step-link:hover { color: var(--fp-gold2); border-color: var(--fp-gold); opacity: 1; }
.fp-how__step-link i { font-size: 10px; }

/* ═══════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════ */
.fp-trust {
    padding: 72px 0;
    border-bottom: 1px solid var(--fp-border);
    background: var(--fp-navy2);
}
.fp-trust__grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    gap: 0;
    align-items: center;
}
.fp-trust__divider {
    background: var(--fp-border);
    height: 80px;
    align-self: center;
}
.fp-trust__item {
    text-align: center;
    padding: 8px 24px;
    transition: background .2s;
    border-radius: 10px;
}
.fp-trust__item:hover { background: rgba(255,255,255,.03); }
.fp-trust__ico {
    font-size: 22px;
    color: var(--fp-gold);
    margin-bottom: 10px;
}
.fp-trust__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.fp-trust__desc {
    font-size: 12px;
    color: var(--fp-muted2);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.fp-cta {
    padding: 96px 0;
}
.fp-cta__inner {
    background: linear-gradient(135deg, #0f2040 0%, #0d1c35 60%, rgba(201,168,76,.06) 100%);
    border: 1px solid var(--fp-gold-br);
    border-radius: 20px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--fp-shadow2);
    position: relative;
    overflow: hidden;
}
.fp-cta__inner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}
.fp-cta__text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 8px;
}
.fp-cta__text p {
    font-size: 15px;
    color: var(--fp-muted2);
    line-height: 1.6;
}
.fp-cta__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
/*@media (max-width: 960px) {*/
/*    .fp-hero__inner {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 40px;*/
/*    }*/
/*    .fp-hero__h1 { font-size: 42px; }*/
/*    .fp-problem__layout {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*    .fp-problem__photo { position: static; }*/
/*    .fp-problem__photo img { height: 280px; }*/
/*    .fp-cta__inner {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*        padding: 40px 28px;*/
/*    }*/
/*    .fp-cta__actions { justify-content: center; }*/
/*}*/

@media (max-width: 960px) {
    .fp-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fp-hero__h1 { font-size: 42px; }
    .fp-problem__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .fp-problem__cards { width: 100%; }
    .fp-prob-card { width: 100%; box-sizing: border-box; }
    .fp-problem__photo { position: static; width: 100%; }
    .fp-problem__photo img { height: 240px; width: 100%; }
    .fp-problem__photo-caption { white-space: normal; }
    .fp-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    .fp-cta__actions { justify-content: center; }
}

@media (max-width: 768px) {
    .fp-hero { padding: 64px 0 0; }
    .fp-hero__h1 { font-size: 34px; }
    .fp-hero__sub { font-size: 14px; }
    .fp-hero__photo-strip { height: 280px; }
    .fp-hero__photo-num { font-size: 36px; }
    .fp-hero__photo-overlay { padding: 28px 24px; }

    .fp-sol-grid { grid-template-columns: 1fr; }
    
    .fp-how__steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .fp-how__steps::before { display: none; }
    .fp-trust__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .fp-trust__divider { display: none; }

    .fp-cta__inner { padding: 32px 20px; }
    .fp-cta__text h2 { font-size: 22px; }
    
}

@media (max-width: 480px) {
    .fp-hero__h1 { font-size: 28px; }
    .fp-hero__actions { flex-direction: column; }
    .fp-cta__actions { flex-direction: column; width: 100%; }
    .fp-btn-primary--lg, .fp-btn-ghost--lg { width: 100%; justify-content: center; }
    .fp-trust__grid { grid-template-columns: 1fr; }
}


/* ================================================================
   6. ABOUT PAGE  (ab-)
================================================================ */
/* ─── Shared tokens (mirrors front-page, will be global later) ── */

/* ─── Section header ──────────────────────────────────── */

/* ─── Hero ────────────────────────────────────────────── */
.ab-hero {
    position: relative;
    padding: 88px 0 80px;
    border-bottom: 1px solid var(--fp-border);
    overflow: hidden;
}
.ab-hero__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 30%, rgba(201,168,76,.06) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    pointer-events: none;
}
.ab-hero .ab-hero__h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.4px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}
.ab-hero__sub {
    font-size: 16px;
    color: var(--fp-muted2);
    line-height: 1.75;
    max-width: 600px;
}

/* ─── Founder ─────────────────────────────────────────── */
.ab-founder {
    padding: 88px 0;
    border-bottom: 1px solid var(--fp-border);
}
.ab-founder__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.ab-founder__photo-wrap {
    position: relative;
}
.ab-founder__photo {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    border: 1px solid var(--fp-border2);
    display: block;
    filter: brightness(.92);
}
.ab-founder__role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fp-gold);
    margin-bottom: 8px;
}
.ab-founder__name {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1;
}
.ab-founder__quote {
    font-size: 15px;
    color: var(--fp-muted2);
    line-height: 1.75;
    border-left: 2px solid var(--fp-gold);
    padding-left: 20px;
    font-style: italic;
    margin-bottom: 32px;
}

/* stats */
.ab-founder__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.ab-stat {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color .2s, background .2s;
}
.ab-stat:hover {
    border-color: var(--fp-gold-br);
    background: var(--fp-gold-bg);
}
.ab-stat__num {
    font-size: 28px;
    font-weight: 700;
    color: var(--fp-gold);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
    line-height: 1;
}
.ab-stat__label {
    font-size: 12px;
    color: var(--fp-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.ab-stat__label i { color: var(--fp-gold); font-size: 11px; }

/* ─── Commitments ─────────────────────────────────────── */
.ab-commit {
    padding: 96px 0;
    background: var(--fp-navy2);
    border-bottom: 1px solid var(--fp-border);
}
.ab-commit__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.ab-commit__card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 28px;
    transition: border-color .2s, background .2s, transform .2s;
}
.ab-commit__card:hover {
    border-color: var(--fp-gold-br);
    background: var(--fp-gold-bg);
    transform: translateY(-2px);
}
.ab-commit__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.ab-commit__num {
    font-size: 36px;
    font-weight: 700;
    color: rgba(201,168,76,.25);
    letter-spacing: -1.5px;
    line-height: 1;
}
.ab-commit__ico {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--fp-gold-bg);
    border: 1px solid var(--fp-gold-br);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--fp-gold);
}
.ab-commit__card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.ab-commit__card p {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.7;
}

/* ─── Compare ─────────────────────────────────────────── */
.ab-compare {
    padding: 96px 0;
    border-bottom: 1px solid var(--fp-border);
}
.ab-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ab-compare__col {
    border-radius: var(--fp-radius);
    overflow: hidden;
    border: 1px solid var(--fp-border);
}
.ab-compare__col--bad  { border-color: var(--fp-red-br); }
.ab-compare__col--good { border-color: var(--fp-gold-br); }

.ab-compare__col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid;
}
.ab-compare__col--bad .ab-compare__col-header {
    background: var(--fp-red-bg);
    color: #f87171;
    border-color: var(--fp-red-br);
}
.ab-compare__col--good .ab-compare__col-header {
    background: var(--fp-gold-bg);
    color: var(--fp-gold2);
    border-color: var(--fp-gold-br);
}
.ab-compare__row {
    padding: 14px 20px;
    border-bottom: 1px solid var(--fp-border);
    background: rgba(255,255,255,.02);
    transition: background .15s;
}
.ab-compare__row:hover { background: rgba(255,255,255,.04); }
.ab-compare__row--last { border-bottom: none; }
.ab-compare__row-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--fp-muted);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 5px;
}
.ab-compare__row-val {
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.ab-compare__row-val i { margin-top: 1px; flex-shrink: 0; }
.ab-compare__row-val--bad  { color: #f87171; }
.ab-compare__row-val--good { color: #4ade80; }

/* ─── Personal ────────────────────────────────────────── */
.ab-personal {
    padding: 96px 0;
    border-bottom: 1px solid var(--fp-border);
}
.ab-personal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.ab-personal__photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--fp-border2);
    filter: brightness(.85);
    display: block;
}
.ab-personal__h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.6px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.ab-personal__p {
    font-size: 15px;
    color: var(--fp-muted2);
    line-height: 1.75;
    margin-bottom: 24px;
}
.ab-personal__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ab-personal__list li {
    font-size: 14px;
    color: var(--fp-muted2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.ab-personal__list li::before {
    content: "→";
    color: var(--fp-gold);
    flex-shrink: 0;
    font-weight: 700;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .ab-hero__h1  { font-size: 38px; }
    .ab-founder__grid,
    .ab-personal__grid { grid-template-columns: 1fr; gap: 36px; }
    .ab-founder__photo { height: 320px; }
    .ab-personal__photo img { height: 280px; }
    .ab-compare__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .ab-hero { padding: 64px 0 56px; }
    .ab-hero__h1  { font-size: 30px; }
    .ab-commit__grid { grid-template-columns: 1fr; }
    .ab-founder__stats { grid-template-columns: 1fr 1fr; }
}


/* ================================================================
   7. SERVICES PAGE  (sv-)
================================================================ */
/* ─── Badge + section-header (local copy) ────────────── */

/* ─── Hero ────────────────────────────────────────────── */
.sv-hero {
    position: relative;
    padding: 88px 0 80px;
    border-bottom: 1px solid var(--fp-border);
    overflow: hidden;
}
.sv-hero__bg-grid {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 75% 30%, rgba(201,168,76,.06) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    pointer-events: none;
}
.sv-hero .sv-hero__h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.4px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 640px;
}
.sv-hero__sub {
    font-size: 16px;
    color: var(--fp-muted2);
    line-height: 1.75;
    max-width: 560px;
}

/* ─── Service cards ───────────────────────────────────── */
.sv-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--fp-border);
}
.sv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.sv-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    transition: border-color .2s, background .2s, box-shadow .2s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.sv-card:hover {
    border-color: var(--fp-border2);
    background: rgba(255,255,255,.05);
    box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.sv-card--featured {
    border-color: var(--fp-gold-br);
    background: rgba(201,168,76,.05);
    box-shadow: 0 4px 32px rgba(201,168,76,.08);
}
.sv-card--featured:hover {
    border-color: var(--fp-gold);
    box-shadow: 0 8px 40px rgba(201,168,76,.14);
}
.sv-card__popular {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    background: var(--fp-gold);
    color: #0a1628;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.sv-card__icon {
    font-size: 28px;
    color: var(--fp-gold);
    margin-bottom: 12px;
}
.sv-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.sv-card__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--fp-gold);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1;
}
.sv-card__price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--fp-muted);
}
.sv-card__photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    filter: brightness(.82);
}
.sv-card__desc {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: left;
}
.sv-card__features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    flex: 1;
}
.sv-card__features li {
    font-size: 13px;
    color: var(--fp-muted2);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--fp-border);
}
.sv-card__features li:last-child { border-bottom: none; }
.sv-card__features li::before {
    content: "✓";
    color: var(--fp-gold);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 12px;
}
.sv-card__btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
    margin-top: auto;
}
.sv-card__btn--primary {
    background: var(--fp-gold);
    color: #0a1628;
    box-shadow: 0 2px 12px rgba(201,168,76,.28);
}
.sv-card__btn--primary:hover {
    background: var(--fp-gold2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.38);
    opacity: 1;
}
.sv-card__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid var(--fp-border2);
}
.sv-card__btn--ghost:hover {
    border-color: var(--fp-gold-br);
    color: var(--fp-gold2);
    background: var(--fp-gold-bg);
    opacity: 1;
}

/* ─── Before you book ─────────────────────────────────── */
.sv-faq {
    padding: 80px 0;
    background: var(--fp-navy2);
    border-bottom: 1px solid var(--fp-border);
}
.sv-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.sv-faq__item {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 24px;
    transition: border-color .2s, background .2s;
}
.sv-faq__item:hover {
    border-color: var(--fp-gold-br);
    background: var(--fp-gold-bg);
}
.sv-faq__ico {
    font-size: 22px;
    color: var(--fp-gold);
    margin-bottom: 12px;
}
.sv-faq__item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.sv-faq__item p {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.65;
}

/* ─── Case study ──────────────────────────────────────── */
.sv-case {
    padding: 80px 0;
    border-bottom: 1px solid var(--fp-border);
}
.sv-case__inner {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--fp-border2);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    overflow: hidden;
}
.sv-case__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--fp-gold-br), var(--fp-gold), var(--fp-gold-br), transparent);
}
.sv-case__header {
    margin-bottom: 40px;
}
.sv-case__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.4px;
}
.sv-case__title i {
    color: var(--fp-gold);
    margin-right: 10px;
    font-size: 18px;
}

/* the four stats in a row with arrows */
.sv-case__grid {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--fp-border);
}
.sv-case__item {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: 12px;
    padding: 20px 12px;
}
.sv-case__item--highlight {
    border-color: rgba(94,234,212,.2);
    background: rgba(94,234,212,.04);
}
.sv-case__arrow {
    color: var(--fp-border2);
    font-size: 14px;
    flex-shrink: 0;
}
.sv-case__arrow--teal { color: rgba(94,234,212,.4); }

.sv-case__val {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 6px;
    line-height: 1;
}
/* toned-down palette — no traffic lights */
.sv-case__val--warn    { color: #e07b5a; }   /* muted amber-red: "suspiciously low" */
.sv-case__val--gold    { color: var(--fp-gold); } /* our estimate: brand gold */
.sv-case__val--neutral { color: #94a3b8; }   /* final cost: slate, just a fact */
.sv-case__val--teal    { color: #5eead4; }   /* saved: teal, positive but calm */

.sv-case__label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.sv-case__note {
    font-size: 11px;
    color: var(--fp-muted);
    line-height: 1.4;
}
.sv-case__desc {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.7;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .sv-hero__h1 { font-size: 38px; }
    .sv-case__grid {
        flex-wrap: wrap;
        gap: 12px;
    }
    .sv-case__arrow { display: none; }
    .sv-case__item { flex: 1 1 calc(50% - 6px); }
}
@media (max-width: 640px) {
    .sv-hero { padding: 64px 0 56px; }
    .sv-hero__h1 { font-size: 30px; }
    .sv-grid { grid-template-columns: 1fr; }
    .sv-faq__grid { grid-template-columns: 1fr; }
    .sv-case__inner { padding: 28px 20px; }
    .sv-case__item { flex: 1 1 100%; }
    .sv-case__val { font-size: 20px; }
}

/* ─── Animations ─────────────────────────────────────── */
    to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

/* hero входит при загрузке */
.fp-hero,
.ab-hero,
.sv-hero { animation: fadeInUp .7s ease both; }

/* карточки и блоки — скрыты до скролла */
.fp-prob-card,
.fp-sol-card,
.fp-how__step,
.fp-trust__item,
.ab-commit__card,
.ab-stat,
.ab-compare__col,
.sv-card,
.sv-faq__item,
.sv-case__item,
.fq-group,
.fq-cta__inner,
.ct-form-wrap,
.ct-card,
.lg-highlight,
.lg-section {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease, filter .5s ease;
    filter: blur(3px);
}

@media (prefers-reduced-motion: reduce) {
    *, .fp-hero, .ab-hero, .sv-hero { animation: none !important; transition: none !important; }
    .fp-prob-card, .fp-sol-card, .fp-how__step, .fp-trust__item,
    .ab-commit__card, .ab-stat, .ab-compare__col,
    .sv-card, .sv-faq__item, .sv-case__item {
        opacity: 1; transform: none; filter: none;
    }
}


/* ================================================================
   8. FAQ PAGE  (fq-)
================================================================ */

/* ─── Hero ────────────────────────────────────────────── */
.fq-hero {
    position: relative;
    padding: 88px 0 80px;
    border-bottom: 1px solid var(--fp-border);
    overflow: hidden;
}
.fq-hero__bg-grid {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 75% 40%, rgba(201,168,76,.06) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    pointer-events: none;
}
.fq-hero .fq-hero__h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.4px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 640px;
}
.fq-hero__sub {
    font-size: 16px;
    color: var(--fp-muted2);
    line-height: 1.75;
    max-width: 540px;
}
.fq-hero__sub a {
    color: var(--fp-gold2);
    text-decoration: none;
    border-bottom: 1px solid var(--fp-gold-br);
    transition: border-color .15s, color .15s;
}
.fq-hero__sub a:hover {
    color: #fff;
    border-color: #fff;
    opacity: 1;
}

/* ─── FAQ section ─────────────────────────────────────── */
.fq-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--fp-border);
}

/* group */
.fq-group {
    margin-bottom: 52px;
}
.fq-group:last-child { margin-bottom: 0; }

.fq-group__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fp-gold);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--fp-border2);
    display: flex;
    align-items: center;
    gap: 8px;
}
.fq-group__title i { font-size: 12px; }

/* item */
.fq-item {
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color .2s;
}
.fq-item:hover { border-color: var(--fp-border2); }
.fq-item.fq-item--open { border-color: var(--fp-gold-br); }

.fq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255,255,255,.03);
    border: none;
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}
.fq-item__q:hover { background: rgba(255,255,255,.05); }
.fq-item--open .fq-item__q { background: var(--fp-gold-bg); }

.fq-item__chev {
    font-size: 11px;
    color: var(--fp-muted);
    flex-shrink: 0;
    transition: transform .25s;
}
.fq-item--open .fq-item__chev {
    transform: rotate(180deg);
    color: var(--fp-gold);
}

.fq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    font-size: 14px;
    color: var(--fp-muted2);
    line-height: 1.75;
    padding: 0 22px;
    border-top: 0px solid var(--fp-border);
}
.fq-item--open .fq-item__a {
    max-height: 300px;
    padding: 16px 22px 20px;
    border-top: 1px solid var(--fp-border);
}

/* ─── CTA ─────────────────────────────────────────────── */
.fq-cta { padding: 80px 0; }
.fq-cta__inner {
    background: linear-gradient(135deg, #0f2040 0%, #0d1c35 60%, rgba(201,168,76,.05) 100%);
    border: 1px solid var(--fp-gold-br);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.fq-cta__inner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
    pointer-events: none;
}
.fq-cta__text h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 8px;
}
.fq-cta__text p {
    font-size: 15px;
    color: var(--fp-muted2);
    line-height: 1.6;
}
.fq-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fp-gold);
    color: #0a1628;
    padding: 14px 28px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 2px 12px rgba(201,168,76,.28);
}
.fq-cta__btn:hover {
    background: var(--fp-gold2);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.38);
    opacity: 1;
}

/* ─── Animations ──────────────────────────────────────── */
    to   { opacity:1; transform:translateY(0);    filter:blur(0);   }
}
.fq-hero { animation: fadeInUp .7s ease both; }

.fq-group, .fq-cta__inner {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
    transition: opacity .5s ease, transform .5s ease, filter .5s ease;
}
@media (prefers-reduced-motion: reduce) {
    .fq-hero { animation: none; }
    .fq-group, .fq-cta__inner { opacity:1; transform:none; filter:none; }
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .fq-hero { padding: 64px 0 56px; }
    .fq-hero__h1 { font-size: 34px; }
    .fq-cta__inner { flex-direction: column; padding: 32px 24px; }
    .fq-cta__btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .fq-hero__h1 { font-size: 28px; }
    .fq-item__q { font-size: 13px; padding: 15px 16px; }
    .fq-item--open .fq-item__a { padding: 14px 16px 18px; }
}


/* ================================================================
   9. CONTACT PAGE  (ct-)
================================================================ */

/* ─── Hero ────────────────────────────────────────────── */
.ct-hero {
    position: relative;
    padding: 88px 0 80px;
    border-bottom: 1px solid var(--fp-border);
    overflow: hidden;
}
.ct-hero__bg-grid {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 70% 40%, rgba(201,168,76,.06) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    pointer-events: none;
}
.ct-hero .ct-hero__h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1.4px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 620px;
}
.ct-hero__sub {
    font-size: 16px;
    color: var(--fp-muted2);
    line-height: 1.75;
    max-width: 520px;
}

/* ─── Contact section ─────────────────────────────────── */
.ct-section {
    padding: 72px 0 96px;
}
.ct-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* form wrap */
.ct-form-wrap {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border2);
    border-radius: 18px;
    padding: 36px;
}
.ct-form-wrap__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -.3px;
}

/* sidebar */
.ct-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* cards */
.ct-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-radius);
    padding: 20px;
    transition: border-color .2s;
}
.ct-card:hover { border-color: var(--fp-border2); }

.ct-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.4px;
}
.ct-card__title i { color: var(--fp-gold); font-size: 13px; }

.ct-card__p {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* calendly btn */
.ct-calendly-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--fp-gold);
    color: #0a1628;
    padding: 11px 18px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s, transform .15s, box-shadow .15s;
    box-shadow: 0 2px 10px rgba(201,168,76,.25);
}
.ct-calendly-btn:hover {
    background: var(--fp-gold2);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,168,76,.35);
    opacity: 1;
}

/* contact rows */
.ct-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--fp-muted2);
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.5;
    transition: color .15s;
}
.ct-contact-row:last-child { margin-bottom: 0; }
.ct-contact-row i {
    width: 14px;
    font-size: 12px;
    color: var(--fp-gold);
    flex-shrink: 0;
}
a.ct-contact-row:hover { color: #fff; opacity: 1; }

/* services list */
.ct-services { display: flex; flex-direction: column; gap: 0; }
.ct-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--fp-border);
    font-size: 13px;
    color: var(--fp-muted2);
}
.ct-service-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-service-row span {
    display: flex;
    align-items: center;
    gap: 7px;
}
.ct-service-row span i { color: var(--fp-gold); font-size: 11px; }
.ct-service-row strong { color: var(--fp-gold); font-weight: 700; }

/* ─── Animations ──────────────────────────────────────── */
    to   { opacity:1; transform:translateY(0);    filter:blur(0);   }
}
.ct-hero { animation: fadeInUp .7s ease both; }

.ct-form-wrap, .ct-card {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
    transition: opacity .5s ease, transform .5s ease, filter .5s ease;
}
@media (prefers-reduced-motion: reduce) {
    .ct-hero { animation: none; }
    .ct-form-wrap, .ct-card { opacity:1; transform:none; filter:none; }
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .ct-grid { grid-template-columns: 1fr; }
    .ct-hero__h1 { font-size: 38px; }
}
@media (max-width: 600px) {
    .ct-hero { padding: 64px 0 56px; }
    .ct-hero__h1 { font-size: 30px; }
    .ct-form-wrap { padding: 24px 20px; }
}


/* ================================================================
   10. LEGAL PAGES  (lg-)  — Privacy, Terms, Disclaimer
================================================================ */

/* ─── Hero ────────────────────────────────────────────── */
.lg-hero {
    position: relative;
    padding: 88px 0 72px;
    border-bottom: 1px solid var(--fp-border);
    overflow: hidden;
}
.lg-hero__bg-grid {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 80% 40%, rgba(201,168,76,.05) 0%, transparent 55%),
        radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    pointer-events: none;
}
.lg-hero .lg-hero__h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1.2px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}
.lg-hero__sub {
    font-size: 14px;
    color: var(--fp-muted);
}

/* ─── Content ─────────────────────────────────────────── */
.lg-content {
    padding: 72px 0 96px;
}
.lg-content 
/* highlight box */
.lg-highlight {
    background: var(--fp-gold-bg);
    border: 1px solid var(--fp-gold-br);
    border-left: 3px solid var(--fp-gold);
    border-radius: var(--fp-radius);
    padding: 20px 24px;
    margin-bottom: 48px;
}
.lg-highlight p {
    font-size: 14px;
    color: var(--fp-muted2);
    line-height: 1.75;
}

/* sections */
.lg-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--fp-border);
}
.lg-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.lg-section h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px;
    margin-bottom: 14px;
}
.lg-section p {
    font-size: 14px;
    color: var(--fp-muted2);
    line-height: 1.8;
    margin-bottom: 12px;
}
.lg-section p:last-child { margin-bottom: 0; }
.lg-section a {
    color: var(--fp-gold2);
    text-decoration: none;
    border-bottom: 1px solid var(--fp-gold-br);
    transition: color .15s, border-color .15s;
}
.lg-section a:hover {
    color: #fff;
    border-color: #fff;
    opacity: 1;
}

/* list */
.lg-list {
    list-style: none;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lg-list li {
    font-size: 14px;
    color: var(--fp-muted2);
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.lg-list li::before {
    content: "→";
    color: var(--fp-gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ─── Animations ──────────────────────────────────────── */
    to   { opacity:1; transform:translateY(0);    filter:blur(0);   }
}
.lg-hero { animation: fadeInUp .7s ease both; }
.lg-highlight, .lg-section {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(3px);
    transition: opacity .5s ease, transform .5s ease, filter .5s ease;
}
@media (prefers-reduced-motion: reduce) {
    .lg-hero { animation: none; }
    .lg-highlight, .lg-section { opacity:1; transform:none; filter:none; }
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .lg-hero { padding: 64px 0 56px; }
    .lg-hero__h1 { font-size: 34px; }
}
@media (max-width: 480px) {
    .lg-hero__h1 { font-size: 28px; }
}


/* ================================================================
   11. FOOTER  (ft-)
================================================================ */
/* ─── Tokens (local, will be global later) ───────────── */

/* ─── Footer ──────────────────────────────────────────── */
.ft-footer {
    background: #080f1e;
    border-top: 1px solid var(--fp-border);
    padding: 64px 32px 0;
    position: relative;
    overflow: hidden;
}
.ft-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--fp-gold-br), transparent);
}

.ft-footer__inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* top grid */
.ft-footer__top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--fp-border);
    margin-bottom: 28px;
}

/* brand */
.ft-footer__desc {
    font-size: 13px;
    color: var(--fp-muted2);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
    max-width: 280px;
}
.ft-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--fp-gold-bg);
    border: 1px solid var(--fp-gold-br);
    color: var(--fp-gold2);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s, border-color .15s, transform .15s;
}
.ft-footer__cta:hover {
    background: rgba(201,168,76,.18);
    border-color: var(--fp-gold);
    transform: translateY(-1px);
    opacity: 1;
}
.ft-footer__cta i { font-size: 11px; }

/* columns */
.ft-footer__col-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fp-muted);
    margin-bottom: 18px;
}
.ft-footer__col a,
.ft-footer__col span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--fp-muted2);
    text-decoration: none;
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color .15s;
}
.ft-footer__col a i,
.ft-footer__col span i {
    width: 14px;
    font-size: 12px;
    color: var(--fp-gold);
    flex-shrink: 0;
}
.ft-footer__col a:hover {
    color: #fff;
    opacity: 1;
}

/* disclaimer */
.ft-footer__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(201,168,76,.04);
    border: 1px solid var(--fp-gold-br);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 11px;
    color: var(--fp-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}
.ft-footer__disclaimer i {
    color: var(--fp-gold);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* bottom bar */
.ft-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 28px;
    border-top: 1px solid var(--fp-border);
}
.ft-footer__copy {
    font-size: 12px;
    color: var(--fp-muted);
}
.ft-footer__links {
    display: flex;
    gap: 24px;
}
.ft-footer__links a {
    font-size: 12px;
    color: var(--fp-muted);
    text-decoration: none;
    transition: color .15s;
}
.ft-footer__links a:hover {
    color: var(--fp-gold2);
    opacity: 1;
}



/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .ft-footer { padding: 48px 24px 0; }
    .ft-footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .ft-footer__desc { max-width: 100%; }
    .ft-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .ft-footer__links { flex-wrap: wrap; gap: 16px; }
}

/* ================================================================
   GOOGLE PLACES AUTOCOMPLETE
================================================================ */
.pac-container {
    background: #0f2040;
    border: 1px solid rgba(201,168,76,.22);
    border-radius: 10px;
    margin-top: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    padding: 4px;
}
.pac-container::after {
    display: none !important;
}
.pac-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 13px;
    color: #a8b8d0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-radius: 7px;
    cursor: pointer;
    transition: background .15s, color .15s;
    line-height: 1.4;
}
.pac-item:first-child {
    border-top: none;
}
.pac-item:hover,
.pac-item-selected {
    background: rgba(201,168,76,.08);
    color: #fff;
}
.pac-item-query {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    padding-right: 6px;
}
.pac-item:hover .pac-item-query,
.pac-item-selected .pac-item-query {
    color: #c9a84c;
}
.pac-icon {
    display: none;
}
.pac-matched {
    color: #c9a84c;
    font-weight: 700;
}

/* ================================================================
   12. RESPONSIVE — NAVIGATION
================================================================ */

@media (max-width: 768px) {

    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a1628;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 0;
        z-index: 150;
        border-top: 1px solid #1e3a6e;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        background: #0b1629;
        gap: 0;
        border: solid 1px #00000030;
        width: 100%;
        max-width: 90%;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #1e3a6e;
    }

    .nav-menu a {
        font-size: 16px;
        padding: 16px 24px;
        text-align: center;
        width: 100%;
        border-radius: 0;
    }

    .nav-cta {
        margin: 16px 24px 0;
        width: calc(100% - 48px);
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 10;
    }

    .nav-backdrop.active {
        display: block;
    }

    body.menu-open .site-main {
        filter: blur(4px);
        transition: filter 0.25s ease;
    }
}