/* =========================================================
   Tacia's Cleaning Services — styles.css
   Palette derived from the brand logo (teal + orange)
   ========================================================= */

:root {
  /* Brand */
  --teal-50:  #f1fafa;
  --teal-100: #e0f4f4;
  --teal-200: #b9e6e8;
  --teal-300: #86d3d6;
  --teal-400: #43b6bb;
  --teal:     #1fa6ad;
  --teal-600: #158a90;
  --teal-700: #0f6d73;
  --teal-800: #0c565c;
  --teal-900: #0a464b;

  --orange:     #f5a623;
  --orange-600: #e08e0b;
  --orange-100: #fdf1da;

  /* Neutrals */
  --ink:    #12383b;   /* headings */
  --body:   #4f6a6c;   /* body text */
  --muted:  #7c9294;
  --line:   #e3efef;
  --bg:     #ffffff;
  --bg-soft:#f2fafa;
  --white:  #ffffff;

  --radius:   16px;
  --radius-sm:12px;
  --radius-lg:26px;
  --shadow:   0 18px 40px -20px rgba(12,86,92,.28);
  --shadow-sm:0 10px 26px -16px rgba(12,86,92,.35);
  --shadow-lg:0 30px 60px -25px rgba(12,86,92,.35);

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-head); color: var(--ink); line-height: 1.18; font-weight: 700; }
svg { width: 1em; height: 1em; fill: currentColor; }

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

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  padding: .78em 1.5em; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { font-size: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #3b2600; box-shadow: 0 12px 24px -12px rgba(245,166,35,.8); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 16px 30px -12px rgba(245,166,35,.9); }
.btn--ghost { background: var(--white); color: var(--teal-800); border-color: var(--teal-200); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-700); }
.btn--white { background: #fff; color: var(--teal-800); }
.btn--white:hover { background: #f3ffff; }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.btn--lg { padding: .95em 1.9em; font-size: 1rem; }
.btn--sm { padding: .6em 1.15em; font-size: .85rem; }
.btn--block { width: 100%; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--ff-head); font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  text-transform: uppercase; color: var(--teal-700);
  background: var(--teal-100); padding: .45em 1em; border-radius: 999px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.eyebrow--center { margin-inline: auto; }

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto clamp(38px, 5vw, 60px); }
.section__head .eyebrow { margin-bottom: 18px; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -.01em; }
.section__sub { margin-top: 14px; font-size: 1.05rem; color: var(--body); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar { background: var(--teal-900); color: #cdeeef; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar__info { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__info li { display: inline-flex; align-items: center; gap: .5em; }
.topbar__info svg { color: var(--teal-300); font-size: 1.05em; }
.topbar__social { display: flex; align-items: center; gap: 20px; }
.topbar__social a { display: inline-flex; align-items: center; gap: .45em; transition: color .2s; }
.topbar__social a:hover { color: #fff; }
.topbar__phone { font-weight: 600; color: #fff; white-space: nowrap; }
.topbar__social a { white-space: nowrap; }
.topbar__social svg { font-size: 1.1em; color: var(--orange); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(12,86,92,.4); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; }
.brand__name {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.18rem; color: var(--teal-800);
  line-height: 1; display: flex; flex-direction: column;
}
.brand__name span { font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-600); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-family: var(--ff-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--teal-700); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta, .nav__close { display: none; }

.header__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 0; background: var(--teal-100);
  border-radius: 12px; cursor: pointer; padding: 0; place-items: center;
}
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--teal-800); margin: 4px auto; border-radius: 2px; transition: .3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: linear-gradient(180deg, var(--teal-50), #fff 88%); overflow: hidden; }
.hero__blob {
  position: absolute; top: -18%; right: -10%; width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--teal-200), var(--teal-100) 60%, transparent 72%);
  filter: blur(2px); z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px;
  align-items: center; padding: clamp(48px, 6vw, 92px) 0 clamp(56px, 6vw, 96px);
}
.hero__content .eyebrow { margin-bottom: 22px; }
.hero__title { font-size: clamp(2.15rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.02em; }
.hero__title span { color: var(--teal); }
.hero__text { margin-top: 20px; font-size: 1.1rem; max-width: 520px; }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px; }
.hero__trust li { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-family: var(--ff-head); font-size: .9rem; color: var(--teal-800); }
.hero__trust svg { color: #fff; background: var(--teal); border-radius: 50%; padding: 3px; font-size: 1.25em; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; z-index: 1; border-radius: 30px 30px 30px 90px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.4; background: var(--teal-100);
  border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__media::before {
  content: ""; position: absolute; inset: auto -18px -22px auto; width: 180px; height: 180px;
  background: repeating-linear-gradient(45deg, var(--teal-200) 0 2px, transparent 2px 12px);
  border-radius: 20px; z-index: 0; opacity: .8;
}
.hero__media::after {
  content: ""; position: absolute; top: -14px; left: -14px; width: 92px; height: 92px;
  border-radius: 50%; background: var(--orange-100); z-index: 0;
}
.hero__badge {
  position: absolute; left: -18px; bottom: 34px; z-index: 2; display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow);
}
.hero__badge-icon {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: var(--teal); color: #fff; font-size: 1.35rem; flex: none;
}
.hero__badge strong { display: block; font-family: var(--ff-head); color: var(--ink); font-size: .98rem; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

/* =========================================================
   FEATURES STRIP
   ========================================================= */
.strip { margin-top: -40px; position: relative; z-index: 5; }
.strip__inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.strip__item { display: flex; gap: 14px; align-items: flex-start; }
.strip__item + .strip__item { border-left: 1px solid var(--line); padding-left: 26px; }
.strip__icon {
  flex: none; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px;
  background: var(--teal-100); color: var(--teal-700); font-size: 1.5rem;
}
.strip__item h3 { font-size: 1.02rem; color: var(--ink); margin-bottom: 3px; }
.strip__item p { font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--bg); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--teal-100); }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.service:hover .service__media img { transform: scale(1.06); }
.service__icon {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: var(--teal); color: #fff; font-size: 1.5rem; border: 3px solid #fff;
  box-shadow: var(--shadow-sm); transition: background .3s, color .3s;
}
.service__icon svg { width: 1em; height: 1em; display: block; }
.service:hover .service__icon { background: var(--orange); color: #3b2600; }
.service__body { padding: 26px 26px 30px; }
.service__body h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service__body p { font-size: .95rem; margin-bottom: 16px; }
.service__link { font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--teal-700); transition: color .2s, gap .2s; }
.service__link:hover { color: var(--orange-600); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--bg-soft); }
.about__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; }
.about__media { position: relative; }
.about__img { border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.about__accent {
  position: absolute; top: -18px; right: -18px; width: 150px; height: 150px; z-index: 0;
  background: repeating-linear-gradient(45deg, var(--teal-200) 0 2px, transparent 2px 12px); border-radius: 18px;
}
.about__chip {
  position: absolute; right: 20px; bottom: -22px; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: var(--shadow);
  font-family: var(--ff-head); font-weight: 600; font-size: .92rem;
}
.about__chip svg { background: #fff; color: var(--teal); border-radius: 50%; padding: 3px; font-size: 1.3em; }
.about__content .eyebrow { margin-bottom: 18px; }
.about__content > p { margin-top: 16px; }
.checklist { margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-family: var(--ff-head); font-weight: 500; color: var(--ink); font-size: .96rem; }
.checklist svg { flex: none; color: #fff; background: var(--teal); border-radius: 50%; padding: 4px; font-size: 1.35em; }
.about__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.about__call { display: inline-flex; align-items: center; gap: 12px; }
.about__call-icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); font-size: 1.35rem; }
.about__call span { display: flex; flex-direction: column; font-family: var(--ff-head); font-weight: 700; color: var(--ink); }
.about__call small { font-weight: 500; color: var(--muted); font-size: .78rem; }

/* =========================================================
   WHY US
   ========================================================= */
.why { background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 26px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why__num { font-family: var(--ff-head); font-weight: 800; font-size: 2.4rem; color: var(--orange); line-height: 1; display: block; margin-bottom: 8px; }
.why__card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why__card p { font-size: .92rem; }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: linear-gradient(180deg, var(--teal-50), #fff); }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.process__grid::before {
  content: ""; position: absolute; top: 46px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-300) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process__step { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.process__num {
  position: absolute; top: -8px; left: 50%; transform: translateX(26px);
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  background: var(--orange); color: #3b2600; font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  box-shadow: 0 6px 14px -6px rgba(245,166,35,.9);
}
.process__icon {
  width: 92px; height: 92px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%;
  background: #fff; border: 2px solid var(--teal-200); color: var(--teal); font-size: 2.4rem; box-shadow: var(--shadow-sm);
}
.process__step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process__step p { font-size: .95rem; max-width: 280px; margin-inline: auto; }

/* =========================================================
   CTA BAND
   ========================================================= */
.ctaband { background: linear-gradient(120deg, var(--teal-700), var(--teal) 90%); position: relative; overflow: hidden; }
.ctaband::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.ctaband__inner {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: clamp(40px, 5vw, 62px) 0; color: #fff; flex-wrap: wrap;
}
.ctaband h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; }
.ctaband p { color: rgba(255,255,255,.9); margin-top: 8px; font-size: 1.05rem; }
.ctaband__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--bg-soft); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: start; }
.contact__info .eyebrow { margin-bottom: 18px; }
.contact__lead { margin-top: 14px; font-size: 1.05rem; }
.contact__list { margin-top: 30px; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ic { width: 52px; height: 52px; flex: none; display: grid; place-items: center; border-radius: 14px; background: #fff; color: var(--teal); font-size: 1.4rem; box-shadow: var(--shadow-sm); }
.contact__list small { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-family: var(--ff-head); font-weight: 600; }
.contact__list a, .contact__list span:not(small) { font-family: var(--ff-head); font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.contact__list a:hover { color: var(--teal-700); }

.contact__formwrap { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(26px, 4vw, 40px); border: 1px solid var(--line); }
.form__title { font-size: 1.3rem; margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-family: var(--ff-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 7px; }
.field__opt { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: .96rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--teal-50);
  transition: border-color .2s, box-shadow .2s, background .2s; width: 100%; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #9db3b4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px var(--teal-100);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231fa6ad'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 42px; }
.btn__wa { font-size: 1.3em; }
.form__alt { text-align: center; margin-top: 14px; font-size: .9rem; color: var(--muted); }
.form__alt a { color: var(--teal-700); font-weight: 600; text-decoration: underline; }
.form__note { margin-top: 12px; font-size: .8rem; color: var(--muted); text-align: center; line-height: 1.5; }
.field.is-invalid input, .field.is-invalid select { border-color: #e05b4a; background: #fdf2f0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--teal-900); color: #b9d9da; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(50px, 6vw, 80px) 0 50px; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name span { color: var(--orange); }
.footer__brand p { margin: 18px 0 20px; font-size: .92rem; line-height: 1.7; max-width: 320px; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-family: var(--ff-head); font-weight: 600; font-size: .9rem; transition: color .2s; }
.footer__social svg { color: var(--orange); font-size: 1.3em; }
.footer__social:hover { color: var(--orange); }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .92rem; transition: color .2s, padding .2s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { font-size: .92rem; margin-bottom: 11px; }
.footer__contact a { color: #fff; font-weight: 600; }
.footer__col .btn { margin-top: 6px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 12px; flex-wrap: wrap; font-size: .85rem; }
.footer__credit { color: #7fb2b4; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.msgfloat {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal); color: #fff; padding: 12px 18px 12px 16px; border-radius: 999px;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  box-shadow: 0 16px 32px -12px rgba(31,166,173,.75); transition: transform .25s var(--ease), background .25s;
  animation: msgPulse 2.6s infinite;
}
.msgfloat svg { font-size: 1.35rem; }
.msgfloat:hover { transform: translateY(-2px) scale(1.03); background: var(--teal-600); }
@keyframes msgPulse { 0%,100%{ box-shadow: 0 16px 32px -12px rgba(31,166,173,.75), 0 0 0 0 rgba(31,166,173,.4);} 50%{ box-shadow: 0 16px 32px -12px rgba(31,166,173,.75), 0 0 0 12px rgba(31,166,173,0);} }

.totop {
  position: fixed; right: 24px; bottom: 82px; z-index: 65; width: 46px; height: 46px; border: 0; cursor: pointer;
  border-radius: 50%; background: var(--teal-800); color: #fff; font-size: 1.4rem; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s var(--ease); box-shadow: var(--shadow-sm);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--teal-700); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { gap: 34px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 22px 26px; }
  .strip__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .header__cta { display: none; }
  .nav__toggle { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100dvh; background: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 78px 28px 28px;
    transform: translateX(105%); transition: transform .35s var(--ease); box-shadow: -20px 0 50px -20px rgba(12,86,92,.4); z-index: 80;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 12px 6px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav__link::after { display: none; }
  .nav__cta { display: inline-flex; margin-top: 20px; }
  .nav__close { display: block; position: absolute; top: 18px; right: 20px; background: none; border: 0; font-size: 2rem; line-height: 1; color: var(--teal-800); cursor: pointer; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,70,75,.5); z-index: 75; opacity: 0; visibility: hidden; transition: .3s; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin: 8px auto 0; width: 100%; }
  .hero__content { text-align: center; }
  .hero__content .eyebrow, .hero__actions { justify-content: center; }
  .hero__text { margin-inline: auto; }
  .hero__trust { justify-content: center; }

  .about__inner { grid-template-columns: 1fr; gap: 46px; }
  .about__media { max-width: 520px; margin-inline: auto; width: 100%; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .process__grid::before { display: none; }
  .process__grid { grid-template-columns: 1fr; gap: 34px; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .topbar { font-size: .82rem; }
  .topbar__info { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__social { gap: 18px; }
  .services__grid, .why__grid, .strip__inner { grid-template-columns: 1fr; }
  .strip__item + .strip__item { border-left: 0; padding-left: 0; }
  .checklist { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .brand__name { font-size: 1.05rem; }
  .brand__logo { width: 46px; height: 46px; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .about__actions { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
