/* =================================================================
   CERAMIC PRO SPOKANE — Custom Theme (v1.1.0)
   Palette: deep black canvas + hot pink action color.
   Mobile-first with clamp-driven fluid type + generous padding.
================================================================= */

:root {
    /* Palette */
    --cp-ink:      #0A0A0A;
    --cp-black:    #000000;
    --cp-carbon:   #141414;
    --cp-carbon-2: #1A1A1A;
    --cp-line:     #262626;
    --cp-mute:     #7A7A7A;
    --cp-fog:      #F5F5F5;
    --cp-paper:    #FFFFFF;

    --cp-pink:      #FF1493;
    --cp-pink-hot:  #FF3AA5;
    --cp-pink-soft: #FFB3DA;

    /* Type */
    --f-display: 'Teko', 'Oswald', 'Impact', sans-serif;
    --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f-num:     'Bebas Neue', var(--f-display);

    /* Rhythm — generous padding as required */
    --wrap: 1280px;
    --pad-x:   clamp(1rem, 4vw, 2rem);
    --pad-y:   clamp(2rem, 6vw, 4rem);
    --sec-y:   clamp(3rem, 8vw, 6rem);

    --radius: 4px;
    --shadow-lift: 0 20px 40px -20px rgba(0,0,0,0.55);
    --shadow-pink: 0 12px 40px -12px rgba(255,20,147,0.45);
}

/* -------- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--cp-ink);
    background: var(--cp-paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* -------- Typography ------------------------------------------- */
h1,h2,h3,h4 {
    font-family: var(--f-display);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.005em;
    margin: 0 0 0.4em;
    font-weight: 600;
}
.h-mega   { font-size: clamp(56px, 12vw, 200px); }
.h-hero   { font-size: clamp(44px, 8vw, 120px); }
.h-lg     { font-size: clamp(36px, 6vw, 76px); }
.h-md     { font-size: clamp(28px, 4vw, 52px); }
.h-sm     { font-size: clamp(22px, 3vw, 34px); }

p { margin: 0 0 1.1em; line-height: 1.7; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: #333; }

.eyebrow {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cp-pink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--cp-pink);
}

