/* ============================================================
   Douglas Towing and Recovery — style.css (global)
   Loads on all inner pages. Homepage loads style-home.css.
   Brand: Navy #010b17 | Blue #0081e3 | White #ffffff
   Font:  Rubik Variable
   ============================================================ */

/* ── Font ─────────────────────────────────────────────────── */
@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-VariableFont.woff2') format('woff2-variations');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

/* ── Variables ────────────────────────────────────────────── */
:root {
    --brand-navy:        #010b17;
    --brand-navy-hover:  #021028;
    --brand-blue:        #0081e3;
    --brand-blue-hover:  #0070c4;
    --brand-blue-light:  #e8f4fd;
    --text-primary:      #1a1a2e;
    --text-muted:        #5a6475;
    --text-light:        rgba(255,255,255,0.88);
    --text-light-muted:  rgba(255,255,255,0.6);
    --bg-white:          #ffffff;
    --bg-light:          #f6f8fb;
    --bg-dark:           var(--brand-navy);
    --border:            #e2e6ee;
    --border-dark:       rgba(255,255,255,0.1);
    --radius:            6px;
    --radius-lg:         12px;
    --shadow:            0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg:         0 8px 40px rgba(0,0,0,0.14);
    --container:         1160px;
    --nav-height:        90px;
    --font:              'Rubik', system-ui, -apple-system, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section        { padding: 80px 0; }
.section--sm    { padding: 50px 0; }
.section--lg    { padding: 110px 0; }
.section--dark  { background: var(--bg-dark); color: var(--text-light); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p  { color: var(--text-light); }
.section--alt   { background: var(--bg-light); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.text-blue { color: var(--brand-blue); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--blue { background: var(--brand-blue); color: #fff; }
.btn--blue:hover {
    background: var(--brand-blue-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,129,227,0.35);
}
.btn--navy { background: var(--brand-navy); color: #fff; }
.btn--navy:hover {
    background: var(--brand-navy-hover);
    color: #fff;
    transform: translateY(-1px);
}
.btn--outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.65);
    color: #fff;
}
.btn--outline:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.btn--ghost {
    background: transparent;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
}
.btn--ghost:hover { background: var(--brand-blue); color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
}
.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.875rem; }

/* ── Section header ───────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 0.6rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; }
.section-header.text-center p { margin: 0 auto; }

/* ── Check list ───────────────────────────────────────────── */
.check-list { margin: 1rem 0 1.5rem; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.check-list li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    background: var(--brand-blue);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}
.check-list--light li { color: rgba(255,255,255,0.8); }
.check-list--light li::before { background-color: rgba(255,255,255,0.25); }

/* ── Nav ──────────────────────────────────────────────────── */
.site-header { position: relative; z-index: 200; }

.header-top {
    background: var(--brand-navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-top-inner { display: flex; align-items: center; gap: 1.5rem; }
.header-top-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.15s;
}
.header-top-item:hover { color: #fff; text-decoration: none; }
.header-top-item svg { color: var(--brand-blue); flex-shrink: 0; }

.site-nav {
    background: #ffffff;
    height: var(--nav-height);
    border-bottom: 1px solid var(--border);
}
.site-nav .container {
    height: 100%;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
}
.nav-logo { text-decoration: none; flex-shrink: 0; align-self: center; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { height: 46px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 0.1rem; height: 100%; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
}
.nav-link:hover,
.nav-link--active { color: var(--brand-blue); text-decoration: none; }
.nav-caret { font-size: 0.55rem; opacity: 0.65; }

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0d1b2a;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 2px solid var(--brand-blue);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem 0;
    z-index: 100;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.clicked .nav-dropdown { display: block; }
.has-dropdown.force-closed .nav-dropdown { display: none !important; }

.nav-dropdown__link {
    display: block;
    padding: 0.8rem 1.1rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    transition: color 0.15s, background 0.15s;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-dropdown__link:last-child { border-bottom: none; }
.nav-dropdown__link:hover {
    color: var(--brand-blue);
    background: rgba(0,129,227,0.06);
    text-decoration: none;
}

.nav-item--cta .btn { margin-left: 0.5rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    align-self: center;
    position: relative;
    z-index: 9500;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 2px;
    transition: all 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }

/* ── Page banner (inner pages) ────────────────────────────── */
.page-banner {
    background: var(--brand-navy);
    padding: 52px 0 48px;
    border-bottom: 3px solid var(--brand-blue);
}
.page-banner h1 {
    color: #fff;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.85rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.breadcrumb-nav a:hover { color: var(--brand-blue); text-decoration: none; }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: rgba(255,255,255,0.9); }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band { background: var(--brand-blue); padding: 28px 0; }
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cta-band h2 {
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 1.45rem);
    font-weight: 700;
    margin: 0;
}
.cta-band .btn--navy { flex-shrink: 0; }

/* ── Feature rows ─────────────────────────────────────────── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row--reverse .feature-img { order: 2; }
.feature-row--reverse .feature-content { order: 1; }
.feature-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.feature-content .section-label {
    display: inline-block;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 1rem;
}
.feature-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); margin-bottom: 1rem; }
.feature-content p { color: var(--text-muted); margin-bottom: 1rem; }
.feature-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* ── Area cards (4-up) ────────────────────────────────────── */
.area-card {
    background: var(--bg-white);
    border-top: 3px solid var(--brand-blue);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
}
.area-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.area-card h3 a { color: var(--text-primary); text-decoration: none; transition: color 0.15s; }
.area-card h3 a:hover { color: var(--brand-blue); }
.area-card ul { margin: 0 0 1rem; }
.area-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.area-card li:last-child { border-bottom: none; }
.area-card li svg { color: var(--brand-blue); flex-shrink: 0; }
.area-card .area-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
}
.area-card .area-link:hover { text-decoration: underline; }

/* ── FAQ accordion ────────────────────────────────────────── */
.faq-list { max-width: 800px; }
.faq-list--wide { max-width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    transition: color 0.15s;
    cursor: pointer;
}
.faq-question:hover { color: var(--brand-blue); }
.faq-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--brand-blue);
    transition: transform 0.25s;
    font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer__inner {
    padding-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ── Reviews slider ───────────────────────────────────────── */
.reviews-section { background: var(--bg-light); }
.reviews-slider { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.4s ease; will-change: transform; }
.review-card {
    min-width: 100%;
    padding: 2.5rem 3rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    box-sizing: border-box;
}
.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--brand-navy);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}
.review-author strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.review-source { font-size: 0.78rem; color: var(--text-muted); }
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}
.reviews-prev, .reviews-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-white);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.reviews-prev:hover, .reviews-next:hover {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    color: #fff;
}
.reviews-dots { display: flex; gap: 0.5rem; }
.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.reviews-dot.active { background: var(--brand-blue); transform: scale(1.35); }

/* ── Contact form ─────────────────────────────────────────── */
.contact-band { background: var(--bg-light); }
.contact-band-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}
.contact-band__text .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 0.6rem;
}
.contact-band__text h2 { margin-bottom: 1rem; }
.contact-band__text p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.contact-details li svg { color: var(--brand-blue); flex-shrink: 0; }
.contact-details li a { color: var(--text-muted); transition: color 0.15s; }
.contact-details li a:hover { color: var(--brand-blue); text-decoration: none; }

