/* ================================================================
   Speed Wreckers – Shared Stylesheet
   ================================================================ */

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

:root {
    --bg:           #0c0c0c;
    --bg-1:         #141414;
    --bg-2:         #1b1b1b;
    --bg-3:         #252525;
    --accent:       #c8f000;
    --accent-dim:   rgba(200,240,0,0.07);
    --accent-border:rgba(200,240,0,0.2);
    --accent-glow:  rgba(200,240,0,0.32);
    --text:         #f0f0f0;
    --text-60:      rgba(240,240,240,0.75);
    --text-40:      rgba(240,240,240,0.55);
    --text-20:      rgba(240,240,240,0.38);
    --border:       rgba(255,255,255,0.07);
    --border-mid:   rgba(255,255,255,0.12);
    --f-display:    'Barlow Condensed', sans-serif;
    --f-body:       'Outfit', sans-serif;
    --max-w:        1200px;
    --r:            8px;
    --r-lg:         14px;
}

html {
    scroll-behavior: smooth;
    /* Prevent layout shift from scrollbar appearing */
    scrollbar-gutter: stable;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent pull-to-refresh interfering with scroll */
    overscroll-behavior-y: none;
    /* Prevent iOS tap highlight flashes */
    -webkit-tap-highlight-color: transparent;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; }
ul, ol { list-style: none; }

/* Prevent iOS from zooming on form focus (needs 16px min) */
input, select, textarea {
    font-size: max(16px, 1em);
}

/* Reduce tap delay on all interactive elements */
a, button, [role="button"], input, select, label {
    touch-action: manipulation;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .ticker-track { animation: none; }
    .hero-slide { transition: none; }
    html { scroll-behavior: auto; }
}

/* ── Layout ─────────────────────────────────────── */
.wrap  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sec   { padding: 88px 24px; }
.sec-inner { max-width: var(--max-w); margin: 0 auto; }

/* Improve rendering performance for off-screen sections */
.sec { contain: layout style; }

.sec-dark   { background: var(--bg); }
.sec-mid    { background: var(--bg-1); }
.sec-raised { background: var(--bg-2); }
.bt         { border-top: 1px solid var(--border); }
.bt-accent  { border-top: 1px solid rgba(200,240,0,0.1); }

/* ── Typography ─────────────────────────────────── */
.eyebrow {
    font-family: var(--f-body);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px; display: block;
}

.sec-title {
    font-family: var(--f-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900; text-transform: uppercase;
    line-height: 0.93; letter-spacing: -0.01em;
    margin-bottom: 16px;
}
.sec-title .hi { color: var(--accent); }
.sec-body {
    font-size: 17px; color: var(--text-60);
    max-width: 520px; line-height: 1.65;
}
.sec-hdr { margin-bottom: 52px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 26px; border-radius: var(--r);
    font-family: var(--f-body); font-size: 15px; font-weight: 600;
    text-decoration: none; border: none; white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s, background 0.2s, border-color 0.2s;
    cursor: pointer; letter-spacing: 0.01em; line-height: 1;
    /* Minimum touch target size */
    min-height: 44px;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-accent { background: var(--accent); color: #0c0c0c; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--accent-glow); }
.btn-accent:active { transform: translateY(0); box-shadow: none; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-mid); }
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: var(--bg-2); }
.btn-ghost  { background: var(--bg-2); color: var(--text); }
.btn-ghost:hover { background: var(--bg-3); }
.btn-dark   { background: #0c0c0c; color: var(--accent); }
.btn-dark:hover { background: #080808; transform: translateY(-1px); }
.btn-lg { padding: 17px 34px; font-size: 17px; font-weight: 700; }
.btn-lg svg { width: 19px; height: 19px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(12,12,12,0.96);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s;
}
.nav.scrolled { border-color: var(--border-mid); }
.nav-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.85; }

.nav-logo-circle {
    width: 50px; height: 50px; background: #ffffff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 14px rgba(0,0,0,0.5), 0 0 0 2px rgba(200,240,0,0.22);
    padding: 6px; flex-shrink: 0; transition: box-shadow 0.2s;
}
.nav-logo-circle img { width: 38px; height: 38px; object-fit: contain; transition: none; }
.nav-logo:hover .nav-logo-circle { box-shadow: 0 4px 20px rgba(0,0,0,0.55), 0 0 0 3px rgba(200,240,0,0.38); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
    font-family: var(--f-body); font-size: 14px; font-weight: 500;
    color: var(--text-60); text-decoration: none; padding: 8px 14px;
    border-radius: 6px; transition: color 0.2s, background 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-2); }

.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-call {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #0c0c0c;
    padding: 10px 18px; border-radius: var(--r);
    font-family: var(--f-body); font-size: 14px; font-weight: 700;
    text-decoration: none; white-space: nowrap;
    transition: opacity 0.2s, transform 0.2s;
}
.nav-call:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-call svg { width: 15px; height: 15px; }

.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px; flex-shrink: 0;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text); transition: all 0.28s; border-radius: 2px;
}

