:root {
    --bg-dark: #1a1410;
    --bg-card: #241e17;
    --bg-card-hover: #2e261d;
    --bg-surface: #2a2219;
    --accent: #e8952e;
    --accent-hover: #f0a844;
    --accent-dark: #c47520;
    --accent-glow: rgba(232, 149, 46, 0.25);
    --text-main: #f5efe6;
    --text-secondary: #c9b99a;
    --text-muted: #8a7d6b;
    --border-subtle: #3d3428;
    --border-accent: rgba(232, 149, 46, 0.3);
    --green: #5cb85c;
    --red: #d9534f;
    --hero-grad: linear-gradient(160deg, #1a1410 0%, #2a2219 50%, #3d2e1a 100%);
    --accent-grad: linear-gradient(135deg, #e8952e, #c47520);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(232, 149, 46, 0.15);
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-full: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background: var(--bg-dark);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ── TOPBAR ── */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26, 20, 16, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s, box-shadow 0.3s;
}
.topbar.scrolled {
    background: rgba(26, 20, 16, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.topbar .wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
}

.brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.35rem; font-weight: 800; color: var(--text-main);
}
.brand-icon {
    width: 38px; height: 38px; border-radius: var(--r-sm);
    background: var(--accent-grad); display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.brand-icon svg { width: 22px; height: 22px; color: #fff; }
.brand:hover { color: var(--accent); }

.topnav { display: flex; align-items: center; gap: 28px; }
.topnav a {
    color: var(--text-secondary); font-weight: 500; font-size: 0.92rem;
    padding: 6px 0; position: relative;
}
.topnav a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 2px; background: var(--accent); border-radius: 2px;
    transition: width 0.25s;
}
.topnav a:hover { color: var(--text-main); }
.topnav a:hover::after { width: 100%; }
.topnav a.active { color: var(--accent); }
.topnav a.active::after { width: 100%; }

.topbar-phone {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-grad); color: #fff !important;
    padding: 10px 22px; border-radius: var(--r-full); font-weight: 700;
    font-size: 0.92rem; transition: transform 0.2s, box-shadow 0.2s;
}
.topbar-phone svg { width: 16px; height: 16px; }
.topbar-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px var(--accent-glow);
    color: #fff !important;
}

.hamburger {
    display: none; background: none; border: none;
    color: var(--text-main); cursor: pointer; padding: 8px;
}
.hamburger svg { width: 26px; height: 26px; }

/* ── HERO (split layout) ── */
.hero-split {
    position: relative; padding: 140px 0 90px;
    background: var(--hero-grad); overflow: hidden;
}
.hero-split::before {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 45%;
    background: radial-gradient(ellipse at 80% 40%, var(--accent-glow) 0%, transparent 70%);
}
.hero-split .wrap {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-left {}

.hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,149,46,0.12); border: 1px solid var(--border-accent);
    color: var(--accent); padding: 6px 16px; border-radius: var(--r-full);
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.8px; margin-bottom: 22px;
}
.hero-chip svg { width: 14px; height: 14px; }

.hero-split h1 {
    font-size: 3rem; font-weight: 800; line-height: 1.1;
    letter-spacing: -1px; margin-bottom: 18px;
}
.hero-split h1 em {
    font-style: normal; color: var(--accent);
}

.hero-split .hero-desc {
    font-size: 1.1rem; color: var(--text-secondary);
    line-height: 1.8; margin-bottom: 32px; max-width: 520px;
}

.hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-grad); color: #fff;
    padding: 14px 32px; border-radius: var(--r-full);
    font-weight: 700; font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-glow);
    color: #fff;
}
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-secondary);
    border: 1px solid var(--border-subtle); padding: 14px 28px;
    border-radius: var(--r-full); font-weight: 600; font-size: 1rem;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--text-main); }

.hero-metrics {
    display: flex; gap: 36px; padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}
.metric-val {
    display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent);
}
.metric-label {
    font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.5px; margin-top: 2px;
}

.hero-right {
    display: flex; justify-content: center;
}
.hero-card-stack {
    position: relative; width: 320px; height: 380px;
}
.hero-float-card {
    position: absolute; background: var(--bg-card);
    border: 1px solid var(--border-subtle); border-radius: var(--r-lg);
    padding: 24px; width: 280px;
    box-shadow: var(--shadow-card);
}
.hero-float-card:nth-child(1) { top: 0; left: 0; }
.hero-float-card:nth-child(2) { top: 40px; left: 40px; opacity: 0.7; transform: scale(0.95); }
.hero-float-card:nth-child(3) { top: 80px; left: 20px; opacity: 0.5; transform: scale(0.9); }
.hero-float-card h4 {
    font-size: 1rem; font-weight: 700; margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
}
.hero-float-card h4 svg { width: 18px; height: 18px; color: var(--accent); }
.hero-float-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ── PAGE HERO (city pages) ── */
.breadcrumb-bar {
    background: var(--bg-dark); border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0; margin-top: 68px;
}
.breadcrumb-bar ol {
    list-style: none; display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; margin: 0; padding: 0;
}
.breadcrumb-bar li { display: flex; align-items: center; }
.breadcrumb-bar li + li::before { content: '/'; margin-right: 8px; color: var(--text-muted); }
.breadcrumb-bar a { color: var(--text-muted); }
.breadcrumb-bar a:hover { color: var(--accent); }
.breadcrumb-bar span { color: var(--text-main); font-weight: 500; }

