/* Prime Appliance — Version 3 (Best of V1 + V2) */

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: rgba(14, 165, 233, 0.1);
    --cta: #f97316;
    --cta-dark: #ea580c;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --gold: #fbbf24;
    --success: #22c55e;
    --font: 'Inter', -apple-system, sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 6px 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}
.logo span { color: var(--primary); }
.logo__service { font-weight: 500; font-size: 0.85em; color: var(--muted); }

.header__location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    padding: 2px 8px;
    background: var(--gray-100);
    border-radius: 4px;
}

.header__location svg {
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: 32px;
}
.nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }

.header__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--cta);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: background 0.2s;
}
.header__cta:hover { background: var(--cta-dark); }
.header__cta-number { font-weight: 700; }

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__callback {
    padding: 6px 12px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8125rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: all 0.2s;
}
.header__callback:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 100px 0 60px; /* Account for header */
    box-sizing: border-box;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero__inner--centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero__inner--centered .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 160px);
    padding-top: 60px;
}

.hero__trust-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--gray-700);
}
.trust-badge strong { color: var(--gold); }

.hero__brand-badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero__title span { color: var(--primary); }

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Simple availability hint */
.hero__availability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero__slots {
    font-size: 0.75rem;
    color: var(--cta);
    font-weight: 600;
    padding: 2px 8px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 4px;
    margin-left: 4px;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    padding: 32px 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar__items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-bar__google-icon {
    flex-shrink: 0;
}

.trust-bar__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.trust-bar__item:last-child .trust-bar__value {
    color: #22c55e;
}

.trust-bar__label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .trust-bar__items {
        gap: 24px;
    }
    .trust-bar__item {
        flex-direction: column;
        gap: 4px;
    }
    .trust-bar__value {
        font-size: 1.25rem;
    }
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--cta);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
    margin-bottom: 16px;
}
.btn-call:hover {
    background: var(--cta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-call__icon { font-size: 1.5rem; }
.btn-call__text { text-align: left; }
.btn-call__text small { display: block; font-size: 0.875rem; opacity: 0.9; }
.btn-call__text strong { display: block; font-size: 1.25rem; }

/* Hero Buttons Container */
.hero__buttons {
    display: flex;
    flex-direction: row-reverse; /* Call Now on right */
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto; /* Push to bottom */
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.btn-primary {
    background: var(--cta);
    color: var(--white);
    border: 2px solid var(--cta);
}
.btn-primary:hover {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--gray-300);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero__hours {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

/* Social Proof Mini */
.hero__social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    background: var(--white);
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.2s;
}
.hero__social-proof:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.avatar-stack {
    display: flex;
    align-items: center;
}
.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
    object-fit: cover;
}
.avatar-stack img:first-child {
    margin-left: 0;
}
.avatar-stack__more {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid var(--white);
}

.hero__social-proof-text {
    display: flex;
    flex-direction: column;
    font-size: 0.8125rem;
    line-height: 1.3;
}
.hero__social-proof-text strong {
    color: var(--dark);
}
.hero__social-proof-text span {
    color: var(--primary);
    font-weight: 500;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero__technician-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero__stats {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 12px;
}
.hero__stat:not(:last-child) {
    border-right: 1px solid var(--gray-200);
}
.hero__stat strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.hero__stat span {
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.hero__image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gray-400);
    border: 2px dashed var(--gray-300);
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.placeholder-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== SECTION COMMON ========== */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
}

/* ========== SERVICES (Choose Your Problem) ========== */
.services {
    padding: 60px 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start; /* Cards don't stretch to match neighbors */
}

/* Hidden services (last row) */
.service-card.service-card--hidden {
    display: none;
}
.services__grid--expanded .service-card.service-card--hidden {
    display: flex;
}

/* More Services button - subtle link style */
/* CTA card — spans 2 columns, same style as other cards */
.service-card.service-card--cta {
    grid-column: span 2;
    text-align: center;
    align-self: stretch;
}
.service-card--cta .service-card__title {
    font-size: 1.0625rem;
    margin-bottom: 4px;
}
.service-card--cta .service-card__pain {
    margin-bottom: 12px;
    font-size: 0.8125rem;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}
.cta-form__row {
    display: flex;
    gap: 8px;
}
.cta-form__input {
    flex: 1;
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius);
    background: var(--gray-50, #f8fafc);
    color: var(--dark);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.cta-form__input::placeholder {
    color: var(--gray-400);
}
.cta-form__input:focus {
    border-color: var(--primary);
    background: #fff;
}
.cta-form__submit {
    width: 100%;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8125rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.cta-form__submit:hover {
    background: var(--primary-dark);
}

/* Commercial badge */
.service-card__badge--commercial {
    background: #1e3a5f;
}

.services__more-btn {
    grid-column: 1 / -1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.services__more-btn:hover {
    color: var(--primary);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s;
}
.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-card--featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.03), var(--white));
}

.service-card__badge {
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

/* Service card image/visual area */
.service-card__visual {
    height: 80px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50, #f8fafc) 100%);
    border-radius: var(--radius);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.service-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card__emoji {
    font-size: 2rem;
    line-height: 1;
}

/* Old icon style (fallback) */
.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.service-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-card__pain {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Service card actions (2 buttons) */
.service-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.service-card__cta-btn {
    flex: 1;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.service-card__cta-btn:hover {
    background: var(--primary-dark);
}

.service-card__details-btn {
    padding: 10px 8px;
    background: transparent;
    color: var(--gray-400);
    border: none;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.service-card__details-btn:hover {
    background: transparent;
    color: var(--gray-600);
}

/* Hidden list - dropdown style (doesn't affect card size) */
.service-card__list {
    list-style: none;
    position: absolute;
    left: -2px;
    right: -2px;
    top: 100%;
    margin: 0;
    padding: 0;
    background: var(--white);
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 20;
    box-shadow: var(--shadow-lg);
}

/* Expanded state - dropdown appears below card */
.service-card--expanded {
    z-index: 10;
    border-color: var(--primary);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card--expanded .service-card__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 16px 24px;
}
.service-card--expanded .service-card__details-btn {
    color: var(--primary);
    text-decoration: none;
}

.service-card__list li {
    font-size: 0.8125rem;
    color: var(--gray-600);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}
.service-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.75rem;
}
.service-card__other {
}
.service-card__other::before {
    content: "+" !important;
    color: var(--primary) !important;
}
.service-card__other a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
.service-card__other a:hover {
    text-decoration: underline;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 40px 0 60px;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon {
    font-size: 3rem;
    margin-bottom: 16px;
    padding-top: 20px;
}

.step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step__desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
    padding: 60px 0;
    background: var(--gray-100);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;
}

.why-us__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 0;
}

.why-us__item-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--primary);
}

.why-us__item-icon svg {
    width: 22px;
    height: 22px;
}

.why-us__item-number {
    display: none;
}

.why-us__item-text {
    flex: 1;
}

.why-us__item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.why-us__item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.why-us__founder {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    margin-bottom: 56px;
}

.why-us__founder-content {
    flex: 1;
}

.why-us__founder-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.why-us__founder-content .section-tag {
    margin-bottom: 12px;
}

.why-us__stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-300);
}

.why-us__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us__stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.why-us__stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-us__bridge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.why-us__bridge-line {
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.why-us__bridge-text {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    white-space: nowrap;
}

.why-us__about {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 36px;
    background: var(--gray-50, #f9fafb);
    border-radius: 16px;
}

.why-us__about-photos {
    position: relative;
    width: 280px;
    height: 320px;
    flex-shrink: 0;
}

.why-us__photo-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 210px;
    height: 280px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.why-us__photo-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 230px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    border: 3px solid var(--white, #fff);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 1;
}

.why-us__about-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.why-us__about-text strong {
    color: var(--gray-900);
    font-weight: 600;
}

@media (max-width: 640px) {
    .why-us__about,
    .why-us__founder {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 24px;
    }
    .why-us__founder {
        padding: 0;
    }
    .why-us__founder-content .section-title,
    .why-us__founder-content .section-subtitle {
        text-align: center;
    }
    .why-us__about-photos {
        width: 240px;
        height: 270px;
    }
    .why-us__photo-back {
        width: 175px;
        height: 235px;
    }
    .why-us__photo-front {
        width: 150px;
        height: 195px;
    }
    .why-us__stats {
        justify-content: center;
        gap: 20px;
    }
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 60px 0;
    background: var(--gray-100);
}

/* Video Review Block */
.video-review {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-review__media {
    position: relative;
    flex-shrink: 0;
}

.video-review__gif {
    width: 200px;
    height: auto;
    border-radius: var(--radius);
    display: block;
}

.video-review__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--cta);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.video-review__content {
    flex: 1;
}

.video-review__stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.video-review__text {
    font-size: 16px;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 12px;
}

.video-review__link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.video-review__link:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .video-review {
        flex-direction: column;
        text-align: center;
    }
    .video-review__gif {
        width: 180px;
    }
}

.reviews-slider-container {
    position: relative;
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 0 48px;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
    margin: -8px -4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow);
    min-width: calc(33.333% - 16px);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.2s;
}
.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.review-stars {
    color: var(--gold);
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Review card with photo - flex layout on text only */
.review-body {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-grow: 1;
}
.review-body .review-text {
    flex: 1;
    min-width: 0;
}
.review-photo {
    flex-shrink: 0;
    width: 70px;
}
.review-photo img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}
.review-photo img:hover {
    transform: scale(1.05);
}

/* Stacked photos (2 photos vertically) */
.review-photos-stack {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 70px;
}
.review-photos-stack img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}
.review-photos-stack img:hover {
    transform: scale(1.05);
}

