/* ============================================================
   T360 — All Angles Covered
   Brand system extracted from official logo artwork
   ============================================================ */

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

:root{
  /* --- Brand colors sampled directly from the T360 logo --- */
  --navy:        #182B6E;   /* darkest ring / T stroke */
  --navy-2:      #1E3A8F;
  --blue:        #2850D8;   /* primary wordmark blue */
  --blue-2:      #3864EC;
  --blue-bright: #3E76FA;   /* bright gradient blue */
  --sky:         #5FA0F8;   /* ring top light blue */
  --sky-light:   #93C6FB;
  --sky-pale:    #DCEBFE;
  --orange:      #D2712B;   /* pixel / QR accent mark */
  --orange-2:    #E68F45;
  --orange-light:#F6C9A0;
  --ink:         #0B1220;
  --slate:       #5B6B85;   /* tagline gray */
  --slate-light: #8B96AC;
  --paper:       #F5F8FC;
  --paper-2:     #EEF3FA;
  --white:       #FFFFFF;
  --line:        #E3E9F3;

  --grad-brand: linear-gradient(120deg, var(--navy) 0%, var(--blue) 45%, var(--sky) 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(24,43,110,.08) 0%, rgba(95,160,248,.10) 100%);
  --grad-accent: linear-gradient(120deg, var(--orange) 0%, var(--orange-2) 100%);
  --grad-radial-hero: radial-gradient(60% 60% at 80% 20%, rgba(95,160,248,.35) 0%, rgba(95,160,248,0) 70%),
                      radial-gradient(50% 50% at 10% 90%, rgba(210,113,43,.18) 0%, rgba(210,113,43,0) 70%);

  --shadow-sm: 0 2px 10px rgba(15,25,60,.06);
  --shadow-md: 0 12px 30px rgba(15,25,60,.10);
  --shadow-lg: 0 24px 60px rgba(15,25,60,.16);
  --shadow-glow: 0 0 0 1px rgba(56,100,236,.10), 0 20px 50px rgba(40,80,216,.20);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --font-en-head: 'Sora', 'Inter', sans-serif;
  --font-en-body: 'Inter', sans-serif;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;

  --container: 1220px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--ink);
  background:var(--white);
  font-family:var(--font-en-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5{ margin:0; font-family:var(--font-en-head); font-weight:700; color:var(--navy); letter-spacing:-.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input, textarea, select{ font-family:inherit; }
svg{ display:block; }

/* ---------- Language / direction handling ---------- */
html[lang="ar"] body{ font-family:var(--font-ar); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4{ font-family:var(--font-ar); font-weight:700; letter-spacing:0; }
html[lang="en"] .t-ar{ display:none !important; }
html[lang="ar"] .t-en{ display:none !important; }
html[dir="rtl"] { direction:rtl; }
html[dir="rtl"] .flip-rtl{ transform:scaleX(-1); }

/* ---------- Layout ---------- */
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ position:relative; padding:112px 0; }
.section--tight{ padding:72px 0; }
.section--alt{ background:var(--paper); }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--blue); background:rgba(40,80,216,.08);
  padding:8px 16px; border-radius:var(--radius-pill);
  margin-bottom:20px;
}
html[lang="ar"] .eyebrow{ letter-spacing:0; text-transform:none; }
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--orange); flex:none; }

.section-head{ max-width:760px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.6vw,44px); line-height:1.15; }
.section-head p{ margin-top:16px; font-size:17px; line-height:1.7; color:var(--slate); }

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

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border-radius:var(--radius-pill);
  font-weight:700; font-size:15px; border:1px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--grad-brand); color:#fff; box-shadow:var(--shadow-glow); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 26px 55px rgba(40,80,216,.32); }
