/* ═══════════════════════════════════════
   BUZY BROS — STYLESHEET v3
   ═══════════════════════════════════════ */

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

:root {
    --blue: #0046BE;
    --blue-dark: #003399;
    --red: #cc0000;
    --yellow: #FFF200;
    --yellow-hover: #e6d900;
    --white: #FFFFFF;
    --dark: #111111;
    --gray: #f4f4f4;
    --text: #444;
    --green: #16a34a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; line-height: 1.6; color: var(--text); }

/* ── EMERGENCY BAR ── */
.emergency-bar {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.2px;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1001;
    line-height: 1.4;
}
.emergency-bar a { color: var(--yellow); text-decoration: none; font-weight: 900; }

/* ── HEADER ── */
header {
    background: var(--blue);
    position: fixed;
    width: 100%;
    top: 34px;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* BIGGER LOGO — mentor feedback */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 88px; width: auto; display: block; }

.nav-links {
    display: flex;
    gap: 2px;
    flex: 1;
    flex-wrap: wrap;
}
.nav-links a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 9px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); color: #fff; }

.header-phone {
    background: var(--yellow);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.header-phone:hover { background: var(--yellow-hover); transform: scale(1.04); }

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-size: 1.3rem;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

/* ── HERO — cleaner, focused ── */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 160px 20px 72px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 20px);
    pointer-events: none;
}
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; }

.hero h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.12; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--yellow); }

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 22px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.hero-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.85;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    background: var(--yellow); color: var(--dark);
    padding: 17px 38px; border-radius: 6px;
    text-decoration: none; font-weight: 900; font-size: 1.1rem;
    border: 3px solid var(--yellow); transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--yellow); transform: translateY(-2px); }

.btn-secondary {
    background: transparent; color: var(--white);
    padding: 17px 38px; border-radius: 6px;
    text-decoration: none; font-weight: 800; font-size: 1.1rem;
    border: 3px solid rgba(255,255,255,0.7); transition: all 0.25s; display: inline-block;
}
.btn-secondary:hover { background: var(--white); color: var(--blue); border-color: var(--white); transform: translateY(-2px); }

/* ── HOW IT WORKS — new section near top ── */
.how-it-works {
    background: var(--white);
    padding: 56px 20px;
    border-bottom: 3px solid var(--yellow);
}
.steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 900px;
    margin: 40px auto 0;
}
.how-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.how-number {
    width: 52px; height: 52px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 16px;
}
.how-step h3 { font-size: 1.1rem; color: var(--blue); font-weight: 800; margin-bottom: 8px; }
.how-step p { color: #666; font-size: 0.95rem; line-height: 1.6; }
.how-step a { color: var(--blue); font-weight: 700; text-decoration: none; }
.how-arrow {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--yellow);
    padding-top: 14px;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-bottom: 3px solid var(--yellow); padding: 22px 20px; }
