/* ===========================================================
   Tidy Crew Cleaning — Stylesheet
   Brand: blue #2E9BD6 / orange #F5A623 on white
   =========================================================== */

:root {
    --blue:        #2E9BD6;
    --blue-dark:   #1F7CB0;
    --blue-darker: #15597f;
    --orange:      #F5A623;
    --orange-dark: #e0901a;
    --ink:         #1c2b36;
    --body:        #4a5a66;
    --muted:       #8295a1;
    --line:        #e6edf2;
    --bg-soft:     #f4f9fc;
    --white:       #ffffff;
    --radius:      14px;
    --shadow-sm:   0 4px 14px rgba(31, 124, 176, 0.08);
    --shadow-md:   0 14px 40px rgba(31, 124, 176, 0.14);
    --max:         1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: 'Open Sans', system-ui, sans-serif;
    color: var(--body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    line-height: 1.2;
    font-weight: 700;
}

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-dark); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
    text-align: center;
    line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(245,166,35,.35); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(46,155,214,.3); }
.btn--blue:hover { background: var(--blue-dark); color: #fff; }
.btn--white { background: #fff; color: var(--blue-dark); }
.btn--white:hover { background: #f0f7fc; color: var(--blue-darker); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--blue-darker);
    color: #d6ebf6;
    font-size: .85rem;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding-top: 9px; padding-bottom: 9px; }
.topbar__contacts { display: flex; gap: 22px; }
.topbar a { color: #d6ebf6; }
.topbar a:hover { color: #fff; }

/* ---------- Header / nav ---------- */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 18px rgba(20,89,127,.07);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.header__logo img { height: 56px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
    padding: 8px 14px;
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: .95rem;
    border-radius: 8px;
}
.nav a:hover, .nav a.active { color: var(--blue); }
.nav a.active { font-weight: 600; }
.nav__cta { color: #fff !important; margin-left: 8px; padding: 11px 24px; }
.nav__cta:hover { color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(115deg, rgba(21,89,127,.92), rgba(46,155,214,.82)),
                url('../images/hero.svg') center/cover no-repeat;
    padding: 110px 0 120px;
}
/* Background video sits under a brand-blue overlay so hero text stays readable */
.hero__video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
    pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
/* Skip the video for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero__video { display: none; }
}
.hero__inner { max-width: 660px; position: relative; }
/* Soft localized shadow behind the text block only — keeps the video visible */
.hero__inner::before {
    content: '';
    position: absolute;
    inset: -70px -90px;
    z-index: -1;
    border-radius: 40px;
    background: radial-gradient(ellipse at 38% 45%,
        rgba(10, 32, 48, .62) 0%,
        rgba(10, 32, 48, .38) 45%,
        rgba(10, 32, 48, .12) 68%,
        transparent 82%);
    pointer-events: none;
}
.hero .eyebrow {
    display: inline-block; background: var(--orange); color: #fff;
    padding: 6px 16px; border-radius: 50px; font-size: .8rem; font-weight: 600;
    letter-spacing: .5px; text-transform: uppercase; font-family: 'Poppins', sans-serif; margin-bottom: 20px;
}
.hero h1 {
    color: #fff; font-size: 3.3rem; font-weight: 800; margin-bottom: 18px;
    text-shadow: 0 2px 6px rgba(10, 35, 50, .75), 0 6px 26px rgba(10, 35, 50, .5);
}
.hero h1 span { color: var(--orange); }
.hero p {
    font-size: 1.18rem; color: #f4fafd; margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(10, 35, 50, .8), 0 3px 16px rgba(10, 35, 50, .55);
}
.hero .eyebrow { box-shadow: 0 3px 12px rgba(10, 35, 50, .35); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Section scaffolding ---------- */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head .eyebrow {
    color: var(--orange); font-weight: 700; font-family: 'Poppins', sans-serif;
    text-transform: uppercase; letter-spacing: 1.5px; font-size: .85rem; display: block; margin-bottom: 10px;
}
.section-head h2 { font-size: 2.3rem; margin-bottom: 14px; }
.section-head p { color: var(--body); }

/* ---------- Feature strip (under hero) ---------- */
.features { background: #fff; margin-top: -60px; position: relative; z-index: 5; }
.features__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
    padding: 36px 30px;
}
.feature { text-align: center; padding: 0 12px; }
.feature + .feature { border-left: 1px solid var(--line); }
.feature__icon { font-size: 2rem; margin-bottom: 10px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
    background: var(--bg-soft); font-size: 1.7rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { font-size: .94rem; margin: 0; }

/* ---------- About / split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media img, .split__media .media-box {
    border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%;
}
.media-box {
    aspect-ratio: 4/3; background: linear-gradient(135deg, var(--blue), var(--blue-darker));
    display: grid; place-items: center; color: #fff; text-align: center; padding: 30px;
}
.media-box .big { font-size: 3.2rem; font-weight: 800; font-family: 'Poppins', sans-serif; line-height: 1; }
.split__body .eyebrow {
    color: var(--orange); font-weight: 700; font-family: 'Poppins', sans-serif;
    text-transform: uppercase; letter-spacing: 1.5px; font-size: .85rem; display: block; margin-bottom: 10px;
}
.split__body h2 { font-size: 2.2rem; margin-bottom: 18px; }
.split__body p { margin-bottom: 16px; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; display: grid; gap: 14px; margin: 24px 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.checklist .tick {
    flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
    background: var(--blue); color: #fff; display: grid; place-items: center; font-size: .8rem; margin-top: 2px;
}
.checklist span.txt { font-weight: 400; color: var(--body); }
.checklist strong { display: block; color: var(--ink); }

/* ---------- Facilities ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pill {
    background: #fff; border: 1px solid var(--line); border-radius: 50px;
    padding: 14px 26px; font-weight: 600; font-family: 'Poppins', sans-serif; color: var(--ink);
    display: flex; align-items: center; gap: 10px; transition: .25s; font-size: .95rem;
}
.pill:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }
.pill .ico { font-size: 1.2rem; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; padding: 0 16px; position: relative; }
.step__num {
    width: 70px; height: 70px; border-radius: 50%; background: var(--orange); color: #fff;
    font-size: 1.6rem; font-weight: 800; font-family: 'Poppins', sans-serif;
    display: grid; place-items: center; margin: 0 auto 20px; box-shadow: 0 8px 22px rgba(245,166,35,.35);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .94rem; margin: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--blue); }
.stat p { margin: 0; font-weight: 600; color: var(--ink); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi {
    background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--line); display: flex; flex-direction: column;
}
.testi__stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.testi__text { font-style: italic; margin-bottom: 18px; flex: 1; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
    width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff;
    display: grid; place-items: center; font-weight: 700; font-family: 'Poppins', sans-serif;
}
.testi__who strong { display: block; color: var(--ink); }
.testi__who span { font-size: .85rem; color: var(--muted); }

/* ---------- Award / recognition band ---------- */
.award-band { padding-top: 0; }
.award-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 34px;
    align-items: center;
    background: linear-gradient(120deg, #fff 0%, var(--bg-soft) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 42px 46px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.award-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
    background: linear-gradient(180deg, var(--orange), var(--blue));
}
.award-card__ribbon {
    position: absolute; top: 20px; right: -42px;
    background: var(--orange); color: #fff;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .72rem;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 52px; transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(245,166,35,.35);
}
.award-card__badge {
    width: 130px; height: 130px; border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #fff6e5, #fbe2b3);
    display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(245,166,35,.3), inset 0 0 0 6px rgba(255,255,255,.7);
    border: 3px solid var(--orange);
}
.award-card__trophy { font-size: 3.4rem; line-height: 1; }
.award-card__body .eyebrow {
    color: var(--orange); font-weight: 700; font-family: 'Poppins', sans-serif;
    text-transform: uppercase; letter-spacing: 1.2px; font-size: .8rem; display: block; margin-bottom: 8px;
}
.award-card__body h2 { font-size: 1.9rem; margin-bottom: 12px; }
.award-card__body p { margin-bottom: 16px; }
.award-card__stars {
    color: var(--orange); font-weight: 700; letter-spacing: 2px; font-size: 1rem;
}
.award-card__stars span {
    color: var(--muted); font-weight: 500; letter-spacing: normal; font-size: .9rem; margin-left: 6px;
}

@media (max-width: 760px) {
    .award-card { grid-template-columns: 1fr; text-align: center; padding: 40px 24px 32px; gap: 22px; }
    .award-card__badge { margin: 0 auto; width: 110px; height: 110px; }
    .award-card__trophy { font-size: 2.9rem; }
    .award-card__body h2 { font-size: 1.5rem; }
    .award-card__ribbon { top: 16px; right: -46px; font-size: .68rem; }
    .award-card__stars { display: flex; flex-direction: column; gap: 4px; align-items: center; }
    .award-card__stars span { margin-left: 0; }
}

/* ---------- Page banner (sub pages) ---------- */
.page-banner {
    background: linear-gradient(115deg, rgba(21,89,127,.94), rgba(46,155,214,.85)),
                url('../images/hero.svg') center/cover no-repeat;
    color: #fff; text-align: center; padding: 70px 0;
}
.page-banner h1 { color: #fff; font-size: 2.8rem; margin-bottom: 10px; }
.page-banner .crumbs { color: #d6ebf6; font-size: .95rem; }
.page-banner .crumbs a { color: var(--orange); }

/* ---------- Forms ---------- */
.form-card {
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
    padding: 40px; border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: .9rem; color: var(--ink); font-family: 'Poppins', sans-serif; }
.form-group label .req { color: var(--orange); }
.form-control {
    padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: inherit; font-size: .95rem; color: var(--ink); background: #fbfdff; transition: border .2s, box-shadow .2s;
}
.form-control:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,155,214,.14); background: #fff; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; }

/* ---------- Alerts ---------- */
.alert { padding: 15px 20px; border-radius: 10px; margin-bottom: 22px; font-weight: 500; border: 1px solid transparent; }
.alert--success { background: #e9f8ef; color: #1c6b3f; border-color: #bce8cd; }
.alert--error { background: #fdecec; color: #9b2c2c; border-color: #f5c6c6; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; gap: 18px; }
.contact-card {
    display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 22px 24px;
}
.contact-card .ico {
    width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft);
    display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0;
}
.contact-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-card p, .contact-card a { margin: 0; color: var(--body); }

/* ---------- Jobs ---------- */
.job-list { display: grid; gap: 20px; }
.job-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: .25s;
}
.job-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.job-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.job-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.job-card .tag { background: var(--bg-soft); color: var(--blue-dark); font-size: .78rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; }
.perks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.perk { text-align: center; padding: 26px 18px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.perk .ico { font-size: 2rem; margin-bottom: 10px; }
.perk h4 { font-size: 1rem; margin-bottom: 6px; }
.perk p { font-size: .88rem; margin: 0; color: var(--muted); }

/* ---------- Before / after slider ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ba-item { }
.ba-item > h3 { font-size: 1.15rem; margin-bottom: 12px; text-align: center; }
.ba-slider {
    position: relative; width: 100%; aspect-ratio: 3/4; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-md); user-select: none; touch-action: none;
    cursor: ew-resize; background: #eef3f7;
}
.ba-slider img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none;
}
.ba-slider__after { z-index: 1; }
.ba-slider__before-wrap {
    position: absolute; inset: 0; z-index: 2; width: 50%; overflow: hidden;
    border-right: 3px solid #fff;
}
.ba-slider__before-wrap img { width: auto; height: 100%; max-width: none; }
.ba-slider__label {
    position: absolute; bottom: 14px; z-index: 3; background: rgba(28,43,54,.82); color: #fff;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .72rem; letter-spacing: .5px;
    text-transform: uppercase; padding: 5px 12px; border-radius: 50px; pointer-events: none;
}
.ba-slider__label--before { left: 14px; }
.ba-slider__label--after { right: 14px; background: rgba(46,155,214,.9); }
.ba-slider__handle {
    position: absolute; top: 0; bottom: 0; z-index: 4; left: 50%; width: 44px;
    transform: translateX(-50%); display: grid; place-items: center; pointer-events: none;
}
.ba-slider__handle::before {
    content: ''; position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-slider__knob {
    position: relative; width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--blue);
    display: grid; place-items: center; font-size: 1rem; font-weight: 700; box-shadow: 0 4px 14px rgba(0,0,0,.28);
}
.ba-hint { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ---------- Work gallery grid + lightbox ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure {
    margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3; cursor: zoom-in; position: relative; background: #eef3f7;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figure::after {
    content: '🔍'; position: absolute; inset: 0; display: grid; place-items: center;
    background: rgba(21,89,127,.45); color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity .3s;
}
.gallery-grid figure:hover::after { opacity: 1; }

.lightbox {
    position: fixed; inset: 0; z-index: 1000; background: rgba(15,30,40,.92);
    display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav {
    position: absolute; background: rgba(255,255,255,.14); color: #fff; border: none; cursor: pointer;
    width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; display: grid; place-items: center; transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 22px; right: 22px; }
.lightbox__nav--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 22px; top: 50%; transform: translateY(-50%); }

@media (max-width: 980px) {
    .ba-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .ba-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .lightbox__nav { width: 44px; height: 44px; }
    .lightbox__nav--prev { left: 10px; }
    .lightbox__nav--next { right: 10px; }
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange), var(--orange-dark)); color: #fff; padding: 56px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: 1.9rem; margin-bottom: 6px; }
.cta-band p { margin: 0; font-size: 1.1rem; color: #fff5e6; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #aebecb; padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: #aebecb; }
.footer a:hover { color: var(--orange); }
.footer__logo { height: 64px; margin-bottom: 16px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer__about p { font-size: .92rem; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
    display: grid; place-items: center; color: #fff; font-weight: 700;
}
.footer__social a:hover { background: var(--orange); }
.footer__contact li { display: flex; gap: 10px; align-items: center; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding: 22px 0; font-size: .86rem; text-align: center; }
.footer__bottom p { margin: 0; }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; border-radius: 50%;
    background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 1.2rem;
    box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--blue-dark); color: #fff; transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.lead { font-size: 1.15rem; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
    .feature:nth-child(3) { border-left: none; }
    .feature + .feature { border-left: none; }
    .services-grid, .testi-grid, .steps { grid-template-columns: 1fr 1fr; }
    .perks-grid { grid-template-columns: repeat(2,1fr); }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split--rev .split__media { order: -1; }
    .stats { grid-template-columns: repeat(2,1fr); gap: 30px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 760px) {
    .topbar { display: none; }
    .nav-toggle { display: flex; }
    .nav {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 270px; background: #fff;
        flex-direction: column; align-items: stretch; gap: 4px; padding: 90px 24px 30px;
        box-shadow: -10px 0 40px rgba(0,0,0,.15); transition: right .3s; z-index: 99;
    }
    .nav.open { right: 0; }
    .nav a { padding: 12px 14px; border-radius: 8px; }
    .nav a:hover { background: var(--bg-soft); }
    .nav__cta { text-align: center; margin: 8px 0 0; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .body-lock { overflow: hidden; }

    .section { padding: 60px 0; }
    .hero { padding: 70px 0 90px; }
    .hero h1 { font-size: 2.1rem; }
    .section-head h2 { font-size: 1.8rem; }
    .services-grid, .testi-grid, .steps, .perks-grid, .form-grid, .stats { grid-template-columns: 1fr; }
    .features { margin-top: -40px; }
    .features__grid { grid-template-columns: 1fr; gap: 24px; }
    .feature:nth-child(3) { border-top: 1px solid var(--line); padding-top: 24px; }
    .feature + .feature { border-top: 1px solid var(--line); padding-top: 24px; }
    .footer__grid { grid-template-columns: 1fr; }
    .job-card { flex-direction: column; align-items: flex-start; }
    .cta-band__inner { text-align: center; justify-content: center; }
    .form-card { padding: 26px 20px; }
    .page-banner h1 { font-size: 2.1rem; }
}