/* ===================================================
   24 Seven Movers — "Liquid Glass + Tape" Style
   Version: 6.3
   =================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --blue-700: #1D4ED8;
    --blue-600: #2563EB;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;

    --tape-700: #4D7C0F;
    --tape-600: #65A30D;
    --tape-500: #84CC16;
    --tape-400: #A3E635;
    --tape-300: #BEF264;
    --tape-200: #D9F99D;
    --tape-100: #ECFCCB;
    --tape-50: #F7FEE7;
    --tape-glow: rgba(163, 230, 53, 0.35);

    --yellow-500: #EAB308;
    --yellow-400: #FACC15;
    --yellow-300: #FDE047;

    --dark: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GLASS UTILITIES ===== */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
}
.glass--light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
}
.glass--dark {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

/* ===== GRAIN TEXTURE ===== */
.grain { position: relative; }
.grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__orb { animation: none !important; }
    .tape-float { animation: none !important; }
    .hero__bg { animation: none !important; }
    .tape-ticker__track { animation: none !important; }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 8px 0;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s,
                box-shadow 0.35s;
}
.navbar.scrolled {
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
}
.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 20%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 80%, transparent 100%);
    pointer-events: none;
}
.navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.navbar__logo-icon {
    height: 44px;
    width: auto;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.3s;
}
.navbar__logo-text {
    height: 30px;
    width: auto;
    margin-top: 1px;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled .navbar__logo-icon {
    height: 34px;
}
.navbar.scrolled .navbar__logo-text {
    height: 23px;
}
.navbar__logo:hover .navbar__logo-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}
.navbar__links {
    display: flex;
    gap: 6px;
    align-items: center;
}
.navbar__link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    padding: 6px 12px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.navbar__link:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.06);
}
.navbar__link:focus-visible {
    outline: 2px solid rgba(163, 230, 53, 0.5);
    outline-offset: 2px;
}
.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--tape-300);
    background: rgba(163, 230, 53, 0.08);
    border: 1px solid rgba(163, 230, 53, 0.25);
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
}
.navbar.scrolled .navbar__cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.navbar__cta:hover {
    background: rgba(163, 230, 53, 0.15);
    border-color: rgba(163, 230, 53, 0.4);
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.12),
                0 0 4px rgba(163, 230, 53, 0.08);
    color: var(--tape-200);
    transform: translateY(-1px);
}
.navbar__cta:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}
.navbar__cta svg {
    flex-shrink: 0;
}

/* Navbar toggle (hamburger) */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
}
.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    transform-origin: center;
}
.navbar__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}
/* Scroll offset for fixed navbar */
#services, #included, #why-us, #reviews, #about, #contact, #social-proof {
    scroll-margin-top: 59px;
}

/* Animated gradient background */
.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 40%, #1e3a8a 70%, #1D4ED8 100%);
    background-size: 300% 300%;
    animation: gradientShift 12s ease-in-out infinite;
    z-index: 0;
}

/* Hero team photo — full-width background */
.hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
    opacity: 0.55;
    pointer-events: none;
}
/* Dark overlay on top of photo for text readability */
.hero__photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.25) 0%, rgba(17, 24, 39, 0.2) 50%, rgba(17, 24, 39, 0.4) 100%);
    pointer-events: none;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}
.hero__orb--lime {
    width: 400px;
    height: 400px;
    background: rgba(163, 230, 53, 0.2);
    top: -100px;
    right: -50px;
    animation: floatOrb1 8s ease-in-out infinite;
}
.hero__orb--blue {
    width: 350px;
    height: 350px;
    background: rgba(59, 130, 246, 0.25);
    bottom: -80px;
    left: -60px;
    animation: floatOrb2 10s ease-in-out infinite;
}
.hero__orb--yellow {
    width: 250px;
    height: 250px;
    background: rgba(250, 204, 21, 0.12);
    top: 40%;
    left: 30%;
    animation: floatOrb3 9s ease-in-out infinite;
}
@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.1); }
}
@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.05); }
}
@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -25px) scale(0.95); }
}

/* ===== HERO — Floating Tape Pieces ===== */
.tape-float {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
}

/* Lime piece 1 - top left area */
.tape-float--1 {
    width: 180px;
    top: 12%;
    left: -30px;
    transform: rotate(-15deg);
    opacity: 0.55;
    animation: tapeFloat1 7s ease-in-out infinite;
}

/* Lime piece 2 - middle right */
.tape-float--2 {
    width: 140px;
    top: 50%;
    right: 25%;
    transform: rotate(10deg);
    opacity: 0.45;
    animation: tapeFloat2 9s ease-in-out infinite;
}

/* Yellow piece - bottom right */
.tape-float--3 {
    width: 160px;
    bottom: 18%;
    right: 5%;
    transform: rotate(7deg);
    opacity: 0.5;
    animation: tapeFloat3 8s ease-in-out infinite;
}

/* Clear piece - center left */
.tape-float--4 {
    width: 130px;
    top: 38%;
    left: 15%;
    transform: rotate(-8deg);
    opacity: 0.6;
    animation: tapeFloat4 6.5s ease-in-out infinite;
}

@keyframes tapeFloat1 {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-18px); }
}
@keyframes tapeFloat2 {
    0%, 100% { transform: rotate(10deg) translateY(0); }
    50% { transform: rotate(10deg) translateY(14px); }
}
@keyframes tapeFloat3 {
    0%, 100% { transform: rotate(7deg) translateY(0); }
    50% { transform: rotate(7deg) translateY(-12px); }
}
@keyframes tapeFloat4 {
    0%, 100% { transform: rotate(-8deg) translateY(0) translateX(0); }
    50% { transform: rotate(-8deg) translateY(-12px) translateX(5px); }
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    min-height: 100vh;
    padding: 90px 0 40px;
}

