/* ============================================================
   NEXA Integrated Solutions — Design System
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700&family=Tajawal:wght@400;500;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy-900: #07182f;
  --navy-800: #0b2747;
  --navy-700: #103b6e;
  --blue-700: #134a93;
  --blue-600: #1a5bb8;   /* primary */
  --blue-500: #2a72d8;
  --blue-400: #5197ef;
  --blue-100: #e4eefb;
  --orange:   #f2611d;   /* accent */
  --orange-600:#e04e12;
  --orange-tint:#fff1ea;

  --ink:    #13233f;
  --slate:  #51607a;
  --slate-2:#7a879e;
  --line:   #e6ebf3;
  --line-2: #d8e0ec;
  --bg:     #ffffff;
  --bg-soft:#f4f7fc;
  --bg-soft2:#eef3fa;

  --maxw: 1240px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16,40,80,.06), 0 2px 8px rgba(16,40,80,.05);
  --shadow-md: 0 8px 30px rgba(16,40,80,.10);
  --shadow-lg: 0 24px 60px rgba(11,39,71,.18);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Arabic typography */
[data-lang="ar"] {
  --font-display: 'Tajawal', system-ui, sans-serif;
  --font-body: 'Tajawal', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }
[data-lang="ar"] h1,[data-lang="ar"] h2,[data-lang="ar"] h3,[data-lang="ar"] h4 { letter-spacing: 0; font-weight: 800; }
::selection { background: var(--blue-600); color: #fff; }

/* ---------- Language visibility ---------- */
[data-lang="en"] .ar { display: none !important; }
[data-lang="ar"] .en { display: none !important; }
[data-lang="ar"] body, [data-lang="ar"] { font-family: var(--font-body); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }
.bg-soft { background: var(--bg-soft); }
.bg-soft2 { background: var(--bg-soft2); }
.bg-dark { background: var(--navy-900); color: #fff; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-600);
}
[data-lang="ar"] .eyebrow { letter-spacing: .04em; font-size: .92rem; }
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.bg-dark .eyebrow { color: var(--blue-400); }

.display { font-size: clamp(2.4rem, 5.4vw, 4.3rem); line-height: 1.04; }
.h-section { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--slate); line-height: 1.65; }
.bg-dark .lead { color: #b9c6dc; }
.muted { color: var(--slate); }
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue-600); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .h-section { margin-top: 16px; }
.section-head .lead { margin-top: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 15px 26px; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
[dir="rtl"] .btn:hover svg { transform: translateX(-4px); }
[dir="rtl"] .btn svg { transform: scaleX(-1); }
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px rgba(26,91,184,.28); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(26,91,184,.34); }
.btn-accent { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(242,97,29,.28); }
.btn-accent:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(242,97,29,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-600); transform: translateY(-2px); }
.bg-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.bg-dark .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(16,40,80,.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600; font-size: .96rem; color: var(--ink);
  padding: 9px 16px; border-radius: 100px; position: relative;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--blue-600); }
.nav-links a.active { color: var(--blue-600); }
.nav-links a.active::after {
  content:""; position: absolute; inset-block-end: 2px; inset-inline: 16px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* lang toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--line-2); border-radius: 100px;
  padding: 7px 14px; font-weight: 700; font-size: .9rem; color: var(--ink);
  background: rgba(255,255,255,.6); transition: all .2s;
}
.lang-toggle:hover { border-color: var(--blue-600); color: var(--blue-600); }
.lang-toggle svg { width: 16px; height: 16px; }

.menu-btn { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line-2);
  border-radius: 12px; background: rgba(255,255,255,.6); align-items: center; justify-content: center; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: .3s; }
.menu-btn span::before, .menu-btn span::after { content:""; position: absolute; inset-inline: 0; height: 2px; background: var(--ink); transition: .3s; }
.menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }
.menu-open .menu-btn span { background: transparent; }
.menu-open .menu-btn span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-btn span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px); display: flex; flex-direction: column;
  padding: 96px 28px 40px; gap: 6px;
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease);
}
.menu-open .mobile-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; padding: 16px 8px; border-bottom: 1px solid var(--line); }
.mobile-nav a.active { color: var(--blue-600); }
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(70px,9vw,120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .5;
  mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black, transparent 75%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob.b1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(81,151,239,.55), transparent 70%); top: -160px; inset-inline-end: -120px; }
.blob.b2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(242,97,29,.30), transparent 70%); bottom: -160px; inset-inline-start: -100px; animation: float 14s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-30px);} }

.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px,4vw,64px); align-items: center; }
.hero h1 { margin-block: 22px 24px; }
.hero .lead { max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-trust .ht { }
.hero-trust .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--blue-600); line-height: 1; }
.hero-trust .lbl { font-size: .86rem; color: var(--slate); margin-top: 6px; }

/* hero visual */
.hero-visual { position: relative; aspect-ratio: 4/4.4; }
.hero-card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff; border: 1px solid var(--line);
}
.hero-card.main { inset: 0; }
.hero-badge {
  position: absolute; inset-block-end: -22px; inset-inline-start: -22px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line);
  animation: float 7s ease-in-out infinite;
}
.hero-badge .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-tint); display: grid; place-items: center; color: var(--orange); }
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge b { font-family: var(--font-display); font-size: 1.05rem; }
.hero-badge small { display:block; color: var(--slate); font-size: .8rem; }

