/* ===================================================================
   Purple Choice Cleaning & Care Services
   Brand: Royal Purple #5B2C83 | Lavender | White | Charcoal
   Aesthetic: Modern, Minimal, Premium
   =================================================================== */

:root {
  /* Brand palette */
  --purple: #5B2C83;
  --purple-dark: #431E63;
  --purple-deep: #2E1245;
  --purple-light: #7B47A3;
  --lavender: #E8D9F2;
  --lavender-soft: #F4ECF9;
  --lavender-mid: #D4B8E8;

  --white: #FFFFFF;
  --off-white: #FAF8FC;
  --charcoal: #2B2B2B;
  --grey: #5A5560;
  --grey-light: #8A8590;
  --line: #ECE6F1;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(67, 30, 99, 0.06);
  --shadow-md: 0 10px 30px rgba(67, 30, 99, 0.10);
  --shadow-lg: 0 24px 60px rgba(67, 30, 99, 0.16);
  --shadow-purple: 0 14px 34px rgba(91, 44, 131, 0.28);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--charcoal); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--purple); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

section[id] { scroll-margin-top: 88px; }

/* ---------- Helpers ---------- */
.text-purple { color: var(--purple); }
.text-lavender { color: var(--lavender-mid); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 18px; height: 2px; background: var(--purple); transform: translateY(-50%);
}
.eyebrow--light { color: var(--lavender-mid); }
.eyebrow--light::before { background: var(--lavender-mid); }

.section { padding: 96px 0; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__title {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section__intro { margin-top: 16px; color: var(--grey); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease); cursor: pointer; white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
.btn--primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 18px 40px rgba(91,44,131,0.38); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--light { background: #fff; color: var(--purple); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--purple-deep); color: var(--lavender); font-size: 0.85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 44px; }
.topbar__contact { display: flex; gap: 26px; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.topbar__contact a:hover { color: #fff; }
.topbar__hours { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s, background 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo__mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-purple);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--charcoal); }
.logo__sub { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-light); }

.logo__img { height: 200px; width: auto; max-width: 100%; display: block; border-radius: 10px; transition: transform 0.3s var(--ease); }
.logo:hover .logo__img { transform: scale(1.02); }
.logo__img--footer {
  height: 50px; border-radius: 10px;
  background: #fff; padding: 6px 12px; box-sizing: content-box;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; gap: 30px; }
.nav__link {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem; color: var(--charcoal);
  position: relative; padding: 6px 0; transition: color 0.2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--purple); transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--purple); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__close { display: none; font-size: 2rem; line-height: 1; color: var(--charcoal); position: absolute; top: 20px; right: 24px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(circle at 80% 20%, rgba(123,71,163,0.55) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(212,184,232,0.25) 0%, transparent 40%),
    linear-gradient(135deg, rgba(46,18,69,0.88) 0%, rgba(67,30,99,0.84) 45%, rgba(91,44,131,0.82) 100%),
    url('../images/hero.jpg') center 30%/cover no-repeat;
  background-color: #2E1245;
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(46,18,69,0.65) 0%, rgba(46,18,69,0.25) 100%);
}
.hero__inner { position: relative; padding: 100px 0 120px; }
.hero__content { max-width: 680px; }
.hero__title {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero__lead { font-size: 1.12rem; color: rgba(255,255,255,0.9); max-width: 580px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero__trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
}
.hero__trust-item span { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 6px; }
.hero__trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ---------- Trust strip ---------- */
.truststrip { background: var(--white); border-bottom: 1px solid var(--line); }
.truststrip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.truststrip__item { display: flex; align-items: center; gap: 14px; color: var(--purple); }
.truststrip__item div h3 { font-size: 0.98rem; color: var(--charcoal); margin-bottom: 2px; }
.truststrip__item div p { font-size: 0.82rem; color: var(--grey); }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about__visual { position: relative; }
.about__image {
  border-radius: var(--radius-lg); min-height: 480px;
  background:
    linear-gradient(135deg, rgba(91,44,131,0.78), rgba(123,71,163,0.6)),
    url('../images/about.jpg') center/cover no-repeat;
  background-color: var(--purple);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about__image::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}
.about__image-badge {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  background: rgba(255,255,255,0.95); border-radius: var(--radius);
  padding: 14px 18px; display: flex; flex-direction: column; box-shadow: var(--shadow-md);
}
.about__image-badge strong { font-family: var(--font-head); color: var(--purple); font-size: 1.3rem; }
.about__image-badge span { font-size: 0.78rem; color: var(--grey); }
.about__stat {
  position: absolute; bottom: -28px; right: -24px; z-index: 2;
  background: #fff; border-radius: var(--radius); padding: 24px 26px;
  box-shadow: var(--shadow-lg); max-width: 260px;
  border-top: 4px solid var(--purple);
}
.about__stat strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--purple); line-height: 1; }
.about__stat span { font-size: 0.85rem; color: var(--grey); }