/* Trust line (pill badges) */
.hero__trust-line {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.hero__trust-item {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}
.hero__trust-item--pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero__heading {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__heading .accent { color: var(--tape-400); }
.hero__heading-sub { /* inline on desktop, block on mobile via media query */ }

.hero__desc {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 480px;
}

/* ===== HERO — Form ===== */
.hero__form-card {
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 70px;
}
.hero__form-tape {
    height: 6px;
    background: linear-gradient(90deg, var(--tape-500), var(--tape-400));
}
.hero__form {
    padding: 24px;
}
.hero__form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    text-align: center;
}
.hero__form-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    text-align: center;
}
.form-group { margin-bottom: 10px; }
.form-input, .form-select {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.form-input:focus, .form-select:focus {
    border-color: var(--tape-400);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.15);
}
.form-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.form-select option { background: var(--dark); color: var(--white); }
.form-textarea {
    resize: vertical;
    min-height: 48px;
    max-height: 120px;
    line-height: 1.5;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Flatpickr theme override */
.flatpickr-calendar {
    background: #1a2332;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    font-family: var(--font-body);
}
.flatpickr-months .flatpickr-month {
    background: transparent;
    color: #fff;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
}
.flatpickr-current-month .flatpickr-monthDropdown-months option {
    background: #1a2332;
}
.flatpickr-weekdays { background: transparent; }
span.flatpickr-weekday {
    color: rgba(255,255,255,0.4);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
}
.flatpickr-day {
    color: #fff;
    border-radius: 8px;
}
.flatpickr-day:hover {
    background: rgba(163,230,53,0.15);
    border-color: transparent;
}
.flatpickr-day.today {
    border-color: var(--tape-400);
}
.flatpickr-day.selected {
    background: var(--tape-500);
    border-color: var(--tape-500);
    color: #fff;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255,255,255,0.25);
    background: transparent;
    border-color: transparent;
    cursor: default;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: rgba(255,255,255,0.18);
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: rgba(255,255,255,0.6);
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--tape-400);
}
.hero__form-submit {
    width: 100%;
    padding: 13px;
    background: var(--tape-500);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--tape-glow);
    transition: all 0.25s ease-out;
    margin-top: 4px;
}
.hero__form-submit:hover {
    background: var(--tape-400);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--tape-glow);
}
.hero__form-note {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
}
.hero__form-note a {
    transition: color 0.2s;
}
.hero__form-note a:hover {
    color: var(--tape-300) !important;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--tape-500);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px var(--tape-glow);
    transition: all 0.25s ease-out;
}
.btn-primary:hover {
    background: var(--tape-400);
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 8px 30px var(--tape-glow);
}
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease-out;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
}

/* ===== TAPE BANNERS ===== */

/* Tape Banner — Shared Styles */
.tape-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.tape-banner__text {
    position: relative;
    z-index: 3;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 32px;
    width: 100%;
}

/* Shared tape texture image styles */
.tape-texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
}

/* Hero tape strip — extends below hero into services area */
.hero__tape-strip {
    position: absolute;
    bottom: -500px;
    left: -15%;
    right: -15%;
    z-index: 4;
}
.hero__tape-img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    opacity: 0.92;
    transform: scaleY(-1);
}

/* Tape Banner #2: Yellow Classic */
.tape-banner--yellow {
    background: #1e293b;
    height: 120px;
}
.tape-banner--yellow .tape-banner__text {
    font-size: clamp(14px, 2vw, 22px);
    letter-spacing: 0.06em;
    color: #ffffff;
}
.tape-texture--yellow {
    opacity: 0.75;
}

/* Tape Banner #3: Clear / Transparent */
.tape-banner--clear {
    background: #f1f5f9;
    height: 90px;
}
.tape-banner--clear .tape-banner__text {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 800;
    font-style: italic;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-transform: none;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
}
.tape-texture--clear-light {
    mix-blend-mode: multiply;
    opacity: 0.35;
}

/* Tape Banner #4: Multiple Overlapping Strips */
.tape-banner--multi {
    background: var(--dark);
    height: 280px;
}
.tape-banner--multi .tape-banner__text {
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1;
}

/* Individual tape strip containers for multi section */
.tape-strip {
    position: absolute;
    left: -5%;
    right: -5%;
    pointer-events: none;
    z-index: 2;
    will-change: transform;
    overflow: hidden;
}
.tape-strip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.tape-strip--lime-m {
    top: 25%;
    height: 60px;
}
.tape-strip--lime-m img {
    opacity: 0.6;
}
.tape-strip--yellow-m {
    top: 42%;
    height: 55px;
}
.tape-strip--yellow-m img {
    opacity: 0.65;
}
.tape-strip--clear-m {
    top: 58%;
    height: 65px;
}
.tape-strip--clear-m img {
    opacity: 0.8;
}

/* ===== TAPE TICKER ===== */
.tape-ticker {
    position: relative;
    overflow: hidden;
    height: 60px;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.tape-ticker__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    will-change: transform;
}
.tape-ticker__track {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    animation: tickerScroll 25s linear infinite;
    will-change: transform;
}
.tape-ticker__track:hover {
    animation-play-state: paused;
}
.tape-ticker__item {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    padding: 0 24px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.tape-ticker__item .separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin-left: 24px;
    vertical-align: middle;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SERVICES — BENTO GRID ===== */
.services {
    padding: 100px 0 100px;
    background: var(--gray-100);
    position: relative;
}
.services__header {
    position: relative;
    z-index: 5;
}

/* ============================================
   BENTO GRID — Services
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

/* --- TILE BASE --- */
.bento-tile {
    position: relative;
    border-radius: 16px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
    cursor: default;
}
.bento-tile:hover { transform: translateY(-4px); }

/* Faded number */
.bento-tile .tile-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 64px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-tile:hover .tile-number { transform: scale(1.1); }

/* --- DARK TILE (Navy — Concept 3.0) --- */
.bento-tile--dark {
    background: #1E3A5F;
    border: 1px solid rgba(255,255,255,0.08);
}
.bento-tile--dark::before {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163,230,53,0.15) 0%, transparent 70%);
    opacity: 0.12;
    top: -80px; right: -80px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.bento-tile--dark:hover::before { opacity: 0.18; transform: translate(-8px, 8px); }
.bento-tile--dark:hover {
    box-shadow: 0 16px 32px rgba(30,58,95,0.3),
                0 0 0 1px rgba(163,230,53,0.15);
    border-color: rgba(163,230,53,0.15);
}
.bento-tile--dark .tile-number { color: rgba(255,255,255,0.07); }
.bento-tile--dark .tile-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
}
.bento-tile--dark .tile-desc {
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-size: 14px; line-height: 1.5;
    margin-top: 8px;
}
.bento-tile--dark .tile-cta {
    color: var(--tape-400);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.bento-tile--dark .tile-cta:hover { gap: 8px; }

/* --- WHITE TILE --- */
.bento-tile--white {
    background: var(--white);
    border: 1.5px solid #D1D5DB;
}
.bento-tile--white:hover {
    box-shadow: 0 8px 24px rgba(30,58,95,0.1);
    border-color: var(--tape-400);
}
.bento-tile--white .tile-number { color: rgba(0,0,0,0.05); }
.bento-tile--white .tile-title {
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700; font-size: 17px;
}
.bento-tile--white .tile-desc {
    color: var(--gray-500);
    font-family: var(--font-body);
    font-size: 13px; line-height: 1.5;
    margin-top: 6px;
}
.bento-tile--white .tile-cta {
    color: var(--tape-600);
    font-family: var(--font-body);
    font-size: 13px; font-weight: 600;
    margin-top: 10px;
    display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.bento-tile--white .tile-cta:hover { gap: 8px; }

/* Bottom accent bar on white tiles */
.bento-tile--white::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--tape-400), var(--tape-600));
    border-radius: 0 0 16px 16px;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-tile--white:hover::after { width: 100%; }

