/* ── ROOT ── */
:root {
    --base:        #0b0d0b;
    --surface:     #111811;
    --surface-2:   #172117;
    --surface-3:   #1e2b1e;
    --primary:     #22c55e;
    --primary-dim: rgba(34,197,94,0.12);
    --primary-glow:rgba(34,197,94,0.25);
    --fg:          #f0f4f0;
    --fg-dim:      rgba(240,244,240,0.65);
    --fg-muted:    rgba(240,244,240,0.38);
    --line:        rgba(255,255,255,0.07);
    --line-s:      rgba(255,255,255,0.13);
    --font-d:      'Barlow Condensed', sans-serif;
    --font-b:      'Inter', sans-serif;
    --font-m:      'Fira Code', monospace;
    --r:           8px;
    --r-lg:        14px;
    --max-w:       1180px;
    --ease:        cubic-bezier(0.16,1,0.3,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--base);
    color: var(--fg);
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── LAYOUT ── */
.wrap {
    width: min(100%, var(--max-w));
    margin-inline: auto;
    padding-inline: 24px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #000;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: var(--r);
    transition: background 0.18s, transform 0.18s;
    white-space: nowrap;
}
.btn-primary:hover { background: #16a34a; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--line-s);
    color: var(--fg);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--r);
    transition: border-color 0.18s, color 0.18s;
    white-space: nowrap;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ── BADGE TAG ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-m);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid rgba(34,197,94,0.2);
    padding: 5px 12px;
    border-radius: 100px;
}

/* ── SECTION TITLES ── */
.sect-title {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--fg);
    margin-top: 14px;
}
.sect-title em { font-style: normal; color: var(--primary); }

.sect-sub {
    font-size: 1.05rem;
    color: var(--fg-dim);
    line-height: 1.75;
    max-width: 600px;
    margin-top: 16px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.revealed { opacity: 1; transform: none; }

/* ── HEADER ── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(11,13,11,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: padding 0.2s;
}
#site-header.scrolled { border-bottom-color: var(--line-s); }

.header-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-block: 18px;
}

/* ── LOGO ── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.logo-w1 {
    font-family: var(--font-m);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
}
.logo-w2 {
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fg);
}
.logo-w2 em { font-style: normal; color: var(--primary); }
.site-logo--sm .logo-mark { width: 34px; height: 34px; }
.site-logo--sm .logo-w2 { font-size: 0.92rem; }

/* ── NAV ── */
nav { flex: 1; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fg-dim);
    padding: 7px 13px;
    border-radius: var(--r);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: auto;
}
.hdr-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--fg-dim);
    transition: color 0.15s;
}
.hdr-phone:hover { color: var(--primary); }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 6px;
    border-radius: var(--r);
    border: 1px solid var(--line-s);
}
.hamburger span {
    display: block;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.22s, opacity 0.22s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
#mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--base);
    z-index: 850;
    overflow-y: auto;
}
#mobile-nav.is-open { display: block; }
.mob-nav-inner {
    padding: 80px 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mob-nav-inner a {
    font-family: var(--font-d);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--fg-dim);
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.15s;
}
.mob-nav-inner a:hover { color: var(--primary); }
.mob-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary) !important;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 8px;
}
.mob-cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
    font-family: var(--font-d) !important;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: none !important;
    color: #000 !important;
}

/* ── TICKER ── */
#ticker {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 12px 0;
}
.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-right: 60px;
    font-family: var(--font-m);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fg-muted);
}
.ticker-item strong { color: var(--primary); }
.ticker-dot { width: 4px; height: 4px; background: var(--primary); border-radius: 50%; opacity: 0.5; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
#hero {
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero-title {
    font-family: var(--font-d);
    font-weight: 700;
    font-size: clamp(3rem, 6.5vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 26px;
}
.hero-title em { font-style: normal; color: var(--primary); display: block; }
.hero-sub {
    font-size: 1.1rem;
    color: var(--fg-dim);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 38px;
}
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}
.hero-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-2);
    border: 1.5px solid var(--line-s);
    border-radius: var(--r);
    padding: 12px 22px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fg);
    transition: border-color 0.18s, color 0.18s;
}
.hero-phone-cta:hover { border-color: var(--primary); color: var(--primary); }
.hero-phone-icon {
    width: 34px;
    height: 34px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    animation: ring-pulse 2.4s ease-in-out infinite;
}
@keyframes ring-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50%       { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}
.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--fg-muted);
}
.hero-trust-item svg { color: var(--primary); }
.hero-trust-item strong { color: var(--fg); }

