/* ========================================
   JUST DOMESTIC — Main Stylesheet
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:     #0d1b2e;
    --navy-mid: #132238;
    --navy-light: #1a3050;
    --blue:     #2a9fd6;
    --blue-mid: #1e88c2;
    --gold:     #f5a623;
    --white:    #ffffff;
    --off-white:#f4f6f9;
    --text:     #2d3748;
    --text-light:#6b7a8d;
    --border:   #e2e8f0;
    --green:    #38a169;
    --radius:   10px;
    --shadow:   0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:0 8px 40px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-align: center;
}
.btn-primary   { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #e8950f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-blue      { background: var(--blue); color: var(--white); }
.btn-blue:hover{ background: var(--blue-mid); transform: translateY(-2px); }
.btn-dark      { background: var(--navy); color: var(--white); }
.btn-dark:hover{ background: var(--navy-light); }
.btn-dark-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; border-radius: 8px; padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-dark-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold      { background: var(--gold); color: var(--navy); border-radius: 8px; padding: 0.6rem 1.2rem; font-size: 0.9rem; }
.btn-gold:hover{ background: #e8950f; }
.btn-outline-white { border: 2px solid var(--white); color: var(--white); background: transparent; border-radius: 50px; padding: 0.85rem 2rem; }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-submit    { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 1rem; border-radius: var(--radius); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--blue); }

/* trust bar removed */

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
    padding: 0.75rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    height: 60px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-right: auto;
}
.logo-mark {
    width: 40px; height: 40px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin-right: 1.5rem;
}
.nav-links a {
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--navy);
    background: var(--off-white);
    font-weight: 600;
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    margin-left: 1rem;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    color: var(--navy);
}

/* ===== HERO — full viewport, no scroll ===== */
.hero {
    background: var(--navy);
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 2.5rem;
    align-items: center;
    padding: 0 5%;
    height: calc(100vh - 60px);
    max-height: 860px;
    min-height: 480px;
    box-sizing: border-box;
    overflow: hidden;
}
/* Mobile quote section — hidden on desktop */
.mobile-quote-section {
    display: none;
    background: var(--off-white);
    padding: 2.5rem 5%;
}
.mobile-quote-inner {
    max-width: 540px;
    margin: 0 auto;
}
.mobile-quote-inner h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.mobile-quote-inner > p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}
.mobile-quote-inner .quote-card {
    position: static;
    box-shadow: var(--shadow);
}
.hero-text h1 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 0.65rem;
    color: var(--white);
}
.hero-text h1 em {
    font-style: normal;
    color: var(--blue);
}
.hero-text > p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.1rem;
    max-width: 520px;
    line-height: 1.65;
}
.hero-checks {
    list-style: none;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.hero-checks li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.hero-checks li::before {
    content: '✓';
    background: var(--green);
    color: var(--white);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ===== PAGE HERO IMAGE ===== */
.page-hero-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.45);
    position: absolute;
    top: 0; left: 0;
    z-index: 0;
}
.page-hero {
    position: relative;
    overflow: hidden;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}

/* ===== PAGE HERO (service pages) ===== */
.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 5%;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
}
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 0.4rem; }
.page-hero .subtitle { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 1rem; }
.page-hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}
.badge-green { background: rgba(56,161,105,0.2); border-color: var(--green); }

/* ===== SERVICE LAYOUT ===== */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    padding: 3rem 5%;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.service-content > * + * { margin-top: 2rem; }

/* ===== QUOTE CARD ===== */
.quote-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 70px;
}
/* Inside hero — no scroll, just fits */
.hero .quote-card {
    position: static;
    overflow: visible;
}
.quote-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.1rem;
    color: var(--navy);
}
.quote-sub {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}
.quote-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}
.quote-actions .btn-dark-outline,
.quote-actions .btn-gold {
    flex: 1;
    text-align: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.82rem;
    border-radius: 7px;
}
/* All form rows side-by-side */
.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    margin-bottom: 0.45rem;
}
.form-group label {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.45rem 0.75rem;
    border: 1.5px solid #dde3ec;
    border-radius: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.84rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(42,159,214,0.12);
}
.form-group textarea {
    resize: none;
    height: 52px;
    line-height: 1.4;
}
.req { color: #e53e3e; }
.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0.7rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.3rem;
    letter-spacing: 0.01em;
}
.btn-submit:hover { background: var(--blue); }
.form-trust {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.45rem;
}