/* CTA arrow nudge on tile hover */
.tile-cta span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.bento-tile:hover .tile-cta span { transform: translateX(4px); }

/* --- TILE SIZES --- */
.bento-tile--hero {
    grid-column: span 2;
    grid-row: span 2;
}
.bento-tile--hero .tile-title { font-size: 28px; line-height: 1.15; }
.bento-tile--hero .tile-number { font-size: 120px; top: 20px; right: 28px; }

.bento-tile--wide { grid-column: span 2; }
.bento-tile--wide .tile-title { font-size: 20px; }

.bento-tile--full { grid-column: 1 / -1; }
.bento-tile--full .tile-title { font-size: 24px; }

.bento-tile--std .tile-title { font-size: 17px; }
.bento-tile--dark.bento-tile--std .tile-title { font-size: 20px; }

/* --- ICONS --- */
.tile-icon {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}
.bento-tile:hover .tile-icon { transform: translateY(-4px) rotate(-3deg); }

.tile-icon svg { transition: stroke 0.3s ease; }
.bento-tile--dark .tile-icon svg { stroke: var(--tape-400); }
.bento-tile--dark:hover .tile-icon svg { stroke: var(--tape-300); }
.bento-tile--white .tile-icon svg { stroke: var(--tape-600); }
.bento-tile--white:hover .tile-icon svg { stroke: var(--tape-500); }

.tile-icon--sm svg { width: 40px; height: 40px; }
.tile-icon--lg svg { width: 56px; height: 56px; }

.bento-tile--has-icon { justify-content: flex-start; padding-top: 28px; }
.bento-tile--has-icon.bento-tile--hero { padding-top: 36px; }
.bento-tile--has-icon .tile-content { margin-top: auto; }

/* Fix std tiles: content flows after icon, CTA at bottom */
.bento-tile--std.bento-tile--has-icon .tile-content {
    margin-top: 4px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bento-tile--std .tile-cta { margin-top: auto; }
.bento-tile--std .tile-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- CSS PATTERNS (Concept 3.0) --- */
.bento-tile--hero-pattern {
    background:
        repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(163,230,53,0.05) 16px, rgba(163,230,53,0.05) 17px),
        #1E3A5F;
}
.bento-tile--dot-pattern {
    background:
        radial-gradient(circle, rgba(163,230,53,0.08) 1px, transparent 1px),
        #1E3A5F;
    background-size: 20px 20px;
}

/* --- TOGGLE (inline in grid) --- */
.bento-toggle-cell {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-200);
    border-radius: 16px;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
    min-height: 220px;
}
.bento-toggle-cell:hover {
    border-color: var(--tape-400);
    background: rgba(163,230,53,0.03);
}
.toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--gray-300);
    border-radius: 100px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.toggle-btn:hover {
    border-color: var(--tape-400);
    color: var(--tape-700);
}
.toggle-btn svg {
    width: 18px; height: 18px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.toggle-btn.is-active svg { transform: rotate(180deg); }

/* --- EXPAND / COLLAPSE --- */
.bento-tile--extra { display: none; }
.bento-grid.is-expanded .bento-tile--extra { display: flex; }
.bento-grid.is-expanded .bento-toggle-cell { display: none; }

.collapse-wrap {
    display: none;
    justify-content: center;
    margin-top: 32px;
}
.collapse-wrap.is-visible { display: flex; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-tile--hero, .bento-tile--wide, .bento-tile--full {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-tile { min-height: 180px; }
    .bento-tile--hero { min-height: 240px; }
    .bento-tile--hero .tile-title { font-size: 22px; }
    .bento-tile--hero .tile-number { font-size: 80px; }
    .bento-toggle-cell { grid-column: span 1; min-height: 100px; }
    /* Mobile: show only 3 key services, rest under "More" */
    .bento-tile--mobile-extra { display: none; }
    .bento-grid.is-expanded .bento-tile--mobile-extra { display: flex; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-tile--hero { grid-column: span 2; grid-row: span 1; min-height: 260px; }
    .bento-tile--wide, .bento-tile--full { grid-column: span 2; }
    .bento-toggle-cell { grid-column: span 1; }
}

.section__eyebrow {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tape-600);
    margin-bottom: 10px;
}
.section__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 12px;
    color: var(--dark);
}
.section__subtitle {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 48px;
    max-width: 540px;
}

/* ===== WHAT'S INCLUDED — Truck + Tags ===== */
.included-section {
    padding: 100px 0 80px;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}
.included-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(37, 99, 235, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(163, 230, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.included-section > .container { position: relative; z-index: 1; }
.included-header {
    text-align: center;
    margin-bottom: 56px;
}
.included-header__eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--tape-400);
    margin-bottom: 12px;
}
.included-header__title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}
.included-header__title span {
    color: var(--tape-400);
}
.included-header__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.included-scene {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}
.included-scene__photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}
.included-scene__photo img {
    width: 100%;
    height: auto;
    display: block;
}
.included-scene__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 20%, rgba(15, 23, 42, 0.5) 100%),
        linear-gradient(to top, rgba(15, 23, 42, 0.4) 0%, transparent 50%);
    pointer-events: none;
}
.included-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
}
.included-note strong {
    color: var(--tape-400);
    font-weight: 600;
}

