/* 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: 6px 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: 6px 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;
    }
}
/*
 * NAVY SAND - Тёплый премиальный ремонт техники
 * Палитра: Deep Navy + Sand/Beige + Muted Red + Sky Blue
 * Ассоциация: Arizona desert + premium appliance + доверие
 * Базируется на index-v3.html (8 секций)
 * Структура: Hero(тёмный) → Services(светлый) → HowItWorks(светлый) → Reviews(тёплый)
 *            → WhyUs(тёмный) → Areas(тёмный) → FAQ(светлый) → CTA(тёмный) → Footer(тёмный)
 */

:root {
    /* Тёмная палитра - Deep Navy */
    --dark-bg: #0F1D32;
    --dark-card: #1A2A4A;
    --dark-border: #2A3A5A;

    /* Светлая палитра - Sand/Desert */
    --light-bg: #FAF6F0;
    --light-card: #FFFFFF;
    --light-border: #E8D5BC;

    /* Тёплая палитра для reviews */
    --warm-bg: #F5EDE3;
    --warm-card: #FFFFFF;
    --warm-border: #E8D5BC;

    /* Sand акценты - заголовки, лого */
    --sand: #E2C9A6;
    --sand-light: #F0DFC8;
    --sand-dark: #C4A46E;

    /* Muted Red - главный CTA */
    --red: #CC4A3A;
    --red-light: #DC5D4E;
    --red-dark: #B03A2C;
    --red-pale: #F0C8C2;

    /* Sky Blue - ссылки, иконки, вторичный акцент */
    --sky: #6DB5E0;
    --sky-light: #8FC8EA;
    --sky-dark: #4A9AD0;

    /* Текст */
    --text-dark: #1E293B;
    --text-light: #F1F5F9;
    --text-muted-dark: #64748B;
    --text-muted-light: #94A3B8;

    /* Тени */
    --shadow-dark: 0 4px 20px rgba(15, 29, 50, 0.4);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-red: 0 4px 20px rgba(196, 69, 54, 0.25);
}

/* ============================================
   БАЗОВЫЕ СТИЛИ
   ============================================ */
body {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

/* ============================================
   HEADER - Тёмный Navy
   ============================================ */
header {
    background: var(--dark-bg) !important;
    border-bottom: 1px solid var(--dark-border) !important;
}

header .logo-text {
    color: var(--sand) !important;
}

header nav a {
    color: var(--text-muted-light) !important;
}

header nav a:hover {
    color: var(--sand) !important;
}

header .btn-outline {
    border-color: var(--sand) !important;
    color: var(--sand) !important;
    background: transparent !important;
    border-radius: 8px !important;
}

header .btn-outline:hover {
    background: var(--sand) !important;
    color: var(--dark-bg) !important;
}

header .btn-primary,
header .cta-button {
    background: var(--red) !important;
    color: var(--text-light) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

header .btn-primary:hover,
header .cta-button:hover {
    background: var(--red-light) !important;
}

header .location-badge,
.location-badge {
    background: var(--dark-card) !important;
    color: var(--sky) !important;
    border: 1px solid var(--sky) !important;
}

/* ============================================
   HERO - Тёмный Navy (секция 1)
   ============================================ */
.hero {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #152540 100%) !important;
    color: var(--text-light) !important;
}

.hero h1,
.hero-title {
    color: var(--text-light) !important;
}

.hero h1 span,
.hero-title span,
.hero .highlight {
    color: var(--sand) !important;
}

.hero p,
.hero-subtitle {
    color: var(--text-muted-light) !important;
}

.hero .btn-primary,
.hero .cta-button {
    background: var(--red) !important;
    color: var(--text-light) !important;
    border-radius: 10px !important;
    box-shadow: var(--shadow-red) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

.hero .btn-primary:hover,
.hero .cta-button:hover {
    background: var(--red-light) !important;
    transform: translateY(-2px);
}

.hero .btn-outline,
.hero .btn-secondary {
    background: transparent !important;
    border: 2px solid var(--sand) !important;
    color: var(--sand) !important;
    border-radius: 10px !important;
}

.hero .btn-outline:hover,
.hero .btn-secondary:hover {
    background: var(--sand) !important;
    color: var(--dark-bg) !important;
}

/* ============================================
   SERVICES - Светлый Sand (секция 2)
   ============================================ */
.services,
#services {
    background: var(--light-bg) !important;
    color: var(--text-dark) !important;
}

.services h2,
#services h2 {
    color: var(--dark-bg) !important;
}

.services h2 span,
#services h2 span {
    color: var(--red) !important;
}

