/* ==========================================================================
   HYDREX PEST CONTROL 92126 — GOLD STANDARD LANDING PAGE
   Brand: Dark Charcoal (#1A1A1A) + Red accent (#C62828)
   Mira Mesa, San Diego, CA — Termite & Pest Control Focus
   Matching hydrexsd.com branding
   ========================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --brand-dark: #1A1A1A;
    --brand-deep: #111111;
    --brand-charcoal: #2A2A2A;
    --brand-gray: #333333;
    --red: #C62828;
    --red-hover: #B71C1C;
    --red-light: rgba(198,40,40,0.1);
    --gold: #C6BA28;
    --white: #FFFFFF;
    --off-white: #FAF8F3;
    --cream: #F5F2EB;
    --light-gray: #F0EEEA;
    --text-dark: #1A1A1A;
    --text-body: #666666;
    --text-light: #D0D0D0;
    --text-muted: #767676;
    --green-check: #C62828;
    --font-primary: 'Source Sans 3', ui-sans-serif, system-ui, sans-serif;
    --font-display: 'Bitter', ui-serif, Georgia, serif;
    --section-pad: 100px;
    --container-width: 1200px;
    --transition: 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* ===== SECTION UTILITIES ===== */
.section--dark { background: var(--brand-dark); color: var(--white); }
.section--light { background: var(--white); color: var(--text-dark); }
.section--cream { background: var(--off-white); color: var(--text-dark); }
.section--light, .section--dark, .section--cream { padding: var(--section-pad) 0; }

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--red);
}
.section-label--light { color: var(--red); }
.section-label--light::before { background: var(--red); }

.section__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-align: center;
}
.section__title--dark { color: var(--text-dark); }
.section__title--light { color: var(--white); }
.section__title--left { text-align: left; }

.section__subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-body);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.section__subtitle--light { color: var(--text-light); }
.section__subtitle--left { text-align: left; margin: 0 0 50px; }

/* Section badges */
.section-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.section-badge span {
    display: inline-block;
    background: var(--brand-dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 10px 24px;
    border: 2px solid var(--red);
}
.section-badge--dark span {
    background: rgba(255,255,255,0.08);
    border-color: var(--red);
}
.section-badge--faq span {
    background: var(--brand-dark);
    color: var(--white);
    border-color: var(--brand-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--lg { padding: 16px 32px; font-size: 14px; }
.btn--full { width: 100%; font-size: 15px; padding: 16px 32px; border-radius: var(--radius-sm); }
.btn__arrow { font-size: 18px; font-weight: 400; }

.btn--red {
    background: var(--red);
    color: #FFFFFF !important;
    border-color: var(--red);
    text-transform: uppercase;
}
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); }

.btn--dark {
    background: var(--brand-dark);
    color: var(--white);
    text-transform: uppercase;
}
.btn--dark:hover { background: #333; }

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

.btn--outline-dark {
    background: transparent;
    color: var(--text-dark);
    border-color: rgba(0,0,0,0.2);
}
.btn--outline-dark:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.4); }

.btn--nav-phone {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.btn--nav-phone:hover { background: var(--red); color: var(--white); }

/* CTA Bar */
.cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.cta-bar--dark { border-top-color: rgba(255,255,255,0.1); }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--brand-dark);
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.top-bar__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}
.top-bar__text {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.top-bar__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    transition: color var(--transition);
}
.top-bar__phone:hover { color: var(--red); }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar__logo-img {
    height: 56px;
    width: auto;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.navbar__menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition);
}
.navbar__menu a:hover { color: var(--red); }

/* Mobile toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(42,42,42,0.85) 60%, rgba(26,26,26,0.75) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px 60px;
    align-items: start;
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero__badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.hero__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 4px;
}
.hero__badge--emergency {
    background: rgba(198,40,40,0.2);
    color: #FF6B6B;
    border: 1px solid rgba(198,40,40,0.3);
}
.hero__badge--location {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 12px;
}
.hero__tagline {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 16px;
    font-style: italic;
}
.hero__description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__quote {
    font-style: italic;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-top: 24px;
}

/* Hero form card */
.hero__form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}
.form__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.form__title-highlight {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.form__title-highlight-inline {
    color: var(--red);
    font-weight: 900;
    letter-spacing: 1px;
}
.form__input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 12px;
}
.form__input::placeholder { color: #A0AEC0; }
.form__input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(198,40,40,0.1);
}
.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A5568' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form__textarea {
    resize: vertical;
    min-height: 80px;
}
.form__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}
.form__stars {
    color: var(--red);
    font-size: 14px;
    letter-spacing: 1px;
}
.form__rating-text {
    font-size: 13px;
    color: var(--text-body);
}

/* ===== HERO TRUST BADGES (Glassmorphism) ===== */
.hero__trust-badges {
    display: flex;
    flex-direction: row;
    gap: 16px;
    grid-column: 1 / -1;
    margin-top: 0;
    justify-content: center;
}
.hero__trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    transition: all var(--transition);
    flex: 1;
    max-width: 320px;
}
.hero__trust-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateX(4px);
}
.hero__trust-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__trust-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}
.hero__trust-sub {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* ===== TRUST BAR (Licensed/Bonded/Insured/Background) ===== */
.trust-bar {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.trust-bar__icon {
    flex-shrink: 0;
}
.trust-bar__label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
}

/* ===== CREDENTIALS BAR ===== */
.credentials {
    background: var(--brand-dark);
    padding: 50px 0;
}
.credentials__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.credential {
    text-align: center;
    flex: 1;
}
.credential__number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.credential__number--text {
    font-size: clamp(32px, 4vw, 52px);
}
.credential__number--accent {
    color: var(--red);
    font-style: italic;
}
.credential__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
}
.credential__divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
}

