/* UnitedFalls Landing — RTL Arabic */
:root {
  --teal: #04ADB1;
  --teal-700: #0784AA;
  --teal-900: #0A4D7A;
  --teal-50: #E3F5F5;
  --navy: #0A2E5C;
  --navy-2: #103E78;
  --ink: #0F1A24;
  --muted: #5B6B78;
  --line: #E2E8EC;
  --bg: #F7F9FA;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 2px rgba(14,42,58,.06), 0 1px 3px rgba(14,42,58,.04);
  --shadow-md: 0 4px 14px rgba(14,42,58,.08), 0 2px 4px rgba(14,42,58,.04);
  --shadow-lg: 0 18px 40px rgba(14,42,58,.12), 0 6px 14px rgba(14,42,58,.06);
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--white);
  color: var(--ink);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(14,42,58,.04);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: white;
  padding: 4px;
  box-shadow: 0 1px 2px rgba(14,42,58,.06);
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.footer .brand__mark { background: white; }
.brand__name { font-weight: 800; font-size: 20px; line-height: 1; color: var(--navy); }
.brand__sub { font-size: 11px; letter-spacing: .12em; color: var(--teal); font-weight: 600; margin-top: 4px; }

.nav__links { display: flex; gap: 32px; }
.nav__link {
  font-size: 15px; font-weight: 600; color: var(--ink);
  position: relative; padding: 8px 2px;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--teal); }
.nav__link::after {
  content: ''; position: absolute; right: 0; bottom: 0;
  width: 0; height: 2px; background: var(--teal);
  transition: width .25s ease;
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  transition: transform .15s ease, background .2s ease;
}
.nav__cta:hover { background: var(--teal); transform: translateY(-1px); }

.nav__burger { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(4,173,177,.15), transparent 60%),
    radial-gradient(900px 500px at -10% 100%, rgba(10,46,92,.08), transparent 60%),
    linear-gradient(180deg, #fff 0%, #F2F8FA 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--teal-50); color: var(--teal-700);
  font-weight: 700; font-size: 14px;
  margin-bottom: 24px;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26,142,148,.18);
}
.hero h1 {
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: 1.05; margin: 0 0 22px;
  font-weight: 900; color: var(--navy);
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--teal); }
.hero__lead {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--muted); line-height: 1.7;
  max-width: 560px; margin: 0 0 36px;
  font-weight: 500;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 700; font-size: 16px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%); color: white;
  box-shadow: 0 8px 22px rgba(7,132,170,.35);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--teal-700) 0%, var(--navy) 100%); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(10,46,92,.4); }
.btn--ghost {
  background: white; color: var(--navy); border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--whatsapp { background: var(--whatsapp); color: white; }
.btn--whatsapp:hover { background: #1DB954; }

.hero__chips { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.chip svg { color: var(--teal); flex-shrink: 0; }

/* hero visual */
.hero__visual {
  position: relative; aspect-ratio: 4/5; max-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0A2E5C;
}
.hero__visual img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,46,92,.15) 0%, rgba(4,173,177,.1) 60%, rgba(10,46,92,.5) 100%);
  pointer-events: none;
}


/* floating stat cards */
.float-card {
  position: absolute; background: white;
  border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .num { font-size: 28px; font-weight: 900; color: var(--navy); line-height: 1; }
.float-card .lbl { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.float-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-50); color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
}
.float-card.fc-1 { top: 12%; left: -28px; animation-delay: 0s; }
.float-card.fc-2 { bottom: 16%; right: -32px; animation-delay: 1.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTION ===== */
section { padding: 110px 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .kicker {
  display: inline-block;
  font-size: 13px; font-weight: 700; color: var(--teal);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(34px, 3.4vw, 50px); margin: 0 0 14px;
  font-weight: 900; color: var(--navy); letter-spacing: -0.01em;
}
.section-head p {
  font-size: 18px; color: var(--muted); max-width: 640px; margin: 0 auto;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { background: white; }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about__text h2 { font-size: clamp(32px, 3vw, 44px); color: var(--navy); margin: 0 0 20px; line-height: 1.15; font-weight: 900; }
.about__text p { font-size: 17px; color: var(--muted); line-height: 1.85; margin: 0 0 18px; }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.pillar {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; transition: border-color .2s ease, transform .15s ease;
}
.pillar:hover { border-color: var(--teal); transform: translateY(-2px); }
.pillar__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-50); color: var(--teal);
  display: grid; place-items: center; margin-bottom: 12px;
}
.pillar h4 { margin: 0 0 4px; font-size: 16px; color: var(--navy); }
.pillar p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

.about__visual {
  aspect-ratio: 1; border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0A2E5C;
}
.about__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.about__visual::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(10,46,92,.1) 0%, rgba(4,173,177,.08) 60%, rgba(10,46,92,.45) 100%);
  pointer-events: none;
}

