/* =================================================================
   THE PRESSURE WASH KID — Landing Page Styles
   Brand: Electric Blue + Lime Green + Bright Orange on Charcoal/White
   ================================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
    --blue: #0066FF;
    --blue-dark: #0052cc;
    --green: #39D353;
    --green-dark: #2bb845;
    --charcoal: #1A1A2E;
    --charcoal-light: #2a2a44;
    --orange: #FF5722;
    --orange-hover: #ff6e3d;
    --white: #FFFFFF;
    --gray-50: #f7f8fb;
    --gray-100: #eef0f5;
    --gray-200: #dde0e8;
    --gray-400: #9aa0ad;
    --gray-600: #545b6b;
    --gray-800: #2a2e3a;

    --font-display: 'Barlow Condensed', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.10);
    --shadow-lg: 0 20px 50px rgba(26, 26, 46, 0.18);

    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
    text-transform: uppercase;
}

p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.kicker {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 6px 14px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 100px;
    margin-bottom: 16px;
}
.kicker-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}
.section-lede {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin: 0;
}

.accent { color: var(--blue); }
.accent-green { color: var(--green-dark); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
}

.btn-cta {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
}
.btn-cta:hover {
    background: var(--orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.0);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 18px 0;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--charcoal);
}
.site-header:not(.scrolled) .logo { color: var(--white); }

.logo-mark {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
    transform: rotate(-8deg);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.logo:hover .logo-mark { transform: rotate(0deg) scale(1.05); }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
}
.logo-text-top {
    font-size: 11px;
    letter-spacing: 0.18em;
    opacity: 0.85;
    font-weight: 700;
}
.logo-text-bottom {
    font-size: 22px;
    letter-spacing: 0.04em;
}
.logo-dot { color: var(--orange); }

.logo-light { color: var(--white); }

/* Nav */
.site-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    position: relative;
    padding: 6px 0;
}
.site-header.scrolled .nav-link { color: var(--charcoal); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}
.nav-link:hover { color: var(--orange); }
.nav-link:hover::after { width: 100%; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-phone {
    display: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    align-items: center;
    justify-content: center;
}
.site-header.scrolled .header-phone {
    background: var(--gray-100);
    color: var(--blue);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding: 130px 0 80px;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(57, 211, 83, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 87, 34, 0.14) 0%, transparent 45%),
        linear-gradient(135deg, var(--charcoal) 0%, #0a1a4a 50%, #003a99 100%);
}
.hero-bg-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 28px 28px;
}
.hero-bg-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 60%, rgba(26, 26, 46, 0.5) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    max-width: 640px;
}

/* Owner photo card on the right */
.hero-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transform: rotate(-1.5deg);
    border: 4px solid var(--white);
    animation: heroPhotoIn 1s cubic-bezier(.16,1,.3,1) both;
}
@keyframes heroPhotoIn {
    from { opacity: 0; transform: translateY(20px) rotate(-4deg); }
    to { opacity: 1; transform: translateY(0) rotate(-1.5deg); }
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}
.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 46, 0.55) 100%);
    pointer-events: none;
}
.hero-photo-tag {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.hero-photo-tag i {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}
.hero-photo-tag strong { font-weight: 700; color: var(--white); }

.hero-photo-stamp {
    position: absolute;
    top: -18px;
    right: -18px;
    background: var(--orange);
    color: var(--white);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    transform: rotate(12deg);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.5);
    border: 3px solid var(--white);
    z-index: 3;
    animation: stampSpin 8s linear infinite;
}
@keyframes stampSpin {
    0%, 100% { transform: rotate(12deg); }
    50% { transform: rotate(-8deg); }
}
.stamp-num {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.03em;
}
.stamp-text {
    font-size: 9px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-top: 3px;
    line-height: 1.2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(57, 211, 83, 0.15);
    border: 1px solid rgba(57, 211, 83, 0.4);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(57, 211, 83, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(57, 211, 83, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin: 0 0 24px;
    line-height: 0.95;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title .accent { color: var(--green); }

.hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    max-width: 620px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.92);
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.trust-badge i { color: var(--green); margin-right: 6px; }
.trust-badge .sep {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    z-index: 2;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ---------- Why Section ---------- */
.why-section {
    background: var(--gray-50);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-100);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 102, 255, 0.2);
}
.why-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.25);
}
.why-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.why-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.97rem;
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--blue);
    color: var(--white);
    transform: scale(1.05) rotate(-5deg);
}
.service-card h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.service-link {
    font-weight: 700;
    font-size: 14px;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-link:hover { color: var(--orange-hover); gap: 10px; }

/* ---------- Before/After ---------- */
.work-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}
.ba-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.ba-tab {
    padding: 10px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.ba-tab:hover { border-color: var(--blue); color: var(--blue); }
.ba-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.ba-stage {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--charcoal);
}
@media (min-width: 768px) {
    .ba-stage { aspect-ratio: 16/9; }
}

