/* ============================================================
   Dr.Visa — Brand Design System
   Coral Red #fc3b3e · Smoky Black #0c0c0c · Cultured #f7f7f7
   Type: IBM Plex Sans (EN) · IBM Plex Sans Arabic (AR) · Hello Radio (script accent)
   ============================================================ */

@font-face {
  font-family: "Hello Radio";
  src: url("../fonts/HelloRadio.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --coral: #fc3b3e;
  --coral-700: #d92b2e;
  --coral-soft: rgba(252, 59, 62, 0.12);
  --black: #0c0c0c;
  --black-soft: #161616;
  --black-card: #1b1b1d;
  --cultured: #f7f7f7;
  --white: #ffffff;
  --ink: #0c0c0c;
  --ink-60: rgba(12, 12, 12, 0.62);
  --ink-40: rgba(12, 12, 12, 0.42);
  --paper-60: rgba(247, 247, 247, 0.66);
  --paper-40: rgba(247, 247, 247, 0.4);
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(12, 12, 12, 0.1);
  --wa: #25d366;

  --font-en: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-ar: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: var(--font-en);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -24px rgba(12, 12, 12, 0.45);
  --shadow-soft: 0 18px 40px -28px rgba(12, 12, 12, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[lang="ar"] { --font-body: var(--font-ar); }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--cultured);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Bilingual show / hide ---- */
html[lang="en"] [data-lang="ar"] { display: none !important; }
html[lang="ar"] [data-lang="en"] { display: none !important; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--dark { background: var(--black); color: var(--cultured); }
.section--cultured { background: var(--cultured); }
.section--paper { background: var(--white); }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.05; font-weight: 600; letter-spacing: -0.02em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 { letter-spacing: 0; line-height: 1.25; font-weight: 700; }

.h-display { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 700; }
.h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
.h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-60); font-weight: 400; }
.section--dark .lead { color: var(--paper-60); }
.accent { color: var(--coral); }

/* Script eyebrow (EN) + styled eyebrow (AR) */
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--coral); display: inline-block; }
.eyebrow .script { font-family: "Hello Radio", cursive; color: var(--coral); font-size: 1.7rem; line-height: 1; }
.eyebrow-ar { font-family: var(--font-ar); color: var(--coral); font-weight: 700; font-size: 1.05rem; letter-spacing: 0; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 18px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 14px 30px -12px rgba(252, 59, 62, 0.6); }
.btn-coral:hover { background: var(--coral-700); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--cultured); }
.btn-dark:hover { transform: translateY(-2px); background: var(--black-soft); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.section--cultured .btn-ghost:hover, .section--paper .btn-ghost:hover { background: rgba(12,12,12,.05); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s, padding .3s;
  padding-block: 20px;
}
.nav .wrap { display: flex; align-items: center; gap: 24px; }
.nav.scrolled { background: rgba(12, 12, 12, 0.92); backdrop-filter: blur(14px); padding-block: 12px; box-shadow: 0 1px 0 var(--line-dark); }
.nav__logo { height: 46px; flex: none; }
.nav__logo img { height: 100%; width: auto; }
.nav__logo .on-dark { display: block; }
.nav__logo .on-light { display: none; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-inline-start: auto; }
.nav__links a { color: var(--cultured); font-weight: 500; font-size: .98rem; opacity: .85; transition: opacity .2s, color .2s; position: relative; }
.nav__links a:hover { opacity: 1; color: var(--coral); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  background: transparent; border: 1.5px solid var(--line-dark); color: var(--cultured);
  border-radius: 999px; padding: 8px 16px; font-family: var(--font-body); font-weight: 600;
  font-size: .9rem; cursor: pointer; transition: border-color .2s, color .2s;
}
.lang-toggle:hover { border-color: var(--coral); color: var(--coral); }
.nav__cta { padding: 11px 20px; font-size: .95rem; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--cultured); margin: 5px 0; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--black); color: var(--cultured); overflow: hidden; min-height: 100svh; display: flex; align-items: center; padding-block: 140px 80px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__mark {
  position: absolute; inset-block-start: 50%; inset-inline-end: -6%;
  transform: translateY(-50%); height: 112%; width: auto; max-width: none;
  object-fit: contain; opacity: .92; pointer-events: none;
}
.hero::after { /* darken inner edge for text legibility */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, var(--black) 32%, rgba(12,12,12,.5) 55%, rgba(12,12,12,0) 78%);
}
html[dir="rtl"] .hero::after { background: linear-gradient(260deg, var(--black) 32%, rgba(12,12,12,.5) 55%, rgba(12,12,12,0) 78%); }
.hero__inner { position: relative; z-index: 2; max-width: 680px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { max-width: 540px; margin-bottom: 38px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px 34px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line-dark); }
.hero__trust div { display: flex; flex-direction: column; gap: 2px; }
.hero__trust b { font-size: 1.5rem; font-weight: 700; color: #fff; }
.hero__trust span { font-size: .88rem; color: var(--paper-60); }
.hero__scroll { position: absolute; inset-block-end: 30px; inset-inline-start: var(--gutter); z-index: 2; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper-40); }