/* ---------- Placeholder ---------- */
.ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, #e9eff7 0 14px, #e1eaf6 14px 28px);
  display: grid; place-items: center; color: #8497b5;
  font-family: 'IBM Plex Mono', ui-monospace, monospace; font-size: .78rem; letter-spacing: .03em;
  position: relative;
}
.ph::after { content: attr(data-label); padding: 8px 14px; background: rgba(255,255,255,.85); border-radius: 100px; border: 1px solid var(--line-2); }
.ph.dark { background: repeating-linear-gradient(135deg, #122e52 0 14px, #0e2848 14px 28px); color: #6f88ad; }
.ph.dark::after { background: rgba(7,24,47,.6); border-color: rgba(255,255,255,.12); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.bg-dark .stats-band { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.12); }
.stat { background: var(--bg); padding: 34px 26px; text-align: center; }
.bg-dark .stat { background: var(--navy-900); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,3.4vw,3rem); color: var(--blue-600); line-height: 1; }
.bg-dark .stat .num { color: #fff; }
.stat .num .text-orange { color: var(--orange); }
.stat .lbl { margin-top: 10px; color: var(--slate); font-weight: 600; font-size: .92rem; }
.bg-dark .stat .lbl { color: #a9b8d0; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card .card-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-600); margin-bottom: 22px; transition: .35s var(--ease);
}
.card .card-ico svg { width: 28px; height: 28px; }
.card:hover .card-ico { background: var(--blue-600); color: #fff; transform: scale(1.05) rotate(-3deg); }
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; }
.card .idx { position: absolute; inset-block-start: 22px; inset-inline-end: 26px; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--line-2); }

/* sector card variant with accent line */
.card.sector::before { content:""; position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 100%; height: 3px; background: linear-gradient(90deg,var(--blue-600),var(--orange)); transform: scaleX(0); transform-origin: var(--accent-origin, left); transition: transform .4s var(--ease); }
.card.sector:hover::before { transform: scaleX(1); }

/* ---------- Feature list ---------- */
.feature-list { display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; list-style: none; }
.feature-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--orange-tint); color: var(--orange); display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list b { font-weight: 700; }
.feature-list span { color: var(--slate); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.split .split-media { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }

/* ---------- VM cards (vision/mission) ---------- */
.vm-card { padding: 36px; border-radius: var(--radius); position: relative; overflow: hidden; }
.vm-card .vm-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.vm-card.v { background: linear-gradient(150deg,var(--navy-800),var(--navy-900)); color: #fff; }
.vm-card.v .vm-ico { background: rgba(81,151,239,.2); color: var(--blue-400); }
.vm-card.v p { color: #b9c6dc; }
.vm-card.m { background: #fff; border: 1px solid var(--line); }
.vm-card.m .vm-ico { background: var(--orange-tint); color: var(--orange); }
.vm-card.m p { color: var(--slate); }
.vm-deco { position: absolute; inset-block-end: -40px; inset-inline-end: -40px; width: 160px; height: 160px; border-radius: 50%; opacity: .12; background: currentColor; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll-x 32s linear infinite; }
[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .mq-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--slate-2); white-space: nowrap; }
.marquee-track .mq-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Offices ---------- */
.office-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .3s var(--ease); }
.office-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.office-card .flag { font-size: 1.6rem; line-height: 1; }
.office-card .country { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.office-card .country h4 { font-size: 1.16rem; }
.office-card .role { font-size: .8rem; color: var(--blue-600); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
[data-lang="ar"] .office-card .role { letter-spacing: 0; }
.office-card .lines { margin-top: 14px; display: grid; gap: 8px; }
.office-card .lines a, .office-card .lines span { display: flex; align-items: center; gap: 10px; color: var(--slate); font-size: .95rem; }
.office-card .lines svg { width: 16px; height: 16px; color: var(--slate-2); flex-shrink: 0; }
.office-card .lines a:hover { color: var(--blue-600); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(48px,7vw,84px); background: linear-gradient(135deg,var(--blue-700),var(--navy-800)); color: #fff; }
.cta-band .blob { opacity: .4; }
.cta-band h2 { font-size: clamp(1.8rem,3.2vw,2.7rem); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding-top: 150px; padding-bottom: clamp(40px,5vw,64px); overflow: hidden; background: linear-gradient(180deg,var(--bg-soft),var(--bg)); }
.page-hero .crumbs { display: flex; align-items: center; gap: 10px; color: var(--slate-2); font-size: .9rem; font-weight: 600; margin-bottom: 18px; }
.page-hero .crumbs a:hover { color: var(--blue-600); }
.page-hero h1 { font-size: clamp(2.2rem,4.6vw,3.6rem); }
.page-hero .lead { margin-top: 18px; max-width: 60ch; }

/* ---------- Contact form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: 12px; background: var(--bg-soft); transition: .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue-600); background: #fff; box-shadow: 0 0 0 4px rgba(26,91,184,.1); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #cdd9ec; padding-block: clamp(56px,7vw,84px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand img { height: 46px; margin-bottom: 20px; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer-brand p { color: #93a6c4; max-width: 34ch; font-size: .95rem; }
.footer-col h5 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #a6b6d1; font-size: .95rem; transition: color .2s; display: flex; gap: 10px; align-items: flex-start; }
.footer-col a:hover { color: #fff; }
.footer-col svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--blue-400); }
.footer-bottom { margin-top: clamp(40px,5vw,60px); border-top: 1px solid rgba(255,255,255,.1); padding-block: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; }
.footer-bottom p { color: #7e90b0; font-size: .88rem; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #cdd9ec; transition: .2s; }
.footer-socials a:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .hero-badge, .marquee-track { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .lang-toggle { display: none; }
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 12px; }
  .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
}