.ba-slider {
    position: absolute;
    inset: 0;
    user-select: none;
    cursor: ew-resize;
    display: none;
    overflow: hidden;
}
.ba-slider.active { display: block; }

.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-before-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
}
.ba-before-wrap .ba-before {
    width: 100vw;
    max-width: 950px;
    height: 100%;
    object-fit: cover;
}
/* Make before image stretch to full container width using parent's width context */
.ba-before-wrap {
    /* Inner image scales to slider's full width */
}
.ba-slider .ba-before-wrap .ba-before {
    width: max(100%, 950px);
    /* We'll override via JS to maintain proper scaling; fallback: use CSS trick */
}

.ba-handle {
    position: absolute;
    top: 0; bottom: 0;
    width: 4px;
    background: var(--white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.ba-handle-line {
    position: absolute;
    inset: 0;
    background: var(--white);
}
.ba-handle-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    background: var(--orange);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
    border: 3px solid var(--white);
}

.ba-label {
    position: absolute;
    top: 18px;
    padding: 6px 14px;
    background: rgba(26,26,46,0.85);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    pointer-events: none;
}
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; background: var(--green-dark); }

/* Stat bar */
.stat-bar {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: var(--charcoal);
    color: var(--white);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.stat-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
}
.stat-num, .stat-num-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1;
    color: var(--green);
}
.stat-suffix {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--green);
}
.stat-num-text { color: var(--green); }
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 60px;
    align-items: center;
}
.about-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}
.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.04); }

.about-photo-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-photo-caption i { color: var(--green); }

.about-photo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    text-align: center;
    transform: rotate(-8deg);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
    line-height: 1;
}
.badge-num { font-size: 22px; }
.badge-text {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 700;
}

.about-copy .section-title { text-align: left; }
.about-lead {
    font-size: 1.15rem;
    color: var(--charcoal);
    font-weight: 500;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: grid;
    gap: 12px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-800);
    font-weight: 500;
}
.about-list i {
    width: 24px; height: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ---------- "Sample" tag on slider ---------- */
.ba-sample-tag {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* ---------- How It Works ---------- */
.how-section {
    background: var(--gray-50);
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.how-card {
    background: var(--white);
    padding: 40px 32px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.how-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.how-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--gray-100);
    line-height: 1;
    pointer-events: none;
}
.how-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}
.how-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.how-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.97rem;
    position: relative;
    z-index: 1;
}

/* ---------- Our Promise ---------- */
.promise-section {
    background: var(--gray-50);
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}
.promise-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform var(--transition), box-shadow var(--transition);
}
.promise-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.promise-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(57, 211, 83, 0.12);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.promise-card h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.promise-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
}
.promise-footnote {
    text-align: center;
    margin-top: 40px;
    font-size: 0.97rem;
    color: var(--gray-600);
}
.promise-footnote a {
    font-weight: 700;
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}