/* Video Review Card */
.review-card--video {
    border: 2px solid var(--cta);
    background: linear-gradient(to bottom, rgba(249, 115, 22, 0.03), var(--white));
}
.review-card--video .review-header {
    position: relative;
}
.review-video-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cta);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.review-video {
    flex-shrink: 0;
    width: 90px;
}
.review-video img {
    width: 90px;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--gray-100);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark);
    box-shadow: var(--shadow);
    transition: all 0.2s;
    z-index: 10;
}
.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.slider-btn:disabled:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--gray-200);
}
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.reviews-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px 12px 24px;
    border-radius: 100px;
    box-shadow: var(--shadow);
    font-size: 0.9375rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--gray-200);
}
.google-badge:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}
.google-badge:hover svg path {
    fill: var(--white);
}
.google-badge span {
    font-weight: 500;
}
.badge-arrow {
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.2s;
}
.google-badge:hover .badge-arrow {
    opacity: 1;
    transform: translateX(3px);
}
.google-badge--photos {
    background: var(--gray-100);
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}
@media (max-width: 600px) {
    .review-card {
        flex: 0 0 calc(100% - 8px);
        min-width: calc(100% - 8px);
    }
    .reviews-slider-container {
        padding: 0 40px;
    }
    .hero__buttons {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    .hero__stats {
        position: static;
        transform: none;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }
}

/* ========== SERVICE AREAS ========== */
.areas-section {
    background: var(--white);
    padding: 60px 0;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.areas-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.areas-map iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
}

.areas-tags {
    text-align: left;
}

.areas-tags-group {
    margin-bottom: 20px;
}

.areas-tags-label {
    font-size: 0.6875rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    display: block;
    font-weight: 600;
}

.areas-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.areas-tag {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.areas-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.areas-tag.hidden {
    display: none;
}
.areas-tags-list.expanded .areas-tag.hidden {
    display: inline-flex;
}

.show-more-btn {
    padding: 8px 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 500;
}
.show-more-btn:hover {
    border-color: var(--gray-400);
    color: var(--dark);
    background: var(--gray-200);
}

@media (max-width: 900px) {
    .areas-content {
        grid-template-columns: 1fr;
    }
}

/* ========== FAQ ========== */
.faq {
    padding: 40px 0 60px;
    background: var(--white);
}

/* FAQ list */
.faq__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 768px) {
    .faq__list {
        grid-template-columns: 1fr;
    }
}

.faq__item {
    background: var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq__question {
    padding: 16px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    outline: none;
}
.faq__question::-webkit-details-marker {
    display: none;
}
.faq__question::after {
    content: "+";
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-400);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq__item[open] .faq__question::after {
    content: "−";
    color: var(--primary);
}
.faq__item[open] .faq__question {
    color: var(--primary);
}
.faq__question:hover {
    color: var(--primary);
}

.faq__answer {
    padding: 0 20px 16px;
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ========== CTA ========== */
.cta {
    padding: 60px 0;
    background: var(--dark);
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta__content {
    text-align: center;
}

.cta__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta__subtitle {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.cta__phone {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}
.cta__phone:hover { color: var(--primary); }

.cta__hours {
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.cta__form-wrap {
    background: var(--gray-900);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.cta__form-title {
    color: var(--gray-300);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta__form input,
.cta__form select {
    padding: 14px 16px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
}
.cta__form input::placeholder { color: var(--gray-500); }
.cta__form input:focus,
.cta__form select:focus {
    outline: none;
    border-color: var(--primary);
}

.cta__form button {
    padding: 16px;
    background: var(--cta);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cta__form button:hover { background: var(--cta-dark); }

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 48px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700, #374151);
}

.footer__brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 8px 0 16px;
}

.footer__logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}
.footer__logo span { color: var(--primary); }

.footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer__contact-items a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
}
.footer__contact-items a:hover { color: var(--primary); }

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__links li { font-size: 0.875rem; }
.footer__links a {
    color: var(--gray-400);
    text-decoration: none;
}
.footer__links a:hover { color: var(--white); }

.footer__links--areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
}
.footer__links--areas li { color: var(--gray-400); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ========== MOBILE CTA ========== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px;
    background: var(--cta);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 99;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .nav { display: none; }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .areas__content {
        grid-template-columns: 1fr;
    }

    .cta__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    .hero__title {
        font-size: 2rem;
    }
    .hero__subtitle {
        font-size: 1.0625rem;
    }
    .btn-call {
        width: 100%;
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }
    .service-card--cta {
        grid-column: span 1;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .step__icon {
        font-size: 2.5rem;
    }

    .why-us__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta__phone {
        font-size: 1.75rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer__contact-items {
        align-items: center;
    }
    .footer__links--areas {
        justify-items: center;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    body {
        padding-bottom: 80px;
    }
}
