/* Swistal GmbH – Modern professional design */

:root {
    --navy: #0c1f3d;
    --navy-dark: #081628;
    --navy-light: #16325f;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;
    --cyan: #0891b2;
    --cyan-dark: #0e7490;
    --accent: var(--blue);
    --accent-dark: var(--blue-dark);
    --pink: #2563eb;
    --pink-dark: #1d4ed8;
    --green: #10b981;
    --green-dark: #059669;
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --container: 1200px;
    --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { color: var(--blue-dark); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.skip-link {
    position: absolute; top: -100%; left: 1rem; z-index: 9999;
    padding: 0.75rem 1.25rem; background: var(--blue); color: #fff; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; font-family: inherit; font-size: 0.9375rem; font-weight: 700;
    line-height: 1; border-radius: 10px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s; text-decoration: none; white-space: nowrap;
}
.btn-accent { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-accent:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }
.btn-pill { border-radius: 100px; }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; }
.btn-white:hover { background: var(--blue-light); color: var(--blue-dark); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: #fff; color: var(--blue); }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-secondary { background: var(--blue-light); color: var(--blue); border-color: var(--border); }
.btn-secondary:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 200; background: #fff; box-shadow: 0 2px 16px rgba(5,43,92,0.06); }

.header-top {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    padding: 0.45rem 0;
}
.header-top-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header-location { display: flex; align-items: center; gap: 0.375rem; }
.header-top-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.header-top-links a { color: rgba(255,255,255,0.9); }
.header-top-links a:hover { color: #fff; }

.lang-switcher { display: inline-flex; gap: 0.25rem; margin-left: 0.25rem; }
.lang-btn {
    padding: 0.2rem 0.5rem; border-radius: 6px; font-size: 0.6875rem; font-weight: 800;
    color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.35);
    letter-spacing: 0.04em; transition: all 0.2s;
}
.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
.lang-btn.active { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.5); }

.header-main { background: #fff; }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 1.5rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo:hover { opacity: 0.92; }
.logo-img {
    display: block; height: 54px; width: auto; max-width: 210px;
    object-fit: contain;
}
.logo-img-footer { height: 46px; max-width: 180px; }

.main-nav { display: flex; align-items: center; gap: 0.75rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
    display: block; padding: 0.5rem 0.875rem; color: var(--navy);
    font-weight: 700; font-size: 0.9375rem; border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after,
.nav-links a:hover::after {
    content: ''; display: block; height: 3px; border-radius: 3px;
    background: var(--blue); margin-top: 4px;
}
.header-cta { margin-left: 0.5rem; }

.service-tabs-wrap {
    background: var(--navy);
    overflow: hidden;
}
.service-tabs {
    display: flex; gap: 0.5rem; padding: 0.625rem 0;
    overflow-x: auto; scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }
.service-tab {
    flex-shrink: 0; padding: 0.5rem 1rem; background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9); border-radius: 100px; font-size: 0.8125rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s;
}
.service-tab:hover { background: rgba(255,255,255,0.2); color: #fff; }
.service-tab-more { background: var(--blue); border-color: var(--blue); color: #fff; }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
    display: block; width: 26px; height: 3px; background: var(--navy);
    border-radius: 2px; transition: 0.2s;
}

/* ── Hero (modern) ── */
.hero-modern {
    position: relative; min-height: 620px;
    display: flex; align-items: center; padding: 4.5rem 0 5rem; overflow: hidden;
}
.hero-modern-bg { position: absolute; inset: 0; }
.hero-modern-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-modern-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(8,22,40,0.94) 0%, rgba(12,31,61,0.82) 45%, rgba(12,31,61,0.55) 100%);
}
.hero-modern-inner {
    position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr;
    align-items: center; gap: 3rem;
}
.hero-modern-content { color: #fff; }
.hero-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.12em; color: #fff;
    background: rgba(37,99,235,0.9); padding: 0.45rem 1rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.hero-modern-content h1 {
    font-size: clamp(2.125rem, 5vw, 3.5rem); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.hero-lead {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem); color: rgba(255,255,255,0.88);
    max-width: 560px; margin-bottom: 1.75rem; line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin-bottom: 2rem; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero-trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-trust-item strong { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-trust-item span { font-size: 0.875rem; color: rgba(255,255,255,0.78); }
.hero-trust-item .review-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }

.hero-quote-card {
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    border-radius: var(--radius-lg); padding: 2rem;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.8);
}
.hero-quote-label {
    font-weight: 800; font-size: 1.25rem; margin-bottom: 1.25rem; color: var(--navy);
}

/* Trust strip */
.trust-strip {
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 1.25rem 0; box-shadow: 0 4px 20px rgba(15,23,42,0.04);
}
.trust-strip-inner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.trust-strip-item {
    display: flex; align-items: flex-start; gap: 0.875rem;
}
.trust-strip-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
    background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.125rem; font-weight: 800;
}
.trust-strip-item strong { display: block; font-size: 0.9375rem; color: var(--text); margin-bottom: 0.15rem; }
.trust-strip-item span { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.4; }

/* Stats banner */
.stats-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 2.5rem 0; color: #fff;
}
.stats-banner-inner {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.stats-banner-item strong {
    display: block; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1; margin-bottom: 0.35rem;
}
.stats-banner-item span { font-size: 0.9375rem; color: rgba(255,255,255,0.8); font-weight: 600; }

/* Intro section */
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.intro-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.intro-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.intro-media-badge {
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    background: #fff; padding: 1rem 1.25rem; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center;
}
.intro-media-badge strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
.intro-media-badge span { font-size: 0.8125rem; color: var(--text-muted); font-weight: 600; }
.intro-content h2 {
    font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800;
    color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.intro-content > p { color: var(--text-muted); font-size: 1.0625rem; margin-bottom: 1.5rem; line-height: 1.7; }
.intro-list { list-style: none; margin-bottom: 2rem; display: grid; gap: 0.75rem; }
.intro-list li {
    position: relative; padding-left: 1.75rem; font-weight: 600; color: var(--text);
}
.intro-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 800;
}

/* Process grid */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.75rem; position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.process-step {
    display: inline-block; font-size: 0.8125rem; font-weight: 800; color: var(--blue);
    background: var(--blue-light); padding: 0.35rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.process-card h3 { font-size: 1.0625rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.process-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

/* Services showcase */
.services-showcase {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.service-showcase-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.service-showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-showcase-photo { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--blue-light); }
.service-showcase-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.service-showcase-card:hover .service-showcase-photo img { transform: scale(1.05); }
.service-showcase-body { padding: 1.25rem 1.375rem 1.5rem; }
.service-showcase-icon {
    width: 40px; height: 40px; padding: 8px; margin-bottom: 0.875rem;
    background: var(--blue-light); color: var(--blue); border-radius: 10px;
}
.service-showcase-icon svg { width: 100%; height: 100%; }
.service-showcase-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.375rem; }
.service-showcase-body h3 a { color: var(--navy); }
.service-showcase-body h3 a:hover { color: var(--blue); }
.service-showcase-body p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.875rem; line-height: 1.5; }

/* Quality section */
.quality-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    padding: 4rem 0; color: #fff;
}
.quality-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.quality-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; }
.section-eyebrow-light { color: rgba(255,255,255,0.9); }
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quality-card {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg);
    padding: 1.75rem; text-align: center;
}
.quality-card h3 { font-size: 1.125rem; font-weight: 800; margin-bottom: 0.5rem; }
.quality-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.88); line-height: 1.6; }