/* ── LEADS DASHBOARD (hero visual) ── */
.leads-dash {
    background: var(--surface);
    border: 1px solid var(--line-s);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,197,94,0.08);
}
.dash-header {
    background: var(--surface-2);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}
.dash-title {
    font-family: var(--font-m);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fg-muted);
}
.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-m);
    font-size: 0.68rem;
    color: var(--primary);
}
.dash-live-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: live-blink 1.6s ease-in-out infinite;
}
@keyframes live-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.dash-count {
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
}
.dash-count-num {
    font-family: var(--font-d);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
}
.dash-count-label {
    font-size: 0.8rem;
    color: var(--fg-muted);
    margin-top: 4px;
}

.dash-leads { padding: 10px 0; }
.dash-lead {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    animation: lead-slide-in 0.4s var(--ease) both;
}
.dash-lead:last-child { border-bottom: none; }
@keyframes lead-slide-in { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: none; } }
.dash-lead:nth-child(1) { animation-delay: 0.1s; }
.dash-lead:nth-child(2) { animation-delay: 0.35s; }
.dash-lead:nth-child(3) { animation-delay: 0.6s; }
.dash-lead:nth-child(4) { animation-delay: 0.85s; }

.lead-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-dim);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.lead-info { flex: 1; min-width: 0; }
.lead-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lead-trade {
    font-size: 0.78rem;
    color: var(--fg-muted);
    margin-top: 1px;
}
.lead-time {
    font-family: var(--font-m);
    font-size: 0.68rem;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.dash-footer {
    background: var(--surface-2);
    padding: 12px 18px;
    display: flex;
    gap: 14px;
}
.dash-stat {
    flex: 1;
    text-align: center;
}
.dash-stat-val {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: 0.02em;
}
.dash-stat-val em { font-style: normal; color: var(--primary); }
.dash-stat-label {
    font-size: 0.72rem;
    color: var(--fg-muted);
    margin-top: 2px;
}

/* ── STATS STRIP ── */
#stats {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.stat-cell {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-d);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
}
.stat-label {
    font-size: 0.82rem;
    color: var(--fg-dim);
    margin-top: 8px;
    line-height: 1.4;
}

/* ── SERVICES ── */
#services { padding: 100px 0; }
.sect-head { margin-bottom: 56px; }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.svc-card {
    background: var(--surface);
    padding: 44px 40px;
    transition: background 0.2s;
    position: relative;
}
.svc-card:hover { background: var(--surface-2); }
.svc-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-dim);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 22px;
}
.svc-plain-name {
    font-family: var(--font-d);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--fg);
    margin-bottom: 6px;
    line-height: 1.1;
}
.svc-tech-name {
    font-family: var(--font-m);
    font-size: 0.68rem;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.svc-desc {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.75;
    margin-bottom: 20px;
}
.svc-proof {
    font-family: var(--font-d);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ── HOW IT WORKS ── */
#how-it-works {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: var(--line);
    margin-top: 56px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}
.step-card {
    background: var(--surface-2);
    padding: 44px 34px;
    position: relative;
}
.step-num {
    font-family: var(--font-d);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(34,197,94,0.1);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.step-title {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--fg);
    margin-bottom: 12px;
    line-height: 1.1;
}
.step-desc {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.75;
}

/* ── TRADES ── */
#trades { padding: 100px 0; }
.trades-intro { margin-bottom: 50px; }
.trades-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.trade-cell {
    background: var(--surface);
    padding: 16px 18px;
    font-size: 0.875rem;
    color: var(--fg-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s, color 0.15s;
    cursor: default;
}
.trade-cell:hover { background: var(--surface-2); color: var(--fg); }
.trade-cell::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.15s;
}
.trade-cell:hover::before { opacity: 1; }
.trades-note {
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--fg-muted);
    text-align: center;
}
.trades-note a { color: var(--primary); }

/* ── TESTIMONIALS ── */
#reviews {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 56px;
}
.review-card {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(34,197,94,0.25); }
.review-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
}
.review-text {
    font-size: 0.95rem;
    color: var(--fg-dim);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}
