/* ============================================
   SYDNEY MAG WHEEL REPAIR — styles.css
   ============================================ */

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

:root {
    --gold: #C8A951;
    --gold-light: #DFC070;
    --gold-dim: rgba(200, 169, 81, 0.12);
    --gold-border: rgba(200, 169, 81, 0.25);
    --black: #080808;
    --dark: #101010;
    --card: #161616;
    --card-hover: #1e1e1e;
    --border: #242424;
    --text: #FFFFFF;
    --muted: #7a7a7a;
    --light: #BBBBBB;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   NAVBAR
   ============================================ */

nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 116px;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav-logo img {
    height: 101px;
    width: auto;
    transition: opacity 0.2s;
    filter: invert(1);
    mix-blend-mode: screen;
}

.nav-logo:hover img { opacity: 0.85; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 3px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero-bg.jpg') center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(8,8,8,0.95) 0%,
        rgba(8,8,8,0.82) 45%,
        rgba(8,8,8,0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 2.5rem 4rem;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border-radius: 2px;
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 7.5vw, 5.75rem);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
    font-size: 1.05rem;
    color: var(--light);
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 480px;
    line-height: 1.65;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.75rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 500;
}

.hero-tag::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255,255,255,0.25);
    border-bottom: 2px solid rgba(255,255,255,0.25);
    transform: rotate(45deg);
    animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translate(-3px, -3px); }
    50% { transform: rotate(45deg) translate(3px, 3px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,81,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--gold);
    padding: 1.5rem 2.5rem;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.25rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0,0,0,0.15);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(0,0,0,0.65);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-top: 0.3rem;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }

.eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.section-desc {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.97rem;
    max-width: 560px;
    line-height: 1.75;
}

.section-header.centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.gold-divider {
    width: 52px;
    height: 3px;
    background: var(--gold);
    margin-top: 1.1rem;
    border-radius: 2px;
}

.section-header.centered .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES — new gallery layout
   ============================================ */

.services-section { background: var(--dark); }

/* Split intro header */
.svc-intro-wrap {
    border-bottom: 1px solid var(--border);
}

.svc-intro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

.svc-big-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-top: 0.75rem;
}

.svc-intro-body p {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.svc-intro-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.svc-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.6rem 1.25rem 0.6rem 0.9rem;
    border-radius: 100px;
    transition: border-color 0.2s;
}

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

.svc-phone-pill svg { color: var(--gold); flex-shrink: 0; }

.svc-phone-pill span {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.svc-phone-pill strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Cards grid */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.svc-card {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.svc-card:nth-child(even) { border-right: none; }

.svc-card:hover { background: rgba(255,255,255,0.015); }

/* Per-card slider */
.svc-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    background: var(--card);
}

.svc-before,
.svc-after {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* "Before" = same image but desaturated + darkened → looks worn/damaged */
.svc-before {
    filter: grayscale(60%) brightness(0.65) contrast(0.9);
}

/* "After" = vibrant full-colour photo → restored & clean */
.svc-after {
    filter: none;
    will-change: clip-path;
}

/* Cards with real separate before/after photos — no filter needed */
.real-photos .svc-before {
    filter: none;
}

/* Divider line */
.svc-divider {
    position: absolute;
    top: 0; bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.85);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
}

.svc-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35);
    color: var(--black);
}

/* Before / After pill labels */
.svc-lbl {
    position: absolute;
    top: 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.svc-lbl-b { left: 0.85rem; }
.svc-lbl-a { right: 0.85rem; }

/* Card text body */
.svc-body {
    padding: 1.75rem 2rem 2rem;
}

.svc-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
    line-height: 1.1;
}

.svc-body p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.svc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.2s, color 0.2s;
}

.svc-cta:hover { color: var(--gold-light); gap: 0.6rem; }

.svc-cta span { transition: transform 0.2s; }
.svc-cta:hover span { transform: translateX(3px); }

/* Responsive */
@media (max-width: 640px) {
    .svc-intro-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem 1.5rem;
    }
    .svc-grid { grid-template-columns: 1fr; }
    .svc-card { border-right: none; }
    .svc-body { padding: 1.5rem; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}

.step-connector {
    display: flex;
    align-items: flex-start;
    padding-top: 2rem;
    margin-top: 2.5rem;
}

.step-connector::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-border), var(--gold-border));
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 2.5rem 1.75rem;
    opacity: 0;
    transform: translateY(16px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px var(--gold-dim);
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.step-desc {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-bg {
    background: var(--dark);
    padding: 6rem 0;
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-img-wrapper {
    position: relative;
    border-radius: 6px;
    overflow: visible;
}

.why-img-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    filter: brightness(0.85);
}

.why-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.5rem 1.75rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.why-badge-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.why-badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    opacity: 0.75;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(12px);
}

.why-feature.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.why-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background 0.2s;
}

.why-feature:hover .why-feature-icon {
    background: rgba(200,169,81,0.2);
}

.why-feature-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.35rem;
}

.why-feature-text p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */

.gallery-section { background: var(--dark); }

.ba-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 860px;
    aspect-ratio: 1100 / 838;
    overflow: hidden;
    border-radius: 8px;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Separate images for each panel */
.ba-before { background-image: url('gallery-before.png'); }

.ba-after {
    background-image: url('gallery-after.png');
    will-change: clip-path;
    transition: clip-path 0.02s linear;
}

/* Vertical divider line */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.9);
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
}

/* Circular drag handle */
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    color: var(--black);
    pointer-events: none;
}

.ba-handle svg { width: 20px; height: 20px; }

/* Before / After labels */
.ba-label {
    position: absolute;
    top: 1.1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.ba-label-before { left: 1.1rem; }
.ba-label-after  { right: 1.1rem; }

.ba-hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.ba-hint svg { color: var(--gold); }

/* ============================================
   AREAS
   ============================================ */

.areas-section { background: var(--black); }

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.area-chip {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--light);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    cursor: default;
    transition: border-color 0.2s, color 0.2s;
    letter-spacing: 0.02em;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section { background: var(--black); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.25rem;
}

.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.25s;
    opacity: 0;
    transform: translateY(12px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s;
}

.review-card:hover { border-color: var(--gold-border); }

.stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
}

.review-text {
    color: var(--light);
    font-size: 0.875rem;
    line-height: 1.72;
    flex: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #7a5f1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--black);
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.2;
}

.reviewer-location {
    color: var(--muted);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.72rem;
    white-space: nowrap;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(160deg, #120E00 0%, #1e1800 50%, #120E00 100%);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    padding: 6rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,169,81,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-banner .section-title { margin-bottom: 0.75rem; }
.cta-banner .section-title span { color: var(--gold); }

.cta-banner p {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    margin-top: 0.5rem;
}

.cta-phone {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    line-height: 1;
    transition: color 0.2s;
}

.cta-phone:hover { color: var(--gold-light); }

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #040404;
    border-top: 1px solid var(--border);
    padding: 5rem 2.5rem 2.5rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand img {
    height: 72px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: var(--muted);
}

.footer-contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.86rem;
    line-height: 1.55;
    transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .why-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .why-image-col { display: none; }

    .steps-grid {
        grid-template-columns: 1fr;
    }
    .step-connector { display: none; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 96px; left: 0; right: 0;
        background: rgba(8,8,8,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem 2.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }

    .stats-inner { grid-template-columns: 1fr; }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    .stat-item:not(:last-child) {
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.2);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn-primary,
    .cta-actions .btn-outline { justify-content: center; }
    .section { padding: 4rem 1.5rem; }
    nav { padding: 0 1.5rem; }
    .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
}
