/* ==========================================================================
   Eltouni Physiotherapy Center — Landing Page
   Brand palette extracted from logo: cyan-blue + orange
   ========================================================================== */

:root {
  --blue: #22a7df;
  --blue-600: #1a8ec1;
  --blue-700: #14719b;
  --blue-050: #eaf7fd;
  --orange: #f5891f;
  --orange-600: #dd7710;
  --orange-050: #fff3e6;

  --ink: #10222e;
  --ink-2: #37505e;
  --muted: #6b8290;
  --line: #e2ecf2;
  --bg: #ffffff;
  --bg-soft: #f5fafd;
  --wa: #25d366;
  --wa-600: #1eb757;

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --shadow-sm: 0 4px 14px rgba(16, 34, 46, .06);
  --shadow: 0 14px 40px rgba(16, 34, 46, .09);
  --shadow-lg: 0 26px 70px rgba(16, 34, 46, .14);
  --container: 1180px;
  --header-h: 76px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Tajawal", "Cairo", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Cairo", "Tajawal", sans-serif;
  line-height: 1.35;
  margin: 0 0 .5em;
  font-weight: 800;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 10px 18px;
  z-index: 999;
  border-radius: 0 0 10px 10px;
}
.skip-link:focus { inset-inline-start: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn i { font-size: 1.05em; line-height: 1; }

.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, .32); }
.btn--wa:hover { background: var(--wa-600); box-shadow: 0 18px 38px rgba(37, 211, 102, .42); }

.btn--outline { border-color: var(--blue); color: var(--blue-700); background: #fff; }
.btn--outline:hover { background: var(--blue); color: #fff; box-shadow: 0 14px 32px rgba(34, 167, 223, .3); }

.btn--white { background: #fff; color: var(--blue-700); box-shadow: var(--shadow); }
.btn--white:hover { color: var(--orange-600); }

.btn--ghost { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }

.btn--sm { padding: 11px 20px; font-size: 14.5px; }

/* ---------- Topbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--blue-700), var(--blue));
  color: #fff;
  font-size: 14px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; opacity: .95; }
.topbar__item i { font-size: 13px; }
.topbar__sep { flex: 1; }
.topbar__phone {
  background: rgba(255, 255, 255, .16);
  padding: 3px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: background .2s;
}
.topbar__phone:hover { background: rgba(255, 255, 255, .3); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: 0 8px 30px rgba(16, 34, 46, .09); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 54px; height: 54px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__text strong { font-family: "Cairo", sans-serif; font-size: 19px; font-weight: 900; color: var(--blue-700); }
.brand__text small { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a {
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav > a:not(.btn):hover { color: var(--blue-700); background: var(--blue-050); }
.nav > a.is-active:not(.btn) { color: var(--orange-600); background: var(--orange-050); }
.nav__cta { margin-inline-start: 8px; }
.nav > a.btn--wa,
.nav > a.btn--wa:hover {
  color: #fff;
}

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  display: block;
  width: 22px; height: 2.4px;
  background: var(--blue-700);
  border-radius: 3px;
  margin: 4.5px auto;
  transition: transform .25s ease, opacity .2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(46px, 7vw, 90px) 0 clamp(56px, 8vw, 100px);
  background: linear-gradient(180deg, var(--blue-050), #fff 78%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .38;
}
.blob--1 { width: 420px; height: 420px; background: var(--blue); top: -130px; inset-inline-start: -110px; }
.blob--2 { width: 380px; height: 380px; background: var(--orange); bottom: -150px; inset-inline-end: -90px; opacity: .26; }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34, 167, 223, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 167, 223, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 10%, transparent 72%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(245, 137, 31, .35);
  color: var(--orange-600);
  font-weight: 800;
  font-size: 14.5px;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.pill i { font-size: 14px; }
.hero__stats span i { color: #f5b301; font-size: 12px; margin-inline-start: 2px; }

.hero__title {
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.28;
  margin-bottom: 16px;
}
.grad {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-2);
  max-width: 620px;
  margin-bottom: 28px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__stats li {
  flex: 1 1 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.hero__stats strong {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1.2;
}
.hero__stats span { font-size: 14px; color: var(--muted); }

.hero__visual { display: flex; justify-content: center; }
.hero__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 380px;
  width: 100%;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 37px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  z-index: -1;
  opacity: .35;
  filter: blur(10px);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero__logo { width: min(240px, 70%); margin: 0 auto 22px; }
.hero__card-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero__card-badges span {
  background: var(--blue-050);
  color: var(--blue-700);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 14px;
  border-radius: 999px;
}
.hero__card-badges span:nth-child(even) { background: var(--orange-050); color: var(--orange-600); }

/* ---------- Sections ---------- */
.section { padding: clamp(54px, 7vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4vw, 52px); }
.sec-head__kicker {
  display: inline-block;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  color: var(--orange-600);
  background: var(--orange-050);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.sec-head__title {
  font-size: clamp(25px, 3.4vw, 40px);
  font-weight: 900;
  margin-bottom: 12px;
}
.sec-head__title::after {
  content: "";
  display: block;
  width: 74px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  margin: 14px auto 0;
}
.sec-head__desc { color: var(--muted); margin: 0; }
.stars { font-size: .6em; vertical-align: middle; letter-spacing: 2px; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--services { grid-template-columns: repeat(3, 1fr); align-items: start; }

/* ---------- Feature cards ---------- */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
  overflow: hidden;
}
.feature::after {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform .35s ease;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(34, 167, 223, .35); }
.feature:hover::after { transform: scaleX(1); }
.feature__ico {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--blue-050);
  color: var(--blue-700);
  font-size: 22px;
  margin-bottom: 16px;
}
.feature:nth-child(even) .feature__ico { background: var(--orange-050); color: var(--orange-600); }
.feature h3 { font-size: 19.5px; margin-bottom: 8px; }
.feature p { margin: 0; font-size: 16px; }
.feature--wide { grid-column: span 3; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.feature--wide .feature__ico { margin-bottom: 0; flex-shrink: 0; }
.feature--wide h3 { margin-bottom: 4px; }
.feature--wide p { margin: 0; }

/* ---------- Services ---------- */
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
  height: 100%;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
.svc__ico {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  font-size: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-600));
  color: #fff;
  flex-shrink: 0;
}
.svc:nth-child(even) .svc__ico { background: linear-gradient(135deg, var(--orange), var(--orange-600)); }
.svc__head h3 { margin: 0; font-size: 21px; }

.ticks li {
  position: relative;
  padding-inline-start: 30px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--ink-2);
}
.ticks li:last-child { margin-bottom: 0; }
.ticks li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  width: 21px; height: 21px;
  display: grid;
  place-items: center;
  font-size: 10px;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-700);
}
.svc:nth-child(even) .ticks li::before { background: var(--orange-050); color: var(--orange-600); }