/* ---------- On The Job Gallery ---------- */
.gallery-section {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(57, 211, 83, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.gallery-section .container { position: relative; z-index: 1; }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-lede { color: rgba(255,255,255,0.75); }
.gallery-section .kicker {
    background: rgba(57, 211, 83, 0.15);
    color: var(--green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item.gallery-tall {
    aspect-ratio: 3/4.4;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}
.gallery-item figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gallery-item figcaption i {
    width: 30px; height: 30px;
    background: var(--orange);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ---------- Reviews ---------- */
.reviews-section {
    background: var(--gray-50);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stars {
    color: #FFB400;
    font-size: 15px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}
.review-card p {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.65;
    flex: 1;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.review-meta strong {
    display: block;
    color: var(--charcoal);
    font-size: 14px;
}
.review-meta span {
    color: var(--gray-400);
    font-size: 13px;
}

/* ---------- Quote CTA ---------- */
.quote-section {
    position: relative;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}
.quote-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(57, 211, 83, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 87, 34, 0.18) 0%, transparent 50%),
        linear-gradient(135deg, var(--blue) 0%, #0048b3 100%);
    z-index: 0;
}
.quote-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 32px 32px;
}

.quote-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.quote-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--white);
    margin-bottom: 16px;
}
.underline-accent {
    position: relative;
    display: inline-block;
    color: var(--green);
}
.underline-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
}
.quote-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
}
.quote-perks {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    gap: 12px;
}
.quote-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.quote-perks i {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.quote-form {
    background: var(--white);
    color: var(--charcoal);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.ghl-form-wrap {
    padding: 24px;
    min-height: 570px;
}
.form-title {
    font-size: 1.7rem;
    color: var(--charcoal);
    margin-bottom: 22px;
}
.form-row {
    margin-bottom: 16px;
}
.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.optional {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 12px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A1A2E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
}
.form-row textarea { resize: vertical; }
.form-row input.error,
.form-row select.error {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--gray-400);
    margin: 14px 0 0;
}

#qf-submit { margin-top: 8px; position: relative; }
#qf-submit .btn-loading { display: none; }
#qf-submit.loading .btn-label { display: none; }
#qf-submit.loading .btn-loading { display: inline-flex; align-items: center; gap: 8px; }

.form-success {
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(57, 211, 83, 0.12);
    border: 1px solid rgba(57, 211, 83, 0.4);
    border-radius: 10px;
    color: var(--green-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-success i { font-size: 18px; }
.form-success strong { margin-right: 4px; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.75);
    padding-top: 60px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand p {
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
}
.footer-info p { margin: 0 0 10px; font-size: 15px; }
.footer-info i { color: var(--green); margin-right: 8px; width: 18px; }
.footer-info a { color: rgba(255,255,255,0.85); }
.footer-info a:hover { color: var(--green); }

.footer-social-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.social-icons a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.footer-legal .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-legal p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ---------- Floating CTA (mobile) ---------- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 18px;
    right: 18px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
    z-index: 90;
    align-items: center;
    gap: 8px;
}
.floating-cta:hover { color: var(--white); transform: translateY(-2px); }

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0s);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-bg { animation: none; }
    .scroll-cue { animation: none; }
    .hero-eyebrow .dot { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .hero-grid { gap: 40px; }
    .hero-photo-stamp { width: 80px; height: 80px; top: -10px; right: -10px; }
    .stamp-num { font-size: 15px; }
    .gallery-grid { gap: 14px; }
    .how-grid { gap: 18px; }
    .how-card { padding: 32px 24px; }
}

@media (max-width: 820px) {
    .section { padding: 70px 0; }

    .nav-toggle { display: flex; }
    .header-phone { display: inline-flex; }

    .site-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 100px 32px 32px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.2);
        transition: right 0.35s ease;
        z-index: 99;
    }
    .site-nav.open { right: 0; }
    .site-nav .nav-link {
        color: var(--charcoal);
        font-size: 18px;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .header-cta .btn-sm { display: none; }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-content { max-width: 100%; order: 1; }
    .hero-photo {
        order: 2;
        max-width: 360px;
        margin: 0 auto;
        aspect-ratio: 3/4;
        transform: rotate(-1deg);
    }
    .hero-actions { gap: 10px; }
    .hero-actions .btn { flex: 1; min-width: 0; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-tall { grid-column: span 2; aspect-ratio: 16/10; }
    .gallery-tall img { object-position: center 30%; }

    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .promise-grid { grid-template-columns: 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo { max-width: 420px; margin: 0 auto; aspect-ratio: 4/5; }
    .about-copy .section-title { text-align: left; }

    .quote-grid { grid-template-columns: 1fr; gap: 40px; }
    .quote-form { padding: 16px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
    .footer-legal .container { flex-direction: column; text-align: center; }

    .floating-cta { display: inline-flex; }

    .stat-bar { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
    .stat-bar .stat { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
    .stat-bar .stat:last-child { border-bottom: 0; padding-bottom: 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 1.9rem; }
    .btn-lg { padding: 15px 24px; font-size: 15px; }
    .hero-actions .btn { width: 100%; flex: none; }
    .trust-badge { gap: 10px; font-size: 13px; }
    .trust-badge .sep { display: none; }
    .hero-photo { max-width: 280px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-tall { grid-column: span 1; aspect-ratio: 4/3; }
}