/* --- Inc Tags --- */
.inc-tag {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(163, 230, 53, 0.15);
    white-space: nowrap;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease,
                border-color 0.3s ease,
                background 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.inc-tag:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(163, 230, 53, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45),
                0 0 24px rgba(163, 230, 53, 0.08);
    background: rgba(15, 23, 42, 0.9);
    z-index: 20;
}
.inc-tag__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(163, 230, 53, 0.15);
    border: 1.5px solid rgba(163, 230, 53, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: background 0.3s;
}
.inc-tag:hover .inc-tag__check {
    background: rgba(163, 230, 53, 0.25);
}
.inc-tag__check svg {
    width: 11px;
    height: 11px;
    stroke: var(--tape-400);
    stroke-width: 2.5;
    fill: none;
}
.inc-tag__text {
    display: flex;
    flex-direction: column;
}
.inc-tag__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--white);
    line-height: 1.3;
}
.inc-tag__desc {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    white-space: normal;
    max-width: 200px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.3s ease,
                margin-top 0.3s ease;
    margin-top: 0;
}
.inc-tag:hover .inc-tag__desc {
    max-height: 60px;
    opacity: 1;
    margin-top: 4px;
}

/* --- Tag positions (organic chaos) --- */
.inc-tag--1 { top: 10%; left: 26%; }
.inc-tag--2 { top: 6%;  left: 54%; }
.inc-tag--3 { top: 34%; left: 20%; }
.inc-tag--4 { top: 38%; left: 52%; }
.inc-tag--5 { top: 28%; right: 16%; }
.inc-tag--6 { top: 58%; left: 24%; }
.inc-tag--7 { top: 60%; left: 52%; }
.inc-tag--8 { top: 76%; left: 36%; }

/* --- Highlight variant --- */
.inc-tag--hl {
    border-color: rgba(163, 230, 53, 0.25);
    background: rgba(15, 23, 42, 0.82);
}
.inc-tag--hl .inc-tag__check {
    background: rgba(163, 230, 53, 0.22);
    border-color: rgba(163, 230, 53, 0.5);
}
.inc-tag--hl::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tape-400);
    animation: inc-pulse 2s ease-in-out infinite;
}
@keyframes inc-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ===== WHY CHOOSE US — PHOTO JOURNEY ROAD ===== */
.journey {
    position: relative;
    overflow: hidden;
}
.journey__mosaic {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    position: absolute;
    inset: 0;
}
.journey__photo { overflow: hidden; }
.journey__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
}
.journey__photo--wide { grid-column: span 2; }
.journey__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(17, 24, 39, 0.82) 0%,
        rgba(17, 24, 39, 0.48) 30%,
        rgba(17, 24, 39, 0.42) 60%,
        rgba(17, 24, 39, 0.78) 100%);
    z-index: 1;
}
.journey__road { width: 100%; }
.journey__road svg { width: 100%; height: auto; display: block; }
.journey__road--mobile { display: none; }
@media (max-width: 768px) {
    .journey__road--desktop { display: none; }
    .journey__road--mobile { display: block; }
}
.road-stop {
    transition: opacity 0.6s ease;
}
.road-label {
    text-align: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.1);
}
.road-label__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}
.road-label__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    line-height: 1.3;
    margin-top: 2px;
}

/* Tape banner light variant (inside journey--light) */
.tape-banner--light {
    background: transparent;
    overflow: hidden;
    margin-top: -60px;
}
.tape-banner--light .tape-banner__text {
    color: #0f172a;
}
.tape-banner--light .tape-strip--lime-m img {
    opacity: 0.85;
}
.tape-banner--light .tape-strip--yellow-m img {
    opacity: 0.9;
}
.tape-banner--light .tape-strip--clear-m img {
    opacity: 1;
    filter: contrast(1.4) brightness(0.95);
}

/* ===== BLUE TRUCK (overlay on SVG road) ===== */
/* Road signs — subtle sway only when truck passes */
.road-sign {
    transform-origin: bottom center;
    transition: transform 0.6s ease;
}
.road-sign.road-sign--shake {
    animation: signSway 0.5s ease-in-out 1;
}
@keyframes signSway {
    0%, 100% { transform: rotate(0deg); }
    30% { transform: rotate(3deg); }
    70% { transform: rotate(-2deg); }
}

.blue-truck {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    will-change: transform;
}
.blue-truck > img {
    height: 120px;
    width: auto;
    display: block;
}
.blue-truck__logo {
    position: absolute;
    top: 6%;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 2px;
}
.blue-truck__logo-icon {
    height: 12px;
    width: auto;
}
.blue-truck__logo-text {
    height: 8px;
    width: auto;
}
.blue-truck__cta {
    position: absolute;
    top: 55%;
    left: 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.blue-truck__qr {
    height: 12px;
    width: 12px;
    display: block;
    padding: 1px;
    background: white;
    border-radius: 1px;
}
.blue-truck__cta-text {
    font-family: var(--font-heading);
    font-size: 4px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}
.journey--light .container {
    position: relative;
}

/* ===== PHOTO MOSAIC — Social Proof (standalone) ===== */
.mosaic-proof {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.mosaic-proof__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.mosaic-proof__title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: white;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.mosaic-proof__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--tape-300);
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(163,230,53,0.3);
    transition: all 0.3s ease;
}
.mosaic-proof__link:hover {
    background: rgba(163,230,53,0.15);
    color: white;
}

/* ===== JOURNEY LIGHT — Road section ===== */
.journey--light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #f1f5f9 50%, #e0f2fe 70%, #f0fdf4 100%);
    padding: 24px 0 64px;
    overflow: visible;
    position: relative;
}
.journey--light .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.journey__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
}
/* Road labels on light bg */
.journey--light .road-label {
    background: rgba(15,23,42,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15,23,42,0.1);
}
.journey--light .road-label__title {
    color: #0f172a;
}
.journey--light .road-label__desc {
    color: #64748b;
}
/* Road path darker on light bg */
.journey--light .journey__road svg path[stroke="rgba(0,0,0,0.3)"] {
    stroke: rgba(0,0,0,0.12);
}
.journey--light .journey__road svg path[stroke="rgba(255,255,255,0.12)"] {
    stroke: rgba(0,0,0,0.06);
}
@media (max-width: 900px) {
    .journey__mosaic {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    .journey__photo--wide { grid-column: span 1; }
    .mosaic-proof { min-height: 320px; }
    .mosaic-proof__title { font-size: clamp(20px, 5vw, 32px); padding: 0 24px; }
}
@media (max-width: 480px) {
    .journey__mosaic { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(6, 1fr); }
    .mosaic-proof { min-height: 280px; }
    .mosaic-proof__title { font-size: 18px; }
}

/* ===== GOOGLE REVIEWS (Auto-scroll Marquee) ===== */
.reviews {
    padding: 80px 0 72px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.reviews__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(163, 230, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(250, 204, 21, 0.05) 0%, transparent 60%);
    z-index: 0;
}
.reviews .container { position: relative; z-index: 2; }

/* Header with Google badge */
.reviews__header {
    text-align: center;
    margin-bottom: 40px;
}
.reviews__google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
}
.reviews__google-badge svg { flex-shrink: 0; }
.reviews__google-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.reviews__google-rating {
    color: #FACC15;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}
.reviews__google-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}
.reviews__google-badge--link {
    text-decoration: none;
    cursor: pointer;
}
.reviews__google-badge--link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Slider container — full width, no overflow */
.reviews__slider {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: 0 -24px;
    padding: 8px 0 16px;
    cursor: grab;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.reviews__slider:active { cursor: grabbing; }

/* Track — flex row with marquee animation */
.reviews__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviewsScroll 80s linear infinite;
    will-change: transform;
}
.reviews__track:hover {
    animation-play-state: paused;
}
.reviews__track.dragging {
    animation-play-state: paused;
    transition: none;
}