/* ===== PRODUCTS ===== */
.products { background: var(--bg); }
.products__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
.pcard {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pcard__img {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: #f0f4f5;
}
.pcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  color: var(--teal); padding: 6px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; display: flex; align-items: center; gap: 6px;
}
.pcard__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pcard__body h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); font-weight: 800; }
.pcard__body p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.pcard__tag {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--teal);
  align-self: flex-start;
  padding: 6px 12px; background: var(--teal-50); border-radius: 999px;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: white; position: relative; overflow: hidden;
}
.stats::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(26,142,148,.25), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(26,142,148,.15), transparent 60%);
}
.stats .container { position: relative; }
.stats__head { text-align: center; margin-bottom: 56px; }
.stats__head h2 { color: white; font-size: clamp(32px, 3vw, 44px); margin: 0 0 12px; font-weight: 900; }
.stats__head p { color: rgba(255,255,255,.7); margin: 0; font-size: 17px; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat {
  text-align: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.stat:hover { background: rgba(26,142,148,.12); border-color: rgba(26,142,148,.4); transform: translateY(-4px); }
.stat__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,142,148,.2); color: #5BD4DA;
  display: grid; place-items: center; margin: 0 auto 18px;
}
.stat__num {
  font-size: clamp(40px, 4vw, 56px); font-weight: 900; line-height: 1;
  color: white; letter-spacing: -0.02em;
}
.stat__num .plus { color: var(--teal); }
.stat__lbl { font-size: 15px; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 600; }

/* ===== WHY ===== */
.why { background: white; }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.why .feat {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.why .feat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why .feat__icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%);
  color: white;
  box-shadow: 0 8px 18px rgba(26,142,148,.3);
}
.why .feat h4 { margin: 0 0 10px; font-size: 18px; color: var(--navy); font-weight: 800; }
.why .feat p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== COVERAGE ===== */
.coverage {
  background: var(--bg);
}
.coverage__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.coverage__map {
  aspect-ratio: 500/550;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #F8FBFC 0%, #EAF4F6 100%);
  border: 1px solid var(--line);
  position: relative;
  box-shadow: var(--shadow-sm);
  padding: 24px;
  overflow: hidden;
}
.coverage__map svg.ksa {
  position: absolute; inset: 24px;
  width: calc(100% - 48px); height: calc(100% - 48px);
  display: block;
}