.svc--cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  border: none;
  min-height: 100%;
}
.svc--cta h3 { color: #fff; font-size: 22px; margin-bottom: 0; }
.svc--cta p { color: rgba(255, 255, 255, .9); margin: 0 0 8px; max-width: 280px; }
.svc--cta .btn { margin-top: 4px; }

/* ---------- Reviews ---------- */
.reviews-rating {
  display: inline-flex;
  gap: 4px;
  color: #f5b301;
  font-size: 18px;
  margin-top: 12px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
  height: 100%;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-600));
  color: #fff;
  font-family: "Cairo", sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.review-card:nth-child(even) .review-card__avatar {
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
}
.review-card__top h3 {
  margin: 0 0 4px;
  font-size: 17px;
}
.review-card__stars {
  color: #f5b301;
  font-size: 12px;
  letter-spacing: 1px;
}
.review-card p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.8;
}

/* ---------- Devices ---------- */
.device {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
  text-align: center;
}
.device:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.device__ico {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  margin: 0 auto 16px;
  border-radius: 22px;
  font-size: 26px;
  color: var(--blue-700);
  background: linear-gradient(135deg, var(--blue-050), #fff);
  border: 1px solid var(--line);
}
.device:nth-child(even) .device__ico {
  background: linear-gradient(135deg, var(--orange-050), #fff);
  color: var(--orange-600);
}
.device h3 { font-size: 19.5px; margin-bottom: 8px; }
.device p { margin: 0; font-size: 15.8px; }
.device--wide { grid-column: span 3; }
.device--wide .device__ico { margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-700), var(--blue) 55%, var(--orange));
  color: #fff;
  padding: clamp(40px, 5vw, 62px) 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(23px, 3vw, 34px); margin-bottom: 6px; }