.review-text strong { color: var(--primary); font-style: normal; }
.review-meta { border-top: 1px solid var(--line); padding-top: 16px; }
.review-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--fg);
}
.review-trade {
    font-family: var(--font-m);
    font-size: 0.72rem;
    color: var(--fg-muted);
    margin-top: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── FAQ ── */
#faq { padding: 100px 0; }
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 56px;
}
.faq-sticky {
    position: sticky;
    top: 100px;
}
.faq-cta-card {
    background: var(--primary);
    border-radius: var(--r-lg);
    padding: 34px 30px;
    color: #000;
}
.faq-cta-card h3 {
    font-family: var(--font-d);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    line-height: 1.05;
}
.faq-cta-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; opacity: 0.8; }
.faq-cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 12px;
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 22px;
    border-radius: var(--r);
    width: 100%;
    justify-content: center;
    transition: opacity 0.15s;
}
.btn-dark:hover { opacity: 0.85; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--fg);
    gap: 16px;
    transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line-s);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--fg-muted);
    transition: background 0.15s, color 0.15s, transform 0.2s;
}
.faq-item[open] .faq-plus { background: var(--primary); color: #000; border-color: var(--primary); transform: rotate(45deg); }
.faq-body {
    padding: 0 0 22px;
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.8;
}
.faq-body a { color: var(--primary); text-decoration: underline; }

/* ── CTA BAND ── */
#cta-band {
    background: var(--primary);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
#cta-band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.cta-band-inner {
    text-align: center;
    position: relative;
}
.cta-band-inner h2 {
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #000;
    line-height: 1.0;
    margin-bottom: 14px;
}
.cta-band-inner p {
    font-size: 1.05rem;
    color: rgba(0,0,0,0.7);
    margin-bottom: 36px;
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 36px;
}
.cta-band-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: var(--r);
    transition: opacity 0.15s, transform 0.15s;
}
.btn-cta-dark:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(0,0,0,0.3);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: var(--r);
    transition: border-color 0.15s;
}
.btn-cta-outline:hover { border-color: #000; }

/* ── CONTACT ── */
#contact { padding: 100px 0; }
.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 56px;
}
.contact-info h3 {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fg);
    margin-bottom: 14px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.93rem;
    color: var(--fg-dim);
}
.contact-detail svg { color: var(--primary); flex-shrink: 0; }
.contact-detail a { color: var(--fg); font-weight: 600; transition: color 0.15s; }
.contact-detail a:hover { color: var(--primary); }
.contact-info-note {
    margin-top: 22px;
    font-size: 0.85rem;
    color: var(--fg-muted);
    line-height: 1.6;
}

.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px 36px;
}
.contact-form-card h3 {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fg);
    margin-bottom: 28px;
}
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 7px; }
.f-group.f-full { grid-column: 1 / -1; }
.f-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fg-dim);
    letter-spacing: 0.04em;
}
.f-group input,
.f-group select,
.f-group textarea {
    background: var(--surface-2);
    border: 1px solid var(--line-s);
    border-radius: var(--r);
    padding: 12px 14px;
    font-family: var(--font-b);
    font-size: 0.93rem;
    color: var(--fg);
    width: 100%;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: var(--primary); }
.f-group textarea { resize: vertical; min-height: 110px; }
.f-group select option { background: var(--surface-2); }
.f-trap { display: none !important; }
.f-submit {
    margin-top: 20px;
    width: 100%;
    background: var(--primary);
    color: #000;
    font-family: var(--font-d);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 16px;
    border-radius: var(--r);
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
}
.f-submit:hover { background: #16a34a; transform: translateY(-1px); }
.f-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
#form-msg {
    margin-top: 14px;
    font-size: 0.88rem;
    padding: 12px 14px;
    border-radius: var(--r);
    display: none;
}
#form-msg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--primary); display: block; }
#form-msg.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; display: block; }

/* ── FOOTER ── */
#site-footer {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding-top: 72px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}
.footer-brand .site-logo { margin-bottom: 20px; }
.footer-desc {
    font-size: 0.88rem;
    color: var(--fg-muted);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 300px;
}
.footer-contact-line {
    font-size: 0.88rem;
    margin-bottom: 6px;
}
.footer-contact-line a { color: var(--fg-dim); transition: color 0.15s; }
.footer-contact-line a:hover { color: var(--primary); }
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    border: 1px solid var(--line-s);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fg-muted);
    transition: color 0.15s, border-color 0.15s;
}
.footer-socials a:hover { color: var(--primary); border-color: rgba(34,197,94,0.3); }
.footer-col h4 {
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--fg);
    margin-bottom: 18px;
}
.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--fg-muted);
    padding: 5px 0;
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--primary); }
.footer-contact-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--fg-muted);
    margin-bottom: 10px;
}
.footer-contact-detail svg { color: var(--primary); flex-shrink: 0; }
.footer-contact-detail a { color: var(--fg-dim); transition: color 0.15s; }
.footer-contact-detail a:hover { color: var(--primary); }
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px 20px;
    border-radius: var(--r);
    margin-top: 10px;
    transition: background 0.15s;
}
.footer-cta-btn:hover { background: #16a34a; }
.footer-base {
    border-top: 1px solid var(--line);
    padding: 20px 0;
}
.footer-base .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--fg-muted);
    flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--fg-muted); transition: color 0.15s; }