.services p,
#services p {
    color: var(--text-muted-dark) !important;
}

.services .service-card,
.services .card {
    background: var(--light-card) !important;
    border: 1px solid var(--light-border) !important;
    box-shadow: var(--shadow-light) !important;
}

.services .service-card:hover,
.services .card:hover {
    border-color: var(--red) !important;
    box-shadow: var(--shadow-red) !important;
    transform: translateY(-4px);
}

.services .service-card h3,
.services .card h3 {
    color: var(--text-dark) !important;
}

.services .service-card .icon,
.services .card .icon {
    color: var(--sky) !important;
    background: rgba(109, 181, 224, 0.12) !important;
}

.services .service-card__cta-btn {
    background: var(--red) !important;
    color: var(--text-light) !important;
}

.services .service-card__cta-btn:hover {
    background: var(--red-light) !important;
}

.services .service-card--featured {
    border-color: var(--red) !important;
    background: linear-gradient(to bottom, rgba(204, 74, 58, 0.03), var(--light-card)) !important;
}

.service-card__badge {
    background: var(--red) !important;
    color: var(--text-light) !important;
}

.services .section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky) !important;
    border-color: var(--sky) !important;
}

/* ============================================
   HOW IT WORKS - Светлый Sand (секция 3)
   ============================================ */
.how-it-works,
#how-it-works {
    background: var(--light-bg) !important;
    color: var(--text-dark) !important;
}

.how-it-works h2 {
    color: var(--dark-bg) !important;
}

.how-it-works h2 span {
    color: var(--red) !important;
}

.how-it-works p {
    color: var(--text-muted-dark) !important;
}

.how-it-works .section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky) !important;
    border-color: var(--sky) !important;
}

.how-it-works .step-number,
.how-it-works .step__number {
    background: var(--red) !important;
    color: var(--text-light) !important;
}

.how-it-works .step-card,
.how-it-works .step {
    background: var(--light-card) !important;
    border: 1px solid var(--light-border) !important;
}

.how-it-works .step-card h3,
.how-it-works .step h3 {
    color: var(--text-dark) !important;
}

.how-it-works .step-icon,
.how-it-works .step__icon {
    color: var(--sky) !important;
}

/* ============================================
   REVIEWS - Тёплый Sand (секция 4)
   ============================================ */
.reviews,
#reviews {
    background: var(--warm-bg) !important;
    color: var(--text-dark) !important;
}

.reviews h2,
#reviews h2 {
    color: var(--text-dark) !important;
}

.reviews h2 span,
#reviews h2 span {
    color: var(--red-dark) !important;
}

.reviews .section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky) !important;
    border-color: var(--sky) !important;
}

.reviews .review-card {
    background: var(--warm-card) !important;
    border: 1px solid var(--warm-border) !important;
    border-left: 4px solid var(--sand-dark) !important;
    box-shadow: 0 4px 20px rgba(212, 184, 150, 0.15) !important;
}

.reviews .review-card .stars {
    color: var(--sand-dark) !important;
}

.reviews .review-card .author,
.reviews .review-card h4 {
    color: var(--text-dark) !important;
}

.reviews .review-card p {
    color: var(--text-muted-dark) !important;
}

.reviews a {
    color: var(--sand-dark) !important;
}

.reviews__arrow {
    border-color: var(--sand-dark) !important;
    color: var(--sand-dark) !important;
}

.reviews__arrow:hover {
    background: var(--sand-dark) !important;
    color: white !important;
}

.reviews__cta-link,
.reviews__bottom-links a {
    background: rgba(226, 201, 166, 0.08) !important;
    border: 1px solid var(--sand-dark) !important;
    color: var(--sand-dark) !important;
    border-radius: 12px !important;
}