.contact-form-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: #fff;
    transition: border-color 0.15s;
    appearance: none;
}
.form-control:focus { outline: none; border-color: var(--brand-blue); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-honey { display: none !important; }
.form-alert {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.form-alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.form-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--brand-navy); color: var(--text-light); }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--border-dark);
}
.footer-logo { display: block; margin-bottom: 1rem; }
.footer-logo img { height: 46px; width: auto; }
.footer-about p {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-muted);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.footer-social a:hover { background: var(--brand-blue); color: #fff; }
.footer-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links a {
    font-size: 0.875rem;
    color: var(--text-light-muted);
    text-decoration: none;
    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover { color: var(--brand-blue); }
.footer-links a svg { color: var(--brand-blue); flex-shrink: 0; opacity: 0.7; }
.footer-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.footer-tag {
    font-size: 0.78rem;
    color: var(--text-light-muted);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 10px;
    border-radius: 3px;
    text-decoration: none;
    transition: color 0.15s, border-color 0.15s;
}
.footer-tag:hover { color: var(--brand-blue); border-color: var(--brand-blue); text-decoration: none; }
.footer-bottom { padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: var(--text-light-muted); margin: 0; }
.footer-copy a { color: var(--brand-blue); }

/* ── Map ──────────────────────────────────────────────────── */
.map-wrap {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── Utility ──────────────────────────────────────────────── */
.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;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-about { grid-column: 1 / -1; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        background: var(--brand-navy);
        padding: 5rem 1.5rem 2rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 9000;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-item { width: 100%; }
    .nav-link {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 1rem;
        color: rgba(255,255,255,0.88);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        border-radius: 0;
    }
    .nav-dropdown {
        display: none;
        position: static;
        border: none;
        background: rgba(0,129,227,0.07);
        border-radius: var(--radius);
        margin: 0.25rem 0 0.5rem;
        padding: 0.25rem 0;
        box-shadow: none;
        border-top: none;
    }
    .has-dropdown.open .nav-dropdown { display: block; }
    .nav-item--cta { margin-top: 1rem; }
    .nav-item--cta .btn { width: 100%; justify-content: center; margin-left: 0; }
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; gap: 2rem; padding: 40px 0; }
    .feature-row--reverse .feature-img { order: 0; }
    .feature-row--reverse .feature-content { order: 0; }
    .contact-band-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .section { padding: 55px 0; }
    .section--lg { padding: 70px 0; }
}

@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .grid-4 { grid-template-columns: 1fr; }
    .review-card { padding: 1.75rem 1.5rem; }
    .header-top { display: none; }
}