.coverage__text h2 { font-size: clamp(32px, 3vw, 44px); color: var(--navy); margin: 0 0 18px; font-weight: 900; line-height: 1.15; }
.coverage__text > p { font-size: 17px; color: var(--muted); line-height: 1.85; margin: 0 0 28px; }
.region-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.region-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: white;
  border: 1px solid var(--line); border-radius: 12px;
  font-weight: 600; font-size: 14px; color: var(--navy);
  transition: border-color .2s ease, color .2s ease;
}
.region-list li:hover { border-color: var(--teal); color: var(--teal); }
.region-list li::before {
  content: ''; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0;
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,46,92,.55);
  backdrop-filter: blur(6px);
  display: grid; place-items: center; z-index: 100;
  animation: fadein .2s ease;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: white; border-radius: 20px;
  padding: 36px 32px; max-width: 440px; width: 92%;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: slideup .25s ease;
}
@keyframes slideup { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal h3 { margin: 0 0 8px; font-size: 22px; color: var(--navy); font-weight: 800; }
.modal p { margin: 0 0 24px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.modal__choices { display: flex; flex-direction: column; gap: 12px; }
.modal__choice {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 14px;
  border: 1.5px solid var(--line);
  text-align: right; font-weight: 700; color: var(--navy);
  transition: border-color .2s ease, transform .15s ease, background .2s ease;
  cursor: pointer;
}
.modal__choice:hover { border-color: var(--teal); transform: translateY(-2px); background: var(--teal-50); }
.modal__choice .ic {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
  color: white;
}
.modal__choice.wa .ic { background: var(--whatsapp); }
.modal__choice.em .ic { background: var(--teal-700); }
.modal__choice .lbl { font-size: 12px; color: var(--muted); font-weight: 600; }
.modal__choice .val { font-size: 15px; color: var(--navy); margin-top: 2px; }
.modal__close {
  margin-top: 20px; font-size: 14px; color: var(--muted);
  background: none; cursor: pointer;
}
.modal__close:hover { color: var(--navy); }

/* ===== CTA BAND ===== */
.ctaband {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%);
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.ctaband::before {
  content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px);
}
.ctaband .container { position: relative; }
.ctaband h2 {
  font-size: clamp(36px, 4vw, 56px); margin: 0 0 20px;
  font-weight: 900; line-height: 1.1; letter-spacing: -0.01em;
}
.ctaband p { font-size: 19px; margin: 0 auto 36px; max-width: 620px; opacity: .9; line-height: 1.7; }
.ctaband__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn--white { background: white; color: var(--teal-700); }
.btn--white:hover { background: var(--navy); color: white; }
.btn--outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.5); }
.btn--outline-white:hover { background: white; color: var(--teal-700); border-color: white; }

/* ===== CONTACT ===== */
.contact { background: white; }
.contact__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.contact__info h2 { font-size: clamp(32px, 3vw, 44px); color: var(--navy); margin: 0 0 16px; font-weight: 900; line-height: 1.15; }
.contact__info > p { font-size: 17px; color: var(--muted); line-height: 1.8; margin: 0 0 32px; }
.contact__rows { display: flex; flex-direction: column; gap: 16px; }
.crow {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: var(--bg); border-radius: 14px;
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .15s ease;
}
.crow:hover { border-color: var(--teal); transform: translateX(-4px); }
.crow__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: white; color: var(--teal);
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.crow__lbl { font-size: 12px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.crow__val { font-size: 16px; color: var(--navy); font-weight: 700; }

.form {
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--line);
}
.form h3 { margin: 0 0 8px; font-size: 22px; color: var(--navy); font-weight: 800; }
.form p { margin: 0 0 28px; font-size: 14px; color: var(--muted); }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: white;
  transition: border-color .15s ease, box-shadow .15s ease;
  direction: rtl;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(26,142,148,.12);
}
.field textarea { min-height: 110px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form__success {
  background: var(--teal-50); color: var(--teal-700);
  padding: 16px; border-radius: 12px; text-align: center; font-weight: 700;
  margin-top: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 50px;
}
.footer .brand__name { color: white; }
.footer h5 { color: white; font-size: 14px; margin: 0 0 16px; font-weight: 800; letter-spacing: .04em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color .2s ease; }
.footer ul a:hover { color: var(--teal); }
.footer__bio { font-size: 14px; line-height: 1.8; margin: 16px 0 22px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); display: grid; place-items: center;
  color: white; transition: background .2s ease, transform .15s ease;
}
.footer__social a:hover { background: var(--teal); transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; left: 28px; z-index: 60;
  cursor: pointer;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp); color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.45);
  transition: transform .2s ease;
  animation: pulse-fab 2.6s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes pulse-fab {
  0%, 100% { box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50%      { box-shadow: 0 14px 30px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
}

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ===== Mobile menu ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 76px 0 0 0;
  background: white; z-index: 49;
  padding: 40px 24px;
  flex-direction: column; gap: 4px;
  transform: translateX(-100%); transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 20px; font-weight: 700; color: var(--navy);
  padding: 18px 4px; border-bottom: 1px solid var(--line);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  section { padding: 70px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--bg); }
  .mobile-menu { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .hero__visual { aspect-ratio: 4/3; max-height: none; }
  .float-card.fc-1, .float-card.fc-2 { display: none; }
  .about__grid, .coverage__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .products__grid, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr; }
  .form { padding: 28px 20px; }
}