@keyframes reviewsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review card — liquid glass + tape accent */
.review-card {
    flex: 0 0 340px;
    min-width: 340px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
/* Tape accent strip at top */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tape-500), var(--tape-300));
    opacity: 0;
    transition: opacity 0.3s;
}
.review-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 0 0 1.5px rgba(163, 230, 53, 0.2);
    border-color: rgba(163, 230, 53, 0.25);
    background: rgba(255, 255, 255, 0.1);
}
.review-card:hover::before { opacity: 1; }

/* Card header: avatar, name, stars, date */
.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background: #333;
}
.review-card__name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}
.review-card__stars {
    font-size: 12px;
    color: #FACC15;
    letter-spacing: 2px;
    margin-top: 2px;
}
.review-card__date {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
}

/* Review text — no quotes, no italic */
.review-card__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    flex: 1;
}

/* Card footer */
.review-card__footer {
    display: flex;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 14px;
}
.review-card__source {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 60%, #1e3a8a 100%);
}
.cta-section__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.cta-section__orb--1 {
    width: 300px; height: 300px;
    background: rgba(163, 230, 53, 0.15);
    top: -80px; right: 10%;
}
.cta-section__orb--2 {
    width: 250px; height: 250px;
    background: rgba(59, 130, 246, 0.2);
    bottom: -60px; left: 5%;
}
.cta__card {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 60px 48px;
}
.cta__title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.12;
}
.cta__title .accent { color: var(--tape-400); }
.cta__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0f1a;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr 0.7fr;
    gap: 24px;
    padding-bottom: 14px;
}
.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__brand-top {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 2px;
}
.footer__logo-icon {
    height: 26px;
    width: auto;
}
.footer__logo-text {
    height: 18px;
    width: auto;
    margin-top: 1px;
}
.footer__tagline {
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.35);
    max-width: 300px;
}
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}
.footer__contact-item svg {
    flex-shrink: 0;
    color: var(--tape-500);
    opacity: 0.6;
}
a.footer__contact-item:hover {
    color: var(--white);
}
a.footer__contact-item:hover svg {
    opacity: 1;
}
.footer__social {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 40px;
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}
.footer__social-link svg {
    width: 18px;
    height: 18px;
}
/* Brand colors on hover */
.footer__social-link:hover {
    transform: none;
}
.footer__google-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.45;
    transition: filter 0.2s, opacity 0.2s;
}
.footer__social-link[aria-label="Google"]:hover .footer__google-icon {
    filter: none;
    opacity: 1;
}
.footer__social-link[aria-label="Yelp"]:hover { color: #FF1A1A; }
.footer__social-link[aria-label="Instagram"]:hover { color: #E4405F; }
.footer__social-link[aria-label="TikTok"]:hover { color: #00f2ea; }
.footer__social-link[aria-label="Facebook"]:hover { color: #1877F2; }

/* Footer columns */
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}
.footer__services-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__col-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 1px;
}
.footer__link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
    transition: color 0.2s;
    line-height: 1.35;
}
.footer__link:hover {
    color: var(--white);
}

/* Footer bottom bar */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
}
.footer__legal {
    display: flex;
    gap: 16px;
}
.footer__legal-link {
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.2s;
}
.footer__legal-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* (navbar__toggle styles moved to NAVBAR section above) */

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero__form-card { margin-top: 0; }
    .review-card { flex: 0 0 300px; min-width: 300px; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    .hero__heading { font-size: 38px; }
    .section__title { font-size: 34px; }
    .cta__title { font-size: 32px; }

    /* Hero: SubZero-style hierarchy, form pushed down for photo space */
    .hero__content {
        padding: 70px 0 24px;
        gap: 160px;
    }
    .hero__trust-line {
        gap: 4px;
        margin-bottom: 16px;
    }
    .hero__trust-item--pill {
        padding: 5px 12px;
        font-size: 12px;
    }
    .hero__heading {
        font-size: clamp(3rem, 12vw, 4rem);
        letter-spacing: -0.03em;
        line-height: 1.05;
    }
    .hero__heading br { display: none; }
    .hero__heading-sub {
        display: block;
        font-size: 0.55em;
        opacity: 0.5;
        margin-top: 8px;
        letter-spacing: 0;
        font-weight: 700;
    }
    .hero__heading-sub .accent { opacity: 1; }
    .hero__desc {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 0;
        max-width: 320px;
        color: rgba(255, 255, 255, 0.55);
    }
    /* Tape strip closer + wider on mobile */
    .hero__tape-strip { bottom: -350px; left: -40%; right: -40%; }
    .hero__form {
        padding: 16px;
    }
    .hero__form-title { font-size: 18px; }
    .hero__form-subtitle { font-size: 12px; margin-bottom: 10px; }
    .form-group { margin-bottom: 8px; }
    .form-input, .form-select { padding: 9px 12px; font-size: 13px; }
    .form-group:has(.form-textarea) { display: none; }
    .hero__form-submit { padding: 11px; font-size: 15px; }
    .hero__form-note { font-size: 12px; margin-top: 6px; }

    .navbar {
        padding: 10px 0;
    }
    .navbar.scrolled {
        padding: 8px 0;
    }
    .navbar__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 12px 16px 20px;
        gap: 2px;
        background: rgba(17, 24, 39, 0.92);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }
    .navbar__links.open {
        display: flex;
    }
    .navbar__link {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 10px;
        width: 100%;
    }
    .navbar__link:active {
        background: rgba(255, 255, 255, 0.08);
    }
    .navbar__cta {
        display: none;
    }
    .navbar__logo-icon {
        height: 36px;
    }
    .navbar__logo-text {
        height: 24px;
    }
    .navbar__toggle {
        display: flex;
    }
    .review-card { flex: 0 0 280px; min-width: 280px; }

    /* Included: vertical truck + mixed dots & tags */
    .included-header__title { font-size: 32px; }
    .included-section { padding: 60px 0 48px; }
    .included-scene__photo { border-radius: 16px; overflow: hidden; }
    .included-scene__photo img { width: 100%; height: auto; }

    /* All 8 tags: visible glass labels like desktop */
    .inc-tag {
        padding: 6px 10px;
        background: rgba(15, 23, 42, 0.8);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(163, 230, 53, 0.15);
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        white-space: nowrap;
    }
    .inc-tag:hover { transform: none; }
    .inc-tag .inc-tag__text { display: flex; flex-direction: column; }
    .inc-tag__title { font-size: 11px; }
    .inc-tag__check { width: 18px; height: 18px; }
    .inc-tag__check svg { width: 10px; height: 10px; }
    .inc-tag__desc { display: none; max-height: 0; opacity: 0; }
    .inc-tag--hl::before { display: none; }

    /* Active state (tap) — expand with description */
    .inc-tag.active {
        padding: 8px 12px;
        background: rgba(15, 23, 42, 0.92);
        border-color: rgba(163, 230, 53, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        z-index: 20;
        white-space: normal;
    }
    .inc-tag.active .inc-tag__title { font-size: 12px; }
    .inc-tag.active .inc-tag__desc {
        display: block;
        max-height: 60px;
        opacity: 1;
        margin-top: 3px;
        max-width: 180px;
        font-size: 10.5px;
    }

    /* Mobile positions on vertical truck (3:4 ratio) */
    .inc-tag--1 { top: 15%; left: 10%; }
    .inc-tag--2 { top: 24%; left: 58%; }
    .inc-tag--3 { top: 8%;  right: 8%; left: auto; }
    .inc-tag--4 { top: 38%; right: 5%; left: auto; }
    .inc-tag--5 { top: 45%; left: 20%; }
    .inc-tag--6 { top: 68%; left: 10%; }
    .inc-tag--7 { top: 58%; left: 55%; }
    .inc-tag--8 { top: 80%; left: 30%; }
    .reviews { padding: 60px 0 48px; }
    .reviews__google-badge { padding: 10px 20px; gap: 8px; }
    .reviews__google-text { font-size: 14px; }
    .reviews__google-count { display: none; }
    .cta__card { padding: 40px 28px; }

    /* Blue truck on mobile */
    .blue-truck > img { height: 55px; }
    .blue-truck { transition: transform 0.3s ease-out, left 0.15s ease-out, top 0.15s ease-out; }

    /* Tape banner responsive */
    .tape-banner--yellow .tape-banner__text {
        font-size: 13px;
    }
    .tape-banner--clear { height: 70px; }
    .tape-banner--clear .tape-banner__text {
        font-size: 18px;
    }
    .tape-banner--multi {
        height: 200px;
    }
    .tape-banner--multi .tape-banner__text {
        font-size: 40px;
    }
    .tape-strip--lime-m {
        height: 44px;
    }
    .tape-strip--yellow-m {
        height: 40px;
    }
    .tape-strip--clear-m {
        height: 48px;
    }
    .tape-ticker__item {
        font-size: 13px;
        padding: 0 16px;
    }

    /* Footer responsive — compact 4-col layout */
    .footer__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px 8px;
    }
    .footer__brand { grid-column: 1 / -1; }
    .footer__col--services { grid-column: 1 / 3; }
    .footer__services-grid { grid-template-columns: 1fr 1fr; gap: 2px 8px; }
    .footer__services-grid > div:last-child { margin-top: -18px; }
    .footer__tagline { max-width: 100%; }
    .footer__social { margin-left: 0; margin-top: 6px; }
    .footer__brand-top { flex-wrap: wrap; }
    .footer__contact { gap: 2px; }
    .footer__link { font-size: 10px; }
    .footer__col-title { font-size: 11px; }
    .footer__bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
    .tape-float--1 { width: 100px; }
    .tape-float--2 { width: 80px; }
    .tape-float--3 { width: 90px; }
    .tape-float--4 { width: 70px; }
    .hero__content { padding-top: 64px; padding-bottom: 16px; gap: 130px; }
    .hero__heading { font-size: clamp(2.8rem, 11vw, 3.6rem); }
    .hero__heading-sub { display: block; font-size: 0.5em; margin-top: 6px; }
    .hero__trust-item--pill { padding: 4px 10px; font-size: 11px; }
    .hero__desc { font-size: 0.85rem; max-width: 280px; }
    .hero__tape-strip { bottom: -220px; left: -50%; right: -50%; }
    .hero__form-card { border-radius: 18px; }
    .hero__form { padding: 14px; }
    .hero__form-title { font-size: 17px; }
    .form-row { gap: 8px; }
    .form-input, .form-select { padding: 8px 10px; font-size: 13px; border-radius: 8px; }
    .hero__form-submit { padding: 10px; font-size: 14px; border-radius: 10px; }
    .btn-primary, .btn-glass { justify-content: center; width: 100%; }
    .section__title { font-size: 28px; }
    .cta__title { font-size: 26px; }
    .cta__card { padding: 32px 20px; }
    .review-card { flex: 0 0 260px; min-width: 260px; padding: 22px 18px; }
    .review-card__text { font-size: 13px; }
    .review-card__avatar { width: 36px; height: 36px; }
    .reviews { padding: 48px 0 36px; }
    .reviews__header { margin-bottom: 28px; }
    .reviews__google-badge { padding: 10px 16px; gap: 6px; flex-wrap: wrap; justify-content: center; }
    .reviews__google-text { font-size: 13px; }
    .reviews__google-rating { font-size: 12px; }

    /* Tape banner responsive - small screens */
    .tape-banner--yellow {
        height: 100px;
    }
    .tape-banner--yellow .tape-banner__text {
        font-size: 12px;
        white-space: normal;
        line-height: 1.4;
    }
    .tape-banner--clear { height: 56px; }
    .tape-banner--clear .tape-banner__text { font-size: 14px; }
    .tape-banner--multi {
        height: 160px;
    }
    .tape-banner--multi .tape-banner__text {
        font-size: 32px;
    }
    .tape-strip--lime-m { height: 36px; }
    .tape-strip--yellow-m { height: 32px; }
    .tape-strip--clear-m { height: 38px; }
    .tape-ticker {
        height: 50px;
    }
    .tape-ticker__item {
        font-size: 12px;
        padding: 0 14px;
    }
}