/* curved coral line decoration */
.curve { position: absolute; z-index: 1; pointer-events: none; stroke: var(--coral); fill: none; opacity: .5; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.svc__ico { width: 54px; height: 54px; border-radius: 14px; background: var(--coral-soft); color: var(--coral); display: grid; place-items: center; margin-bottom: 22px; }
.svc__ico svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.22rem; margin-bottom: 10px; }
.svc p { color: var(--ink-60); font-size: .98rem; line-height: 1.6; }
.svc__num { position: absolute; inset-block-start: 22px; inset-inline-end: 26px; font-weight: 700; color: var(--line-light); font-size: 1rem; }

/* ============================================================
   WHY  (dark, with photo)
   ============================================================ */
.why { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.why__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.why__media .tag { position: absolute; inset-block-end: 22px; inset-inline-start: 22px; background: var(--coral); color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem; }
.pillars { display: grid; gap: 16px; }
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 22px 24px; border-radius: var(--radius-sm); background: var(--black-card); border: 1px solid var(--line-dark); transition: border-color .3s, transform .3s var(--ease); }
.pillar:hover { border-color: var(--coral); transform: translateX(4px); }
html[dir="rtl"] .pillar:hover { transform: translateX(-4px); }
.pillar__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--coral-soft); color: var(--coral); display: grid; place-items: center; }
.pillar__ico svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.12rem; margin-bottom: 5px; color: #fff; }
.pillar p { color: var(--paper-60); font-size: .94rem; line-height: 1.55; }

/* ============================================================
   DESTINATIONS  (globe)
   ============================================================ */
.dest { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.dest__globe { position: relative; border-radius: var(--radius); overflow: hidden; }
.dest__globe img { width: 100%; border-radius: var(--radius); display: block; }
.dest__globe::after { /* coral colorize to match brand red-globe treatment */
  content: ""; position: absolute; inset: 0; background: var(--coral);
  mix-blend-mode: color; opacity: .78; pointer-events: none;
}
.dest__globe .glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 65%, rgba(252,59,62,.35), transparent 62%); pointer-events: none; mix-blend-mode: screen; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px; border: 1px solid var(--line-dark); font-weight: 600; font-size: .98rem; transition: background .2s, border-color .2s, color .2s; }
.chip:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.chip svg { width: 16px; height: 16px; color: var(--coral); transition: color .2s; }
.chip:hover svg { color: #fff; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.serve__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/6; }
.serve__media img { width: 100%; height: 100%; object-fit: cover; }
.serve__list { display: grid; gap: 8px; }
.serve__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.serve__item:last-child { border-bottom: 0; }
.serve__item .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); margin-top: 8px; }
.serve__item h4 { font-size: 1.08rem; margin-bottom: 3px; }
.serve__item p { color: var(--ink-60); font-size: .94rem; }

/* ============================================================
   MISSION / VISION strip
   ============================================================ */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv__card { padding: 38px 34px; border-radius: var(--radius); background: var(--black-card); border: 1px solid var(--line-dark); }