.btn-accent{ background:var(--grad-accent); color:#fff; box-shadow:0 14px 34px rgba(210,113,43,.30); }
.btn-accent:hover{ transform:translateY(-2px); box-shadow:0 20px 44px rgba(210,113,43,.38); }
.btn-ghost{ background:transparent; color:var(--navy); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); background:rgba(40,80,216,.05); }
.btn-white{ background:#fff; color:var(--navy); }
.btn-white:hover{ transform:translateY(-2px); box-shadow:0 16px 34px rgba(0,0,0,.18); }
.btn-sm{ padding:11px 20px; font-size:14px; }
.btn-arrow{ transition:transform .3s ease; }
.btn:hover .btn-arrow{ transform:translateX(4px); }
html[dir="rtl"] .btn:hover .btn-arrow{ transform:translateX(-4px) scaleX(-1); }
html[dir="rtl"] .btn-arrow{ transform:scaleX(-1); }

/* ---------- Header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--header-h); display:flex; align-items:center;
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease;
}
/* The blurred glass background lives on a ::before, not on .site-header itself.
   backdrop-filter/filter/transform on an element makes it a containing block for
   any position:fixed descendants — if that ended up on .site-header, the fixed,
   viewport-height mobile nav panel (.nav-links, itself position:fixed) would be
   sized against the 84px-tall header instead of the viewport and collapse to a
   sliver. Keeping the filter off .site-header avoids that entirely. */
.site-header::before{
  content:''; position:absolute; inset:0; z-index:-1;
  background:rgba(255,255,255,.72); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  transition:background .3s ease;
}
.site-header.scrolled{ border-color:var(--line); box-shadow:0 8px 30px rgba(15,25,60,.06); }
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:38px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  padding:10px 16px; border-radius:var(--radius-pill); font-size:14.5px; font-weight:600; color:var(--ink);
  position:relative; transition:color .2s ease, background .2s ease;
}
.nav-links a:hover{ background:var(--paper-2); color:var(--blue); }
.nav-links a.active{ color:var(--blue); background:rgba(40,80,216,.09); }
.header-actions{ display:flex; align-items:center; gap:12px; }