/* ── Mobile Menu ────────────────────────────────── */
.mobile-menu {
    display: none; position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--bg); z-index: 99;
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    overflow-y: auto;
    /* Prevent body scroll when menu is open */
    overscroll-behavior: contain;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--f-display); font-size: 36px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: var(--text-60); text-decoration: none; padding: 10px 24px;
    transition: color 0.2s;
    min-height: 60px; display: flex; align-items: center;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mob-call {
    margin-top: 16px; background: var(--accent); color: #0c0c0c;
    padding: 15px 36px; border-radius: var(--r); font-size: 21px;
    display: flex; align-items: center; gap: 10px;
    min-height: 56px;
}
.mobile-menu .mob-call svg { width: 20px; height: 20px; }
.mobile-menu .mob-call:hover { color: #0c0c0c; opacity: 0.9; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100svh; padding-top: 72px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
    /* Reserve height to reduce CLS */
    min-height: min(100svh, 700px);
}
@media (min-height: 600px) {
    .hero { min-height: 100svh; }
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.6s ease;
    will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        112deg,
        rgba(12,12,12,0.93) 0%,
        rgba(12,12,12,0.76) 42%,
        rgba(12,12,12,0.42) 68%,
        rgba(12,12,12,0.18) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    max-width: var(--max-w); margin: 0 auto;
    padding: 80px 24px 104px; width: 100%;
}
.hero-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    margin-bottom: 28px; animation: fadeUp 0.55s ease both;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.05em;
}
.hero-tag svg { width: 12px; height: 12px; }
.hero-pill {
    background: var(--accent); color: #0c0c0c;
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
h1.hero-title {
    font-family: var(--f-display);
    font-size: clamp(50px, 8.5vw, 104px);
    font-weight: 900; text-transform: uppercase; line-height: 0.91;
    letter-spacing: -0.02em; margin-bottom: 24px;
    animation: fadeUp 0.55s ease 0.1s both;
}
.hero-title .hi { color: var(--accent); }
.hero-lead {
    font-size: clamp(16px, 2vw, 19px); color: var(--text-60);
    max-width: 490px; margin-bottom: 36px; line-height: 1.6;
    animation: fadeUp 0.55s ease 0.2s both;
}
.hero-actions {
    display: flex; flex-wrap: wrap; gap: 12px;
    animation: fadeUp 0.55s ease 0.3s both; margin-bottom: 36px;
}
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 22px;
    animation: fadeUp 0.55s ease 0.4s both;
}
.trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--text-40);
}
.trust-item svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

.hero-dots {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
    /* Visible size */
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.22); border: none;
    /* Invisible touch padding for 44px target */
    padding: 0;
    position: relative;
    transition: all 0.3s; cursor: pointer;
}
.hero-dot::before {
    content: ''; position: absolute;
    inset: -19px;
}
.hero-dot.active { background: var(--accent); transform: scale(1.35); }

/* ── Call Strip ─────────────────────────────────── */
.call-strip { background: var(--accent); }
.call-strip-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.call-strip-text {
    font-family: var(--f-display); font-size: 20px; font-weight: 800;
    color: #0c0c0c; text-transform: uppercase; letter-spacing: 0.03em;
}
.call-strip-text small {
    font-family: var(--f-body); font-size: 13px; font-weight: 500;
    text-transform: none; letter-spacing: 0; opacity: 0.55; margin-left: 8px;
}
.call-strip-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #0c0c0c; color: var(--accent);
    padding: 11px 22px; border-radius: var(--r);
    font-family: var(--f-body); font-size: 14px; font-weight: 700;
    text-decoration: none; white-space: nowrap; transition: opacity 0.2s;
}
.call-strip-btn:hover { opacity: 0.88; }
.call-strip-btn svg { width: 15px; height: 15px; }