/* Tips grid */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tip-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.75rem; transition: box-shadow 0.2s, border-color 0.2s;
}
.tip-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.tip-number {
    display: inline-block; font-size: 0.8125rem; font-weight: 800; color: var(--blue);
    background: var(--blue-light); padding: 0.3rem 0.65rem; border-radius: 8px; margin-bottom: 1rem;
}
.tip-card h3 { font-size: 1.0625rem; font-weight: 800; color: var(--navy); margin-bottom: 0.625rem; line-height: 1.35; }
.tip-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

/* Coverage section */
.coverage-section {
    background: var(--navy); color: #fff; padding: 4rem 0;
}
.coverage-inner {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start;
}
.coverage-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem;
}
.coverage-content p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-size: 1.0625rem; }
.coverage-list {
    list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem;
}
.coverage-list li {
    padding: 0.75rem 1rem; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
    font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,0.92);
    transition: background 0.2s;
}
.coverage-list li:hover { background: rgba(255,255,255,0.14); }

/* ── Hero (legacy Molly Maid style) ── */
.hero-cw {
    position: relative; min-height: 560px;
    display: flex; align-items: center; padding: 4rem 0 4.5rem; overflow: hidden;
}
.hero-cw-bg {
    position: absolute; inset: 0; overflow: hidden;
}
.hero-cw-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(5,28,62,0.92) 0%, rgba(5,28,62,0.78) 42%, rgba(5,28,62,0.35) 75%, rgba(5,28,62,0.2) 100%);
}
.hero-cw-bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero-cw-inner {
    position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr;
    align-items: center; gap: 3rem;
}
.hero-cw-text { color: #fff; }
.hero-eyebrow {
    display: inline-block; font-size: 0.8125rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
    background: var(--pink); padding: 0.4rem 0.9rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.hero-cw-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800;
    line-height: 1.1; color: #fff; letter-spacing: -0.02em;
}
.hero-cw-sub {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem); color: rgba(255,255,255,0.9);
    margin-top: 1rem; max-width: 540px;
}
.hero-stats-inline {
    display: flex; gap: 2rem; margin-top: 1.75rem; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.75rem; font-weight: 800; line-height: 1; color: #fff; }
.hero-stat span { font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }
.hero-stat .review-stars { color: #ffc73b; font-size: 1.1rem; letter-spacing: 2px; }

.hero-booking-card {
    background: #fff; border-radius: var(--radius-lg); padding: 2rem;
    box-shadow: var(--shadow-lg); width: 100%; max-width: 420px; justify-self: end;
    border-top: 5px solid var(--pink);
}
.booking-card-label {
    font-weight: 800; font-size: 1.25rem; margin-bottom: 1.25rem; color: var(--navy);
}
.booking-field { margin-bottom: 1rem; text-align: left; }
.booking-field label {
    display: block; font-size: 0.8125rem; font-weight: 600;
    color: var(--text-muted); margin-bottom: 0.375rem;
}
.booking-field select {
    width: 100%; padding: 0.875rem 1rem; font-family: inherit; font-size: 1rem;
    border: 2px solid var(--border); border-radius: 10px; background: #fff;
    color: var(--text); cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23616161' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
}
.booking-field select:focus { outline: none; border-color: var(--blue); }
.booking-card-note { margin-top: 1rem; font-size: 0.875rem; color: var(--text-muted); }
.booking-card-note a { font-weight: 700; }

/* ── Reviews slider ── */
.reviews-bar { background: var(--bg-alt); padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.reviews-slider { position: relative; overflow: hidden; }
.reviews-track {
    display: flex; gap: 1rem; transition: transform 0.4s ease;
    will-change: transform;
}
.review-card {
    flex: 0 0 calc(33.333% - 0.667rem); min-width: 280px;
    background: #fff; border-radius: var(--radius); padding: 1.25rem 1.5rem;
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.review-stars { color: #ffc73b; font-size: 0.875rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
.review-card p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 0.75rem; line-height: 1.5; }
.review-card strong { font-size: 0.875rem; color: var(--text); }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%; background: #fff;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    font-size: 1.25rem; line-height: 1; cursor: pointer; color: var(--blue);
    display: flex; align-items: center; justify-content: center; z-index: 2;
    transition: background 0.2s;
}
.slider-btn:hover { background: var(--blue-light); }
.slider-prev { left: -0.5rem; }
.slider-next { right: -0.5rem; }

/* ── Trust features ── */
.trust-section { padding: 2.5rem 0; background: #fff; }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.trust-card {
    text-align: center; padding: 1.5rem 1rem;
    border-radius: var(--radius); border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}
.trust-card:hover { box-shadow: var(--shadow); }
.trust-icon {
    width: 52px; height: 52px; margin: 0 auto 1rem;
    background: var(--blue-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.375rem; font-weight: 800; color: var(--blue);
}
.trust-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.375rem; }
.trust-card p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ── Sections ── */
.section { padding: 4.5rem 0; }
.section-light { background: var(--bg-alt); }
.section-navy { background: var(--navy); color: #fff; }
.section-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800;
    text-align: center; margin-bottom: 2rem; letter-spacing: -0.02em; color: var(--navy);
}
.section-navy .section-title { color: #fff; }
.section-eyebrow {
    display: block; text-align: center; font-size: 0.8125rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 0.6rem;
}
.section-cta { text-align: center; margin-top: 2.5rem; }
.section-label {
    display: block; text-align: center; font-size: 0.8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--pink); margin-bottom: 0.5rem;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-header h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 0.75rem; color: var(--navy); }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; }
.section-navy .section-header h2 { color: #fff; }
.section-navy .section-header p { color: rgba(255,255,255,0.85); }

/* Service pills */
.service-pills {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    justify-content: center; margin-bottom: 2rem;
}
.service-pill {
    padding: 0.5rem 1.125rem; background: var(--blue-light); color: var(--blue);
    border-radius: 100px; font-size: 0.875rem; font-weight: 600;
    border: 1px solid transparent; transition: all 0.2s;
}
.service-pill:hover { background: var(--blue); color: #fff; }

/* Service cards */
.services-grid-cw {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.services-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.service-card-cw, .service-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}
.service-card-cw.has-image .service-card-body { padding: 1.5rem 1.75rem 1.75rem; }
.service-card-photo {
    display: block; aspect-ratio: 16 / 10; overflow: hidden;
    background: var(--blue-light);
}
.service-card-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.35s ease;
}
.service-card-cw:hover .service-card-photo img { transform: scale(1.04); }
.service-card-body { padding: 1.75rem; }
.service-card-cw:hover, .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.service-card-icon, .service-icon {
    width: 48px; height: 48px; padding: 10px; margin-bottom: 1rem;
    background: var(--blue-light); color: var(--blue); border-radius: 12px;
}
.service-card-icon svg, .service-icon svg { width: 100%; height: 100%; }

.service-card-cw h3, .service-card h2, .service-card h3 {
    font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem;
}
.service-card-cw h3 a, .service-card h2 a, .service-card h3 a { color: var(--text); }
.service-card-cw h3 a:hover, .service-card h2 a:hover, .service-card h3 a:hover { color: var(--blue); }
.service-card-cw p, .service-card p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1rem; }

.link-arrow { font-size: 0.875rem; font-weight: 700; color: var(--blue); }
.link-arrow::after { content: ' →'; }

/* Photo gallery */
.section-gallery { background: #fff; }
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}
.photo-gallery-item {
    position: relative; margin: 0; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow); background: var(--bg-alt);
}
.photo-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; min-height: 220px;
    transition: transform 0.35s ease;
}
.photo-gallery-item:hover img { transform: scale(1.03); }
.photo-gallery-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 2.5rem 1rem 0.875rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    color: #fff; font-size: 0.875rem; font-weight: 700;
}
.photo-gallery-featured { grid-column: span 6; grid-row: span 2; }
.photo-gallery-featured img { min-height: 460px; }
.photo-gallery-item:not(.photo-gallery-featured) { grid-column: span 3; }

