/* ============================================
   DENTIC DENVER AUTO HAIL REPAIR — Global Styles
   Dark, minimal, modern. Mobile-first.
   ============================================ */

:root {
    --bg: #0b0d0e;
    --bg-elev: #131618;
    --bg-card: #1a1d1f;
    --surface: #22272a;
    --line: #2a2f33;
    --text: #f5f6f7;
    --text-dim: #a8adb3;
    --text-mute: #6f757b;
    --accent: #acc9dd;        /* hail-blue */
    --accent-soft: #acc9dd22;
    --accent-hover: #c5dbeb;
    --danger: #ff5a5f;
    --success: #4ade80;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --max-w: 1440px;
    --nav-h: 64px;
    --font-sans: "Inter", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "Inter", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, picture, svg, canvas {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 6vw + 1rem, 5.5rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.35rem, 1.5vw + 0.6rem, 2rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--text-dim);
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.lead {
    font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.25rem);
    color: var(--text-dim);
    max-width: 60ch;
    line-height: 1.55;
}

/* ============================================
   Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1200px) {
    .container { padding: 0 3rem; }
}

section {
    position: relative;
}

.section-pad {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-pad { padding: 7rem 0; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: #0b0d0e;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px -10px var(--accent-soft);
}

.btn-secondary {
    background: var(--text);
    color: var(--bg);
}

.btn-secondary:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--text);
    background: rgba(255,255,255,0.03);
}

.btn-lg {
    padding: 1.05rem 2rem;
    font-size: 1rem;
}

.btn-arrow::after {
    content: "→";
    font-size: 1.1em;
    transition: transform 0.25s var(--ease);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================
   Top Banner (urgency / hormozi: scarcity)
   ============================================ */
.top-banner {
    background: var(--accent);
    color: #0b0d0e;
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.top-banner a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 13, 14, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.navbar.scrolled {
    background: rgba(11, 13, 14, 0.92);
    border-bottom-color: var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .nav-inner { padding: 0 2rem; }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.02rem;
    color: var(--text);
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--accent);
    display: grid;
    place-items: center;
    color: #0b0d0e;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: -0.04em;
}

.brand-logo {
    display: block;
    height: 40px;
    width: auto;
}

.footer-brand .brand-logo {
    height: 48px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--text-dim);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    background: rgba(255,255,255,0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-actions .btn {
    padding: 0.55rem 1.15rem;
    font-size: 0.88rem;
}

.nav-phone {
    display: none;
}

@media (min-width: 768px) {
    .nav-phone {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: var(--text);
        font-weight: 600;
        font-size: 0.92rem;
        padding: 0.55rem 0.9rem;
        border-radius: 999px;
    }
    .nav-phone:hover { background: rgba(255,255,255,0.05); }
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
}

.nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--bg);
    z-index: 99;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
    overflow-y: auto;
    padding: 2rem 1.25rem 3rem;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
}

.mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 0.25rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    border-bottom: 1px solid var(--line);
}

.mobile-menu li a::after {
    content: "→";
    font-size: 1.2rem;
    color: var(--text-mute);
    transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.mobile-menu li a:hover::after,
.mobile-menu li a:hover {
    color: var(--accent);
    transform: translateX(2px);
}

.mobile-menu-cta {
    margin-top: 2rem;
    display: grid;
    gap: 0.75rem;
}

.mobile-menu-cta .btn { width: 100%; }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #000;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11,13,14,0.4) 0%,
        rgba(11,13,14,0.1) 30%,
        rgba(11,13,14,0.5) 70%,
        rgba(11,13,14,0.95) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 4rem 0 5rem;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

@media (min-width: 768px) {
    .hero-inner { padding-left: 2rem; padding-right: 2rem; padding-bottom: 7rem; }
}

@media (min-width: 1200px) {
    .hero-inner { padding-left: 3rem; padding-right: 3rem; }
}

.hero-title {
    color: #fff;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.hero-title span {
    display: block;
}

.hero-title em {
    color: var(--accent);
    font-style: normal;
}

.hero-sub {
    max-width: 50ch;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.3rem);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-meta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    align-items: center;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.hero-meta strong {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

/* Inner hero variant for subpages */
.hero-inner-page {
    min-height: 60vh;
    background: var(--bg);
}

.hero-inner-page .hero-title {
    font-size: clamp(2.25rem, 5vw + 0.5rem, 4.5rem);
}

/* Seamless fade: image gradually dissolves into the page background */
.hero-inner-page .hero-media img {
    opacity: 0.75;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 50%,
        rgba(0,0,0,0.4) 85%,
        transparent 100%
    );
            mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 50%,
        rgba(0,0,0,0.4) 85%,
        transparent 100%
    );
}