.about__content p { color: var(--grey); margin-bottom: 16px; }
.about__list { margin: 24px 0 30px; display: grid; gap: 14px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--charcoal); }
.about__list svg { flex-shrink: 0; background: var(--lavender-soft); color: var(--purple); padding: 5px; border-radius: 50%; box-sizing: content-box; }

/* ---------- Services ---------- */
.services { background: var(--off-white); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.4s var(--ease); overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: var(--lavender-soft); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all 0.4s var(--ease);
}
.service-card:hover .service-card__icon { background: var(--purple); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--grey); }
.service-card--featured { background: linear-gradient(160deg, var(--purple), var(--purple-dark)); border-color: transparent; }
.service-card--featured h3, .service-card--featured p { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,0.82); }
.service-card--featured .service-card__icon { background: rgba(255,255,255,0.16); color: #fff; }
.service-card--featured:hover .service-card__icon { background: #fff; color: var(--purple); }
.service-card--featured::before { background: var(--lavender-mid); }
.service-card__tag {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: var(--lavender); color: var(--purple-dark);
  font-family: var(--font-head); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius-pill);
}
.service-card--plan { border-top: 3px solid var(--lavender-mid); }

.services__cta {
  margin-top: 48px; text-align: center;
  background: var(--lavender-soft); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.services__cta p { color: var(--grey); max-width: 520px; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: all 0.3s var(--ease);
}
.why__card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--lavender-mid); }
.why__icon {
  width: 64px; height: 64px; border-radius: 16px; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-purple);
}
.why__card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why__card p { font-size: 0.94rem; color: var(--grey); }

/* ---------- Stats ---------- */
.stats {
  background:
    linear-gradient(135deg, rgba(91,44,131,0.96), rgba(46,18,69,0.96)),
    radial-gradient(circle at 80% 20%, var(--purple-light), transparent);
  color: #fff; position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 70px 0; position: relative; }
.stat { text-align: center; }
.stat strong {
  display: block; font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1;
}
.stat span { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin-top: 10px; display: block; }

/* ---------- Process ---------- */
.process { background: var(--off-white); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process__step {
  background: #fff; border-radius: var(--radius); padding: 34px 28px;
  position: relative; border: 1px solid var(--line); transition: all 0.3s var(--ease);
}
.process__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process__num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  color: var(--lavender); line-height: 1; display: block; margin-bottom: 14px;
  transition: color 0.3s;
}
.process__step:hover .process__num { color: var(--purple); }
.process__step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process__step p { font-size: 0.9rem; color: var(--grey); }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; transition: all 0.3s var(--ease); position: relative;
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 4rem; color: var(--lavender-mid);
  position: absolute; top: 8px; right: 24px; line-height: 1; opacity: 0.6;
}
.testimonial__stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testimonial blockquote { font-size: 0.98rem; color: var(--charcoal); margin-bottom: 20px; line-height: 1.6; }
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { font-family: var(--font-head); color: var(--purple); }
.testimonial figcaption span { font-size: 0.82rem; color: var(--grey-light); }