.about-photo-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.about-photo-grid img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: var(--radius-lg); border: 1px solid var(--border);
    box-shadow: var(--shadow); min-height: 200px;
}
.about-photo-grid .about-photo-wide { grid-column: span 2; min-height: 280px; }

.service-hero-banner {
    margin-top: 1rem; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: var(--shadow); max-width: 720px;
}
.service-hero-banner img {
    width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block;
}

/* Clean tabs */
.clean-tabs { max-width: 720px; margin: 0 auto; }
.clean-tabs-nav {
    display: flex; gap: 0.25rem; margin-bottom: 1.5rem;
    background: #fff; border-radius: var(--radius); padding: 0.375rem;
    border: 1px solid var(--border); overflow-x: auto;
}
.clean-tab-btn {
    flex: 1; min-width: 80px; padding: 0.75rem 1rem; background: none; border: none;
    font-family: inherit; font-size: 0.9375rem; font-weight: 600; color: var(--text-muted);
    border-radius: 8px; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.clean-tab-btn.active { background: var(--navy); color: #fff; }
.clean-tab-panel { display: none; }
.clean-tab-panel.active { display: block; }
.clean-checklist { list-style: none; }
.clean-checklist li {
    position: relative; padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid var(--border); font-size: 0.9375rem; color: var(--text-muted);
}
.clean-checklist li:last-child { border-bottom: none; }
.clean-checklist li::before {
    content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800;
}

/* Stats */
.stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-item {
    text-align: center; padding: 2rem 1rem;
    background: var(--blue-light); border-radius: var(--radius-lg);
}
.stat-item strong {
    display: block; font-size: 2.25rem; font-weight: 800;
    color: var(--blue); line-height: 1; margin-bottom: 0.375rem;
}
.stat-item span { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.25rem 0; background: none; border: none;
    font-family: inherit; font-size: 1rem; font-weight: 700; color: var(--text);
    text-align: left; cursor: pointer;
}
.faq-icon { font-size: 1.5rem; color: var(--pink); font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.25rem; }
.faq-answer p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 4rem 0; color: #fff; text-align: center;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.5rem; }
.cta-section p { opacity: 0.85; margin-bottom: 1.75rem; font-size: 1.0625rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 4rem 0; color: #fff; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.375rem, 3vw, 1.75rem); font-weight: 800; margin-bottom: 0.375rem; }
.cta-banner p { opacity: 0.85; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* SEO text */
.seo-text h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 1rem; }
.seo-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.7; }

/* ── Page hero (inner pages) ── */
.page-hero {
    background: var(--blue-light); padding: 2.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.page-hero-sm { padding: 1.75rem 0 1.25rem; }
.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800;
    margin-top: 0.75rem; line-height: 1.2; letter-spacing: -0.02em;
}
.page-lead { font-size: 1.0625rem; color: var(--text-muted); margin-top: 0.75rem; max-width: 640px; }
.service-hero-icon {
    width: 52px; height: 52px; padding: 11px; margin-top: 0.75rem;
    background: #fff; color: var(--blue); border-radius: 14px;
    border: 1px solid var(--border);
}
.service-hero-icon svg { width: 100%; height: 100%; }

/* Breadcrumbs */
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.25rem; list-style: none; font-size: 0.875rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs li:last-child span { color: var(--text); font-weight: 600; }

/* Split layout, check list, testimonials (inner pages) */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.split-content h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.check-list { list-style: none; margin: 1.25rem 0 1.75rem; }
.check-list li {
    position: relative; padding-left: 1.75rem; margin-bottom: 0.625rem; color: var(--text-muted);
}
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.steps-list { margin: 1rem 0 2rem 1.25rem; color: var(--text-muted); }
.steps-list li { margin-bottom: 0.625rem; }

.testimonials { display: flex; flex-direction: column; gap: 1rem; }
.testimonial {
    background: #fff; padding: 1.25rem 1.5rem; border-radius: var(--radius);
    border-left: 4px solid var(--green); box-shadow: var(--shadow);
}
.testimonial p { font-style: italic; font-size: 0.9375rem; margin-bottom: 0.5rem; }
.testimonial footer { font-size: 0.8125rem; color: var(--text-muted); font-weight: 600; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.value-card {
    background: #fff; padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border);
}
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 0.375rem; }
.value-card p { font-size: 0.9375rem; color: var(--text-muted); }

.section-alt { background: var(--bg-alt); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
.contact-info h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 1.25rem; }
.contact-item { margin-bottom: 1.5rem; }
.contact-item h3 {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--blue); margin-bottom: 0.25rem;
}
.contact-link { font-size: 1.0625rem; font-weight: 700; }
address { font-style: normal; color: var(--text-muted); }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list-item {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: 0.375rem 0; font-size: 0.9375rem; color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.hours-list-item:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--text); min-width: 6.5rem; }
.hours-time { text-align: right; }
.hours-list-item.is-closed .hours-time { font-style: italic; }
.contact-map { margin-top: 1.25rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 220px; border: 0; }
.contact-map-link { margin-top: 0.625rem; font-size: 0.875rem; font-weight: 600; }
.contact-map-link a { color: var(--blue); }