/* ===================================================
   SOCIAL PROOF — Stacking Deck Section
   =================================================== */
.proof-header {
    text-align: center;
    padding: 80px 24px 48px;
}
.proof-header__label {
    font-family: var(--font-heading);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--tape-600);
    margin-bottom: 12px;
}
.proof-header__title {
    font-family: var(--font-heading);
    font-size: 44px; font-weight: 800;
    line-height: 1.1; margin-bottom: 12px;
}
.proof-header__title em { font-style: normal; color: var(--tape-500); }
.proof-header__sub {
    font-size: 16px; color: var(--gray-500);
    max-width: 500px; margin: 0 auto;
}
.proof-deck {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 160px;
}
.proof-card {
    position: sticky;
    border-radius: 20px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.07);
    margin-bottom: 24px;
    overflow: hidden;
    height: 260px;
}
.proof-card:nth-child(1) { top: 60px; }
.proof-card:nth-child(2) { top: 72px; }
.proof-card:nth-child(3) { top: 84px; }
.proof-card:nth-child(4) { top: 96px; }
.proof-card:nth-child(5) { top: 108px; }
.proof-card:nth-child(6) { top: 120px; }
.proof-card--light { background: var(--white); border: 1px solid var(--gray-200); }
.proof-card--dark  { background: var(--dark); color: var(--white); }
.proof-card__wm {
    position: absolute; top: -10px; right: 24px;
    font-family: var(--font-heading); font-size: 160px; font-weight: 800;
    line-height: 1; opacity: 0.03; pointer-events: none; user-select: none;
}
.proof-card--dark .proof-card__wm { color: white; opacity: 0.04; }
.proof-card__info { flex: 1; position: relative; z-index: 1; }
.proof-card__badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
}
.proof-card__icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; font-family: var(--font-heading);
    color: white; flex-shrink: 0; letter-spacing: 0.04em;
}
.proof-card__icon svg { width: 20px; height: 20px; }
.proof-card__platform-name {
    font-family: var(--font-heading);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gray-500);
}
.proof-card--dark .proof-card__platform-name { color: rgba(255,255,255,0.4); }
.proof-card__metric {
    font-family: var(--font-heading);
    font-size: 44px; font-weight: 800;
    line-height: 1; margin-bottom: 2px;
}
.proof-card__sub {
    font-size: 14px; color: var(--gray-500); margin-bottom: 16px; line-height: 1.5;
}
.proof-card--dark .proof-card__sub { color: rgba(255,255,255,0.45); }
.proof-card__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 8px;
    font-family: var(--font-heading); font-size: 14px; font-weight: 600;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.proof-card__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.proof-card--light .proof-card__cta { background: var(--dark); color: var(--white); }