.mv__card .script { font-family: "Hello Radio", cursive; color: var(--coral); font-size: 2rem; line-height: 1; }
.mv__card .eyebrow-ar { font-size: 1.3rem; }
.mv__card h3 { margin: 8px 0 14px; }
.mv__card p { color: var(--paper-60); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(12,12,12,.92) 30%, rgba(12,12,12,.55) 75%, rgba(12,12,12,.3)); }
html[dir="rtl"] .cta-band::before { background: linear-gradient(270deg, rgba(12,12,12,.92) 30%, rgba(12,12,12,.55) 75%, rgba(12,12,12,.3)); }
.cta-band .wrap { position: relative; z-index: 2; padding-block: clamp(80px, 12vw, 150px); }
.cta-band__inner { max-width: 640px; }
.cta-band h2 { margin-bottom: 28px; }
.cta-band .ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--paper-60); padding-block: 70px 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer__brand img { height: 42px; margin-bottom: 20px; }
.footer__brand p { max-width: 320px; font-size: .95rem; }
.footer__col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
html[lang="ar"] .footer__col h4 { text-transform: none; letter-spacing: 0; }
.footer__col a, .footer__col li { display: block; padding: 6px 0; font-size: .96rem; transition: color .2s; }
.footer__col a:hover { color: var(--coral); }
.footer__contact a { display: flex; align-items: center; gap: 11px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--coral); flex: none; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; font-size: .86rem; color: var(--paper-40); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; inset-block-end: 24px; inset-inline-end: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s var(--ease); animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); } 50% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 14px rgba(37,211,102,0); } }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .wa-float { animation: none; } }

/* ============================================================
   LANDING PAGE
   ============================================================ */
.lp { background: var(--black); color: var(--cultured); }
.lp-header { position: absolute; inset-block-start: 0; inset-inline: 0; z-index: 20; padding-block: 22px; }
.lp-header .wrap { display: flex; align-items: center; gap: 18px; }
.lp-header__logo { height: 40px; }
.lp-header__logo img { height: 100%; }
.lp-header__actions { display: flex; align-items: center; gap: 12px; margin-inline-start: auto; }

.lp-hero { position: relative; overflow: hidden; padding-block: 140px 80px; min-height: 100svh; display: flex; align-items: center; }
.lp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.lp-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,8,8,.7), rgba(8,8,8,.82)); }
.lp-hero .wrap { position: relative; z-index: 2; width: 100%; }
.lp-hero__inner { max-width: 800px; margin-inline: auto; text-align: center; }
.lp-hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); font-weight: 700; margin-bottom: 22px; }
.lp-hero .lead { margin-inline: auto; max-width: 600px; color: var(--paper-60); margin-bottom: 30px; }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 14px; }
.lp-hero__micro { font-size: .92rem; color: var(--paper-40); display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.lp-hero__micro span { display: inline-flex; align-items: center; gap: 7px; }
.lp-hero__micro svg { width: 15px; height: 15px; color: var(--coral); }

.lp-pick { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line-dark); }
.lp-pick > p { font-size: .95rem; color: var(--paper-60); margin-bottom: 16px; }
.lp-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lp-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 999px;
  border: 1.5px solid var(--line-dark); background: rgba(255,255,255,.04); color: var(--cultured);
  font-weight: 600; font-size: .96rem; cursor: pointer; transition: all .2s var(--ease);
}
.lp-pill:hover { background: var(--coral); border-color: var(--coral); color: #fff; transform: translateY(-2px); }
.lp-pill svg { width: 17px; height: 17px; color: var(--coral); transition: color .2s; }
.lp-pill:hover svg { color: #fff; }

.lp-trust { background: var(--black-soft); padding-block: 30px; border-block: 1px solid var(--line-dark); }
.lp-trust .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; }
.lp-trust__item { display: flex; align-items: center; gap: 12px; flex: 1 1 200px; }
.lp-trust__item svg { width: 26px; height: 26px; color: var(--coral); flex: none; }
.lp-trust__item b { display: block; font-size: 1rem; color: #fff; }
.lp-trust__item span { font-size: .85rem; color: var(--paper-60); }

.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.lp-step { padding: 32px 28px; border-radius: var(--radius); background: var(--black-card); border: 1px solid var(--line-dark); position: relative; }
.lp-step__n { width: 46px; height: 46px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.15rem; margin-bottom: 20px; }
.lp-step h3 { font-size: 1.18rem; color: #fff; margin-bottom: 8px; }
.lp-step p { color: var(--paper-60); font-size: .96rem; }

@media (max-width: 760px) {
  .lp-steps { grid-template-columns: 1fr; }
  .lp-trust .wrap { flex-direction: column; }
  .lp-hero { min-height: auto; }
}

/* ============================================================
   FULL-BLEED IMAGE SECTIONS
   ============================================================ */
.imgsec { color: var(--cultured); background: var(--black); overflow: hidden; }
.imgsec .imgsec__bg { position: absolute; inset: 0; z-index: 0; }
.imgsec .imgsec__bg img { width: 100%; height: 100%; object-fit: cover; }
.imgsec::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,8,8,.86), rgba(8,8,8,.52) 42%, rgba(8,8,8,.82)); }
.imgsec > .wrap { position: relative; z-index: 2; }
/* directional scrim for one-column content (darker on the start side) */
.imgsec--start::after { background: linear-gradient(90deg, rgba(8,8,8,.93) 26%, rgba(8,8,8,.6) 62%, rgba(8,8,8,.18)); }
[dir="rtl"] .imgsec--start::after { background: linear-gradient(270deg, rgba(8,8,8,.93) 26%, rgba(8,8,8,.6) 62%, rgba(8,8,8,.18)); }
.bg-col { max-width: 660px; }
.imgsec .lead { color: var(--paper-60); }
.imgsec .section-head h2, .imgsec h1 { text-shadow: 0 2px 36px rgba(0,0,0,.45); }