.contact-form-wrap {
    background: #fff; padding: 2rem; border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 0.375rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.9375rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; font-family: inherit; font-size: 0.9375rem;
    border: 2px solid var(--border); border-radius: 10px; background: #fff; color: var(--text);
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--blue);
}
.form-checkbox { display: flex; align-items: flex-start; gap: 0.625rem; }
.form-checkbox input { width: auto; margin-top: 0.25rem; }
.form-checkbox label { font-weight: 400; font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.form-note { margin-top: 0.875rem; font-size: 0.8125rem; color: var(--text-muted); text-align: center; }
.form-alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.9375rem; font-weight: 600; line-height: 1.5; }
.form-alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Legal */
.legal-content h2 { font-size: 1.25rem; font-weight: 800; margin: 2rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.0625rem; font-weight: 700; margin: 1.25rem 0 0.5rem; }
.legal-content p, .legal-content ul { color: var(--text-muted); margin-bottom: 0.75rem; }
.legal-content ul { padding-left: 1.25rem; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 3.5rem 0 0; border-top: 4px solid var(--blue); }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem;
    padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo-img-footer { filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 0.875rem; font-size: 0.9375rem; line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a { font-size: 1.25rem; opacity: 0.8; }
.footer-social a:hover { opacity: 1; }
.footer-col h3 {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: #fff; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4375rem; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }
.footer-col a:hover { color: #fff; }
.site-footer address { font-style: normal; font-size: 0.9375rem; }
.site-footer address p { margin-bottom: 0.4375rem; }
.site-footer address a { color: rgba(255,255,255,0.75); }
.site-footer address a:hover { color: #fff; }
.footer-hours { font-size: 0.875rem; opacity: 0.7; }
.footer-bottom { padding: 1.25rem 0; text-align: center; font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* Floating chat CTA */
.floating-cta {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 150;
    width: 56px; height: 56px; border-radius: 50%; background: var(--blue);
    color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,99,235,0.45); transition: transform 0.2s, background 0.2s;
}
.floating-cta:hover { background: var(--blue-dark); color: #fff; transform: scale(1.08); }

/* Stat cards (legacy hero) */
.stat-card {
    background: #fff; padding: 1.5rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow); text-align: center; border: 1px solid var(--border);
}
.hero, .hero-bg, .hero-inner, .hero-content, .hero-badge, .hero-lead,
.hero-features, .hero-actions, .hero-stats { /* legacy – kept for compat */ }

/* ── Promise band (Molly Maid style) ── */
.promise-band { background: var(--navy); color: #fff; padding: 4.5rem 0; }
.promise-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.promise-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.promise-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.promise-content .section-eyebrow { text-align: left; }
.promise-content h2 {
    font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800;
    color: #fff; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.promise-content > p { color: rgba(255,255,255,0.85); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.promise-points { list-style: none; display: grid; gap: 0.875rem; margin-bottom: 2rem; }
.promise-points li {
    position: relative; padding-left: 2.25rem; color: #fff; font-weight: 600; font-size: 1rem;
}
.promise-points li::before {
    content: '✓'; position: absolute; left: 0; top: -2px;
    width: 26px; height: 26px; border-radius: 50%; background: var(--pink);
    color: #fff; font-size: 0.8125rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

/* ── Meet / How we help cards ── */
.meet-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.meet-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow);
    display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s;
}
.meet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.meet-card-photo { aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-light); }
.meet-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.meet-card:hover .meet-card-photo img { transform: scale(1.05); }
.meet-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.meet-card-body h3 { font-size: 1.125rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.meet-card-body p { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 1.25rem; flex: 1; }
.meet-card-link { font-size: 0.875rem; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 0.04em; }
.meet-card-link::after { content: ' →'; }
.meet-card-link:hover { color: var(--pink-dark); }

/* ── Find us / service area band ── */
.find-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff; padding: 3.5rem 0;
}
.find-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2.5rem; flex-wrap: wrap;
}
.find-text { max-width: 620px; }
.find-text .section-eyebrow { text-align: left; color: #fff; }
.find-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.find-text p { color: rgba(255,255,255,0.9); font-size: 1.0625rem; }
.find-served { margin-top: 1rem; font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.find-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.find-actions .find-phone { font-size: 1.5rem; font-weight: 800; color: #fff; }
.find-actions .find-phone:hover { color: #fff; opacity: 0.85; }

/* ── Why choose us ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.why-card { text-align: center; }
.why-icon {
    width: 72px; height: 72px; margin: 0 auto 1.25rem; border-radius: 50%;
    background: var(--blue-light); color: var(--blue);
    display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 34px; height: 34px; }
.why-card h3 { font-size: 1.125rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

/* ── Services we provide (big list) ── */
.provide-lead { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; color: var(--text-muted); font-size: 1.0625rem; }
.provide-list {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
    max-width: 980px; margin: 0 auto;
}
.provide-item {
    display: flex; align-items: center; gap: 0.625rem;
    padding: 0.875rem 1.125rem; background: #fff; border: 1px solid var(--border);
    border-radius: 100px; font-weight: 700; font-size: 0.9375rem; color: var(--navy);
    transition: all 0.2s;
}
.provide-item::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink); flex-shrink: 0;
}
.provide-item:hover { border-color: var(--pink); color: var(--pink); box-shadow: var(--shadow); }

/* ── Join our team band ── */
.join-band {
    background: var(--navy); color: #fff; border-radius: var(--radius-lg);
    padding: 3rem; text-align: center; position: relative; overflow: hidden;
}
.join-band .section-eyebrow { color: #ffc73b; }
.join-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.join-band p { color: rgba(255,255,255,0.88); font-size: 1.0625rem; max-width: 640px; margin: 0 auto 1.75rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .review-card { flex: 0 0 calc(50% - 0.5rem); }
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-cw-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-booking-card { justify-self: stretch; max-width: 100%; }
    .hero-modern-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-quote-card { max-width: 100%; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .stats-banner-inner { grid-template-columns: repeat(2, 1fr); }
    .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .services-showcase { grid-template-columns: repeat(2, 1fr); }
    .quality-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .coverage-inner { grid-template-columns: 1fr; }
    .coverage-list { grid-template-columns: repeat(2, 1fr); }
    .promise-inner { grid-template-columns: 1fr; gap: 2rem; }
    .meet-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .provide-list { grid-template-columns: repeat(3, 1fr); }
    .photo-gallery-featured,
    .photo-gallery-item:not(.photo-gallery-featured) { grid-column: span 6; }
    .photo-gallery-featured img { min-height: 320px; }
    .about-photo-grid { grid-template-columns: 1fr; }
    .about-photo-grid .about-photo-wide { grid-column: span 1; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        background: #fff; flex-direction: column; align-items: stretch;
        padding: 1rem 1.25rem 1.5rem;
        transform: translateY(-120%); opacity: 0; visibility: hidden;
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
        box-shadow: var(--shadow-lg); z-index: 199; border-top: 1px solid var(--border);
    }
    .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links { flex-direction: column; align-items: stretch; }
    .nav-links a { padding: 0.875rem 1rem; }
    .nav-links a.active::after, .nav-links a:hover::after { display: none; }
    .header-cta { margin: 0.75rem 0 0; width: 100%; }

    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-toggle span { transition: 0.2s; }

    .service-tabs-wrap { position: relative; }
    .hero-cw { min-height: auto; padding: 2rem 0 2.5rem; }
    .hero-modern { min-height: auto; padding: 2.5rem 0 3rem; }
    .hero-trust-row { gap: 1.25rem; }
    .trust-strip-inner { grid-template-columns: 1fr; }
    .stats-banner-inner { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .services-showcase { grid-template-columns: 1fr; }
    .coverage-list { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .review-card { flex: 0 0 85%; min-width: 260px; }
    .slider-prev { left: 0; }
    .slider-next { right: 0; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .clean-tabs-nav { flex-wrap: nowrap; }
    .photo-gallery { grid-template-columns: 1fr; }
    .photo-gallery-featured,
    .photo-gallery-item:not(.photo-gallery-featured) { grid-column: span 1; }
    .photo-gallery-featured img,
    .photo-gallery-item img { min-height: 220px; }
    .meet-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .provide-list { grid-template-columns: repeat(2, 1fr); }
    .find-inner { flex-direction: column; align-items: flex-start; }
    .join-band { padding: 2rem 1.5rem; }
    .hero-stats-inline { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; }
    .provide-list { grid-template-columns: 1fr; }
}
