/* ============================================================
   STARTIQ L.L.C-FZ — Premium Corporate Stylesheet
   Palette: Deep Navy / White / Platinum Silver / Gold / Aviation Blue
   ============================================================ */

:root {
  --navy-950: #050b1a;
  --navy-900: #081226;
  --navy-800: #0d1c3a;
  --navy-700: #14274d;
  --navy-600: #1d3563;
  --aviation: #2f6fd6;
  --aviation-soft: #5b95e8;
  --gold: #c9a14a;
  --gold-soft: #e2c889;
  --gold-bright: #f0d49a;
  --platinum: #d6dbe4;
  --platinum-dim: #9aa6ba;
  --silver: #eef1f6;
  --white: #ffffff;
  --ink: #0a1428;
  --muted: #5d6b85;

  --bg: #fbfcfe;
  --bg-alt: #f3f6fb;

  --font-sans: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-wordmark: "Cinzel", Georgia, "Times New Roman", serif;

  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(8, 18, 38, 0.06);
  --shadow-md: 0 12px 40px rgba(8, 18, 38, 0.10);
  --shadow-lg: 0 30px 70px rgba(8, 18, 38, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  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; transition: color 0.25s var(--ease); }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 600; letter-spacing: -0.02em; color: var(--navy-900); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(47, 111, 214, 0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 120%, rgba(201, 161, 74, 0.10), transparent 55%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--platinum);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section--navy .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

h1.display {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}
h2.title { font-size: clamp(1.9rem, 4vw, 3rem); }
h3.subtitle { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); }
.section--navy .lead, .section--navy p { color: var(--platinum); }

.text-muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(201, 161, 74, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(201, 161, 74, 0.40); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: rgba(13, 28, 58, 0.18);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled {
  background: rgba(251, 252, 254, 0.72);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 14px 44px rgba(8, 18, 38, 0.10);
  border-bottom: 1px solid rgba(201, 161, 74, 0.18);
  height: 66px;
}
.site-header.scrolled::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.55), transparent);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand .logo-text { display: flex; flex-direction: column; line-height: 1; }
.brand .logo-text strong {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy-900);
}
.brand .logo-text span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 3px;
}
/* header on transparent (top of hero) */
.site-header:not(.scrolled) .brand .logo-text strong { color: var(--white); }
.site-header:not(.scrolled) .nav-links > li > a { color: rgba(255, 255, 255, 0.82); }
.site-header:not(.scrolled) .nav-links > li > a:hover { color: var(--white); }
.site-header:not(.scrolled) .logo-mark .mark-wing { fill: var(--white); }
.site-header:not(.scrolled) .menu-toggle span { background: var(--white); }

.nav { display: flex; align-items: center; gap: 38px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li > a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-700);
  position: relative;
  padding: 6px 0;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }
.nav-links > li > a.active { color: var(--gold); }
.site-header:not(.scrolled) .nav-links > li > a.active { color: var(--gold-soft); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 22px;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.3s var(--ease);
}
.menu-toggle.open span { background: var(--navy-900); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  color: var(--platinum);
  font-size: 26px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav a.active { color: var(--gold-soft); }
.mobile-nav .mobile-cta { margin-top: 36px; }
.mobile-nav .mobile-contact { margin-top: 28px; color: var(--platinum-dim); font-size: 14px; }
.mobile-nav .mobile-contact a { font-size: 14px; border: none; padding: 4px 0; color: var(--gold-soft); display: inline; }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
}
.hero__bg {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.08);
  transform-origin: 60% 40%;
  z-index: 0;
  animation: kenBurns 26s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 700px at 70% 20%, rgba(47, 111, 214, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(5, 11, 26, 0.55) 0%, rgba(5, 11, 26, 0.78) 55%, rgba(5, 11, 26, 0.95) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero__inner { max-width: 880px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 26px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  color: var(--platinum);
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll .line { width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 90px) 0 90px;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.32; z-index: 0; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(47, 111, 214, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(5, 11, 26, 0.72), rgba(5, 11, 26, 0.92));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 5vw, 3.5rem); margin-bottom: 18px; }
.page-hero p { color: var(--platinum); max-width: 620px; font-size: 1.12rem; font-weight: 300; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--platinum-dim); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold-soft); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-950); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 0;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-strip .item {
  color: var(--platinum);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 26px;
  white-space: nowrap;
}
.trust-strip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

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

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: -1; }

.card {
  background: var(--white);
  border: 1px solid rgba(13, 28, 58, 0.07);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--aviation));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201, 161, 74, 0.3); }