.hero-inner-page .hero-media::after {
    background: linear-gradient(
        to bottom,
        rgba(11,13,14,0.35) 0%,
        rgba(11,13,14,0.1) 30%,
        rgba(11,13,14,0.6) 75%,
        var(--bg) 100%
    );
}

/* ============================================
   Section header
   ============================================ */
.section-head {
    max-width: 70ch;
    margin-bottom: 3rem;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    margin-bottom: 1rem;
}

/* ============================================
   Offer Stack (Hormozi grand-slam offer)
   ============================================ */
.offer {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .offer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.offer-stack {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
}

@media (min-width: 768px) {
    .offer-stack { padding: 2.5rem; }
}

.offer-stack h3 {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
}

.offer-stack ul {
    display: grid;
    gap: 1rem;
}

.offer-stack li {
    display: grid;
    grid-template-columns: 1.5rem 1fr auto;
    gap: 0.85rem;
    align-items: baseline;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--line);
    color: var(--text);
}

.offer-stack li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.offer-stack .check {
    color: var(--accent);
    font-weight: 800;
    line-height: 1;
}

.offer-stack .value {
    color: var(--text-mute);
    font-size: 0.85rem;
    text-decoration: line-through;
}

.offer-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.offer-total .label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-total .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.offer-total .price small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-mute);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: right;
}

/* ============================================
   Trust bar
   ============================================ */
.trust-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.86rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.trust-item strong {
    color: var(--text);
    font-weight: 600;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   Services preview / cards
   ============================================ */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 700px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .cards.cards-3 { grid-template-columns: repeat(3, 1fr); }
    .cards.cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #3a3f44;
}

.card-img {
    aspect-ratio: 16 / 10;
    background: var(--surface);
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.card:hover .card-img img {
    transform: scale(1.04);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    letter-spacing: -0.015em;
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex: 1;
}

.card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
}

.card-link::after {
    content: "→";
    transition: transform 0.25s var(--ease);
}

.card:hover .card-link::after {
    transform: translateX(4px);
}

/* Large feature card */
.feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .feature {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    .feature.reverse > div:first-child { order: 2; }
}

.feature-media {
    aspect-ratio: 4 / 3;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Process steps
   ============================================ */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    counter-reset: step;
}

@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    position: relative;
    counter-increment: step;
}

.step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.step h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.015em;
}

.step p {
    font-size: 0.92rem;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--bg-elev);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 800px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   Carousel (used for testimonials)
   ============================================ */
.carousel {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 1.25rem 1.5rem;
    margin: 0 -1.25rem;
    cursor: grab;
    user-select: none;
}

.carousel-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel-track.is-dragging > .testimonial {
    pointer-events: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track > .testimonial {
    flex: 0 0 85%;
    scroll-snap-align: start;
    min-width: 0;
    height: auto;
}

@media (min-width: 700px) {
    .carousel-track {
        padding-left: 2rem;
        padding-right: 2rem;
        margin: 0 -2rem;
    }
    .carousel-track > .testimonial {
        flex-basis: calc((100% - 1.25rem) / 2);
    }
}

@media (min-width: 1100px) {
    .carousel-track {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        cursor: grab;
    }
    .carousel-track > .testimonial {
        flex-basis: calc((100% - 2.5rem) / 3);
    }
}

/* Edge fade — gives the row a soft horizontal vignette so cards feel like they
   come in from off-screen instead of cutting off at the section edge */
@media (min-width: 700px) {
    .carousel {
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0,
            #000 4%,
            #000 96%,
            transparent 100%
        );
                mask-image: linear-gradient(
            to right,
            transparent 0,
            #000 4%,
            #000 96%,
            transparent 100%
        );
    }
}

/* Dots */
.carousel-dots {
    display: flex;
    gap: 0.45rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.carousel-dot {
    /* large invisible hit area, small visible pill */
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
    position: relative;
}

.carousel-dot::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line);
    transition: all 0.22s var(--ease);
}

.carousel-dot:hover::before {
    background: var(--text-mute);
    transform: scale(1.15);
}