.reviews__cta-link:hover,
.reviews__bottom-links a:hover {
    background: var(--sand-dark) !important;
    color: var(--dark-bg) !important;
}

/* ============================================
   WHY US / ABOUT - Тёмный Navy (секция 5)
   ============================================ */
.why-us,
#about {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

.why-us .section-tag {
    background: rgba(109, 181, 224, 0.15) !important;
    color: var(--sky) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

.why-us .section-title,
.why-us h2 {
    color: var(--sand) !important;
}

.why-us p {
    color: var(--text-muted-light) !important;
}

.why-us strong {
    color: var(--sand-light) !important;
}

.why-us__item h3 {
    color: var(--sand-light) !important;
}

.why-us__item p {
    color: var(--text-muted-light) !important;
}

.why-us__item-icon svg {
    color: var(--sky) !important;
}

/* About photos overlay */
.why-us__about-photos img {
    border: 3px solid var(--dark-card) !important;
}

/* ============================================
   AREAS - Тёмный Navy (секция 6)
   ============================================ */
.areas-section,
#areas {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

.areas-section .section-tag {
    background: rgba(109, 181, 224, 0.15) !important;
    color: var(--sky) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

.areas-section h2 {
    color: var(--sand) !important;
}

.areas-section p {
    color: var(--text-muted-light) !important;
}

/* Area tag pills */
.areas-section .tag,
.areas-section .chip,
.areas__tags .tag,
.areas__tags .chip {
    background: transparent !important;
    border: 1px solid var(--sky) !important;
    color: var(--sky) !important;
    border-radius: 20px !important;
}

.areas-section .tag:hover,
.areas__tags .tag:hover {
    background: var(--sky) !important;
    color: var(--dark-bg) !important;
}

.areas-section .tag.active,
.areas__tags .tag.active {
    background: var(--sky) !important;
    color: var(--dark-bg) !important;
}

/* Areas category labels */
.areas__category-label {
    color: var(--sand-dark) !important;
}

/* ============================================
   FAQ - Светлый Sand (секция 7)
   ============================================ */
.faq,
#faq {
    background: var(--light-bg) !important;
    color: var(--text-dark) !important;
}

.faq h2 {
    color: var(--dark-bg) !important;
}

.faq .section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky) !important;
    border-color: var(--sky) !important;
}

.faq details,
.faq .faq-item {
    background: var(--light-card) !important;
    border: 1px solid var(--light-border) !important;
}

.faq summary,
.faq .faq-question {
    color: var(--text-dark) !important;
}

.faq details[open] summary,
.faq .faq-question.active {
    color: var(--red) !important;
}

.faq p,
.faq .faq-answer {
    color: var(--text-muted-dark) !important;
}

/* ============================================
   CTA / CONTACT - Тёмный Navy (секция 8)
   ============================================ */
.cta,
#contact {
    background: var(--dark-bg) !important;
    color: var(--text-light) !important;
}

.cta h2 {
    color: var(--sand) !important;
}

.cta p {
    color: var(--text-muted-light) !important;
}

.cta .section-tag {
    background: rgba(109, 181, 224, 0.15) !important;
    color: var(--sky) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

/* Contact form */
.contact-form__input,
.contact-form textarea,
.cta input,
.cta textarea {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--text-light) !important;
}

.contact-form__input:focus,
.contact-form textarea:focus,
.cta input:focus,
.cta textarea:focus {
    border-color: var(--sky) !important;
    box-shadow: 0 0 0 3px rgba(109, 181, 224, 0.15) !important;
}

/* ============================================
   FOOTER - Тёмный Navy
   ============================================ */
footer {
    background: var(--dark-bg) !important;
    border-top: 2px solid var(--sand-dark) !important;
    color: var(--text-light) !important;
}

footer h3,
footer h4 {
    color: var(--sand) !important;
}

footer a {
    color: var(--text-muted-light) !important;
}

footer a:hover {
    color: var(--sand) !important;
}

footer .social-links a {
    background: var(--dark-card) !important;
    color: var(--sky) !important;
    border-radius: 8px !important;
}