/* -------- Layout utilities ------------------------------------- */
.container,
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .container,
    .wrap { padding: 0 40px; }
}
.section {
    padding: var(--sec-y) 0;
    position: relative;
}
.section-dark  { background: var(--cp-ink);   color: #EDEDED; }
.section-black { background: var(--cp-black); color: #EDEDED; }
.section-fog   { background: var(--cp-fog);   color: var(--cp-ink); }
.section-dark p, .section-black p { color: #B8B8B8; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 900px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
}

.sec-head {
    max-width: 780px;
    margin: 0 auto clamp(28px, 5vw, 56px);
    text-align: center;
    padding: 0 var(--pad-x);
}
.sec-head.left { text-align: left; margin-left: 0; }

/* -------- Buttons ---------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--f-display);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.06em;
    font-weight: 600;
    border: 2px solid transparent;
    background: var(--cp-pink);
    color: #fff;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    border-radius: 8px;
    box-shadow: var(--shadow-pink);
    min-height: 48px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    max-width: 100%;
}
@media (min-width: 768px) {
    .btn { padding: 16px 28px; font-size: 20px; min-height: 52px; }
}
.btn:hover { background: var(--cp-pink-hot); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn::after { content: '→'; font-family: var(--f-body); font-size: 16px; font-weight: 600; }
.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    box-shadow: none;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-dark { background: var(--cp-ink); color: #fff; box-shadow: none; }
.btn-dark:hover { background: #000; }
.btn-wide { width: 100%; }

/* -------- Header / Nav ----------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #1A1A1A;
    color: #fff;
    width: 100%;
}
.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    gap: 16px;
    min-height: 72px;
}
@media (min-width: 768px) {
    .nav-row { padding: 15px 40px; }
}
.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    flex: 0 0 auto;
}
.brand img {
    max-height: 50px;
    max-width: 180px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 30px; align-items: center;
    flex: 1 1 auto;
    justify-content: center;
}
.nav-links a {
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 16px;
    color: #DADADA;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.is-current { color: #fff; border-color: var(--cp-pink); }

.nav-actions { display: flex; gap: 12px; align-items: center; flex: 0 0 auto; }
.nav-phone {
    color: #fff;
    font-family: var(--f-display);
    font-size: 18px;
    letter-spacing: 0.05em;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 10px;
    white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; fill: var(--cp-pink); flex: 0 0 auto; }

/* Hamburger */
.burger {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    font-size: 22px;
    line-height: 1;
    flex: 0 0 auto;
}
.burger:hover { border-color: var(--cp-pink); }
.burger .bar { width: 22px; height: 2px; background: #fff; display: block; position: relative; }
.burger .bar::before, .burger .bar::after {
    content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #fff;
}
.burger .bar::before { top: -7px; }
.burger .bar::after  { top:  7px; }

/* Mobile full-screen menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 50;
    flex-direction: column;
    padding: 24px 20px 40px;
    overflow-y: auto;
    animation: mm-in .25s ease;
}
@keyframes mm-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu.is-open { display: flex; }
body.menu-open { overflow: hidden; }

.mobile-menu-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px;
    min-height: 50px;
}
.mobile-menu-head img { max-height: 50px; max-width: 180px; width: auto; object-fit: contain; }
.mobile-menu-close {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    font-size: 24px; line-height: 1;
}
.mobile-menu-close:hover { border-color: var(--cp-pink); color: var(--cp-pink); }

.mobile-menu ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu ul li a {
    display: block;
    padding: 18px 4px;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 26px;
    color: #EDEDED;
    border-bottom: 1px solid #1F1F1F;
    transition: color .15s, padding-left .15s;
}
.mobile-menu ul li a:hover, .mobile-menu ul li a:focus {
    color: var(--cp-pink); padding-left: 12px;
}
.mobile-menu-cta {
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 12px;
}
.mobile-menu-cta .btn { width: 100%; }
.mobile-menu-cta .mobile-phone {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    color: #fff;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-family: var(--f-display);
    font-size: 20px;
    letter-spacing: 0.06em;
}
.mobile-menu-cta .mobile-phone svg { width: 18px; height: 18px; fill: var(--cp-pink); }

/* Nav breakpoints — mobile-first flip */
@media (max-width: 991px) {
    .nav-links,
    .nav-actions .nav-phone,
    .nav-actions .btn { display: none; }
    .burger { display: inline-flex; }
}
@media (min-width: 992px) {
    .burger { display: none; }
    .mobile-menu { display: none !important; }
}

/* -------- HERO with video -------------------------------------- */
.hero {
    position: relative;
    z-index: 1;
    color: #fff;
    overflow: hidden;
    padding: 0;
    background: #000;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100%;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.85), rgba(10,10,10,0.7));
    z-index: 1;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(255,20,147,0.18), transparent 55%);
    z-index: 1;
}
.hero .wrap,
.hero .container { position: relative; z-index: 2; }

/* Hero container — trim top padding so it fits above the fold on
   every device. Mobile = stacked column, Desktop = 2-column split. */
.hero .container {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 1200px;
}
@media (min-width: 768px) {
    .hero .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (min-width: 992px) {
    .hero .container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* MOBILE FIRST — stack copy on top, form underneath, both centered */
.hero-grid {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.hero-grid > * { margin-left: auto; margin-right: auto; }

.hero-copy {
    text-align: center;
    width: 100%;
    max-width: 100%;
}
.hero .hero-tag { margin-left: auto; margin-right: auto; max-width: 100%; }
.hero .hero-sub,
.hero h1,
.hero .hero-body {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 800px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.hero h1 { max-width: 900px; }
.hero .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}
.hero .crumbs { text-align: center; margin-left: auto; margin-right: auto; }
.hero .stars-badge { margin-left: auto; margin-right: auto; }
.hero .reveal { width: 100%; max-width: 100%; }

/* DESKTOP — copy left-aligned, form right, split 1fr 1fr */
@media (min-width: 992px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        text-align: left;
    }
    .hero-grid > * { margin-left: 0; margin-right: 0; }
    .hero-copy { text-align: left; }
    .hero .hero-tag,
    .hero .stars-badge,
    .hero .crumbs {
        margin-left: 0;
        margin-right: 0;
    }
    .hero .hero-sub,
    .hero h1,
    .hero .hero-body {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .hero .hero-ctas {
        justify-content: flex-start;
        margin: 0;
    }
    .hero-form-card,
    .hero-grid .step-form {
        margin: 0;
        max-width: 100%;
        justify-self: end;
        width: 100%;
    }
}

.hero-tag {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-left: 3px solid var(--cp-pink);
    color: #EAEAEA;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: var(--radius);
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}
.hero h1 { color: #fff; letter-spacing: -0.005em; margin-bottom: 20px; }
.hero h1 em {
    color: var(--cp-pink);
    font-style: normal;
    display: block;
}
.hero-sub {
    display: block;
    margin-bottom: 20px;
    font-family: var(--f-display);
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: 0.14em;
    color: #DADADA;
    text-transform: uppercase;
}
.hero-sub span { color: var(--cp-pink); margin: 0 10px; }
.hero-body { color: #C8C8C8; max-width: 540px; margin-bottom: 24px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Star rating badge */
.stars-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    margin-bottom: 22px;
    line-height: 1;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
}
.stars-badge .stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex: 0 0 auto;
    line-height: 0;
}
.stars-badge .stars svg {
    width: 14px;
    height: 14px;
    fill: #FFC531;
    display: block;
    flex: 0 0 auto;
}
.stars-badge .stars svg.dim { fill: rgba(255,197,49,0.35); }
.stars-badge b {
    font-family: var(--f-display);
    font-size: 15px;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
}
.stars-badge small {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #B0B0B0;
    line-height: 1;
    display: inline-block;
}
@media (max-width: 420px) { .stars-badge small { display: none; } }

/* --------------------------------------------------------------
   Hero step form — massive, premium high-converting widget
-------------------------------------------------------------- */
.hero-form-card {
    background: rgba(15, 15, 15, 0.85);
    border: 2px solid rgba(255, 20, 147, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    box-sizing: border-box;
    text-align: left;
}
@media (max-width: 500px) {
    .hero-form-card { padding: 28px 22px; margin-top: 32px; }
}

.hero-form-card .step-label {
    display: block;
    text-align: center;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
    color: var(--cp-pink);
    margin-bottom: 8px;
}
.hero-form-card h3 {
    color: #fff;
    font-size: clamp(24px, 3.2vw, 32px);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.1;
}

.hero-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-form-card .fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}
.hero-form-card label {
    display: block;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.hero-form-card input[type="text"],
.hero-form-card input[type="tel"],
.hero-form-card input[type="email"],
.hero-form-card input[type="number"],
.hero-form-card select {
    background: #000;
    color: #FFF;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 18px 20px;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    height: 60px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--f-body);
    margin-bottom: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.2;
}
.hero-form-card input:focus,
.hero-form-card select:focus {
    outline: none;
    border-color: var(--cp-pink);
    box-shadow: 0 0 8px rgba(255, 20, 147, 0.4);
}
.hero-form-card input::placeholder { color: #666; }

.hero-form-card select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FF1493'><path d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 10.94l3.71-3.71a.75.75 0 1 1 1.06 1.06l-4.24 4.24a.75.75 0 0 1-1.06 0L5.21 8.29a.75.75 0 0 1 .02-1.08z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 22px 22px;
    padding-right: 50px;
}
.hero-form-card option { background: #000; color: #fff; }

.hero-form-card button[type="submit"] {
    background: #FF1493;
    color: #FFF;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    height: 70px;
    margin-top: 10px;
    transition: transform 0.2s ease, background 0.3s ease;
    font-family: var(--f-display);
    letter-spacing: 0.06em;
    line-height: 1;
    box-sizing: border-box;
}
.hero-form-card button[type="submit"]:hover {
    background: #D11078;
    transform: scale(1.02);
}
.hero-form-card button[type="submit"]:active { transform: scale(0.99); }

.hero-form-card .step-note {
    margin: 8px 0 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #999;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}

/* Legacy alias so the existing shortcode keeps working */
.step-form {
    background: rgba(15, 15, 15, 0.85);
    border: 2px solid rgba(255, 20, 147, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    margin: 40px auto 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    box-sizing: border-box;
    text-align: left;
}
@media (max-width: 500px) {
    .step-form { padding: 28px 22px; margin-top: 32px; }
}
.step-form .step-label {
    display: block;
    text-align: center;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 12px;
    color: var(--cp-pink);
    margin-bottom: 8px;
}
.step-form h3 {
    color: #fff;
    font-size: clamp(24px, 3.2vw, 32px);
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.1;
}
.step-form form,
.step-form-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step-form .fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

/* Shared label + input styling for the full lead form */
.cp-form label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.2;
}

/* Step form fields — massive, premium */
.step-form label {
    display: block;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.step-form input[type="text"],
.step-form input[type="tel"],
.step-form input[type="email"],
.step-form input[type="number"],
.step-form select {
    background: #000;
    color: #FFF;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 18px 20px;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    height: 60px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--f-body);
    margin-bottom: 0;
    line-height: 1.2;
    display: block;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.step-form input:focus,
.step-form select:focus {
    outline: none;
    border-color: var(--cp-pink);
    box-shadow: 0 0 8px rgba(255, 20, 147, 0.4);
}
.step-form input::placeholder { color: #666; }

/* Custom SVG dropdown arrows */
.step-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FF1493'><path d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 10.94l3.71-3.71a.75.75 0 1 1 1.06 1.06l-4.24 4.24a.75.75 0 0 1-1.06 0L5.21 8.29a.75.75 0 0 1 .02-1.08z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 22px 22px;
    padding-right: 50px;
}
.cp-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FF1493'><path d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 10.94l3.71-3.71a.75.75 0 1 1 1.06 1.06l-4.24 4.24a.75.75 0 0 1-1.06 0L5.21 8.29a.75.75 0 0 1 .02-1.08z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
    padding-right: 42px;
}
.step-form option, .cp-form option { background: #000; color: #fff; }

.step-form .step-note {
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #999;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}

/* -------- Trust strip / service cards -------------------------- */
.trust-strip {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: var(--cp-carbon);
    color: #CDCDCD;
    border-top: 1px solid #1F1F1F;
    border-bottom: 1px solid #1F1F1F;
}
.trust-strip .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
.trust-strip .item {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--f-display);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 16px;
}
.trust-strip .item svg { width: 26px; height: 26px; fill: var(--cp-pink); flex: 0 0 auto; }
@media (max-width: 900px) { .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-strip .wrap { grid-template-columns: 1fr; } }

/* -------- Services grid ---------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 2px;
    background: var(--cp-line);
    border: 2px solid var(--cp-line);
    border-radius: 6px;
    overflow: hidden;
}
.svc-card {
    background: var(--cp-carbon);
    color: #fff;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: background .2s ease;
    min-height: 200px;
}
.svc-card::before {
    content: attr(data-num);
    position: absolute; top: 12px; right: 20px;
    font-family: var(--f-num);
    font-size: 88px;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    transition: color .2s;
}
.svc-card h3 {
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    max-width: 260px;
    z-index: 1; position: relative;
}
.svc-card p {
    color: #9A9A9A;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 1; position: relative;
    margin: 0;
}
.svc-card .arrow {
    align-self: flex-end;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--cp-pink);
    color: #fff;
    font-family: var(--f-body);
    font-size: 20px;
    border-radius: var(--radius);
    transition: transform .2s;
    z-index: 1; position: relative;
}
.svc-card:hover { background: #1B1B1B; }
.svc-card:hover::before { color: rgba(255,20,147,0.14); }
.svc-card:hover .arrow { transform: translate(4px,-4px); }
.svc-card.svc-featured { grid-column: span 2; grid-row: span 2; background: var(--cp-pink); }
.svc-card.svc-featured::before { color: rgba(0,0,0,0.14); }
.svc-card.svc-featured p { color: rgba(255,255,255,0.9); }
.svc-card.svc-featured .arrow { background: #000; }
.svc-card.svc-wide { grid-column: span 2; }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .svc-card.svc-featured, .svc-card.svc-wide { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
    .svc-card.svc-featured, .svc-card.svc-wide { grid-column: span 1; }
}

/* -------- Value / edu ------------------------------------------ */
.value-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 900px) { .value-wrap { grid-template-columns: 1fr; gap: 32px; } }

.checklist { list-style: none; margin: 24px 0 32px; padding: 0; }
.checklist li {
    padding: 16px 0;
    border-bottom: 1px solid #2A2A2A;
    display: flex; align-items: center; gap: 16px;
    color: #DADADA;
    font-family: var(--f-display);
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.checklist li::before {
    content: '';
    flex: 0 0 auto;
    width: 22px; height: 22px;
    background: var(--cp-pink);
    clip-path: polygon(20% 50%, 45% 75%, 85% 25%, 95% 35%, 45% 90%, 10% 60%);
}
.section-fog .checklist li { color: var(--cp-ink); border-bottom-color: #DDD; }

.value-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--cp-carbon);
    border-radius: 6px;
}
.value-visual img { width: 100%; height: 100%; object-fit: cover; }
.value-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(20deg, rgba(255,20,147,0.18) 0%, transparent 45%);
}

/* Educational block */
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) { .edu-grid { grid-template-columns: 1fr; gap: 24px; } }
.edu-lead {
    font-size: clamp(22px, 2.6vw, 30px);
    font-family: var(--f-display);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 18px;
}
.edu-lead span { color: var(--cp-pink); }

/* -------- Packages --------------------------------------------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg {
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
    position: relative;
    transition: transform .2s, box-shadow .2s;
    border-radius: 6px;
}
.pkg::before {
    content: attr(data-tier);
    position: absolute; top: 0; right: 0;
    background: var(--cp-ink); color: var(--cp-pink);
    font-family: var(--f-display);
    padding: 6px 14px;
    font-size: 12px; letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 0 6px 0 6px;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--cp-pink); }
.pkg h3 { color: var(--cp-ink); font-size: 30px; margin-bottom: 4px; }
.pkg .warranty { color: var(--cp-pink); font-family: var(--f-display); font-size: 17px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pkg li { padding: 10px 0; border-bottom: 1px dashed #E5E5E5; font-size: 14px; color: #444; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg li::before { content: '›'; color: var(--cp-pink); font-weight: 700; font-size: 18px; line-height: 1.2; }
.pkg.pkg-hot { background: var(--cp-ink); color: #fff; }
.pkg.pkg-hot::before { background: var(--cp-pink); color: #fff; }
.pkg.pkg-hot h3 { color: #fff; }
.pkg.pkg-hot li { color: #C8C8C8; border-color: #333; }

/* -------- PPF Coverage tiers ----------------------------------- */
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 700px) { .coverage-grid { grid-template-columns: 1fr; } }
.coverage-card {
    background: var(--cp-carbon);
    color: #fff;
    padding: clamp(1.5rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    border-left: 4px solid var(--cp-pink);
    border-radius: 6px;
    transition: transform .2s;
}
.coverage-card:hover { transform: translateX(4px); }
.coverage-card h3 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.coverage-card p { color: #B0B0B0; margin: 0; font-size: 14px; }
.coverage-card .stamp {
    font-family: var(--f-num);
    font-size: 56px;
    color: rgba(255,20,147,0.4);
    line-height: 0.85;
}

/* -------- FAQ -------------------------------------------------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq {
    border-bottom: 1px solid #2A2A2A;
    padding: 22px 0;
    cursor: pointer;
}
.section-fog .faq { border-color: #E5E5E5; }
.faq summary {
    list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-family: var(--f-display);
    text-transform: uppercase;
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    font-family: var(--f-body);
    font-size: 28px;
    color: var(--cp-pink);
    transition: transform .2s;
    flex: 0 0 auto;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 14px 0 4px; color: #B8B8B8; max-width: 780px; }
.section-fog .faq p { color: #444; }

/* -------- Reviews ---------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border-radius: 8px;
    display: flex; flex-direction: column; gap: 16px;
    transition: transform .2s, box-shadow .2s;
    min-height: 100%;
}
.section-dark .review-card, .section-black .review-card {
    background: var(--cp-carbon);
    border-color: #262626;
    color: #EAEAEA;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.review-card .r-stars { display: inline-flex; gap: 2px; }
.review-card .r-stars svg { width: 18px; height: 18px; fill: #FFC531; }
.review-card blockquote {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}
.section-dark .review-card blockquote, .section-black .review-card blockquote { color: #CDCDCD; }
.review-card .r-meta {
    display: flex; align-items: center; gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #EEE;
}
.section-dark .review-card .r-meta, .section-black .review-card .r-meta { border-color: #262626; }
.review-card .r-avatar {
    width: 38px; height: 38px;
    background: var(--cp-pink);
    color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--f-display);
    font-size: 18px;
    letter-spacing: 0.04em;
}
.review-card .r-name {
    font-family: var(--f-display);
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cp-ink);
}
.section-dark .review-card .r-name, .section-black .review-card .r-name { color: #fff; }
.review-card .r-source {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #888;
}

/* -------- Full lead form --------------------------------------- */
.lead-shell {
    background: rgba(20, 20, 20, 0.85);
    border: 1px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 30px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
@media (max-width: 500px) {
    .lead-shell { padding: 24px 20px; }
}
.lead-shell h3 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.lead-shell .sub { color: #B0B0B0; font-size: 14px; margin-bottom: 24px; line-height: 1.6; }

.cp-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cp-form .full { grid-column: 1/-1; }
.cp-form label { color: #E5E5E5; }
.cp-form input,
.cp-form select,
.cp-form textarea {
    background: #1A1A1A;
    color: #FFFFFF;
    border: 1px solid #333333;
    padding: 14px 18px;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    display: block;
    font-size: 16px;
    font-family: var(--f-body);
    margin-bottom: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1.3;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 50px;
}
.cp-form input:focus,
.cp-form select:focus,
.cp-form textarea:focus {
    outline: none;
    border-color: #FF1493;
    box-shadow: 0 0 8px rgba(255, 20, 147, 0.35);
}
.cp-form input::placeholder { color: #6E6E6E; }
.cp-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23FFFFFF'><path d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 10.94l3.71-3.71a.75.75 0 1 1 1.06 1.06l-4.24 4.24a.75.75 0 0 1-1.06 0L5.21 8.29a.75.75 0 0 1 .02-1.08z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px 18px;
    padding-right: 42px;
}
.cp-form option { background: #1A1A1A; color: #fff; }
.cp-form .submit-row { grid-column: 1/-1; margin-top: 8px; }
.cp-form button[type=submit] {
    background: #FF1493;
    color: #FFFFFF;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.15s ease;
    font-family: var(--f-display);
    letter-spacing: 0.08em;
    font-size: 16px;
    min-height: 54px;
    line-height: 1.2;
}
.cp-form button[type=submit]:hover { background: #D11078; }
.cp-form button[type=submit]:active { transform: translateY(1px); }
@media (min-width: 768px) {
    .cp-form button[type=submit] { font-size: 20px; padding: 18px 32px; min-height: 60px; }
}
.step-form button[type="submit"],
.step-form .btn[type="submit"] {
    background: #FF1493;
    color: #FFF;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    height: 70px;
    margin-top: 10px;
    transition: transform 0.2s ease, background 0.3s ease;
    font-family: var(--f-display);
    letter-spacing: 0.06em;
    line-height: 1;
    box-sizing: border-box;
    display: block;
    box-shadow: none;
    min-height: 70px;
    text-align: center;
}
.step-form button[type="submit"]:hover,
.step-form .btn[type="submit"]:hover {
    background: #D11078;
    transform: scale(1.02);
}
.step-form button[type="submit"]:active,
.step-form .btn[type="submit"]:active { transform: scale(0.99); }
.step-form .step-note {
    margin: 8px 0 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: #999;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
}
.cp-form .trust {
    grid-column: 1/-1;
    margin-top: 14px;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #A6A6A6;
    flex-wrap: wrap;
}
.cp-form .status { grid-column: 1/-1; padding: 12px 14px; background: #1A1A1A; font-size: 14px; border-radius: 8px; color: #EDEDED; }
.cp-form .status.ok  { background: #0B2C0B; color: #C8FFC8; border: 1px solid #1E5C1E; }
.cp-form .status.err { background: #2C0B0B; color: #FFC8C8; border: 1px solid #5C1E1E; }
@media (max-width: 640px) { .cp-form { grid-template-columns: 1fr; } }

/* -------- Marquee ---------------------------------------------- */
.marquee {
    background: var(--cp-pink);
    color: #fff;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--f-display);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 18px;
}
.marquee-inner { display: inline-flex; gap: 40px; animation: slide 30s linear infinite; padding-left: 40px; }
.marquee-inner span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-inner span::after { content: '/'; opacity: 0.6; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------- Footer ---------------------------------------------- */
.site-footer {
    background: var(--cp-ink);
    color: #A6A6A6;
    padding: clamp(3rem, 6vw, 5rem) 0 24px;
    border-top: 4px solid var(--cp-pink);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: 40px;
    border-bottom: 1px solid #1F1F1F;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img {
    max-width: 220px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 18px;
    display: block;
}
.footer-brand p { color: #999; font-size: 14px; max-width: 320px; }
.footer-nap { color: #DADADA; font-size: 14px; line-height: 1.9; }
.footer-nap a { color: #DADADA; border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.footer-nap a:hover { color: var(--cp-pink); border-bottom-color: var(--cp-pink); }
.footer-nap .label {
    display: block;
    font-family: var(--f-display);
    font-size: 15px;
    letter-spacing: 0.2em;
    color: var(--cp-pink);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links .label {
    font-family: var(--f-display);
    font-size: 15px;
    letter-spacing: 0.2em;
    color: var(--cp-pink);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.footer-links a { color: #B8B8B8; font-family: var(--f-display); font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; transition: color .15s, padding-left .15s; }
.footer-links a:hover { color: var(--cp-pink); padding-left: 4px; }

.gmb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    border: 1px solid rgba(255,20,147,0.5);
    background: rgba(255,20,147,0.06);
    color: #fff;
    font-family: var(--f-display);
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background .15s;
}
.gmb-link:hover { background: rgba(255,20,147,0.16); color: #fff; }
.gmb-link svg { width: 18px; height: 18px; fill: var(--cp-pink); }

.map-wrap {
    position: relative;
    aspect-ratio: 4/3;
    background: #111;
    border: 1px solid #222;
    overflow: hidden;
    border-radius: 6px;
}
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: invert(0.9) grayscale(0.7) contrast(1.1); }

.footer-bottom {
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    flex-wrap: wrap;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: #666;
}
.footer-bottom a { color: #999; border-bottom: 1px solid transparent; transition: color .15s, border-color .15s; }
.footer-bottom a:hover { color: var(--cp-pink); border-bottom-color: var(--cp-pink); }
.rankflow-attr {
    font-family: var(--f-body);
    letter-spacing: 0.1em;
}
.rankflow-attr a { color: var(--cp-pink); font-weight: 600; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border: 1px solid #333; display: grid; place-items: center; color: #B0B0B0; transition: all .15s; border-radius: var(--radius); }
.socials a:hover { background: var(--cp-pink); border-color: var(--cp-pink); color: #fff; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* -------- Misc ------------------------------------------------- */
.crumbs {
    color: rgba(255,255,255,0.6);
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    margin-bottom: 18px;
}
.crumbs a { color: var(--cp-pink); }

.media-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin: 40px 0 0; }
.media-strip img { aspect-ratio: 4/3; object-fit: cover; width: 100%; filter: grayscale(0.3); transition: filter .2s; border-radius: 4px; }
.media-strip img:hover { filter: none; }
@media (max-width: 700px) { .media-strip { grid-template-columns: 1fr; } }

.skip-link {
    position: absolute; left: -9999px; top: -9999px;
}
.skip-link:focus { left: 10px; top: 10px; z-index: 100; padding: 10px 14px; background: var(--cp-pink); color: #fff; }

:focus-visible { outline: 2px solid var(--cp-pink); outline-offset: 3px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