/* ---------- CTA banner ---------- */
.cta-banner { padding: 24px 0; }
.cta-banner__inner {
  background: linear-gradient(120deg, var(--purple), var(--purple-dark));
  border-radius: var(--radius-lg); padding: 56px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-banner__inner::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner__inner::after {
  content: ""; position: absolute; right: 80px; bottom: -80px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); position: relative; }

/* ---------- Contact ---------- */
.contact { background: var(--off-white); }
.contact__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact__info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.contact__info > p { color: var(--grey); margin-bottom: 28px; }
.contact__list { display: grid; gap: 20px; margin-bottom: 28px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--lavender-soft); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.contact__list strong { display: block; font-family: var(--font-head); font-size: 0.92rem; color: var(--charcoal); }
.contact__list a, .contact__list span { color: var(--grey); font-size: 0.92rem; transition: color 0.2s; }
.contact__list a:hover { color: var(--purple); }
.contact__note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--lavender-soft); border-radius: var(--radius-sm);
  padding: 16px 18px; color: var(--grey); font-size: 0.88rem;
}
.contact__note svg { color: var(--purple); flex-shrink: 0; margin-top: 2px; }

.contact__form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label { font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--charcoal); background: var(--off-white);
  transition: all 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple); background: #fff;
  box-shadow: 0 0 0 4px rgba(91,44,131,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 14px; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form-status.success { color: #1a8a4e; }
.form-status.error { color: #c0392b; }
.form-status.loading { color: var(--purple); }

/* ---------- Footer ---------- */
.footer { background: var(--purple-deep); color: rgba(255,255,255,0.7); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.logo--footer .logo__name { color: #fff; }
.logo--footer .logo__sub { color: var(--lavender-mid); }
.footer__brand p { margin-top: 18px; font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col li { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__col a:hover { color: var(--lavender-mid); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; font-size: 0.82rem; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-purple);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--purple-dark); transform: translateY(-3px); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .section { padding: 72px 0; }
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__stat { position: relative; bottom: auto; right: auto; max-width: 100%; margin-top: 20px; }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .services__grid, .why__grid, .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .truststrip__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
  body.nav-open { overflow: hidden; }
  .topbar__hours { display: none; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: 82%; max-width: 340px;
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 80px 30px 30px; gap: 0; transform: translateX(100%);
    transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg); z-index: 1100;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; width: 100%; }
  .nav__list li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__link { display: block; padding: 16px 0; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 22px; width: 100%; }
  .nav__close { display: none; }
  .nav__toggle { display: flex; z-index: 1200; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: 88vh; }
  .hero__inner { padding: 70px 0 90px; }
  .hero__trust { gap: 18px; }
  .hero__trust-divider { display: none; }

  .cta-banner__inner { flex-direction: column; align-items: flex-start; padding: 40px 32px; text-align: left; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .contact__form-wrap { padding: 28px 22px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .services__grid, .why__grid, .testimonials__grid, .process__grid, .truststrip__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .services__cta { padding: 30px 22px; }
  .logo__img { height: 42px; }
  .logo__img--footer { height: 42px; }
  .about__image { min-height: 320px; }
  .cta-banner__inner { padding: 32px 24px; }
  .cta-banner__inner .btn { width: 100%; }
  .topbar { font-size: 0.76rem; }
  .topbar__contact { gap: 14px; flex-wrap: wrap; }

  .truststrip__inner { padding: 48px 0; gap: 14px; }
  .truststrip__item { background: var(--lavender-soft); padding: 16px 18px; border-radius: var(--radius-sm); }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; padding: 56px 0; }

  .footer { padding-top: 56px; }
  .footer__inner { gap: 36px; padding-bottom: 40px; }
  .footer__bottom-inner { padding: 22px 20px; }
}

@media (max-width: 400px) {
  .topbar__contact a[href^="mailto"] { display: none; }
  .topbar__inner { justify-content: center; }
  .hero__title { font-size: 2rem; }
  .hero__trust-item strong { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