footer .social-links a:hover {
    background: var(--sky) !important;
    color: var(--dark-bg) !important;
}

/* ============================================
   ГЛОБАЛЬНЫЕ ЭЛЕМЕНТЫ
   ============================================ */

/* Кнопки */
.btn-primary,
.cta-button,
button[type="submit"] {
    background: var(--red) !important;
    color: var(--text-light) !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

.btn-primary:hover,
.cta-button:hover,
button[type="submit"]:hover {
    background: var(--red-light) !important;
}

.btn-secondary,
.btn-outline {
    background: transparent !important;
    border: 2px solid var(--sand) !important;
    color: var(--sand) !important;
    border-radius: 10px !important;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--sand) !important;
    color: var(--dark-bg) !important;
}

/* Section tags */
.section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky) !important;
    border-color: var(--sky) !important;
}

/* Карточки */
.card,
.service-card,
.feature-card {
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.card:hover,
.service-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
}

/* Stats */
.stat-number,
.metric-value {
    color: var(--sand) !important;
    font-weight: 700 !important;
}

/* Phone */
.phone,
a[href^="tel:"] {
    color: var(--red) !important;
    font-weight: 600 !important;
}

/* Availability indicator */
.availability,
.available-now {
    color: var(--sky) !important;
}

.availability::before,
.available-now::before {
    background: var(--sky) !important;
    animation: pulse-sky 2s infinite;
}

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

/* Icons */
.icon {
    border-radius: 10px !important;
}

/* Forms */
input,
textarea,
select {
    border-radius: 8px !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--sky) !important;
    box-shadow: 0 0 0 3px rgba(109, 181, 224, 0.2) !important;
}

/* ============================================
   SECTION DIVIDERS
   ============================================ */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sand-dark) 0%, var(--red) 50%, var(--sky) 100%) !important;
    opacity: 0.4;
}

section:first-of-type::before {
    display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
* {
    transition: all 0.3s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    header {
        background: var(--dark-bg) !important;
    }

    .mobile-menu {
        background: var(--dark-bg) !important;
    }

    .mobile-menu a {
        color: var(--text-light) !important;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sand-dark);
}
/*
 * NAVY SAND v2 (22.1) — Overlay поверх v6-navy-sand.css
 * Цель: разбить монотонность чередованием тёмных/светлых секций
 *
 * Было:  D - L - L - W - D - D - L - D  (3 светлых подряд, 2 тёмных подряд)
 * Стало: D - L - D - W - D - L - D - L  (идеальное чередование)
 *
 * Изменены: HowItWorks (L→D), Areas (D→L), FAQ (L→D), CTA (D→L)
 */

/* ============================================
   HOW IT WORKS — ПЕРЕКЛЮЧИТЬ НА ТЁМНЫЙ
   Было: светлый sand. Стало: тёмный navy.
   Это главная перебивка между Services и Reviews.
   ============================================ */
.how-it-works,
#how-it-works {
    background: linear-gradient(180deg, #0F1D32 0%, #132240 50%, #0B1628 100%) !important;
    color: var(--text-light) !important;
}

.how-it-works h2 {
    color: #F0DFC8 !important;
}

.how-it-works h2 span {
    color: var(--sand) !important;
}

.how-it-works p {
    color: var(--text-muted-light) !important;
}

.how-it-works .section-tag {
    background: rgba(109, 181, 224, 0.15) !important;
    color: var(--sky) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

/* Шаги — тёмные карточки с sand номерами */
.how-it-works .step,
.how-it-works .step-card {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    color: var(--text-light) !important;
}

.how-it-works .step h3,
.how-it-works .step-card h3 {
    color: var(--text-light) !important;
}

.how-it-works .step p,
.how-it-works .step-card p {
    color: var(--text-muted-light) !important;
}

.how-it-works .step-number,
.how-it-works .step__number {
    background: var(--sand-dark) !important;
    color: var(--dark-bg) !important;
    font-weight: 700 !important;
}

.how-it-works .step-icon,
.how-it-works .step__icon {
    color: var(--sky) !important;
}

/* ============================================
   AREAS — ПЕРЕКЛЮЧИТЬ НА СВЕТЛЫЙ
   Было: тёмный navy. Стало: тёплый sand.
   Перебивка после тёмного About.
   ============================================ */
.areas-section,
#areas {
    background: var(--warm-bg) !important;
    color: var(--text-dark) !important;
}

.areas-section .section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky-dark) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