/* ── Ticker ─────────────────────────────────────── */
.ticker { background: var(--bg-1); border-top: 1px solid var(--border); overflow: hidden; padding: 13px 0; }
.ticker-track {
    display: flex; white-space: nowrap;
    animation: ticker 32s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.ticker-item {
    display: inline-flex; align-items: center; gap: 18px; padding-right: 40px;
    font-family: var(--f-display); font-size: 13px; font-weight: 700;
    color: var(--text-40); text-transform: uppercase; letter-spacing: 0.12em;
}
.ticker-sep { width: 3px; height: 3px; background: rgba(200,240,0,0.45); border-radius: 50%; flex-shrink: 0; }

/* ── Steps ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.step {
    background: var(--bg-1); padding: 48px 32px;
    position: relative; overflow: hidden; transition: background 0.2s;
}
.step:hover { background: var(--bg-2); }
.step-num {
    position: absolute; top: 12px; right: 18px;
    font-family: var(--f-display); font-size: 104px; font-weight: 900;
    color: rgba(200,240,0,0.04); line-height: 1; user-select: none; letter-spacing: -0.04em;
}
.step-icon {
    width: 48px; height: 48px; background: var(--accent-dim);
    border-radius: var(--r); display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 20px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-title {
    font-family: var(--f-display); font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px;
}
.step-body { font-size: 15px; color: var(--text-60); line-height: 1.75; }

/* ── Price Banner ─────────────────────────────── */
.price-banner {
    background: linear-gradient(90deg, rgba(200,240,0,0.08) 0%, rgba(200,240,0,0.02) 100%);
    border: 1px solid var(--accent-border); border-radius: var(--r-lg);
    padding: 24px 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 44px;
}
.price-num {
    font-family: var(--f-display); font-size: 58px; font-weight: 900;
    color: var(--accent); line-height: 1; flex-shrink: 0;
}
.price-div { width: 1px; height: 52px; background: var(--accent-border); flex-shrink: 0; }
.price-label strong {
    display: block; font-family: var(--f-display); font-size: 21px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.price-label span { font-size: 14px; color: var(--text-40); }
.price-banner .btn { flex-shrink: 0; margin-left: auto; }

/* ── Benefit Cards ────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 32px; }
.b-card {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 26px 22px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.b-card:hover { border-color: var(--accent-border); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.3); }
.b-icon {
    width: 44px; height: 44px; background: var(--accent-dim);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 16px;
}
.b-icon svg { width: 22px; height: 22px; }
.b-title {
    font-family: var(--f-display); font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 8px;
}
.b-body { font-size: 15px; color: var(--text-60); line-height: 1.72; }

/* ── CTA Bar ─────────────────────────────────── */
.cta-bar {
    background: var(--accent); border-radius: var(--r-lg); padding: 24px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cta-bar-text {
    font-family: var(--f-display); font-size: 24px; font-weight: 800;
    color: #0c0c0c; text-transform: uppercase; letter-spacing: 0.02em;
}
.cta-bar .btn-dark { background: #0c0c0c; color: var(--accent); }
.cta-bar .btn-dark:hover { background: #080808; }

/* ── Stats ───────────────────────────────────── */
.stats-bar { display: flex; flex-wrap: wrap; gap: 2px; margin-bottom: 44px; }
.stat { flex: 1; min-width: 140px; background: var(--bg-1); padding: 24px 20px; text-align: center; }
.stat-num {
    font-family: var(--f-display); font-size: 42px; font-weight: 900;
    color: var(--accent); line-height: 1; display: block;
}
.stat-label { font-size: 11px; color: var(--text-40); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 5px; }

/* ── Reviews ─────────────────────────────────── */
.reviews-scroll {
    display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px;
    scrollbar-width: thin; scrollbar-color: rgba(200,240,0,0.12) transparent;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
}
.review-card {
    background: var(--bg-1); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 26px; min-width: 285px; max-width: 315px;
    flex-shrink: 0; transition: border-color 0.2s;
    scroll-snap-align: start;
}
.review-card:hover { border-color: var(--border-mid); }
.review-stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--text-60); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-av {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(200,240,0,0.1); display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 13px; font-weight: 800; color: var(--accent); flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-loc  { font-size: 12px; color: var(--text-40); }
.google-badge { display: flex; align-items: center; gap: 4px; margin-left: auto; font-size: 11px; color: var(--text-20); }

/* ── Chips ───────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.chip {
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    color: var(--accent); padding: 8px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.02em; transition: background 0.2s;
    min-height: 36px; display: flex; align-items: center;
}
.chip:hover { background: rgba(200,240,0,0.12); }

/* ── Map ─────────────────────────────────────── */
.map-frame {
    border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--border); aspect-ratio: 4/3;
    background: var(--bg-2); position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── About Visual ────────────────────────────── */
.about-visual {
    background: var(--bg-1); border: 1px solid var(--accent-border);
    border-radius: var(--r-lg); padding: 48px 36px; text-align: center;
}
.about-big {
    font-family: var(--f-display); font-size: 88px; font-weight: 900;
    color: var(--accent); line-height: 1; display: block;
}
.about-big-sub { font-size: 11px; color: var(--text-40); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.about-div { width: 1px; height: 32px; background: var(--accent-border); margin: 22px auto; }

/* ── Trust Chips ─────────────────────────────── */
.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.trust-chip {
    display: flex; align-items: center; gap: 7px;
    background: var(--accent-dim); border: 1px solid var(--accent-border);
    border-radius: 6px; padding: 7px 13px; font-size: 13px; font-weight: 600; color: var(--accent);
}
.trust-chip svg { width: 13px; height: 13px; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--bg-2); border-radius: var(--r); overflow: hidden; }
.faq-q {
    width: 100%; background: none; border: none; padding: 20px 24px;
    text-align: left; color: var(--text);
    font-family: var(--f-display); font-size: 19px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: background 0.2s;
    min-height: 64px;
}
.faq-q:hover { background: rgba(200,240,0,0.03); }
.faq-q.open { color: var(--accent); }
.faq-q-icon {
    width: 26px; height: 26px; background: var(--accent-dim); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--accent); transition: transform 0.3s;
}
.faq-q-icon svg { width: 13px; height: 13px; }
.faq-q.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-a.open { max-height: 240px; padding: 0 24px 20px; }
.faq-a p { font-size: 15px; color: var(--text-60); line-height: 1.8; }

/* ── Contact Card ────────────────────────────── */
.contact-card {
    background: var(--bg-1); border: 1px solid var(--accent-border);
    border-radius: var(--r-lg); padding: 40px; text-align: center;
}
.contact-num {
    font-family: var(--f-display); font-size: 68px; font-weight: 900;
    color: var(--accent); line-height: 0.9; letter-spacing: -0.02em;
}
.contact-rows { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-row-icon {
    width: 42px; height: 42px; background: var(--bg-2); border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0;
}
.contact-row-icon svg { width: 19px; height: 19px; }
.contact-row-lbl { font-size: 11px; font-weight: 600; color: var(--text-40); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-row-val { font-size: 15px; color: var(--text-60); line-height: 1.5; }
.contact-row-val a { color: var(--text-60); text-decoration: none; transition: color 0.2s; }
.contact-row-val a:hover { color: var(--accent); }

/* ── Phone CTA ───────────────────────────────── */
.phone-cta {
    display: flex; align-items: center; gap: 16px;
    background: var(--accent); border-radius: var(--r-lg); padding: 22px 26px;
    text-decoration: none; margin-bottom: 24px; transition: transform 0.2s, box-shadow 0.2s;
}
.phone-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--accent-glow); }
.phone-cta-icon {
    width: 44px; height: 44px; background: rgba(0,0,0,0.12);
    border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.phone-cta-icon svg { width: 22px; height: 22px; color: #0c0c0c; }
.phone-cta-strong { display: block; font-family: var(--f-display); font-size: 30px; font-weight: 900; color: #0c0c0c; text-transform: uppercase; line-height: 1; }
.phone-cta-sub { font-size: 11px; color: rgba(0,0,0,0.5); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-top: 3px; }

/* ── Form ────────────────────────────────────── */
.form-box {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 32px;
}
.form-title {
    font-family: var(--f-display); font-size: 17px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-40);
    margin-bottom: 22px; display: block;
}
.form-group { margin-bottom: 15px; }
.form-label {
    display: block; font-size: 11px; font-weight: 600;
    color: var(--text-40); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px;
}
.form-input, .form-select {
    width: 100%; background: var(--bg-3); border: 1px solid var(--border);
    border-radius: var(--r); padding: 12px 14px; color: var(--text);
    font-family: var(--f-body); font-size: 16px; outline: none;
    transition: border-color 0.2s; -webkit-appearance: none;
    /* Prevent iOS zoom on focus (requires 16px) */
    min-height: 48px;
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-select option { background: var(--bg-2); }
.form-input:focus, .form-select:focus { border-color: rgba(200,240,0,0.45); }
.form-input::placeholder { color: rgba(255,255,255,0.18); }
.form-microcopy { font-size: 12px; color: var(--text-20); text-align: center; margin-top: 12px; line-height: 1.65; }
.form-microcopy a { color: var(--accent); text-decoration: none; }
.form-success {
    text-align: center; padding: 32px;
    font-family: var(--f-display); font-size: 24px; font-weight: 800;
    text-transform: uppercase; color: var(--accent); display: none;
}

/* ── Quote Points ─────────────────────────────── */
.qpoints { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.qpoint { display: flex; align-items: flex-start; gap: 14px; }
.qpoint-icon {
    width: 38px; height: 38px; background: var(--accent-dim);
    border-radius: var(--r); display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0;
}
.qpoint-icon svg { width: 18px; height: 18px; }
.qpoint-strong { font-weight: 600; font-size: 15px; color: var(--text); display: block; }
.qpoint-sub { font-size: 13px; color: var(--text-40); margin-top: 2px; }

/* ── Divider ─────────────────────────────────── */
.divider {
    display: flex; align-items: center; gap: 14px; margin: 20px 0;
    font-size: 11px; color: var(--text-20); text-transform: uppercase; letter-spacing: 0.1em;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── Grids ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.grid-align { align-items: center; }

/* ── Maps Btn ────────────────────────────────── */
.maps-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--accent);
    border: 1px solid var(--accent-border); padding: 11px 18px; border-radius: var(--r);
    font-family: var(--f-body); font-size: 14px; font-weight: 600;
    text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.maps-btn:hover { background: var(--accent-dim); border-color: rgba(200,240,0,0.4); }
.maps-btn svg { width: 15px; height: 15px; }

/* ── Page Hero (inner pages) ─────────────────── */
.page-hero {
    padding: 144px 24px 72px; background-color: var(--bg);
    background-size: cover; background-position: center;
    border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(
        135deg,
        rgba(12,12,12,0.92) 0%,
        rgba(12,12,12,0.76) 55%,
        rgba(12,12,12,0.84) 100%
    );
    pointer-events: none;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(38px, 6.5vw, 68px);
    font-weight: 900; text-transform: uppercase; line-height: 0.92;
    margin-bottom: 16px; letter-spacing: -0.01em;
}
.page-hero h1 .hi { color: var(--accent); }
.page-hero p { font-size: 18px; color: var(--text-60); max-width: 500px; line-height: 1.65; }

/* ── Breadcrumb ──────────────────────────────── */
.breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-40); margin-bottom: 22px;
}
.breadcrumb a { color: var(--text-40); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }

/* ── Service Card ────────────────────────────── */
.svc-card {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 32px;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { border-color: var(--accent-border); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.3); }
.svc-card-icon {
    width: 52px; height: 52px; background: var(--accent-dim);
    border-radius: var(--r); display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 20px;
}
.svc-card-icon svg { width: 26px; height: 26px; }
.svc-card-title {
    font-family: var(--f-display); font-size: 22px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px;
}
.svc-card-body { font-size: 15px; color: var(--text-60); line-height: 1.72; margin-bottom: 18px; }
.svc-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none;
    transition: gap 0.2s;
}
.svc-card-link:hover { gap: 10px; }
.svc-card-link svg { width: 14px; height: 14px; }

/* ── Footer ──────────────────────────────────── */
footer {
    background: #080808; border-top: 1px solid rgba(200,240,0,0.08);
    padding: 56px 24px 32px;
}
.footer-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
}
.footer-logo {
    width: 88px; height: 88px; background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 4px rgba(200,240,0,0.18), 0 8px 32px rgba(0,0,0,0.5); padding: 8px;
}
.footer-logo img { width: 68px; height: 68px; object-fit: contain; }
.footer-nap { font-size: 14px; color: var(--text-40); line-height: 2.1; }
.footer-nap strong { color: var(--text); }
.footer-nap a { color: var(--accent); text-decoration: none; }
.footer-tagline { font-size: 13px; color: var(--text-20); font-style: italic; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: var(--text-40); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--text-20); }

/* ── Animations ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}
@keyframes ticker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
    .grid-2, .steps-grid, .benefits-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .steps-grid { gap: 2px; }
    .grid-2 { gap: 32px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .cta-bar { flex-direction: column; text-align: center; }
    .price-banner { flex-direction: column; text-align: center; gap: 12px; }
    .price-div { display: none; }
    .price-banner .btn { margin-left: 0; width: 100%; justify-content: center; }
    .call-strip-inner { flex-direction: column; text-align: center; }
    .stats-bar .stat { min-width: 44%; }
    .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (max-width: 580px) {
    .sec { padding: 52px 16px; }
    .page-hero { padding: 120px 16px 52px; }
    .hero-content { padding: 44px 16px 72px; }
    .form-box { padding: 22px 16px; }
    .about-visual { padding: 32px 20px; }
    .contact-card { padding: 28px 20px; }
    .nav-inner { height: 60px; padding: 0 16px; }
    .nav-logo img { height: 40px; }
    .nav-logo-circle { width: 42px; height: 42px; }
    .nav-logo-circle img { width: 32px; height: 32px; }
    .mobile-menu { top: 60px; }
    h1.hero-title { font-size: clamp(42px, 13vw, 68px); }
    .contact-num { font-size: 48px; letter-spacing: -0.02em; }
    .grid-3 { grid-template-columns: 1fr; }
    .about-big { font-size: 72px; }
    .hero-trust { grid-template-columns: 1fr; gap: 10px; }
    .trust-item { font-size: 14px; }
    .hero-meta { gap: 8px; }
    .hero-tag { font-size: 11px; }
    .call-strip-text { font-size: 17px; }
    .call-strip-text small { display: block; margin-left: 0; margin-top: 2px; }
    .faq-q { font-size: 16px; padding: 16px 18px; }
    .faq-a { padding: 0 18px; }
    .faq-a.open { padding: 0 18px 16px; }
    .b-card, .svc-card { padding: 22px 18px; }
    .step { padding: 36px 22px; }
    .review-card { min-width: calc(100vw - 48px); }
    .price-num { font-size: 48px; }
}

@media (max-width: 380px) {
    .sec { padding: 44px 14px; }
    .hero-content { padding: 36px 14px 64px; }
    h1.hero-title { font-size: clamp(38px, 12vw, 60px); }
    .hero-actions { gap: 8px; }
    .hero-actions .btn-lg { padding: 14px 20px; font-size: 15px; }
    .nav-call { font-size: 12px; padding: 8px 12px; }
}

/* ================================================================
   Blog / Article Styles
   ================================================================ */

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.article-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
}
.article-date {
    font-size: 13px;
    color: var(--text-40);
}
.article-read {
    font-size: 13px;
    color: var(--text-40);
}
.article-body {
    max-width: 740px;
    margin: 0 auto;
}
.article-body h2 {
    font-family: var(--f-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--text);
    margin: 52px 0 14px;
    line-height: 1.25;
}
.article-body h3 {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 10px;
}
.article-body p {
    font-size: 16px;
    color: var(--text-60);
    line-height: 1.85;
    margin-bottom: 20px;
}
.article-body ul,
.article-body ol {
    padding-left: 22px;
    margin-bottom: 20px;
}
.article-body li {
    font-size: 16px;
    color: var(--text-60);
    line-height: 1.75;
    margin-bottom: 8px;
}
.article-body strong {
    color: var(--text);
    font-weight: 600;
}
.article-body img {
    width: 100%;
    border-radius: var(--r-lg);
    margin: 32px 0;
    display: block;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-border);
    transition: border-color 0.2s;
}
.article-body a:hover { border-color: var(--accent); }

.article-callout {
    background: var(--bg-2);
    border-left: 3px solid var(--accent);
    padding: 18px 22px;
    border-radius: 0 var(--r) var(--r) 0;
    margin: 32px 0;
}
.article-callout p {
    margin: 0;
    font-size: 15px;
    font-style: italic;
    color: var(--text-60);
}

.article-steps {
    list-style: none;
    padding: 0;
    counter-reset: article-steps;
    margin-bottom: 20px;
}
.article-steps li {
    counter-increment: article-steps;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 18px;
}
.article-steps li::before {
    content: counter(article-steps);
    min-width: 32px;
    height: 32px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.article-steps li > div strong {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
}
.article-steps li > div span {
    font-size: 14px;
    color: var(--text-40);
    line-height: 1.6;
}

.article-highlight {
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--r);
    padding: 24px 28px;
    margin: 36px 0;
}
.article-highlight p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
}

.article-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

@media (max-width: 600px) {
    .article-body h2 { font-size: 22px; margin-top: 40px; }
    .article-steps li::before { min-width: 28px; height: 28px; font-size: 13px; }
    .article-callout { padding: 14px 16px; }
    .article-highlight { padding: 18px 16px; }
}