.trust-stats { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-number { font-size: 1.9rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-label { font-size: 0.8rem; color: #666; font-weight: 600; margin-top: 4px; }

/* ── SHARED SECTION ── */
section { padding: 72px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.2rem; font-weight: 900; color: var(--blue); margin-bottom: 12px; }
.section-sub { text-align: center; font-size: 1.05rem; color: #666; margin-bottom: 44px; }
.section-sub a { color: var(--blue); font-weight: 700; text-decoration: none; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card {
    padding: 28px 24px; border-radius: 12px; border: 2px solid #e8e8e8;
    transition: all 0.3s; background: var(--white); text-decoration: none; color: inherit; display: block;
}
.service-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,70,190,0.1); }
.emergency-card { border-color: var(--red) !important; background: #fff8f8 !important; }
.emergency-card h3 { color: var(--red) !important; }
.service-icon { font-size: 2.4rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.2rem; color: var(--blue); margin-bottom: 8px; font-weight: 800; }
.service-card p { color: #666; line-height: 1.65; margin-bottom: 12px; font-size: 0.92rem; }
.service-link { font-weight: 800; color: var(--blue); font-size: 0.9rem; }

/* ── BEFORE / AFTER ── */
.before-after { background: var(--dark); padding: 72px 20px; }
.before-after .section-title { color: var(--white); }
.before-after .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 48px; }

.ba-job {
    margin-bottom: 56px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 28px;
}
.ba-job-label { font-size: 1rem; font-weight: 800; color: var(--yellow); margin-bottom: 18px; }
.ba-pair { display: grid; grid-template-columns: 1fr 44px 1fr; align-items: center; margin-bottom: 14px; }
.ba-side { position: relative; border-radius: 10px; overflow: hidden; line-height: 0; }
.ba-side img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 10px; }
.ba-tag { position: absolute; top: 10px; left: 10px; padding: 5px 14px; border-radius: 5px; font-size: 0.78rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.before-tag { background: var(--red); color: var(--white); }
.after-tag { background: var(--green); color: var(--white); }
.ba-arrow { text-align: center; font-size: 2rem; font-weight: 900; color: var(--yellow); }
.ba-caption { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.65; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }

.ba-cta { text-align: center; padding: 36px 28px; background: rgba(255,242,0,0.06); border: 2px solid rgba(255,242,0,0.25); border-radius: 14px; margin-top: 8px; }
.ba-cta p { color: var(--white); font-size: 1.15rem; margin-bottom: 20px; }
.ba-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ba-cta .btn-secondary { color: rgba(255,255,255,0.85); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blue); color: var(--white); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.82); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 22px; }
.testimonial { background: rgba(255,255,255,0.1); padding: 26px; border-radius: 12px; border-left: 5px solid var(--yellow); }
.stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 10px; }
.testimonial-text { font-style: italic; line-height: 1.75; margin-bottom: 14px; font-size: 0.93rem; }
.testimonial-author { font-weight: 800; color: var(--yellow); }
.testimonial-role { font-size: 0.84rem; opacity: 0.82; }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--blue); padding: 56px 20px; }
.areas-section .section-title { color: var(--white); }
.areas-section .section-sub { color: rgba(255,255,255,0.8); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 14px; }
.area-card { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 20px 16px; text-align: center; text-decoration: none; color: var(--white); transition: all 0.25s; }
.area-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); border-color: var(--yellow); }
.area-card h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 4px; color: var(--yellow); }
.area-card p { font-size: 0.82rem; opacity: 0.82; }