.card:hover::before { transform: scaleX(1); }
.card .card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(47, 111, 214, 0.12), rgba(201, 161, 74, 0.14));
  color: var(--aviation);
  margin-bottom: 22px;
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3, .card h4 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--muted); }
.card .card-num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: rgba(13, 28, 58, 0.06);
  line-height: 1;
}

/* glass card (on navy) */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 30px;
  backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.glass:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); border-color: rgba(201, 161, 74, 0.4); }
.glass h3, .glass h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.glass p { color: var(--platinum); font-size: 15px; }
.glass .glass-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(201, 161, 74, 0.16);
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.glass .glass-icon svg { width: 25px; height: 25px; }

/* feature list with checks */
.check-list { display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ic {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy-950);
  display: grid; place-items: center;
  margin-top: 2px;
}
.check-list .ic svg { width: 14px; height: 14px; }
.check-list strong { display: block; font-weight: 600; color: var(--navy-900); margin-bottom: 2px; }
.check-list span { font-size: 14.5px; color: var(--muted); }
.section--navy .check-list strong { color: var(--white); }
.section--navy .check-list span { color: var(--platinum); }

/* media frame */
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 11, 26, 0.35));
  pointer-events: none;
}
.media-frame--tag::before {
  content: attr(data-tag);
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(5, 11, 26, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat .label { margin-top: 12px; font-size: 13.5px; letter-spacing: 0.06em; color: var(--platinum-dim); text-transform: uppercase; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(48px, 7vw, 84px);
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(47, 111, 214, 0.25), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201, 161, 74, 0.12), transparent 30%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; position: relative; }
.cta-band p { color: var(--platinum); max-width: 560px; margin: 0 auto 32px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- About / values ---------- */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(13, 28, 58, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value .v-ic { color: var(--gold); margin-bottom: 16px; }
.value .v-ic svg { width: 30px; height: 30px; }
.value h4 { font-size: 1.1rem; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--muted); }

/* timeline / process */
.process { display: grid; gap: 0; }
.process .step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(13, 28, 58, 0.08);
  align-items: start;
}
.process .step:last-child { border-bottom: none; }
.process .step .idx {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201, 161, 74, 0.4);
  border-radius: 50%;
  width: 58px; height: 58px;
  display: grid; place-items: center;
}
.process .step h4 { font-size: 1.2rem; margin-bottom: 6px; }
.process .step p { color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(13, 28, 58, 0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(13, 28, 58, 0.07); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-ic {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47, 111, 214, 0.12), rgba(201, 161, 74, 0.14));
  color: var(--aviation);
  display: grid; place-items: center;
}
.contact-item .ci-ic svg { width: 22px; height: 22px; }
.contact-item .ci-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--platinum-dim); margin-bottom: 4px; }
.contact-item .ci-value { font-weight: 600; color: var(--navy-900); font-size: 16px; }
.contact-item .ci-value a:hover { color: var(--gold); }

form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
form label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-800); margin-bottom: 8px; letter-spacing: 0.02em; }
form .field { margin-bottom: 20px; }
form input, form select, form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 28, 58, 0.16);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.14);
}
form textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 28, 58, 0.07);
  margin-top: 28px;
}
.map-placeholder {
  position: relative;
  height: 280px;
  background:
    radial-gradient(600px 300px at 70% 20%, rgba(47, 111, 214, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: grid;
  place-items: center;
  color: var(--platinum);
  text-align: center;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}
.map-placeholder .pin {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.map-placeholder .pin svg { width: 40px; height: 40px; color: var(--gold-soft); }
.map-placeholder .pin strong { color: var(--white); font-size: 16px; }
.map-placeholder .pin span { font-size: 13px; color: var(--platinum-dim); }

/* ---------- Partner audience tiles ---------- */
.audience { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.audience .tile {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.audience .tile:hover { transform: translateY(-5px); border-color: rgba(201,161,74,0.4); background: rgba(255,255,255,0.07); }
.audience .tile .a-ic {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px;
  background: rgba(201, 161, 74, 0.16); color: var(--gold-soft);
  display: grid; place-items: center;
}
.audience .tile .a-ic svg { width: 24px; height: 24px; }
.audience .tile h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 3px; }
.audience .tile p { color: var(--platinum-dim); font-size: 13.5px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--platinum);
  padding-top: 76px;
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand .brand .logo-text strong { color: var(--white); }
.footer-brand p { font-size: 14.5px; color: var(--platinum-dim); max-width: 320px; }
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--platinum-dim); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact p { font-size: 14.5px; color: var(--platinum-dim); margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--platinum-dim); }
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { font-size: 13px; color: var(--platinum-dim); }
.footer-bottom .legal a:hover { color: var(--gold-soft); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .menu-toggle { display: flex; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  form .form-row { grid-template-columns: 1fr; }
  .trust-strip .item { padding: 0 16px; font-size: 12px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .trust-strip .dot { display: none; }
  .trust-strip .container { gap: 8px 0; }
  .trust-strip .item { padding: 4px 12px; }
}

/* ============================================================
   DESIGN ENHANCEMENT PACKAGE
   - Cormorant serif display headings
   - Button shine sweep + card glow micro-interactions
   - Live hero: Ken-Burns (above) + animated flight paths + gold wash
   - Unified colour treatment on images
   - Elegant section patterns & dividers
   ============================================================ */

/* ---- 1a. Cinzel wordmark — hero brand name + nav logo ---- */
.hero h1,
h1.display,
.page-hero h1 {
  font-family: var(--font-wordmark);
  font-weight: 600;
  letter-spacing: 0.09em;
}
.brand .logo-text strong {
  font-family: var(--font-wordmark);
  letter-spacing: 0.16em;
  font-weight: 600;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1.05; }
h1.display { font-size: clamp(2.7rem, 6.4vw, 5rem); }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); letter-spacing: 0.05em; }

/* ---- 1b. Cormorant Garamond — section + cta headings ---- */
h2.title,
.cta-band h2,
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.005em;
}
h2.title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }

/* ---- 2. Button shine sweep ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
  z-index: -1;
  pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn-ghost::after { background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent); }

/* ---- 3. Card hover glow ---- */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 50% -10%, rgba(201, 161, 74, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.glass:hover { box-shadow: 0 24px 60px rgba(5, 11, 26, 0.45), 0 0 0 1px rgba(201, 161, 74, 0.25) inset; }
.value:hover { border-color: rgba(201, 161, 74, 0.3); }

/* ---- 4. Live hero: animated flight paths + gold wash ---- */
.hero__overlay {
  background-size: 130% 130%;
  background-repeat: no-repeat;
  background-position: center;
}
.hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1440'%20height='900'%20viewBox='0%200%201440%20900'%3E%3Cpath%20d='M-60%20700%20Q420%20470%20780%20540%20T1520%20300'%20fill='none'%20stroke='%23c9a14a'%20stroke-width='1'%20stroke-dasharray='2%2010'%20opacity='0.5'/%3E%3Cpath%20d='M-60%20830%20Q540%20700%20920%20660%20T1520%20480'%20fill='none'%20stroke='%235b95e8'%20stroke-width='1'%20stroke-dasharray='2%2011'%20opacity='0.38'/%3E%3Ccircle%20cx='780'%20cy='540'%20r='3'%20fill='%23e2c889'/%3E%3Ccircle%20cx='920'%20cy='660'%20r='2.4'%20fill='%235b95e8'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  animation: flightDrift 30s linear infinite;
  pointer-events: none;
}
.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(900px 520px at 78% 26%, rgba(201, 161, 74, 0.16), transparent 60%);
  mix-blend-mode: screen;
  animation: goldPulse 9s ease-in-out infinite;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; will-change: transform, opacity; }
@keyframes flightDrift {
  0% { transform: translate3d(0, 0, 0) scale(1.04); }
  100% { transform: translate3d(-3%, 1.5%, 0) scale(1.04); }
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.95; }
}

/* ---- 5. Unified colour treatment on images ----
   Wash is merged into ::after (which already carries the bottom gradient) so
   ::before stays free for the tag chip. Chip is lifted above the wash via z-index. */
.media-frame::after {
  background:
    linear-gradient(150deg, rgba(13, 28, 58, 0.30), rgba(47, 111, 214, 0.08) 45%, transparent 72%),
    radial-gradient(120% 90% at 100% 0%, rgba(201, 161, 74, 0.14), transparent 55%),
    linear-gradient(180deg, transparent 55%, rgba(5, 11, 26, 0.35));
  mix-blend-mode: multiply;
  z-index: 2;
}
.media-frame img { position: relative; z-index: 0; }
.media-frame--tag::before { z-index: 3; }

/* ---- 6. Section patterns & dividers ---- */
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 28, 58, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000, transparent 78%);
  pointer-events: none;
}
.section--alt > .container { position: relative; z-index: 1; }
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 10%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 90% 70% at 70% 10%, #000, transparent 80%);
  pointer-events: none;
}
.section--navy > .container { position: relative; z-index: 1; }
.section--alt + .section,
.section + .section--alt { position: relative; }
.section-divider {
  position: relative;
  height: 1px;
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 74, 0.45), transparent);
}
.section-divider::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.12);
}