.carousel-dot.is-active::before {
    background: var(--accent);
    width: 24px;
    border-radius: 999px;
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 999px;
}

.carousel-hint {
    text-align: center;
    color: var(--text-mute);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    margin: 0.85rem 0 0;
}

.carousel-hint .hint-desktop { display: none; }
.carousel-hint .hint-mobile  { display: inline; }

@media (min-width: 768px) {
    .carousel-hint .hint-desktop { display: inline; }
    .carousel-hint .hint-mobile  { display: none; }
}

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.15em;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial blockquote {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #0b0d0e;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-meta .name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.testimonial-meta .role {
    color: var(--text-mute);
    font-size: 0.82rem;
}

/* ============================================
   Big CTA
   ============================================ */
.big-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1d1f 0%, #0b0d0e 100%);
    border-top: 1px solid var(--line);
}

.big-cta::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
    z-index: 0;
}

.big-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.big-cta h2 {
    margin-bottom: 1.25rem;
}

.big-cta p {
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

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

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: color 0.2s var(--ease);
}

.faq-q:hover { color: var(--accent); }

.faq-q .icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: transform 0.3s var(--ease), background 0.2s var(--ease);
}

.faq-item[aria-expanded="true"] .faq-q .icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #0b0d0e;
    border-color: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
    padding: 0 0 1.5rem;
    color: var(--text-dim);
    max-width: 70ch;
    line-height: 1.65;
}

/* ============================================
   Gallery
   ============================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s var(--ease);
}

.filter-btn:hover { color: var(--text); border-color: var(--text-mute); }

.filter-btn.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.ba-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.ba-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    background: #000;
}

.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-slider .ba-after-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    transition: width 0.05s linear;
}

.ba-slider .ba-after-wrap img {
    width: calc(100% * (1 / 0.5));
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle::after {
    content: "⇿";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #0b0d0e;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.ba-tag {
    position: absolute;
    top: 0.9rem;
    padding: 0.3rem 0.7rem;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.ba-tag-before { left: 0.9rem; }
.ba-tag-after { right: 0.9rem; }

.ba-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.ba-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.ba-body p {
    font-size: 0.88rem;
    color: var(--text-mute);
}

/* ============================================
   About story
   ============================================ */
.story-grid {
    display: grid;
    gap: 3rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 700px) {
    .story-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stat strong {
    display: block;
    font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
    color: var(--text);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.stat span {
    color: var(--text-mute);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--surface), var(--bg-card));
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.team-body h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.team-body .role {
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 0.85rem;
    display: block;
}

.team-body p {
    font-size: 0.9rem;
}

.cert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500;
}

.cert-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }
}

.contact-info {
    display: grid;
    gap: 1rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-row .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    color: var(--accent);
}

.contact-row .icon svg { width: 22px; height: 22px; }