.lang-switch{
  display:flex; align-items:center; background:var(--paper-2); border-radius:var(--radius-pill);
  padding:4px; border:1px solid var(--line); position:relative; gap:2px;
}
.lang-switch button{
  border:0; background:transparent; padding:7px 14px; border-radius:var(--radius-pill);
  font-size:13px; font-weight:700; color:var(--slate); position:relative; z-index:1;
  transition:color .25s ease;
}
.lang-switch button.is-active{ color:#fff; }
.lang-switch .pill{
  position:absolute; top:4px; bottom:4px; left:4px; width:calc(50% - 4px);
  background:var(--grad-brand); border-radius:var(--radius-pill); transition:transform .3s cubic-bezier(.65,0,.35,1);
}
html[lang="ar"] .lang-switch .pill{ transform:translateX(calc(100% + 2px)); }
html[dir="rtl"] .lang-switch .pill{ transform:translateX(calc(-100% - 2px)); left:4px; }
html[dir="rtl"][lang="en"] .lang-switch .pill{ transform:translateX(0); }

.nav-toggle{ display:none; width:42px; height:42px; align-items:center; justify-content:center; border-radius:12px; border:1px solid var(--line); background:#fff; }
.nav-toggle span{ display:block; width:18px; height:2px; background:var(--navy); position:relative; }
.nav-toggle span::before, .nav-toggle span::after{ content:''; position:absolute; left:0; width:18px; height:2px; background:var(--navy); transition:transform .25s ease; }
.nav-toggle span::before{ top:-6px; } .nav-toggle span::after{ top:6px; }

/* ---------- Hero network animation ---------- */
.hero{
  position:relative; padding:calc(var(--header-h) + 88px) 0 96px; overflow:hidden;
  background:
    var(--grad-radial-hero),
    linear-gradient(180deg, #FBFCFE 0%, #F3F7FD 100%);
}
.hero-canvas-wrap{ position:absolute; inset:0; z-index:0; opacity:.55; }
.hero-canvas-wrap canvas{ width:100%; height:100%; display:block; }
.hero .container{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.hero-copy h1{ font-size:clamp(34px,4.6vw,58px); line-height:1.08; }
.hero-copy h1 .accent{ background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero-copy p.lead{ margin-top:22px; font-size:18px; line-height:1.75; color:var(--slate); max-width:560px; }
.hero-cta{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:52px; flex-wrap:wrap; }
.hero-stat b{ display:block; font-family:var(--font-en-head); font-size:30px; color:var(--navy); }
.hero-stat span{ font-size:13px; color:var(--slate); }

.hero-visual{ position:relative; }
.ring-orbit{ position:relative; width:100%; max-width:460px; aspect-ratio:1/1; margin:0 auto; }
.ring-orbit .ring{
  position:absolute; inset:0; border-radius:50%; border:2px solid transparent;
  background:conic-gradient(from 0deg, var(--sky) 0deg, var(--blue) 160deg, transparent 210deg, transparent 360deg) border-box;
  -webkit-mask:linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation:spin 14s linear infinite;
}
.ring-orbit .ring.r2{ inset:36px; animation-duration:20s; animation-direction:reverse; opacity:.6; }
.ring-orbit .core{
  position:absolute; inset:78px; border-radius:50%; background:var(--white);
  box-shadow:var(--shadow-lg); display:flex; align-items:center; justify-content:center;
}
.ring-orbit .core img{ width:56%; }
.ring-orbit .node{
  position:absolute; width:52px; height:52px; border-radius:16px; background:#fff; box-shadow:var(--shadow-md);
  display:flex; align-items:center; justify-content:center; font-size:22px; animation:float 5s ease-in-out infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

/* ---------- Marquee / logo strip ---------- */
.strip{ padding:36px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); overflow:hidden; }
.strip-track{ display:flex; gap:64px; align-items:center; width:max-content; animation:marquee 26s linear infinite; }
.strip-track span{ font-family:var(--font-en-head); font-weight:700; font-size:15px; color:var(--slate-light); letter-spacing:.05em; white-space:nowrap; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
html[dir="rtl"] .strip-track{ animation-name:marqueeR; }
@keyframes marqueeR{ from{ transform:translateX(0);} to{ transform:translateX(50%);} }

/* ---------- Cards ---------- */
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:34px; transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position:relative; overflow:hidden;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent; }
.card .icon{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:var(--grad-brand-soft); font-size:26px; margin-bottom:22px; color:var(--blue);
}
.card h3{ font-size:19px; margin-bottom:12px; }
.card p{ color:var(--slate); font-size:15px; line-height:1.7; }
.card .tag{
  position:absolute; top:24px; inset-inline-end:24px; font-size:11px; font-weight:800; letter-spacing:.08em;
  text-transform:uppercase; color:var(--orange); background:rgba(210,113,43,.10); padding:5px 10px; border-radius:var(--radius-pill);
}

.feature-row{ display:flex; gap:22px; padding:26px 0; border-bottom:1px solid var(--line); }
.feature-row:last-child{ border-bottom:0; }
.feature-row .num{ font-family:var(--font-en-head); font-size:14px; font-weight:800; color:var(--orange); flex:none; width:42px; }
.feature-row h4{ font-size:17px; margin-bottom:6px; }
.feature-row p{ color:var(--slate); font-size:15px; line-height:1.65; }

/* pixel accent, echoing the logo's QR-style mark */
.pixel-mark{ display:grid; grid-template-columns:repeat(5,7px); grid-template-rows:repeat(5,7px); gap:3px; }
.pixel-mark span{ width:7px; height:7px; background:var(--line); border-radius:1px; }
.pixel-mark span.on{ background:var(--orange); }

/* ---------- Process / timeline ---------- */
.timeline{ position:relative; }
.timeline::before{ content:''; position:absolute; top:0; bottom:0; left:23px; width:2px; background:var(--line); }
html[dir="rtl"] .timeline::before{ left:auto; right:23px; }
.timeline-item{ position:relative; padding-inline-start:64px; padding-bottom:44px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:attr(data-step); position:absolute; inset-inline-start:0; top:0; width:48px; height:48px; border-radius:50%;
  background:var(--grad-brand); color:#fff; font-family:var(--font-en-head); font-weight:700; font-size:16px;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md);
}
.timeline-item h4{ font-size:18px; margin-bottom:8px; }
.timeline-item p{ color:var(--slate); font-size:15px; line-height:1.7; max-width:640px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  border-radius:32px; padding:64px; background:var(--grad-brand); position:relative; overflow:hidden;
  display:grid; grid-template-columns:1.3fr .7fr; gap:32px; align-items:center;
}
.cta-banner::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(40% 60% at 90% 10%, rgba(255,255,255,.18), transparent 60%);
}
.cta-banner h2{ color:#fff; font-size:clamp(24px,3vw,36px); position:relative; z-index:1; }
.cta-banner p{ color:rgba(255,255,255,.82); margin-top:14px; font-size:16px; line-height:1.7; position:relative; z-index:1; }
.cta-banner .cta-actions{ position:relative; z-index:1; display:flex; gap:14px; justify-content:flex-end; flex-wrap:wrap; }
html[dir="rtl"] .cta-banner .cta-actions{ justify-content:flex-start; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.78); padding:80px 0 28px; position:relative; overflow:hidden; }
.site-footer::before{ content:''; position:absolute; inset:0; background:var(--grad-radial-hero); opacity:.5; }
.site-footer .container{ position:relative; z-index:1; }
.footer-top{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.3fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.12); }
.footer-brand img{ height:36px; margin-bottom:18px; filter:brightness(0) invert(1); }
.footer-brand p{ font-size:14.5px; line-height:1.75; color:rgba(255,255,255,.62); max-width:280px; }
.footer-col h5{ color:#fff; font-size:14px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:20px; }
html[lang="ar"] .footer-col h5{ letter-spacing:0; text-transform:none; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:14.5px; color:rgba(255,255,255,.68); transition:color .2s ease; }
.footer-col a:hover{ color:#fff; }
.office{ margin-bottom:18px; }
.office b{ display:block; color:#fff; font-size:14px; margin-bottom:4px; }
.office span, .office a{ display:block; font-size:13.5px; color:rgba(255,255,255,.65); line-height:1.6; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; flex-wrap:wrap; gap:12px; }
.footer-bottom p{ font-size:13px; color:rgba(255,255,255,.5); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; transition:background .2s ease, border-color .2s ease; }
.footer-social a:hover{ background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.4); }

/* ---------- Reveal on scroll ----------
   Progressive enhancement: content is fully visible by default so it
   never disappears for no-JS browsers, crawlers, or slow script loads.
   Only once the "js" class lands on <html> (set synchronously in <head>)
   do reveal elements hide themselves, ready to be animated in by script.js. */
.reveal, .reveal-scale{ opacity:1; transform:none; }
html.js .reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
html.js .reveal-scale{ opacity:0; transform:scale(.94); transition:opacity .7s ease, transform .7s ease; }
html.js .reveal.visible, html.js .reveal-scale.visible{ opacity:1; transform:none; }
.stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  position:relative; padding:calc(var(--header-h) + 76px) 0 80px; overflow:hidden;
  background:linear-gradient(180deg,#F7F9FD 0%, #FFFFFF 100%);
}
.page-hero .breadcrumb{ font-size:13.5px; color:var(--slate); margin-bottom:18px; display:flex; align-items:center; gap:8px; }
.page-hero .breadcrumb a:hover{ color:var(--blue); }
.page-hero h1{ font-size:clamp(30px,4.2vw,50px); max-width:820px; line-height:1.12; }
.page-hero p.lead{ margin-top:20px; font-size:17.5px; color:var(--slate); max-width:680px; line-height:1.75; }
.page-hero-decor{ position:absolute; top:-80px; inset-inline-end:-80px; width:420px; height:420px; border-radius:50%; background:var(--grad-radial-hero); z-index:0; }

/* ---------- Compare / package table ---------- */
.pkg-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch; }
.pkg-card{ border:1px solid var(--line); border-radius:var(--radius-lg); padding:36px 30px; background:#fff; display:flex; flex-direction:column; transition:transform .3s ease, box-shadow .3s ease; }
.pkg-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.pkg-card.featured{ background:var(--grad-brand); color:#fff; box-shadow:var(--shadow-glow); border-color:transparent; }
.pkg-card.featured .pkg-name, .pkg-card.featured h3{ color:#fff; }
.pkg-card.featured .pkg-desc{ color:rgba(255,255,255,.78); }
.pkg-card.featured .pkg-list li{ color:rgba(255,255,255,.9); border-color:rgba(255,255,255,.18); }
.pkg-card.featured .pkg-list li svg{ color:#fff; }
.pkg-badge{ align-self:flex-start; background:var(--orange); color:#fff; font-size:11.5px; font-weight:800; padding:5px 12px; border-radius:var(--radius-pill); margin-bottom:16px; letter-spacing:.06em; }
.pkg-name{ font-family:var(--font-en-head); font-size:20px; font-weight:700; color:var(--navy); }
.pkg-desc{ margin-top:8px; font-size:14.5px; color:var(--slate); min-height:44px; }
.pkg-list{ margin:26px 0; flex:1; }
.pkg-list li{ display:flex; align-items:flex-start; gap:10px; padding:10px 0; border-top:1px solid var(--line); font-size:14.5px; color:var(--ink); }
.pkg-list li:first-child{ border-top:0; }
.pkg-list li svg{ flex:none; margin-top:2px; color:var(--blue); }

/* ---------- Compare table (industries / specs) ---------- */
.spec-table{ width:100%; border-collapse:separate; border-spacing:0; }
.spec-table th, .spec-table td{ text-align:start; padding:16px 18px; font-size:14.5px; border-bottom:1px solid var(--line); }
.spec-table thead th{ color:var(--slate); font-weight:700; font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; }
html[lang="ar"] .spec-table thead th{ letter-spacing:0; text-transform:none; }
.spec-table tbody tr:hover{ background:var(--paper); }
.spec-table td b{ color:var(--navy); }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:13.5px; font-weight:700; color:var(--navy); }
.field input, .field select, .field textarea{
  padding:14px 16px; border-radius:12px; border:1px solid var(--line); background:var(--paper); font-size:14.5px; color:var(--ink);
  transition:border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--blue); background:#fff; }
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ display:none; margin-top:16px; padding:14px 18px; border-radius:12px; background:rgba(40,80,216,.08); color:var(--navy); font-size:14px; font-weight:600; }

/* ---------- Contact / office cards ---------- */
.office-card{ border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; background:#fff; position:relative; overflow:hidden; }
.office-card .flagbar{ position:absolute; top:0; inset-inline-start:0; width:5px; height:100%; background:var(--grad-brand); }
.office-card h3{ font-size:18px; margin-bottom:6px; }
.office-card .country{ font-size:12.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--orange); margin-bottom:14px; display:block; }
html[lang="ar"] .office-card .country{ letter-spacing:0; text-transform:none; }
.office-card p{ font-size:14.5px; color:var(--slate); line-height:1.7; margin-bottom:6px; }
.office-card a{ font-weight:700; color:var(--blue); }

/* ---------- Misc ---------- */
.divider-pixels{ display:flex; justify-content:center; gap:6px; margin:0 0 24px; }
.divider-pixels span{ width:8px; height:8px; border-radius:2px; background:var(--sky-pale); }
.divider-pixels span:nth-child(3n+1){ background:var(--orange); }
.divider-pixels span:nth-child(5n){ background:var(--blue); }

.badge-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.badge-row .chip{ display:flex; align-items:center; gap:8px; background:var(--paper); border:1px solid var(--line); padding:9px 16px; border-radius:var(--radius-pill); font-size:13.5px; font-weight:600; color:var(--navy); }
.badge-row .chip .dot{ width:6px; height:6px; border-radius:50%; background:var(--orange); }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }

.stat-block{ text-align:center; padding:28px 12px; }
.stat-block b{ display:block; font-family:var(--font-en-head); font-size:38px; color:var(--navy); }
.stat-block span{ font-size:13.5px; color:var(--slate); margin-top:6px; display:block; }

/* ---------- FAQ Accordion ---------- */
.accordion{ border-top:1px solid var(--line); }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-q{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 4px; font-family:var(--font-en-head); font-weight:600; font-size:16.5px; color:var(--navy); }
html[lang="ar"] .acc-q{ font-family:var(--font-ar); }
.acc-q .plus{ flex:none; width:28px; height:28px; border-radius:50%; border:1px solid var(--line); position:relative; transition:transform .3s ease, background .3s ease, border-color .3s ease; }
.acc-q .plus::before, .acc-q .plus::after{ content:''; position:absolute; background:var(--navy); top:50%; left:50%; transform:translate(-50%,-50%); transition:opacity .25s ease; }
.acc-q .plus::before{ width:10px; height:2px; }
.acc-q .plus::after{ width:2px; height:10px; }
.acc-item.open .acc-q .plus{ background:var(--grad-brand); border-color:transparent; transform:rotate(90deg); }
.acc-item.open .acc-q .plus::before, .acc-item.open .acc-q .plus::after{ background:#fff; }
.acc-item.open .acc-q .plus::after{ opacity:0; }
.acc-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.acc-item.open .acc-a{ max-height:400px; }
.acc-a-inner{ padding:0 4px 26px; font-size:15px; line-height:1.75; color:var(--slate); max-width:760px; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .nav-links{ position:fixed; top:var(--header-h); left:0; right:0; bottom:0; background:#fff; flex-direction:column; align-items:stretch; padding:20px; gap:6px; transform:translateY(-110%); opacity:0; transition:transform .3s ease, opacity .3s ease; overflow-y:auto; }
  .nav-links.open{ transform:translateY(0); opacity:1; }
  .nav-links a{ padding:16px 18px; font-size:16px; border-bottom:1px solid var(--line); border-radius:0; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-primary.desktop-only{ display:none; }
  .hero-grid, .two-col{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; margin-bottom:12px; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns:repeat(2,1fr); }
  .pkg-grid{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .cta-banner{ grid-template-columns:1fr; padding:44px 28px; }
  .cta-banner .cta-actions{ justify-content:flex-start; }
  .form-grid{ grid-template-columns:1fr; }
}
@media (max-width:640px){
  .section{ padding:76px 0; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns:1fr; }
  .hero-stats{ gap:22px; }
  .footer-top{ grid-template-columns:1fr; }
  .container{ padding:0 18px; }
}