/* ===== INTRO BOX ===== */
.intro-box {
    background: var(--off-white);
    border-left: 4px solid var(--blue);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.97rem;
    line-height: 1.7;
    color: var(--text);
}

/* ===== CHECKLIST GRID ===== */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.checklist-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.checklist-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.checklist-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.checklist-card li {
    font-size: 0.88rem;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text);
}
.checklist-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

/* ===== GUARANTEE BAR ===== */
.guarantee-bar {
    background: var(--navy);
    color: var(--white);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.93rem;
    line-height: 1.5;
}
.guarantee-bar strong { display: block; }
.guarantee-bar em { font-style: normal; color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.guarantee-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ===== FEATURES GRID ===== */
.section { padding: 4rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 0.75rem; }
.section-sub { color: var(--text-light); max-width: 580px; margin-bottom: 2.5rem; font-size: 0.97rem; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ===== STEPS ===== */
.steps-section { background: var(--off-white); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.step-num {
    width: 52px; height: 52px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    font-family: 'DM Sans', sans-serif;
    border: 3px solid var(--blue);
}
.step h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.step p  { font-size: 0.87rem; color: var(--text-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--navy); color: var(--white); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-sub { color: rgba(255,255,255,0.6); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
    font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-loc  { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== SERVICES GRID (homepage) ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-img {
    height: 200px;
    background: var(--navy-light);
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}
.service-card-body { padding: 1.25rem; }
.service-card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--navy); }
.service-card-body p  { font-size: 0.87rem; color: var(--text-light); margin-bottom: 0.9rem; }
.link-arrow { color: var(--blue); font-weight: 600; font-size: 0.9rem; }
.link-arrow:hover { text-decoration: underline; }
.services-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card-sm {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: box-shadow 0.2s;
}
.service-card-sm:hover { box-shadow: var(--shadow); }
.service-card-sm h3 { font-size: 1rem; margin-bottom: 0.35rem; color: var(--navy); }
.service-card-sm p  { font-size: 0.87rem; color: var(--text-light); }

/* ===== PRICING ===== */
.pricing-table {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.pricing-table h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--navy); display: flex; align-items: center; gap: 0.5rem; }
.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}
.pricing-row:last-child { border-bottom: none; }
.price-amount { font-weight: 700; color: var(--navy); }

/* ===== FOOTER ===== */
.footer-cta {
    background: linear-gradient(135deg, var(--blue), #1a6fa8);
    color: var(--white);
    text-align: center;
    padding: 4rem 5%;
}
.footer-cta h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.footer-cta p  { opacity: 0.85; margin-bottom: 1.75rem; font-size: 0.97rem; }
.footer-main {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 5%;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-logo .logo-mark { background: var(--blue); }
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact-links { display: flex; gap: 1.25rem; font-size: 0.88rem; }
.footer-contact-links a { color: var(--blue); font-weight: 600; }
.footer-col h4 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    background: #060f1a;
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 1rem 5%;
    font-size: 0.82rem;
}

/* ===== AREAS ===== */
.areas-section { background: var(--off-white); }
.areas-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.area-tag {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}
.area-tag.highlight { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */

/* Large desktops (1400px+) */
@media (min-width: 1400px) {
    .section-inner, .service-layout { max-width: 1300px; }
    .section { padding: 5rem 8%; }
}

/* ── Desktop hero column width tighter ── */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 1fr 350px; gap: 2rem; }
}

/* ── Tablet landscape (1024px) ──
   Hide the form inside the hero, show the separate mobile form section below */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        padding: 2.5rem 5% 2rem;
        gap: 0;
        overflow: visible;
    }
    .hero .hero-form-col    { display: none; }       /* hide form in hero */
    .mobile-quote-section   { display: block; }      /* show form below hero */

    .service-layout         { grid-template-columns: 1fr; }
    .quote-card             { position: static; }
    .features-grid          { grid-template-columns: 1fr 1fr; }
    .steps-grid             { grid-template-columns: 1fr 1fr; }
    .testimonials-grid      { grid-template-columns: 1fr 1fr; }
    .services-grid          { grid-template-columns: 1fr 1fr; }
    .footer-main            { grid-template-columns: 1fr 1fr; }
}