/* ── PRICING ── */
.pricing-section { background: #E8F0FF; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 22px; margin-bottom: 28px; }
.pricing-card { background: var(--white); border-radius: 14px; padding: 32px 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); border: 3px solid transparent; transition: all 0.3s; position: relative; }
.pricing-card:hover { border-color: var(--blue); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--yellow); box-shadow: 0 8px 32px rgba(255,242,0,0.25); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--dark); padding: 5px 18px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; white-space: nowrap; }
.pricing-header { text-align: center; margin-bottom: 18px; }
.pricing-icon { font-size: 2.2rem; margin-bottom: 8px; }
.pricing-header h3 { color: var(--blue); font-size: 1.4rem; font-weight: 900; margin-bottom: 4px; }
.price-range { font-size: 1.4rem; font-weight: 900; color: var(--blue); }
.pricing-features { list-style: none; margin: 14px 0 22px; }
.pricing-features li { padding: 8px 0 8px 24px; color: #666; position: relative; border-bottom: 1px solid #f0f0f0; font-size: 0.92rem; }
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.pricing-btn { display: block; background: var(--blue); color: var(--white); padding: 13px; border-radius: 8px; text-decoration: none; font-weight: 800; text-align: center; transition: all 0.25s; font-size: 0.95rem; }
.pricing-btn:hover { background: var(--yellow); color: var(--dark); transform: scale(1.03); }
.pricing-note { background: var(--white); padding: 22px 28px; border-radius: 12px; border-left: 5px solid var(--yellow); font-size: 0.95rem; color: #555; }
.pricing-note a { color: var(--blue); font-weight: 700; }

/* ── LEAD FORM ── */
.lead-form-section { background: var(--white); }
.form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-pitch h2 { font-size: 1.8rem; color: var(--blue); font-weight: 900; margin-bottom: 14px; }
.form-pitch p { color: #666; font-size: 0.98rem; line-height: 1.7; margin-bottom: 18px; }
.form-pitch-items { list-style: none; }
.form-pitch-items li { padding: 8px 0 8px 26px; color: var(--text); position: relative; font-size: 0.98rem; font-weight: 600; }
.form-pitch-items li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.form-mobile-heading { display: none; text-align: center; margin-bottom: 18px; }
.form-mobile-heading h2 { font-size: 1.4rem; color: var(--blue); font-weight: 900; margin-bottom: 4px; }
.form-mobile-heading p { color: #666; font-size: 0.88rem; }
.form-card { background: var(--white); padding: 36px; border-radius: 16px; box-shadow: 0 10px 50px rgba(0,70,190,0.12); border: 2px solid #e0eaff; }
.form-card h3 { color: var(--blue); font-size: 1.2rem; font-weight: 900; margin-bottom: 4px; }
.form-tagline { color: #888; font-size: 0.86rem; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 700; color: var(--blue); font-size: 0.88rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 2px solid #dde; border-radius: 6px; font-size: 1rem; font-family: inherit; transition: border-color 0.25s; background: #fafbff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.submit-btn { width: 100%; background: var(--yellow); color: var(--dark); padding: 17px; border: none; border-radius: 6px; font-size: 1.1rem; font-weight: 900; cursor: pointer; transition: all 0.25s; font-family: inherit; }
.submit-btn:hover { background: var(--yellow-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,70,190,0.18); }
.form-guarantee { text-align: center; margin-top: 10px; color: #888; font-size: 0.82rem; }

/* ── FAQ ── */
.faq { background: var(--gray); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 10px; border-left: 5px solid var(--blue); overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 700; color: var(--blue); font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; user-select: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 900; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; color: #666; line-height: 1.75; padding: 0 20px; font-size: 0.93rem; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--blue); color: var(--white); text-align: center; padding: 72px 20px; }
.cta-section h2 { font-size: 2.1rem; font-weight: 900; margin-bottom: 12px; }
.cta-section > p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 36px; }
.cta-box { background: var(--white); color: var(--dark); max-width: 500px; margin: 0 auto; padding: 36px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.cta-box h3 { font-size: 1.4rem; color: var(--blue); font-weight: 900; margin-bottom: 8px; }
.cta-box p { color: #666; margin-bottom: 18px; font-size: 0.95rem; }
.phone-large { display: inline-block; font-size: 2rem; font-weight: 900; color: var(--blue); text-decoration: none; transition: color 0.2s; }
.phone-large:hover { color: var(--blue-dark); }
.cta-box-note { color: #888; font-size: 0.82rem; margin-top: 12px; }

/* ── STICKY CALL ── */
.sticky-call { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.sticky-call a { display: flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--dark); padding: 14px 22px; border-radius: 50px; text-decoration: none; font-weight: 900; font-size: 1rem; box-shadow: 0 6px 24px rgba(0,0,0,0.28); transition: transform 0.25s; animation: pulse 3s infinite; }
.sticky-call a:hover { transform: scale(1.07); }
@keyframes pulse { 0%,100%{transform:scale(1);}50%{transform:scale(1.04);} }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.7); text-align: center; padding: 44px 20px; }
.footer-logo img { height: 80px; width: auto; }
.footer-tagline { color: var(--yellow); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; margin-bottom: 18px; }
.footer-links, .footer-areas { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 10px; }
.footer-links a, .footer-areas a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.8rem; padding: 3px 8px; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; transition: color 0.2s, border-color 0.2s; }
.footer-links a:hover, .footer-areas a:hover { color: var(--yellow); border-color: var(--yellow); }
footer p { font-size: 0.86rem; line-height: 1.9; }
footer a { color: var(--yellow); text-decoration: none; }
.footer-copy { opacity: 0.4; font-size: 0.76rem !important; margin-top: 14px; }

/* ── SERVICE/LOCATION PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: var(--white); padding: 152px 20px 64px; text-align: center; position: relative; }
.page-hero::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(-45deg,rgba(255,255,255,0.02) 0,rgba(255,255,255,0.02) 2px,transparent 2px,transparent 20px); pointer-events:none; }
.page-hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.urgency-badge { display: inline-block; background: var(--yellow); color: var(--dark); padding: 7px 18px; border-radius: 28px; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.4px; margin-bottom: 18px; }
.page-hero h1 { font-size: 2.6rem; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 .highlight { color: var(--yellow); }
.page-hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 26px; max-width: 600px; margin-left: auto; margin-right: auto; }
.page-hero .hero-ctas { justify-content: center; }

/* ── CONTENT SECTIONS ── */
.content-section { background: var(--white); }
.content-section.alt { background: var(--gray); }
.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.content-text h2 { font-size: 1.9rem; font-weight: 900; color: var(--blue); margin-bottom: 14px; }
.content-text p { color: #666; line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.content-text ul { list-style: none; margin-bottom: 22px; }
.content-text ul li { padding: 7px 0 7px 24px; position: relative; color: #555; font-size: 0.95rem; }
.content-text ul li::before { content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:900; }
.inline-cta { display: inline-block; background: var(--yellow); color: var(--dark); padding: 14px 32px; border-radius: 6px; text-decoration: none; font-weight: 900; font-size: 1rem; transition: all 0.25s; margin-top: 8px; }
.inline-cta:hover { background: var(--yellow-hover); transform: translateY(-2px); }

/* ── WHO WE SERVE ── */
.clients { background: var(--white); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 22px; }
.client-card { padding: 24px; border-radius: 10px; border-left: 5px solid var(--yellow); box-shadow: 0 2px 10px rgba(0,0,0,0.06); background: var(--white); }
.client-card h3 { color: var(--blue); font-size: 1.05rem; margin-bottom: 12px; font-weight: 800; }
.client-card ul { list-style: none; }
.client-card li { padding: 6px 0 6px 22px; color: #666; position: relative; font-size: 0.9rem; }
.client-card li::before { content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800; }

/* ══════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--blue-dark); padding: 10px 0; z-index: 999;
    }
    .nav-links.open a { padding: 12px 24px; border-radius: 0; font-size: 0.95rem; }
    .nav-toggle { display: block; }
    .header-content { position: relative; }
    .form-wrapper { grid-template-columns: 1fr; gap: 28px; }
    .content-2col { grid-template-columns: 1fr; gap: 28px; }
    .trust-stats { grid-template-columns: repeat(2,1fr); }
    .steps-row { flex-direction: column; align-items: center; gap: 8px; }
    .how-arrow { transform: rotate(90deg); padding: 0; font-size: 1.4rem; }
    .how-step { width: 100%; max-width: 420px; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════ */
@media (max-width: 600px) {
    /* Emergency bar — compact */
    .emergency-bar { font-size: 0.72rem; padding: 7px 10px; line-height: 1.4; }

    /* Header — bigger logo on mobile per mentor feedback */
    header { top: 32px !important; }
    .logo-img { height: 70px; }
    .header-phone { padding: 8px 12px; font-size: 0.76rem; }

    /* Hero */
    .hero, .page-hero { padding: 140px 16px 56px !important; }
    .hero h1, .page-hero h1 { font-size: 1.9rem; line-height: 1.15; }
    .hero-sub { font-size: 0.95rem; }
    .hero-trust { font-size: 0.78rem; gap: 10px; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 16px 14px; font-size: 1rem; }

    /* How it works */
    .how-it-works { padding: 44px 16px; }
    .how-step { padding: 0 8px; }

    /* General sections */
    section { padding: 48px 16px; }
    .section-title { font-size: 1.7rem; line-height: 1.2; }
    .section-sub { font-size: 0.9rem; margin-bottom: 28px; }

    /* Trust bar */
    .trust-stats { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .stat-number { font-size: 1.5rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 14px; }
    .service-card { padding: 22px 18px; }

    /* Before/After */
    .ba-pair { grid-template-columns: 1fr; }
    .ba-arrow { padding: 6px 0; font-size: 1.4rem; transform: rotate(90deg); }
    .ba-job { padding: 18px 14px; }
    .ba-cta { padding: 24px 14px; }
    .ba-cta-btns { flex-direction: column; align-items: stretch; }
    .ba-cta-btns .btn-primary, .ba-cta-btns .btn-secondary { width: 100%; text-align: center; }

    /* Testimonials */
    .testimonial-grid { grid-template-columns: 1fr; }

    /* Areas */
    .areas-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 28px 18px; }

    /* Form */
    .form-pitch { display: none; }
    .form-mobile-heading { display: block; }
    .form-card { padding: 22px 14px; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; padding: 12px 10px; }
    select, textarea, input[type="text"], input[type="email"], input[type="tel"] { font-size: 16px !important; }
    .submit-btn { font-size: 1rem; padding: 16px; }

    /* FAQ */
    .faq-question { font-size: 0.95rem; padding: 15px 14px; }

    /* CTA */
    .cta-section h2 { font-size: 1.65rem; }
    .cta-box { padding: 24px 14px; }
    .phone-large { font-size: 1.7rem; }

    /* Sticky — full width bar at bottom */
    .sticky-call { bottom:0; right:0; left:0; width:100%; border-radius:0; }
    .sticky-call a { border-radius:0; justify-content:center; width:100%; padding:15px 16px; font-size:1rem; animation: none; }

    /* Footer bottom padding for sticky bar */
    footer { padding-bottom: 72px; }

    /* Content pages */
    .content-2col { grid-template-columns: 1fr; gap: 24px; }
    .clients-grid { grid-template-columns: 1fr; }
}