.page-banner {
    position: relative; padding: 70px 0 50px;
    background: var(--hero-grad); text-align: center;
}
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 90%, var(--accent-glow) 0%, transparent 55%);
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 {
    font-size: 2.5rem; font-weight: 800; margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.page-banner p {
    font-size: 1.05rem; color: var(--text-secondary);
    max-width: 560px; margin: 0 auto;
}

/* ── SECTIONS ── */
.sec { padding: 76px 0; }
.sec-dim { background: var(--bg-surface); }

.sec-head {
    text-align: center; margin-bottom: 48px;
}
.sec-head h2 {
    font-size: 2.1rem; font-weight: 800; letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.sec-head p {
    color: var(--text-muted); font-size: 1.02rem;
    max-width: 540px; margin: 0 auto;
}

/* ── SERVICES (2-col zigzag) ── */
.svc-zigzag { display: flex; flex-direction: column; gap: 28px; }

.svc-item {
    display: grid; grid-template-columns: 260px 1fr; gap: 28px;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg); padding: 24px; align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.svc-item:hover {
    border-color: var(--accent); box-shadow: var(--shadow-glow);
}
.svc-item:nth-child(even) { direction: rtl; }
.svc-item:nth-child(even) > * { direction: ltr; }

.svc-img {
    width: 100%; height: 180px; object-fit: cover;
    border-radius: var(--r-md);
}

.svc-body h3 {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--accent);
}
.svc-body p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ── SERVICES GRID (homepage) ── */
.svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

.svc-tile {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg); overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.svc-tile:hover {
    transform: translateY(-4px); border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.svc-tile-img { width: 100%; height: 190px; object-fit: cover; }

.svc-tile-body { padding: 22px; }
.svc-tile-body h3 {
    font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
}
.svc-tile-body h3 svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.svc-tile-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── STATE TILES (location index) ── */
.state-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.state-tile {
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--r-md); padding: 18px 12px;
    text-align: center; font-weight: 600; font-size: 0.95rem;
    color: var(--text-secondary);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.state-tile:hover {
    transform: translateY(-3px); border-color: var(--accent);
    box-shadow: var(--shadow-glow); color: var(--text-main);
}

/* ── CITY INTRO ── */
.city-intro { max-width: 780px; margin: 0 auto; }
.city-intro p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.8; }
.city-intro p:last-child { margin-bottom: 0; }

/* ── PROCESS (horizontal timeline) ── */
.timeline {
    display: flex; justify-content: space-between; position: relative;
    padding-top: 24px;
}
.timeline::before {
    content: ''; position: absolute; top: 38px; left: 10%; right: 10%;
    height: 2px; background: var(--border-subtle);
}
.tl-step {
    text-align: center; flex: 1; position: relative; z-index: 1;
}
.tl-num {
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: var(--accent-grad); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; color: #fff;
    border: 3px solid var(--bg-dark);
}
.tl-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.tl-step p { color: var(--text-muted); font-size: 0.88rem; max-width: 200px; margin: 0 auto; }

/* ── PERKS (icon-top cards) ── */
.perks-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.perk {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg); padding: 28px 20px; text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}
.perk:hover { transform: translateY(-4px); border-color: var(--accent); }

.perk-icon {
    width: 52px; height: 52px; margin: 0 auto 14px;
    background: rgba(232,149,46,0.12); border: 1px solid var(--border-accent);
    border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
}
.perk-icon svg { width: 26px; height: 26px; color: var(--accent); }

.perk h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.perk p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-block {
    border: 1px solid var(--border-subtle); border-radius: var(--r-md);
    margin-bottom: 10px; background: var(--bg-card);
    transition: border-color 0.25s;
}
.faq-block:hover { border-color: var(--border-accent); }

.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px; cursor: pointer; font-weight: 600;
    font-size: 0.98rem; color: var(--text-main); background: none;
    border: none; width: 100%; text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q svg {
    width: 18px; height: 18px; flex-shrink: 0;
    transition: transform 0.3s; color: var(--accent);
}
.faq-block.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 22px 16px; }
.faq-a p { color: var(--text-muted); line-height: 1.7; font-size: 0.92rem; }

/* ── CTA STRIP ── */
.cta-strip {
    padding: 70px 0;
    background: var(--hero-grad); position: relative;
}
.cta-strip::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--accent-glow) 0%, transparent 50%);
}
.cta-inner {
    position: relative; z-index: 2; text-align: center;
}
.cta-inner h2 {
    font-size: 2.1rem; font-weight: 800; margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.cta-inner p {
    color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 28px;
    max-width: 480px; margin-left: auto; margin-right: auto;
}

.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent-grad); color: #fff !important;
    padding: 16px 40px; border-radius: var(--r-full); font-weight: 700;
    font-size: 1.15rem; transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn svg { width: 20px; height: 20px; }
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--accent-glow);
    color: #fff !important;
}