.proof-card--dark .proof-card__cta { background: var(--tape-400); color: var(--dark); }
.proof-card__visual {
    flex: 0 0 280px; position: relative; z-index: 1;
    align-self: stretch; display: flex; flex-direction: column; justify-content: center;
}
.proof-card__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Google Rating Bars */
.g-bars { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.g-bar { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-500); }
.g-bar__label { min-width: 12px; font-weight: 600; text-align: right; font-family: var(--font-heading); }
.g-bar__track { flex: 1; height: 6px; background: var(--gray-100); border-radius: 3px; overflow: hidden; }
.g-bar__fill { height: 100%; background: #F4B400; border-radius: 3px; }
.g-bar__pct { min-width: 28px; font-size: 11px; text-align: right; }
.g-verified {
    display: flex; flex-direction: column; gap: 3px; margin-top: 2px;
}
.g-verified__item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--gray-500); font-family: var(--font-body);
}
.g-verified__item svg { flex-shrink: 0; }

/* Yelp */
.yelp-claimed {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: #0073BB; font-weight: 600;
}
.yelp-claimed svg { flex-shrink: 0; }
.yelp-mosaic {
    display: flex; gap: 4px;
    border-radius: 10px; overflow: hidden;
    flex: 1; min-height: 0;
}
.yelp-mosaic__big { flex: 1; overflow: hidden; }
.yelp-mosaic__big img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yelp-mosaic__small {
    flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.yelp-mosaic__small div { flex: 1; overflow: hidden; min-height: 0; }
.yelp-mosaic__small img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* BBB */
.bbb-visual { text-align: center; }
.bbb-shield {
    width: 110px; height: 136px; margin: 0 auto 12px;
    background: #005A78;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: white; position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 50% 100%, 0 72%);
}
.bbb-shield__letters {
    font-family: var(--font-heading); font-size: 16px; font-weight: 800;
    letter-spacing: 0.12em; margin-bottom: 2px;
}
.bbb-shield__grade {
    font-family: var(--font-heading); font-size: 44px; font-weight: 800;
    color: #FFD700; line-height: 1;
}
.bbb-details { font-size: 12px; color: var(--gray-500); line-height: 1.8; }

/* Instagram Grid */
.ig-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
    border-radius: 10px; overflow: hidden;
}
.ig-grid__item { aspect-ratio: 1; overflow: hidden; }
.ig-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* TikTok Grid */
.tt-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.tt-grid__item {
    aspect-ratio: 9/16; border-radius: 10px;
    position: relative; overflow: hidden; background: #000;
}
.tt-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tt-grid__plays {
    position: absolute; bottom: 6px; left: 8px;
    font-size: 11px; font-weight: 600; color: white;
    display: flex; align-items: center; gap: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Facebook Mini */
.fb-mini {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; overflow: hidden;
}
.fb-mini__cover {
    height: 60px; background: url('../images/team-photo-1.jpg') center/cover;
    position: relative;
}
.fb-mini__cover::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(24,119,242,0.3), rgba(66,165,245,0.2));
}
.fb-mini__body { padding: 16px; display: flex; align-items: center; gap: 12px; }
.fb-mini__avatar {
    width: 44px; height: 44px; border-radius: 50%; margin-top: -32px;
    background: var(--dark); border: 3px solid var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: var(--tape-400);
}
.fb-mini__name { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: white; }
.fb-mini__type { font-size: 12px; color: rgba(255,255,255,0.4); }
.fb-mini__actions { padding: 0 16px 16px; display: flex; gap: 8px; }
.fb-mini__btn {
    flex: 1; padding: 8px; border-radius: 6px; text-align: center;
    font-family: var(--font-heading); font-size: 12px; font-weight: 600;
    cursor: pointer; border: none;
}
.fb-mini__btn--like { background: #1877F2; color: white; }
.fb-mini__btn--share { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* Social Proof Responsive */
@media (max-width: 768px) {
    .proof-header { padding: 60px 24px 32px; }
    .proof-header__title { font-size: 28px; }
    .proof-deck { padding-bottom: 60px; }
    .proof-card { flex-direction: column; padding: 24px 20px; gap: 16px; height: auto; margin-bottom: 16px; align-items: flex-start; text-align: left; }
    .proof-card__visual { flex: none; width: 100%; max-height: 200px; overflow: hidden; border-radius: 10px; }
    .proof-card__metric { font-size: 36px; }
    .proof-card__sub { font-size: 13px; margin-bottom: 12px; }
    .proof-card__wm { font-size: 100px; }
    .yelp-mosaic { max-height: 180px; }
    .ig-grid { max-height: 180px; }
    .tt-grid__item { aspect-ratio: 9/14; }
    .fb-mini__btn { padding: 10px; font-size: 13px; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */

/* About shared utilities */
.label {
    font-family: var(--font-heading); font-size: 12px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--tape-400);
}
.label--dark { color: var(--tape-600); }
.accent { color: var(--tape-400); }
.accent--dark { color: var(--tape-600); }

/* -- About Hero -- */
.about-hero {
    position: relative; height: 50vh; min-height: 380px; max-height: 520px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--dark);
}
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.about-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,24,39,0.2) 0%, rgba(17,24,39,0.75) 100%);
}
.about-hero__content {
    position: relative; z-index: 2; text-align: center;
    max-width: 720px; padding: 0 24px;
}
.about-hero__heading {
    font-family: var(--font-heading); font-size: 48px; font-weight: 700;
    line-height: 1.1; color: var(--white); margin: 16px 0 14px;
}
.about-hero__sub { font-size: 18px; color: var(--gray-400); }