/* ---- Reduced-motion: disable continuous animations ---- */
@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__overlay::before,
  .hero__overlay::after { animation: none !important; }
  .btn::after { transition: none; }
}

/* ============================================================
   Arabic / Language Switcher
   ============================================================ */

/* عربي button in English page headers */
.btn-lang-ar {
  display: inline-flex;
  align-items: center;
  padding: 7px 17px;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 161, 74, 0.38);
  color: var(--gold);
  background: rgba(201, 161, 74, 0.08);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.site-header:not(.scrolled) .btn-lang-ar {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}
.btn-lang-ar:hover {
  background: rgba(201, 161, 74, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

/* Arabic link inside mobile nav of English pages */
.ar-mobile-link {
  color: var(--gold-soft);
  font-size: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.ar-mobile-link:hover {
  color: var(--gold);
}

/* btn-dark variant used in profile download cards */
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  background: var(--navy-900);
  color: var(--platinum-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.btn-dark:hover {
  background: #0d1c3a;
  color: var(--white);
  border-color: rgba(201, 161, 74, 0.3);
}

@media (max-width: 860px) {
  .btn-lang-ar { display: none; }
}

/* ============================================================
   ENHANCEMENTS — Preloader · Progress Bar · Back-to-Top · WA Float
   ============================================================ */

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Back-to-Top ── */
#back-to-top {
  position: fixed;
  bottom: 104px; right: 26px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1.5px solid rgba(201,161,74,0.55);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s, color 0.2s;
  z-index: 997;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(8,18,38,0.25);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-to-top:hover { background: var(--gold); color: var(--navy-900); border-color: var(--gold); }

/* ── WhatsApp Float ── */
#wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #22c35e;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(34,195,94,0.4);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
#wa-float svg { width: 28px; height: 28px; fill: #fff; display: block; }
#wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(34,195,94,0.55); }
#wa-float::before {
  content: '';
  position: absolute;
  inset: 0; border-radius: 50%;
  background: #22c35e;
  opacity: 0.45;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-content { text-align: center; }
.pre-wordmark {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--white);
  opacity: 0;
  animation: pre-fade-up 0.6s var(--ease) 0.1s forwards;
}
.pre-wordmark .accent { color: var(--gold); }
.pre-sub {
  font-family: "Space Grotesk", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--platinum-dim);
  margin-top: 10px;
  opacity: 0;
  animation: pre-fade-up 0.6s var(--ease) 0.25s forwards;
}
.pre-bar-wrap {
  width: 100px; height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 24px auto 0;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: pre-fade-up 0.5s ease 0.3s forwards;
}
.pre-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  width: 0%;
  animation: pre-bar-grow 0.85s var(--ease) 0.35s forwards;
}
@keyframes pre-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pre-bar-grow { to { width: 100%; } }

/* ── Legal Pages (Privacy Policy / Terms & Conditions) ── */
.policy-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.policy-wrap h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(8,18,38,0.08);
}
.policy-wrap h2:first-of-type { margin-top: 0; }
.policy-wrap p {
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 14px;
  font-size: 15px;
}
.policy-wrap ul {
  margin: 10px 0 18px 24px;
  color: var(--muted);
  line-height: 1.82;
  font-size: 15px;
}
.policy-wrap ul li { margin-bottom: 5px; }
.policy-wrap a { color: var(--gold); font-weight: 500; }
.policy-wrap a:hover { color: var(--gold-bright); }
.policy-wrap strong { color: var(--navy-900); font-weight: 600; }
.policy-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid rgba(8,18,38,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 44px;
  box-shadow: 0 2px 12px rgba(8,18,38,0.04);
}
.policy-meta-item {
  font-size: 13px;
  color: var(--muted);
  min-width: 140px;
}
.policy-meta-item strong {
  display: block;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.policy-meta-item a { color: var(--gold); }

/* ── Consent Checkbox ── */
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 16px 20px;
  background: rgba(8,18,38,0.025);
  border: 1px solid rgba(201,161,74,0.22);
  border-radius: var(--radius-sm);
}
.consent-field input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent-field label {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
  font-weight: 400;
}
.consent-field label a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(201,161,74,0.35);
  text-underline-offset: 2px;
}
.consent-field label a:hover { color: var(--gold-bright); }