/* ── ABOUT SECTION (homepage) ── */
.about-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px;
}
.about-stat-box {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--r-md); padding: 18px; text-align: center;
}
.about-stat-num {
    display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent);
}
.about-stat-lbl {
    font-size: 0.82rem; color: var(--text-muted); margin-top: 3px;
}

/* ── CONTACT ── */
.contact-cols-centered {
    display: flex; justify-content: center;
}
.contact-card {
    max-width: 520px; width: 100%;
}
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg); padding: 30px;
}
.contact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 22px; }

.c-item {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.c-item:last-child { margin-bottom: 0; }
.c-item-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(232,149,46,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.c-item-icon svg { width: 18px; height: 18px; color: var(--accent); }
.c-item-label { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 2px; }
.c-item-val { font-weight: 600; }

/* ── FOOTER ── */
.site-footer {
    background: #0f0c08; border-top: 1px solid var(--border-subtle);
    padding: 56px 0 0;
}
.footer-cols {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px; margin-bottom: 40px;
}

.footer-brand h3 {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.25rem; font-weight: 800; margin-bottom: 14px;
}
.footer-brand h3 .brand-icon { width: 30px; height: 30px; }
.footer-brand h3 .brand-icon svg { width: 18px; height: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }

.footer-ph {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-weight: 700; font-size: 1.05rem;
}
.footer-ph svg { width: 18px; height: 18px; }
.footer-ph:hover { color: var(--text-main); }

.site-footer h4 {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; margin-bottom: 16px; color: var(--accent);
}
.f-links { list-style: none; }
.f-links li { margin-bottom: 9px; }
.f-links a {
    color: var(--text-muted); font-size: 0.88rem;
    transition: color 0.2s, padding-left 0.2s;
}
.f-links a:hover { color: var(--text-main); padding-left: 5px; }

.legal-line {
    border-top: 1px solid var(--border-subtle); padding: 20px 0;
    margin-top: 8px;
}
.legal-line p {
    font-size: 0.78rem; color: rgba(138,125,107,0.5); line-height: 1.6;
}

.footer-end {
    text-align: center; padding: 18px 0;
    border-top: 1px solid var(--border-subtle);
}
.footer-end p { font-size: 0.82rem; color: var(--text-muted); }

/* ── MOBILE STICKY BAR ── */
.sticky-call {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999; background: var(--accent-dark);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
}
.sticky-call a {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 10px 16px; color: #fff;
    font-weight: 700; font-size: 0.9rem; letter-spacing: 0.3px;
}
.sticky-call a svg { width: 16px; height: 16px; }
.sticky-call a:hover { background: var(--accent); }

/* ── LEGAL PAGES ── */
.legal-body {
    max-width: 780px; margin: 0 auto; padding: 110px 0 70px;
}
.legal-body h1 { font-size: 2rem; font-weight: 800; margin-bottom: 28px; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 10px; color: var(--accent); }
.legal-body p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.legal-body ul { margin: 0 0 14px 22px; }
.legal-body li { color: var(--text-muted); margin-bottom: 7px; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-split .wrap { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-split h1 { font-size: 2.4rem; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .state-grid { grid-template-columns: repeat(3, 1fr); }
    .perks-row { grid-template-columns: repeat(2, 1fr); }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    .about-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .topnav { display: none; }
    .hamburger { display: block; }

    .topnav.mob-open {
        display: flex; flex-direction: column;
        position: absolute; top: 68px; left: 0; right: 0;
        background: var(--bg-dark); padding: 18px 28px;
        border-bottom: 1px solid var(--border-subtle);
        gap: 14px; z-index: 999;
    }
    .topnav.mob-open .topbar-phone { margin-top: 6px; align-self: flex-start; }

    .hero-split { padding: 120px 0 60px; }
    .hero-split h1 { font-size: 1.9rem; }

    .page-banner { padding: 100px 0 36px; }
    .page-banner h1 { font-size: 1.9rem; }

    .sec { padding: 52px 0; }
    .sec-head h2 { font-size: 1.6rem; }

    .svc-grid { grid-template-columns: 1fr; }
    .state-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-item { grid-template-columns: 1fr; }
    .svc-item:nth-child(even) { direction: ltr; }
    .perks-row { grid-template-columns: 1fr 1fr; }
    .timeline { flex-direction: column; gap: 28px; align-items: center; }
    .timeline::before { display: none; }

    .cta-inner h2 { font-size: 1.6rem; }
    .footer-cols { grid-template-columns: 1fr; gap: 24px; }

    .sticky-call { display: block; }
    body { padding-bottom: 48px; }
}

@media (max-width: 480px) {
    .hero-split h1 { font-size: 1.65rem; }
    .hero-metrics { flex-wrap: wrap; gap: 18px; }
    .perks-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .hero-btns { flex-direction: column; }
}