.cta-band p { color: rgba(255, 255, 255, .92); margin: 0; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Insurance ---------- */
.insurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  gap: 22px;
  justify-content: center;
}
.insurance__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}
.insurance__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.insurance__ico {
  display: grid;
  place-items: center;
  width: 70px; height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-size: 28px;
  color: var(--blue-700);
  background: var(--blue-050);
}
.insurance__card:nth-child(even) .insurance__ico {
  background: var(--orange-050);
  color: var(--orange-600);
}
.insurance__card h3 { margin-bottom: 4px; font-size: 21px; }
.insurance__card p { margin: 0; color: var(--muted); font-size: 14.5px; direction: ltr; }

/* ---------- Location ---------- */
.location {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  align-items: start;
}
.location__info { display: grid; gap: 14px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-card:not(.contact-card--static):hover {
  transform: translateX(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(34, 167, 223, .4);
}
.contact-card__ico {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 16px;
  background: var(--blue-050);
  color: var(--blue-700);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-card--wa .contact-card__ico {
  background: rgba(37, 211, 102, .14);
  color: var(--wa-600);
}
.contact-card strong { display: block; font-family: "Cairo", sans-serif; font-size: 16.5px; }
.contact-card em { font-style: normal; color: var(--muted); font-size: 15px; }

.location__map {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}
.location__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--r);
  display: block;
}
.map__btn { width: 100%; margin-top: 12px; }

/* ---------- Footer ---------- */
.footer {
  background: #0e2431;
  color: #cfe1ea;
  padding-top: clamp(42px, 5vw, 64px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 38px;
}
.footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 44px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}
.footer__logo { width: 90px; background: #fff; border-radius: 18px; padding: 8px; margin-bottom: 16px; }
.footer__brand p { color: #a9c3d1; margin: 0; font-size: 15.5px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer__links a, .footer__contact a { color: #cfe1ea; font-size: 15.5px; transition: color .2s, transform .2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--orange); transform: translateX(-4px); }
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
  font-size: 14.5px;
  color: #8fb0c1;
  text-align: center;
}
.footer__contact a i {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.m2-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-align: center;
}
.m2-signature__mark {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #55c8e8;
  filter: drop-shadow(0 0 6px rgba(85, 200, 232, 0.55));
  animation: m2-sig-pulse 3.4s ease-in-out infinite;
}
.m2-signature__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes m2-sig-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.12) rotate(45deg); opacity: 1; }
}
.m2-signature__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.m2-signature__logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.m2-signature__logo img {
  height: 18px !important;
  width: auto !important;
  max-width: 52px !important;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}
.m2-signature__tag {
  color: #fff;
  font-size: 13px;
}
.m2-signature__tag strong {
  color: #fff;
  font-weight: 700;
}
.m2-signature__year {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

/* ---------- Floating buttons ---------- */
.floating {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 18px;
  display: grid;
  gap: 12px;
  z-index: 90;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(16, 34, 46, .28);
  transition: transform .25s ease;
}
.fab:hover { transform: scale(1.09); }
.fab--wa { background: var(--wa); animation: pulse 2.4s infinite; }
.fab--call { background: linear-gradient(135deg, var(--orange), var(--orange-600)); }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px rgba(16, 34, 46, .28), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 12px 30px rgba(16, 34, 46, .28), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 30px rgba(16, 34, 46, .28), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--3, .grid--services, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .m2-signature { gap: 8px 10px; }
  .feature--wide, .device--wide { grid-column: span 2; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__card { max-width: 320px; }
  .location { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav > a { padding: 13px 14px; border-radius: 12px; font-size: 16.5px; }
  .nav__cta { margin: 10px 0 0; justify-content: center; }
  .topbar__item:not(.topbar__phone) { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__sep { display: none; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .grid--3, .grid--services, .reviews-grid, .insurance { grid-template-columns: 1fr; }
  .feature--wide, .device--wide { grid-column: span 1; }
  .feature--wide { flex-direction: column; align-items: flex-start; gap: 10px; }
  .feature--wide .feature__ico { margin-bottom: 6px; }
  .insurance { grid-template-columns: minmax(0, 380px); }
  .footer__inner { grid-template-columns: 1fr; gap: 26px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; }
  .location__map iframe { height: 300px; }
  .fab { width: 52px; height: 52px; font-size: 21px; }
  .fab svg { width: 28px; height: 28px; }
}