/* ── Tablet portrait (768px) ── */
@media (max-width: 768px) {
    .nav-links, .navbar .btn-primary { display: none; }
    .hamburger              { display: block; }
    .hero                   { padding: 2rem 4% 2.5rem; }
    .hero-text h1           { font-size: 1.85rem; }
    .features-grid          { grid-template-columns: 1fr 1fr; }
    .checklist-grid         { grid-template-columns: 1fr 1fr; }
    .steps-grid             { grid-template-columns: 1fr 1fr; }
    .testimonials-grid      { grid-template-columns: 1fr; }
    .services-grid          { grid-template-columns: 1fr; }
    .services-row-2         { grid-template-columns: 1fr 1fr; }
    .footer-main            { grid-template-columns: 1fr; gap: 2rem; }
    .page-hero              { padding: 2rem 4%; min-height: 180px; }
    .section                { padding: 2.5rem 4%; }
    .mobile-quote-section   { padding: 2rem 4%; }
    .quote-form .form-row   { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
    body                    { font-size: 15px; }
    .navbar                 { padding: 0 4%; height: 56px; }
    .logo span              { font-size: 1rem; }
    .logo-mark              { width: 34px; height: 34px; font-size: 0.8rem; }

    .hero                   { padding: 1.75rem 4% 2rem; }
    .hero-text h1           { font-size: 1.5rem; line-height: 1.2; }
    .hero-text > p          { font-size: 0.88rem; margin-bottom: 0.85rem; }
    .hero-checks            { gap: 0.3rem; margin-bottom: 1rem; }
    .hero-checks li         { font-size: 0.87rem; }
    .hero-btns              { gap: 0.55rem; flex-wrap: wrap; }
    .hero-btns .btn         { padding: 0.65rem 1.1rem; font-size: 0.87rem; flex: 1; min-width: 130px; text-align: center; }

    /* Mobile quote form */
    .mobile-quote-section   { padding: 1.75rem 4%; }
    .mobile-quote-inner h2  { font-size: 1.3rem; }
    .quote-card             { padding: 1.1rem; border-radius: 12px; }
    .quote-card h3          { font-size: 1rem; }
    .quote-sub              { font-size: 0.75rem; margin-bottom: 0.6rem; }
    .quote-actions          { gap: 0.4rem; margin-bottom: 0.7rem; }
    .quote-actions .btn-dark-outline,
    .quote-actions .btn-gold { padding: 0.42rem 0.5rem; font-size: 0.79rem; }

    /* Form single column */
    .quote-form .form-row   { grid-template-columns: 1fr; gap: 0; }
    .form-group             { margin-bottom: 0.42rem; }
    .form-group label       { font-size: 0.75rem; }
    .form-group input,
    .form-group select      { padding: 0.5rem 0.75rem; font-size: 0.85rem; }
    .form-group textarea    { height: 50px; font-size: 0.85rem; }
    .btn-submit             { padding: 0.7rem; font-size: 0.9rem; }
    .form-trust             { font-size: 0.71rem; }

    .features-grid          { grid-template-columns: 1fr; }
    .checklist-grid         { grid-template-columns: 1fr; }
    .steps-grid             { grid-template-columns: 1fr 1fr; }
    .services-row-2         { grid-template-columns: 1fr; }
    .section-title          { font-size: 1.4rem; }
    .footer-cta h2          { font-size: 1.3rem; }
    .footer-cta             { padding: 2.5rem 4%; }
    .page-hero              { min-height: 160px; padding: 1.5rem 4%; }
    .page-hero-badges       { gap: 0.35rem; }
    .badge                  { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
    .section                { padding: 2rem 4%; }
}

/* ── Very small (360px) ── */
@media (max-width: 360px) {
    .hero-text h1           { font-size: 1.3rem; }
    .steps-grid             { grid-template-columns: 1fr; }
    .hero-btns .btn         { width: 100%; min-width: unset; }
}

