/* ============================================================
   Networkat Academy — Wio-style light theme
   Palette: white / light-grey · near-black ink · Networkat cyan
   Type: Tajawal (AR+Latin) · Space Grotesk (data/labels)
   ============================================================ */

:root {
  /* surfaces */
  --paper:    #ffffff;
  --paper-2:  #f4f6f9;
  --paper-3:  #eceff4;
  /* ink */
  --ink:      #0c1526;
  --ink-soft: #46566e;
  --ink-mute: #8695ab;
  /* accent */
  --cyan:     #29e0d8;
  --cyan-deep:#0c9aa4;
  --cyan-ink: #0a7c85;
  --navy:     #0b1c34;
  --navy-2:   #102a4c;
  /* lines */
  --line:     #e6ebf2;
  --line-2:   #d8e0ea;

  --font-body: "Tajawal", system-ui, sans-serif;
  --font-data: "Space Grotesk", "Tajawal", sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 68px);
  --shadow: 0 30px 60px -34px rgba(12, 21, 38, 0.22);
  --shadow-lg: 0 40px 90px -40px rgba(12, 21, 38, 0.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 9vw, 140px); position: relative; }
.section--grey { background: var(--paper-2); }
.section--soft { background: var(--paper-3); }

.eyebrow {
  font-family: var(--font-data);
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cyan-deep); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--cyan); border-radius: 2px; }

h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
.h-xl { font-size: clamp(2.6rem, 6.6vw, 5.4rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); text-transform: uppercase; letter-spacing: -0.025em; }
.h-md { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.lead { font-size: clamp(1.04rem, 1.5vw, 1.22rem); color: var(--ink-soft); max-width: 60ch; }
.accent { color: var(--cyan-deep); }

.section-head { max-width: 820px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head .lead { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 16px 30px; border-radius: var(--r-pill);
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--cyan); color: var(--ink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(41,224,216,0.7); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.on-dark .btn--ghost, .btn--ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.25); }
.on-dark .btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ============================================================
   HEADER
   ============================================================ */
.nav { position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  transition: background .35s, border-color .35s, box-shadow .35s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,0.86); backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; color: var(--ink); }
.brand__mark { width: 40px; height: 40px; border-radius: 12px; background: var(--cyan); display: grid; place-items: center; flex-shrink: 0; }
.brand__mark svg { width: 22px; height: 22px; }
.brand span b { color: var(--cyan-deep); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { font-size: 0.98rem; font-weight: 500; color: var(--ink-soft); padding: 9px 15px; border-radius: var(--r-pill); transition: color .2s, background .2s; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); background: var(--paper-2); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle { font-family: var(--font-data); font-weight: 600; font-size: 0.82rem; background: var(--paper-2); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 9px 14px; cursor: pointer; transition: border-color .2s, color .2s; letter-spacing: 0.05em; }
.lang-toggle:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); }

.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ============================================================
   HERO  (light, big type + big visual card)
   ============================================================ */