.areas-section h2 {
    color: var(--dark-bg) !important;
}

.areas-section p {
    color: var(--text-muted-dark) !important;
}

/* Area pills — на светлом фоне используем dark navy */
.areas-section .tag,
.areas-section .chip,
.areas__tags .tag,
.areas__tags .chip {
    background: transparent !important;
    border: 1px solid var(--dark-bg) !important;
    color: var(--dark-bg) !important;
    border-radius: 20px !important;
}

.areas-section .tag:hover,
.areas__tags .tag:hover {
    background: var(--dark-bg) !important;
    color: var(--sand) !important;
}

.areas-section .tag.active,
.areas__tags .tag.active {
    background: var(--dark-bg) !important;
    color: var(--sand) !important;
}

/* Area category labels */
.areas__category-label {
    color: var(--red) !important;
}

/* ============================================
   FAQ — ПЕРЕКЛЮЧИТЬ НА ТЁМНЫЙ
   Было: светлый sand. Стало: тёмный navy.
   Даёт контраст перед светлым CTA.
   ============================================ */
.faq,
#faq {
    background: linear-gradient(180deg, #0B1628 0%, #132240 50%, #0F1D32 100%) !important;
    color: var(--text-light) !important;
}

.faq h2 {
    color: #F0DFC8 !important;
}

.faq .section-tag {
    background: rgba(109, 181, 224, 0.15) !important;
    color: var(--sky) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

/* FAQ list — two independent columns */
.faq .faq__list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: start !important;
}

.faq .faq__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .faq .faq__list {
        grid-template-columns: 1fr !important;
    }
}

/* FAQ accordion на тёмном */
.faq details,
.faq .faq-item,
.faq .faq__item {
    background: var(--dark-card) !important;
    border: 1px solid var(--dark-border) !important;
    border-radius: 10px !important;
}

.faq .faq__question {
    padding: 12px 16px !important;
    font-size: 0.875rem !important;
}

.faq .faq__answer {
    padding: 0 16px 12px !important;
    font-size: 0.8125rem !important;
}

.faq summary,
.faq .faq-question,
.faq .faq__question {
    color: rgba(241, 245, 249, 0.65) !important;
    font-weight: 400 !important;
}

.faq details[open] summary,
.faq .faq-question.active,
.faq .faq__item[open] .faq__question {
    color: #F0DFC8 !important;
    font-weight: 500 !important;
}

.faq .faq__question::after {
    color: rgba(241, 245, 249, 0.3) !important;
}

.faq .faq__item[open] .faq__question::after {
    color: #F0DFC8 !important;
}

.faq p,
.faq .faq-answer {
    color: var(--text-muted-light) !important;
}

.faq details[open] {
    border-color: var(--sand-dark) !important;
}

/* ============================================
   CTA / CONTACT — ПЕРЕКЛЮЧИТЬ НА СВЕТЛЫЙ
   Было: тёмный navy. Стало: warm sand.
   Тёплый финал — приглашение, а не давление.
   ============================================ */
.cta,
#contact {
    background: var(--light-bg) !important;
    color: var(--text-dark) !important;
}

.cta h2 {
    color: var(--dark-bg) !important;
}

.cta p {
    color: var(--text-muted-dark) !important;
}

.cta .section-tag {
    background: rgba(109, 181, 224, 0.12) !important;
    color: var(--sky-dark) !important;
    border: 1px solid rgba(109, 181, 224, 0.3) !important;
}

/* Contact form на светлом */
.cta input,
.cta textarea,
.cta .contact-form__input,
.cta .contact-form textarea {
    background: var(--light-card) !important;
    border: 1px solid var(--light-border) !important;
    color: var(--text-dark) !important;
}

.cta input:focus,
.cta textarea:focus {
    border-color: var(--sky) !important;
    box-shadow: 0 0 0 3px rgba(109, 181, 224, 0.15) !important;
}