.contact-row .label {
    color: var(--text-mute);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-row .value {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-row .value a:hover { color: var(--accent); }

.contact-row .note {
    color: var(--text-mute);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* Form */
.form {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

@media (min-width: 768px) { .form { padding: 2.5rem; } }

.form h3 {
    margin-bottom: 0.4rem;
    letter-spacing: -0.015em;
}

.form .form-sub {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea { min-height: 120px; resize: vertical; }

.field-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 600px) {
    .field-row { grid-template-columns: 1fr 1fr; }
}

.form-actions {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-actions .btn { width: 100%; }

.form-disclaim {
    font-size: 0.78rem;
    color: var(--text-mute);
    text-align: center;
    line-height: 1.5;
}

.sms-disclosure {
    text-align: left;
    margin: 0.25rem 0 1rem;
    color: var(--text-mute);
}

.sms-disclosure a {
    color: var(--text-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sms-disclosure a:hover { color: var(--accent); }

.form-trust {
    font-size: 0.8rem;
    color: var(--text-mute);
    text-align: center;
    letter-spacing: 0.04em;
    margin: 0;
}

/* Checkbox */
.checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 0.7rem;
    align-items: start;
    padding: 0.85rem 0;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0.5rem;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1.5px solid var(--line);
    background: var(--bg);
    display: grid;
    place-items: center;
    transition: all 0.18s var(--ease);
    margin-top: 1px;
}

.checkbox-box::after {
    content: "";
    width: 12px;
    height: 6px;
    border-left: 2px solid #0b0d0e;
    border-bottom: 2px solid #0b0d0e;
    transform: rotate(-45deg) translate(1px, -1px) scale(0.5);
    opacity: 0;
    transition: opacity 0.15s var(--ease), transform 0.18s var(--ease);
}

.checkbox input:checked ~ .checkbox-box {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox input:checked ~ .checkbox-box::after {
    opacity: 1;
    transform: rotate(-45deg) translate(1px, -1px) scale(1);
}

.checkbox input:focus-visible ~ .checkbox-box {
    box-shadow: 0 0 0 3px var(--accent-soft);
    border-color: var(--accent);
}

.checkbox-label {
    color: var(--text-dim);
    font-size: 0.82rem;
    line-height: 1.55;
}

.form-success {
    display: none;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: var(--success);
    padding: 1rem 1.15rem;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.form-success.show { display: block; }

/* Map */
.map-embed {
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,0.02) 12px 13px),
        radial-gradient(circle at 60% 40%, var(--surface) 0%, var(--bg-card) 70%);
}

.map-embed::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50% 50% 50% 0;
    background: var(--accent);
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: 0 6px 20px rgba(242,200,73,0.5);
}

.map-embed::before {
    content: "Denver, CO · Open Today";
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(11,13,14,0.85);
    color: var(--text);
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #07090a;
    border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
    .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

.footer-brand p {
    margin: 1rem 0 1.25rem;
    font-size: 0.9rem;
    max-width: 36ch;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--text-dim);
}

.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
    color: var(--text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col a {
    color: var(--text-dim);
    font-size: 0.92rem;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-mute);
    font-size: 0.82rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal a:hover { color: var(--text); }

/* ============================================
   Floating chat / phone CTA
   ============================================ */
.float-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0b0d0e;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 10px 30px -10px rgba(242,200,73,0.5),
                0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.float-cta:hover {
    transform: translateY(-2px) scale(1.02);
}

.float-cta svg { width: 18px; height: 18px; }

@media (min-width: 1024px) {
    .float-cta { bottom: 2rem; right: 2rem; }
}

/* ============================================
   Legal pages (privacy / terms / warranty)
   ============================================ */
.legal-page {
    padding: 5rem 0 6rem;
}

.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.legal-head {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.legal-head h1 {
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    margin-bottom: 0.85rem;
    letter-spacing: -0.025em;
}

.legal-meta {
    color: var(--text-mute);
    font-size: 0.88rem;
}

.legal-notice {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 0.85rem;
    color: var(--text);
    letter-spacing: -0.015em;
    scroll-margin-top: 90px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-size: 1.1rem;
    margin: 1.75rem 0 0.6rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.legal-content p,
.legal-content li {
    color: var(--text-dim);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1.25rem 1.4rem;
    padding: 0;
}

.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content li::marker { color: var(--text-mute); }

.legal-content strong { color: var(--text); font-weight: 600; }

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--accent-hover); }

.legal-toc {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
}

.legal-toc h4 {
    color: var(--text-mute);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.legal-toc ol {
    columns: 1;
    column-gap: 2rem;
    margin: 0;
    padding-left: 1.2rem;
}

@media (min-width: 600px) {
    .legal-toc ol { columns: 2; }
}

.legal-toc li {
    color: var(--text-dim);
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    break-inside: avoid;
    list-style: decimal;
}

.legal-toc a { color: var(--text-dim); }
.legal-toc a:hover { color: var(--accent); }

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none !important; }
.divider {
    height: 1px;
    background: var(--line);
    border: none;
    margin: 0;
}

/* ============================================
   Service Areas (Local SEO)
   ============================================ */
.service-areas {
    background: var(--bg-elev);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cities-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.6rem;
    justify-content: center;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.cities-list li {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    background: var(--accent-soft);
    border: 1px solid rgba(172, 201, 221, 0.25);
    border-radius: 999px;
    transition: background 0.2s var(--ease, ease), border-color 0.2s var(--ease, ease), transform 0.15s var(--ease, ease);
}

.cities-list li:hover {
    background: rgba(172, 201, 221, 0.18);
    border-color: rgba(172, 201, 221, 0.5);
    transform: translateY(-1px);
}

.service-areas .muted {
    color: var(--text-dim);
    font-size: 0.95rem;
}

.service-areas .center {
    text-align: center;
}

.service-areas .mt-3 {
    margin-top: 1.5rem;
}

/* ============================================
   Scroll reveal (added by JS)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