.hero { padding-block: clamp(130px, 17vh, 200px) clamp(50px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 68px); align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(41,224,216,0.12); border: 1px solid rgba(12,154,164,0.25);
  color: var(--cyan-ink); font-size: 0.84rem; font-weight: 600; padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 26px; }
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan-deep); box-shadow: 0 0 0 0 rgba(12,154,164,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(12,154,164,0.45)} 70%{box-shadow:0 0 0 8px rgba(12,154,164,0)} 100%{box-shadow:0 0 0 0 rgba(12,154,164,0)} }
.hero__title { margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--cyan-deep); }
.hero__lead { margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* hero visual card (dark panel with network animation + floating chips) */
.hero__visual { position: relative; aspect-ratio: 1 / 1; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(155deg, var(--navy-2), var(--navy) 60%, #071022); box-shadow: var(--shadow-lg); }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 55% at 75% 20%, rgba(41,224,216,0.22), transparent 62%); pointer-events: none; }
.chip { position: absolute; z-index: 2; background: rgba(255,255,255,0.09); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px; padding: 14px 18px; color: #fff; box-shadow: 0 20px 40px -22px rgba(0,0,0,0.6); }
.chip b { display: block; font-family: var(--font-data); font-size: 1.5rem; font-weight: 700; color: var(--cyan); line-height: 1; }
.chip span { font-size: 0.78rem; color: rgba(255,255,255,0.72); }
.chip--1 { inset-block-start: 7%; inset-inline-end: 7%; }
.chip--2 { inset-block-end: 9%; inset-inline-end: 9%; }
.chip--3 { inset-block-start: 41%; inset-inline-start: 7%; }

/* stats row */
.hero__stats { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(28px, 6vw, 80px); justify-content: start; margin-top: clamp(48px, 6vw, 76px); }
.stat__num { font-family: var(--font-data); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--ink); line-height: 1; }
.stat__label { font-size: 0.92rem; color: var(--ink-mute); margin-top: 8px; }

/* ============================================================
   MARQUEE / PARTNERS
   ============================================================ */
.marquee { overflow: hidden; padding-block: 26px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: scroll-x 34s linear infinite; }
.marquee__track span { font-family: var(--font-data); font-weight: 500; font-size: 1.1rem; color: var(--ink-mute); white-space: nowrap; letter-spacing: 0.02em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
body[dir="ltr"] .marquee__track { animation-direction: reverse; }

/* ============================================================
   CARDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.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: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__tag { font-family: var(--font-data); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--cyan-ink); background: rgba(41,224,216,0.14); padding: 6px 13px; border-radius: var(--r-pill); display: inline-block; margin-bottom: 20px; }
.card__title { color: var(--ink); margin-bottom: 12px; }
.card__text { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 24px; }
.card__link { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; font-size: 0.96rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(-5px); }
body[dir="ltr"] .card:hover .card__link svg { transform: translateX(5px); }
.card__link:hover { color: var(--cyan-deep); }
.card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: rgba(41,224,216,0.14); margin-bottom: 22px; }
.card__icon svg { width: 28px; height: 28px; stroke: var(--cyan-deep); }

/* filled cyan card (the Wio accent card) */
.card--fill { background: var(--cyan); border-color: transparent; }
.card--fill .card__tag { background: rgba(12,21,38,0.14); color: var(--ink); }
.card--fill .card__title, .card--fill .card__text, .card--fill .card__link { color: var(--ink); }
.card--fill .card__icon { background: rgba(12,21,38,0.12); }
.card--fill .card__icon svg { stroke: var(--ink); }
.card--fill:hover { box-shadow: 0 30px 60px -30px rgba(41,224,216,0.8); }

/* dark ink card */
.card--dark { background: var(--navy); border-color: transparent; }
.card--dark .card__title { color: #fff; }
.card--dark .card__text { color: rgba(255,255,255,0.72); }
.card--dark .card__link { color: #fff; }
.card--dark .card__icon { background: rgba(41,224,216,0.16); }
.card--dark .card__icon svg { stroke: var(--cyan); }
.card--dark .card__tag { background: rgba(255,255,255,0.1); color: var(--cyan); }

/* ============================================================
   CAREER — Wio-style feature strip
   ============================================================ */
.career { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); }
.career__cell { padding: 32px; border-inline-start: 1px solid var(--line); border-block-start: 1px solid var(--line); transition: background .25s; }
.career__cell:hover { background: var(--paper-2); }
.career__ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(41,224,216,0.14); display: grid; place-items: center; margin-bottom: 16px; }
.career__ic svg { width: 22px; height: 22px; stroke: var(--cyan-deep); }
.career__role { font-family: var(--font-data); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan-ink); font-weight: 600; margin-bottom: 6px; }
.career__name { font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.career__desc { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   SPLIT / SHOWCASE
   ============================================================ */
.split { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.feature-list { display: grid; gap: 15px; margin-block: 28px 34px; }
.feature-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 1.02rem; color: var(--ink-soft); list-style: none; }
.feature-list .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; margin-top: 3px; background: rgba(41,224,216,0.16); display: grid; place-items: center; }
.feature-list .tick svg { width: 14px; height: 14px; stroke: var(--cyan-deep); }

/* dark showcase panel (contrast block on light page) */
.showcase { background: linear-gradient(160deg, var(--navy-2), var(--navy)); border-radius: var(--r-xl); padding: 36px; position: relative; overflow: hidden; color: #fff; }
.showcase::after { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 60% at 78% 15%, rgba(41,224,216,0.2), transparent 60%); pointer-events: none; }
.showcase > * { position: relative; z-index: 1; }
.showcase .card__tag { background: rgba(255,255,255,0.1); color: var(--cyan); }
.showcase h3 { color: #fff; }
.showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.showcase__item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-md); padding: 22px; text-align: center; }
.showcase__item .ic { font-size: 1.8rem; margin-bottom: 10px; }
.showcase__item p { font-size: 0.88rem; color: rgba(255,255,255,0.82); font-weight: 600; }
.showcase .feature-list li { color: rgba(255,255,255,0.82); }
.showcase .feature-list .tick { background: rgba(41,224,216,0.2); }
.showcase .feature-list .tick svg { stroke: var(--cyan); }

/* phone mockup (echoes Wio app screenshots) */
.phone { width: 260px; margin-inline: auto; background: #0a1424; border: 8px solid #05101f; border-radius: 40px; padding: 16px 14px 20px; box-shadow: var(--shadow-lg); position: relative; }
.phone::before { content: ""; position: absolute; inset-block-start: 14px; inset-inline: 0; margin-inline: auto; width: 92px; height: 6px; border-radius: 6px; background: #05101f; }
.phone__screen { border-radius: 26px; background: linear-gradient(160deg, #0e2340, #0a1a30); padding: 34px 16px 18px; }
.phone__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.phone__row .k { font-size: 0.74rem; color: rgba(255,255,255,0.6); }
.phone__row .v { font-family: var(--font-data); font-weight: 700; color: #fff; }
.phone__bar { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.1); overflow: hidden; margin-bottom: 16px; }
.phone__bar i { display: block; height: 100%; width: 74%; background: linear-gradient(90deg, var(--cyan), var(--cyan-deep)); }
.phone__pill { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan); color: var(--ink); font-weight: 700; font-size: 0.82rem; padding: 9px 16px; border-radius: var(--r-pill); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-wrap { 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); }
.tst-track { display: flex; gap: 22px; width: max-content; animation: scroll-x 48s linear infinite; }
.tst-wrap:hover .tst-track { animation-play-state: paused; }
.tst { width: 400px; flex-shrink: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.section--grey .tst, .section--soft .tst { background: var(--paper); }
.tst__quote { color: var(--ink); font-size: 1.02rem; margin-bottom: 22px; font-weight: 500; }
.tst__who { display: flex; align-items: center; gap: 13px; }
.tst__ava { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan-deep)); display: grid; place-items: center; color: var(--ink); font-weight: 800; font-family: var(--font-data); }
.tst__name { font-weight: 800; color: var(--ink); font-size: 1rem; line-height: 1.3; }
.tst__meta { font-size: 0.84rem; color: var(--ink-mute); }

/* ============================================================
   CTA BANNER (dark ink band)
   ============================================================ */
.cta-banner { background: var(--ink); border-radius: var(--r-xl); padding: clamp(44px, 6vw, 84px); text-align: center; position: relative; overflow: hidden; color: #fff; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 90% at 50% 0%, rgba(41,224,216,0.22), transparent 68%); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }
.cta-banner .lead { color: rgba(255,255,255,0.78); }
.cta-banner .eyebrow { color: var(--cyan); }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.25); }
.cta-banner .btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ============================================================
   FOOTER (dark)
   ============================================================ */
.footer { background: var(--ink); color: #fff; padding-block: 76px 36px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer .brand { color: #fff; }
.footer .brand__mark { background: var(--cyan); }
.footer .brand__mark svg { stroke: var(--ink); }
.footer .brand span b { color: var(--cyan); }
.footer__about { max-width: 34ch; color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-block: 18px 22px; }
.footer__col h4 { font-family: var(--font-data); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; font-weight: 600; }
.footer__col a { display: block; color: rgba(255,255,255,0.72); font-size: 0.95rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--cyan); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; color: rgba(255,255,255,0.75); transition: .25s; }
.footer__social a:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); font-size: 0.86rem; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (inner pages — light)
   ============================================================ */
.page-hero { padding-block: clamp(140px, 18vh, 200px) clamp(44px, 6vw, 80px); position: relative; }
.crumbs { font-family: var(--font-data); font-size: 0.8rem; color: var(--ink-mute); margin-bottom: 20px; letter-spacing: 0.05em; }
.crumbs a:hover { color: var(--cyan-deep); }
.page-hero h1 em, .page-hero h1 .accent { font-style: normal; color: var(--cyan-deep); }

/* ABOUT values / metrics */
.value { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.value .card__icon { margin-bottom: 20px; }
.value h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 10px; }
.value p { color: var(--ink-soft); font-size: 0.96rem; }

.metric-band { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--paper); }
.metric-band .m { padding: 36px 26px; text-align: center; border-inline-start: 1px solid var(--line); }
.metric-band .m:first-child { border-inline-start: none; }
.metric-band .m b { font-family: var(--font-data); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 700; color: var(--cyan-deep); display: block; line-height: 1; }
.metric-band .m span { font-size: 0.9rem; color: var(--ink-soft); margin-top: 10px; display: block; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; align-items: center; transition: border-color .25s, transform .25s, box-shadow .25s; }
.contact-card:hover { border-color: transparent; transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 13px; background: rgba(41,224,216,0.14); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ic svg { width: 22px; height: 22px; stroke: var(--cyan-deep); }
.contact-card h4 { font-size: 0.82rem; color: var(--ink-mute); font-weight: 600; margin-bottom: 3px; }
.contact-card p { font-weight: 700; font-size: 1.04rem; color: var(--ink); }

.form { background: var(--paper); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: var(--paper-2); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan-deep); background: #fff; box-shadow: 0 0 0 4px rgba(41,224,216,0.16); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; }
.form__note { text-align: center; color: var(--ink-mute); font-size: 0.85rem; margin-top: 14px; }

/* FAQ */
.faq-wrap { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 6px 30px; }
.faq { border-bottom: 1px solid var(--line); }
.faq:last-child { border-bottom: none; }
.faq__q { width: 100%; text-align: inherit; background: none; border: none; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: var(--ink); font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; }
.faq__q .plus { flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--line-2); display: grid; place-items: center; transition: .3s; color: var(--cyan-deep); font-size: 1.4rem; }
.faq.open .faq__q .plus { transform: rotate(45deg); background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq__a p { padding-bottom: 26px; color: var(--ink-soft); font-size: 1rem; }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .career { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .metric-band { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; top: 0; right: 0; height: 100dvh; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    background: var(--paper); border-left: 1px solid var(--line); padding: 96px 22px 30px;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: -30px 0 60px -30px rgba(12,21,38,0.2); }
  body[dir="ltr"] .nav__links { right: auto; left: 0; border-left: none; border-right: 1px solid var(--line); transform: translateX(-100%); box-shadow: 30px 0 60px -30px rgba(12,21,38,0.2); }
  .nav__links.open { transform: translateX(0) !important; }
  .nav__links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav__burger { display: block; z-index: 101; }
  .nav__actions .btn { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .career { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .metric-band { grid-template-columns: repeat(2,1fr); }
  .hero__stats { grid-template-columns: repeat(3, auto); gap: 26px; }
  .tst { width: 300px; }
  .h-xl, .page-hero h1 { overflow-wrap: anywhere; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--cyan-deep); outline-offset: 3px; border-radius: 4px; }
