/* ==========================================================================
   RACK AIR CONDITIONING — GOLD STANDARD LANDING PAGE v2
   Brand: Dark Navy (#092F6F) + Gold accent (#E8A924)
   DeLand, FL — Family-owned since 1994
   Matches rackairconditioning.com visual style
   ========================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --brand-navy: #092F6F;
    --brand-deep: #0D1B2A;
    --brand-dark: #0D1B2A;
    --brand-charcoal: #1A2332;
    --brand-gray: #243447;
    --gold: #E8A924;
    --gold-hover: #D4960F;
    --red: #E53E3E;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --light-gray: #F0F2F5;
    --text-dark: #1A1A1A;
    --text-body: #4A5568;
    --text-light: #D0D8E0;
    --text-muted: #8A9BB0;
    --green: #22C55E;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', 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--accent { background: var(--gold); color: var(--text-dark); }
.section--light, .section--dark, .section--accent { padding: var(--section-pad) 0; }

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

.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(--gold);
}
.section-badge--dark span {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
}
.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__arrow { font-size: 18px; font-weight: 400; }
.btn__arrow-right { font-size: 16px; }

.btn--primary {
    background: var(--brand-navy);
    color: var(--white);
    border-color: var(--brand-navy);
}
.btn--primary:hover { background: #0a3980; border-color: #0a3980; }

.btn--gold {
    background: var(--gold);
    color: var(--brand-dark);
    border-color: var(--gold);
    text-transform: uppercase;
}
.btn--gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

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

.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--submit {
    background: var(--brand-navy);
    color: var(--white);
    border-color: var(--brand-navy);
    width: 100%;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
}
.btn--submit:hover { background: #0a3980; }

.btn--nav-phone {
    background: transparent;
    color: var(--brand-dark);
    border: 2px solid var(--brand-dark);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.btn--nav-phone:hover { background: var(--brand-dark); 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__badge::before {
    content: '';
    display: none;
}
.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(--gold); }

/* ===== 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 {
    width: 44px;
    height: 44px;
    border-radius: 10px;
}
.navbar__logo-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}
.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(--brand-navy); }

/* 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(9,47,111,0.92) 0%, rgba(13,27,42,0.85) 60%, rgba(13,27,42,0.7) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    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(229,62,62,0.2);
    color: #FC8181;
    border: 1px solid rgba(229,62,62,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: 20px;
}
.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 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: 8px;
}
.form__subtitle {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form__group {
    margin-bottom: 12px;
}
.form__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form__optional {
    font-weight: 400;
    color: var(--text-muted);
    font-style: italic;
}
.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);
}
.form__input::placeholder { color: #A0AEC0; }
.form__input:focus {
    outline: none;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(9,47,111,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__google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}
.form__rating-stars {
    color: #FBBC05;
    font-size: 14px;
    letter-spacing: 1px;
}
.form__rating-text {
    font-size: 13px;
    color: var(--text-body);
}

/* ===== 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);
}

/* ===== TRUST LOGOS ===== */
.trust-logos { padding: 80px 0; }
.trust-logos__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}
.trust-logos__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}
.trust-logos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    border: 1px solid #E2E8F0;
}
.trust-logo img {
    max-height: 60px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition);
}
.trust-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* ===== TRIAGE SECTION ===== */
.triage { padding: 100px 0 60px; background: var(--off-white); }
.triage__header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 50px;
}
.triage__big-number {
    font-family: var(--font-display);
    font-size: 140px;
    font-weight: 900;
    line-height: 0.85;
    color: rgba(0,0,0,0.04);
    flex-shrink: 0;
}
.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(--brand-navy);
    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(--gold);
    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(34,197,94,0.1);
    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(--gold);
    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(--gold);
    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(--gold);
    transition: all var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.review-card__stars {
    color: var(--gold);
    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);
}

/* ===== GUARANTEE ===== */
.guarantee {
    padding: 0 0 80px;
    background: var(--brand-dark);
}
.guarantee__pill {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
    padding: 28px 36px;
    background: rgba(255,255,255,0.04);
    border: 2px solid var(--gold);
    border-radius: 60px;
    text-align: left;
}
.guarantee__icon {
    font-size: 32px;
    flex-shrink: 0;
}
.guarantee__text strong {
    display: block;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 4px;
}
.guarantee__text p {
    font-size: 14px;
    color: var(--text-light);
    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(--text-muted);
    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 ===== */
.contact { padding: 100px 0; }
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact__text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-light);
}
.contact__info-item a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--transition);
}
.contact__info-item a:hover { color: var(--gold-hover); }
.contact__form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
}
.contact__form-card .form__title {
    margin-bottom: 24px;
}
.contact__form-card .form__input {
    margin-bottom: 0;
}
.contact__form-card .form__group {
    margin-bottom: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background: #080F1A;
    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__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; }
    .trust-logos__inner { grid-template-columns: 1fr; gap: 32px; }
    .trust-logos__heading { text-align: center; }
    .about__inner { grid-template-columns: 1fr; gap: 40px; }
    .contact__inner { grid-template-columns: 1fr; }
}

@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%; }
    .form__row { grid-template-columns: 1fr; }

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

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

    .triage__header { flex-direction: column; }
    .triage__big-number { font-size: 80px; }
    .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;
    }

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

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