/* glass cards over imagery */
.imgsec .svc, .imgsec .pillar, .imgsec .mv__card, .imgsec .lp-step {
  background: rgba(16,16,18,.5); border-color: rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.imgsec .svc:hover { background: rgba(26,26,29,.72); border-color: rgba(255,255,255,.24); box-shadow: 0 24px 60px -24px rgba(0,0,0,.7); }
.imgsec .svc h3, .imgsec .pillar h3, .imgsec .lp-step h3 { color: #fff; }
.imgsec .svc p, .imgsec .pillar p, .imgsec .mv__card p, .imgsec .lp-step p { color: var(--paper-60); }
.imgsec .svc__num { color: rgba(255,255,255,.2); }

/* serve list + chips on dark imagery */
.imgsec .serve__item { border-color: var(--line-dark); }
.imgsec .serve__item h4 { color: var(--cultured); }
.imgsec .serve__item p { color: var(--paper-60); }
.imgsec .chip { background: rgba(16,16,18,.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

@media (max-width: 760px) {
  /* on mobile, content is full-width — use an even vertical scrim everywhere */
  .imgsec--start::after { background: linear-gradient(180deg, rgba(8,8,8,.82), rgba(8,8,8,.7) 45%, rgba(8,8,8,.9)); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why, .dest, .serve { grid-template-columns: 1fr; }
  .why__media, .serve__media { max-width: 480px; }
  .mv { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; position: absolute; inset-block-start: 100%; inset-inline: 0;
    background: rgba(12,12,12,.97); padding: 26px var(--gutter); gap: 18px; align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav.open .nav__links a { font-size: 1.1rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .hero { min-height: auto; padding-block: 120px 70px; }
  .hero__mark { opacity: .3; height: auto; width: 125%; inset-inline-end: -30%; inset-block-start: auto; inset-block-end: -4%; transform: none; }
  .hero::after { background: linear-gradient(180deg, rgba(12,12,12,.6), var(--black) 70%); }
  html[dir="rtl"] .hero::after { background: linear-gradient(180deg, rgba(12,12,12,.6), var(--black) 70%); }
  .hero__trust { gap: 20px; }
  .hero__trust b { font-size: 1.25rem; }
}