/* ===== TRIAGE SECTION ===== */
.triage { padding: 100px 0 60px; background: var(--off-white); }
.triage__header {
    margin-bottom: 50px;
}
.triage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.triage__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid #E2E8F0;
    transition: all var(--transition);
}
.triage__card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.triage__icon {
    font-size: 28px;
    margin-bottom: 16px;
}
.triage__card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.triage__card-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services { padding: 100px 0 60px; }
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card__img-wrap {
    position: relative;
    height: 170px;
    overflow: hidden;
}
.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card__img { transform: scale(1.05); }
.service-card__number {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-dark);
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.service-card__body {
    padding: 20px;
}
.service-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.service-card__text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ===== ABOUT / WHY CHOOSE ===== */
.about { padding: 100px 0 60px; }
.about__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 0;
}
.about__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.about__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about__feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(198,40,40,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.about__feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.about__feature-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
.about__image {
    position: relative;
}
.about__photo {
    border-radius: var(--radius);
    border: 3px solid var(--red);
    width: 100%;
    object-fit: cover;
}

/* ===== 3-STEP PROCESS ===== */
.process { padding: 100px 0 60px; }
.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.process__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all var(--transition);
}
.process__card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.process__step-badge {
    display: inline-block;
    background: var(--brand-dark);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border: 2px solid var(--red);
    margin-bottom: 24px;
}
.process__icon {
    font-size: 36px;
    margin-bottom: 16px;
}
.process__card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.process__card-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}
.review-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 32px 28px;
    border-top: 3px solid var(--red);
    transition: all var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.review-card__stars {
    color: var(--red);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.review-card__text {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}
.review-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.review-card__author strong {
    font-size: 15px;
    color: var(--white);
}
.review-card__author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== MEMBER LOGOS ===== */
.members {
    background: var(--off-white);
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.members__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}
.members__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.members__logo {
    height: 50px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.members__logo--lg {
    height: 60px;
}
.members__logo:hover { opacity: 1; }

/* ===== GUARANTEE ===== */
.guarantee {
    padding: 60px 0;
    background: var(--off-white);
}
.guarantee__pill {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
    padding: 28px 36px;
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: 60px;
    text-align: left;
}
.guarantee__icon {
    font-size: 32px;
    flex-shrink: 0;
}
.guarantee__text strong {
    display: block;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.guarantee__text p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}
.faq__question:hover { background: rgba(0,0,0,0.02); }
.faq__toggle {
    font-size: 22px;
    font-weight: 400;
    color: var(--red);
    transition: transform var(--transition);
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}
.faq__item.active .faq__toggle { transform: rotate(45deg); }
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq__answer p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== BOTTOM CONTACT FORM ===== */
.bottom-form { padding: 100px 0; }
.bottom-form__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.bottom-form__content .section__title {
    text-align: left;
}
.bottom-form__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 28px;
}
.bottom-form__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bottom-form__phone,
.bottom-form__email,
.bottom-form__address {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transition: color var(--transition);
}
.bottom-form__phone:hover {
    color: var(--red);
}
.bottom-form__address {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
}
.hero__form-card--bottom {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===== FOOTER ===== */
.footer {
    background: #0D0D0D;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer__logo {
    height: 40px;
    width: auto;
}
.footer__copy {
    font-size: 13px;
    color: var(--text-muted);
}
.footer__service-area {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__form-card { max-width: 520px; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }

    .bottom-form__inner {
        grid-template-columns: 1fr;
    }
    .bottom-form__content { text-align: center; }
    .bottom-form__content .section__title { text-align: center; }
    .bottom-form__info { align-items: center; }
    .hero__form-card--bottom { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px; }

    .top-bar__left { flex-direction: column; gap: 4px; align-items: flex-start; }
    .top-bar__text { display: none; }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow);
        gap: 16px;
    }
    .navbar__menu.active { display: flex; }
    .navbar__toggle { display: flex; }
    .btn--nav-phone { display: none; }

    .hero { min-height: auto; }
    .hero__inner { padding-top: 40px; padding-bottom: 40px; }
    .hero__title { font-size: 36px; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }

    .credentials__inner {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .credential { min-width: 130px; }
    .credential__divider { display: none; }

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

    .guarantee__pill {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius);
        padding: 24px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .footer__left {
        flex-direction: column;
    }

    .cta-bar {
        flex-direction: column;
    }
    .cta-bar .btn { width: 100%; }

    .hero__trust-badges {
        flex-direction: column;
        max-width: 100%;
        grid-column: 1 / -1;
    }
    .trust-bar__inner {
        flex-wrap: wrap;
        gap: 24px 40px;
        justify-content: center;
    }
    .trust-bar__label { font-size: 13px; letter-spacing: 1px; }
    .members__logos { gap: 30px; }
    .members__logo { height: 36px; }
    .members__logo--lg { height: 44px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 30px; }
    .hero__form-card { padding: 24px 20px; }
    .section__title { font-size: 28px; }
}