/* -- Our Story -- */
.about-story { padding: 80px 0; }
.about-story__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
}
.about-story__heading {
    font-family: var(--font-heading); font-size: 36px; font-weight: 700;
    line-height: 1.15; color: var(--dark); margin: 16px 0 20px;
}
.about-story__text p {
    font-size: 16px; color: var(--gray-600);
    line-height: 1.75; margin-bottom: 24px;
}

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
    content: ''; position: absolute; left: 7px; top: 4px; bottom: 4px;
    width: 2px; border-radius: 1px;
    background: linear-gradient(to bottom, var(--tape-400), var(--tape-200));
}
.timeline__item { position: relative; padding-bottom: 20px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: ''; position: absolute; left: -29px; top: 5px;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--tape-400); border: 2px solid var(--white);
    box-shadow: 0 0 0 3px var(--tape-100);
}
.timeline__year {
    font-family: var(--font-heading); font-size: 13px;
    font-weight: 700; color: var(--tape-700); letter-spacing: 0.5px;
}
.timeline__text { font-size: 14px; color: var(--gray-500); margin-top: 2px; }

/* Story photo grid */
.about-story__visual {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr; gap: 12px;
    height: 100%; min-height: 420px;
}
.about-story__photo { border-radius: 16px; overflow: hidden; }
.about-story__photo img { width: 100%; height: 100%; object-fit: cover; }
.about-story__photo--tall { grid-row: 1 / 3; }

/* -- Founder -- */
.about-founder { padding: 0 0 80px; }
.founder-card {
    display: flex; background: var(--dark);
    border-radius: 20px; overflow: hidden; min-height: 340px;
}
.founder-card__photo { flex: 0 0 380px; position: relative; }
.founder-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__info {
    flex: 1; padding: 48px;
    display: flex; flex-direction: column; justify-content: center;
}
.founder-card__name {
    font-family: var(--font-heading); font-size: 32px;
    font-weight: 700; color: var(--white); margin: 12px 0 4px;
}
.founder-card__title {
    font-size: 14px; color: var(--tape-400);
    font-weight: 600; margin-bottom: 20px;
}
.founder-card__bio {
    font-size: 15px; color: var(--gray-400);
    line-height: 1.75; margin-bottom: 24px;
}
.founder-card__quote {
    font-size: 15px; font-style: italic; color: var(--gray-300);
    line-height: 1.65; padding-left: 16px;
    border-left: 3px solid var(--tape-400);
}

/* -- Where We Serve -- */
.about-areas { padding: 0 0 80px; }
.about-areas__header { text-align: center; margin-bottom: 24px; }
.about-areas__heading {
    font-family: var(--font-heading); font-size: 32px;
    font-weight: 700; line-height: 1.15; color: var(--dark); margin: 10px 0 6px;
}
.about-areas__sub { font-size: 15px; color: var(--gray-500); }
.about-areas__layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.areas-map {
    border-radius: 14px; overflow: hidden;
    border: 1px solid var(--gray-200);
}
.areas-map iframe { display: block; width: 100%; height: 100%; border: 0; }

/* SEO tag links */
.seo-links {
    display: flex; flex-direction: column; gap: 10px;
    padding: 20px; border-radius: 12px;
    background: var(--gray-50); border: 1px solid var(--gray-100);
}
.seo-links__row {
    font-size: 11px; line-height: 1.7; color: var(--gray-400);
}
.seo-links__label {
    font-weight: 600; color: var(--gray-500); margin-right: 4px;
}
.seo-links__row a {
    color: var(--gray-400); transition: color 0.15s;
}
.seo-links__row a:hover { color: var(--gray-600); }
.seo-links__sep { margin: 0 2px; }

/* About Responsive */
@media (max-width: 768px) {
    .about-hero__heading { font-size: 32px; }
    .about-hero { height: 40vh; min-height: 300px; }
    .about-story__grid { grid-template-columns: 1fr; }
    .about-story__visual { min-height: 280px; }
    .about-story__heading,
    .about-areas__heading { font-size: 28px; }
    .founder-card { flex-direction: column; }
    .founder-card__photo { flex: none; height: 280px; }
    .founder-card__info { padding: 32px; }
    .founder-card__name { font-size: 26px; }
    .about-areas__layout { grid-template-columns: 1fr; }
    .areas-map iframe { min-height: 240px; }
}