.cta .btn-primary,
.cta .cta-button,
.cta button[type="submit"] {
    background: var(--red) !important;
    color: var(--text-light) !important;
}

/* CTA phone on light bg */
.cta a[href^="tel:"] {
    color: var(--red) !important;
}

/* ============================================
   HEADER FIXES — v22.1
   ============================================ */

/* Request Callback button — match Call Now red */
.header__callback {
    background: transparent !important;
    border: 1.5px solid var(--red) !important;
    color: var(--red) !important;
}

.header__callback:hover {
    background: var(--red) !important;
    color: var(--text-light) !important;
}

/* Phone CTA — red with white text */
.header__cta {
    background: var(--red) !important;
    color: #FFFFFF !important;
}

.header__cta span,
.header__cta-number {
    color: #FFFFFF !important;
}

.header__cta:hover {
    background: var(--red-light) !important;
}

/* ============================================
   AVAILABILITY — centered, no "Limited" badge
   ============================================ */
.hero__availability--centered {
    text-align: center !important;
    justify-content: center !important;
}

.hero__slots {
    display: none !important;
}

/* ============================================
   HOW IT WORKS — STICKY NUMBER + SCROLLING CARDS
   ============================================ */

/* Hide old steps grid */
.how-it-works .steps {
    display: none !important;
}

/* Section padding */
.how-it-works {
    padding: 80px 0 !important;
}

/* Main layout: sticky number left, scrolling cards right */
.hiw-scroll {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: start;
}

/* Left: sticky number column */
.hiw-scroll__num-col {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
}

.hiw-scroll__num {
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: var(--sand);
    opacity: 0.15;
    transition: opacity 0.4s ease, color 0.4s ease;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}

.hiw-scroll__num.is-active {
    opacity: 1;
}

/* Right: scrolling step cards */
.hiw-scroll__cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hiw-scroll__card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hiw-scroll__card.is-active {
    border-color: var(--sand-dark);
    box-shadow: 0 0 0 1px var(--sand-dark), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hiw-scroll__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light) !important;
    margin-bottom: 8px;
}

.hiw-scroll__card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted-light) !important;
    margin-bottom: 16px;
}

.hiw-scroll__card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hiw-scroll__tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(109, 181, 224, 0.08);
    color: var(--sky);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid rgba(109, 181, 224, 0.15);
}

/* Logo icon in header */
.logo__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

/* Mobile: hide sticky number, stack cards */
@media (max-width: 768px) {
    .hiw-scroll {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hiw-scroll__num-col {
        position: static;
        transform: none;
        height: auto;
        justify-content: flex-start;
    }

    .hiw-scroll__num {
        font-size: 4rem;
        opacity: 0.2;
    }

    .hiw-scroll__card {
        padding: 24px;
    }
}

/* ============================================
   COMPACT: Services & Areas sections
   ============================================ */
.services {
    padding: 40px 0 !important;
}

.services .section-header {
    margin-bottom: 24px !important;
}

.services .service-card .service-card__icon {
    height: 56px !important;
    margin-bottom: 8px !important;
}

.services .service-card {
    padding: 20px !important;
}

.areas-section {
    padding: 40px 0 !important;
}

.areas-section .section-header {
    margin-bottom: 24px !important;
}

/* ============================================
   FOOTER — swapped styles
   ============================================ */

/* Grid: 3 columns instead of 4 (services+areas merged) */
.footer__grid {
    grid-template-columns: 1fr 1fr 2fr !important;
}

/* Footer logo — match header style exactly */
.footer__logo {
    color: var(--sand) !important;
    font-size: 1.375rem;
    font-weight: 800;
}

.footer__logo-accent {
    color: rgb(14, 165, 233) !important;
    font-weight: 800;
}

.footer__logo-service {
    font-weight: 500 !important;
    font-size: 0.85em;
    color: var(--text-muted-light) !important;
}

/* Services/Areas as inline dot-separated text */
.footer__inline-list {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-muted-light);
    margin: 0;
}

.footer__inline-list a {
    color: var(--text-muted-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__inline-list a:hover {
    color: var(--sand);
}

.footer__heading--mt {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr !important;
    }
}