.footer-legal a:hover { color: var(--fg); }

/* ── LEGAL PAGES ── */
.legal-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.legal-label {
    font-family: var(--font-m);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}
.legal-hero h1 {
    font-family: var(--font-d);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--fg);
    margin-bottom: 18px;
    line-height: 1.05;
}
.legal-meta { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 16px; }
.legal-intro { font-size: 1rem; color: var(--fg-dim); line-height: 1.75; max-width: 640px; }
.legal-intro a { color: var(--primary); text-decoration: underline; }
.legal-body { padding: 64px 0 96px; }
.legal-sections { display: flex; flex-direction: column; gap: 40px; max-width: 800px; }
.legal-section h2 {
    font-family: var(--font-d);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fg);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}
.legal-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fg);
    margin: 16px 0 8px;
}
.legal-section p {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-section ul {
    margin: 8px 0 12px 18px;
    list-style: disc;
}
.legal-section ul li {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.75;
    margin-bottom: 6px;
}
.legal-section a { color: var(--primary); text-decoration: underline; }
.legal-section strong { color: var(--fg); font-weight: 600; }

/* ── BREAKPOINTS ── */
@media (max-width: 1040px) {
    .hero-grid { grid-template-columns: 1fr; }
    .leads-dash { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sticky { position: static; }
    .trades-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 860px) {
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(3) { border-right: 1px solid var(--line); }
    .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-top: 1px solid var(--line); }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .svc-grid { grid-template-columns: 1fr; }
    .trades-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 760px) {
    nav, .header-actions { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: clamp(2.6rem, 8vw, 3.8rem); }
    .f-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .trades-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
    #hero { padding: 56px 0 50px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .trades-grid { grid-template-columns: repeat(2,1fr); }
    .cta-band-actions { flex-direction: column; }
    .stats-row { grid-template-columns: 1fr; }
    .stat-cell { border-right: none; border-bottom: 1px solid var(--line); }
    .stat-cell:last-child { border-bottom: none; }
}

/* ── SEO CONTENT BLOCK ── */
#seo-content {
    padding: 100px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.seo-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}
.seo-sticky {
    position: sticky;
    top: 100px;
}
.seo-sidebar-card {
    background: var(--surface-2);
    border: 1px solid var(--line-s);
    border-radius: var(--r-lg);
    padding: 30px 26px;
}
.seo-sidebar-label {
    font-family: var(--font-m);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.seo-sidebar-heading {
    font-family: var(--font-d);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--fg);
    margin-bottom: 12px;
    line-height: 1.05;
}
.seo-sidebar-copy {
    font-size: 0.875rem;
    color: var(--fg-dim);
    line-height: 1.65;
    margin-bottom: 20px;
}
.seo-sidebar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fg);
    margin-bottom: 14px;
    transition: color 0.15s;
}
.seo-sidebar-phone svg { color: var(--primary); flex-shrink: 0; }
.seo-sidebar-phone:hover { color: var(--primary); }
.seo-sidebar-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}
.seo-content-col { min-width: 0; }
.seo-content-col .badge { display: inline-flex; margin-bottom: 16px; }
.seo-main-h1 {
    font-family: var(--font-d);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--fg);
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 14px;
}
.seo-intro {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}
.seo-intro p {
    font-size: 0.95rem;
    color: var(--fg-dim);
    line-height: 1.85;
    margin-bottom: 14px;
}
.seo-intro p:last-child { margin-bottom: 0; }
.seo-first-block {
    margin-bottom: 8px;
}
.seo-first-block h2 {
    font-family: var(--font-d);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--fg);
    line-height: 1.25;
    margin-bottom: 18px;
}
.seo-first-block p {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.85;
    margin-bottom: 12px;
}
.seo-first-block p:last-child { margin-bottom: 0; }
#seo-content .faq-item summary {
    align-items: flex-start;
    gap: 14px;
}
#seo-content .faq-item summary h2 {
    font-family: var(--font-b) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    flex: 1;
}
#seo-content .faq-item summary:hover h2 { color: var(--primary); }
.seo-body { padding-top: 2px; }
.seo-body p {
    font-size: 0.93rem;
    color: var(--fg-dim);
    line-height: 1.85;
    margin-bottom: 12px;
}
.seo-body p:last-child { margin-bottom: 0; }
.seo-body h3 {
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--fg);
    margin: 20px 0 10px;
    line-height: 1.2;
    padding: 0;
}
.seo-body a { color: var(--primary); text-decoration: underline; }
@media (max-width: 1040px) {
    .seo-layout { grid-template-columns: 1fr; }
    .seo-sticky { position: static; }
}
