*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
html, body { max-width:100%; overflow-x:hidden; }
body { font-family:'Inter',-apple-system,sans-serif; background:#000; color:#fff; overflow-x:hidden; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:1.8rem 4rem;
  display:flex; justify-content:space-between; align-items:center;
  background:linear-gradient(to bottom,rgba(0,0,0,0.6),transparent);
}
.nav-logo {
  display:flex; align-items:center; gap:11px;
  opacity:0; animation:fadeDown 1s 0.4s forwards; text-decoration:none;
}
.logo-mark { display:flex; flex-direction:column; gap:4px; }
.logo-mark span {
  display:block; height:2px; border-radius:2px;
  transition:width 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.logo-mark span:nth-child(1) { width:24px; background:#e8920f; }
.logo-mark span:nth-child(2) { width:16px; background:rgba(232,146,15,0.55); }
.logo-mark span:nth-child(3) { width:10px; background:rgba(232,146,15,0.25); }
.nav-logo:hover .logo-mark span:nth-child(1) { width:24px; }
.nav-logo:hover .logo-mark span:nth-child(2) { width:24px; background:rgba(232,146,15,0.75); }
.nav-logo:hover .logo-mark span:nth-child(3) { width:24px; background:rgba(232,146,15,0.5); }
.logo-text { font-size:0.88rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:#fff; }
.logo-text span { color:#e8920f; }
.nav-cta {
  font-size:0.72rem; font-weight:400; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.65); background:none; border:none;
  border-bottom:1px solid rgba(255,255,255,0.25); padding-bottom:2px;
  cursor:pointer; font-family:'Inter',sans-serif;
  opacity:0; animation:fadeDown 1s 0.6s forwards;
  transition:color 0.3s, border-color 0.3s;
}
.nav-cta:hover { color:#fff; border-color:rgba(255,255,255,0.7); }
.nav-links {
  display:flex; align-items:center; gap:2.2rem;
  opacity:0; animation:fadeDown 1s 0.6s forwards;
}
.nav-link {
  font-size:0.72rem; font-weight:400; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); background:none; border:none;
  cursor:pointer; font-family:'Inter',sans-serif;
  padding-bottom:2px; border-bottom:1px solid transparent;
  transition:color 0.3s, border-color 0.3s;
}
.nav-link:hover { color:#fff; border-color:rgba(255,255,255,0.4); }
.nav-link.active { color:#e8920f; border-color:#e8920f; }

/* ── INNER PAGES ── */
.inner-page {
  display:none; position:fixed; inset:0; z-index:150;
  background:#050505; overflow-y:auto; overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
}
.inner-page.visible {
  display:block;
  animation:pageIn 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes pageIn {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
.ip-hero {
  position:relative; height:62vh; min-height:480px;
  display:flex; align-items:flex-end; overflow:hidden;
}
.ip-hero img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
}
.ip-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.55) 55%, rgba(0,0,0,0.3) 100%);
}
.ip-hero-content { position:relative; z-index:2; padding:0 5rem 4rem; }
.ip-eyebrow {
  font-size:0.65rem; font-weight:400; letter-spacing:0.28em; text-transform:uppercase;
  color:#e8920f; margin-bottom:1.2rem; display:block;
}
.ip-title {
  font-size:clamp(3rem,6vw,6.5rem); font-weight:700;
  color:#fff; line-height:1.0; letter-spacing:-0.03em;
}
.ip-body { padding:5rem 5rem 4rem; max-width:1200px; }
.ip-lead {
  font-size:clamp(1.35rem,2.6vw,2.1rem); font-weight:300;
  color:rgba(255,255,255,0.72); line-height:1.6;
  max-width:760px; margin-bottom:4.5rem;
  border-left:3px solid #e8920f; padding-left:2rem;
}
.ip-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5px;
  margin-bottom:4.5rem;
}
.ip-card {
  background:#0d0d0d; padding:2.8rem 2.5rem;
  border-top:2px solid transparent;
  transition:border-color 0.35s, background 0.35s;
}
.ip-card:hover { background:#111; border-color:#e8920f; }
.ip-card-num {
  font-size:0.65rem; font-weight:500; letter-spacing:0.2em;
  text-transform:uppercase; color:#e8920f; margin-bottom:1.5rem; display:block;
}
.ip-card-title { font-size:1.45rem; font-weight:600; color:#fff; margin-bottom:1rem; line-height:1.25; }
.ip-card-body { font-size:0.95rem; font-weight:300; color:rgba(255,255,255,0.55); line-height:1.9; }
.ip-statement { background:#0a0a0a; padding:5rem; }
.ip-statement-text {
  font-size:clamp(1.8rem,3.2vw,3rem); font-weight:700;
  color:#fff; line-height:1.25; max-width:860px;
}
.ip-statement-text span { color:#e8920f; }
.ip-stats { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,0.06); }
.ip-stat { padding:3rem 2.5rem; border-right:1px solid rgba(255,255,255,0.06); }
.ip-stat:last-child { border-right:none; }
.ip-stat-num { font-size:4.5rem; font-weight:700; color:#e8920f; letter-spacing:-0.04em; line-height:1; margin-bottom:0.6rem; }
.ip-stat-label { font-size:0.9rem; font-weight:400; color:rgba(255,255,255,0.5); letter-spacing:0.04em; line-height:1.65; }
.ip-two-col { display:grid; grid-template-columns:1fr 1fr; gap:1.5px; margin-bottom:4.5rem; }
/* ── COURSE TICKER ── */
.course-ticker-wrap {
  background:#0a0a0a; padding:1.5rem 0;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
  overflow:hidden; position:relative;
}
.course-ticker-wrap::before, .course-ticker-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:80px; z-index:2;
}
.course-ticker-wrap::before { left:0; background:linear-gradient(to right,#0a0a0a,transparent); }
.course-ticker-wrap::after  { right:0; background:linear-gradient(to left,#0a0a0a,transparent); }
.course-ticker-track {
  display:flex; gap:0; white-space:nowrap;
  animation:tickerScroll 40s linear infinite;
}
.course-ticker-track:hover { animation-play-state:paused; }
@keyframes tickerScroll {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
.course-tag {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding:0.45rem 1.4rem;
  font-size:0.75rem; font-weight:400; letter-spacing:0.1em; text-transform:uppercase;
  color:rgba(255,255,255,0.5);
  border-right:1px solid rgba(255,255,255,0.08);
  white-space:nowrap;
  transition:color 0.3s;
}
.course-tag:hover { color:#e8920f; }
.course-tag .dot { width:4px; height:4px; border-radius:50%; background:#e8920f; opacity:0.5; }

/* ── TRUST STRIP ── */
.trust-strip {
  background:linear-gradient(135deg, #0d0a06 0%, #0a0a0a 100%);
  padding:4.5rem 5rem;
  border-top:1px solid rgba(232,146,15,0.15);
  border-bottom:1px solid rgba(232,146,15,0.15);
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:3rem;
}
.trust-big-num {
  font-size:clamp(5rem,10vw,9rem); font-weight:700; color:#e8920f;
  letter-spacing:-0.05em; line-height:0.9;
}
.trust-big-label {
  font-size:clamp(1rem,1.8vw,1.35rem); font-weight:300;
  color:rgba(255,255,255,0.65); line-height:1.5; margin-top:0.8rem;
  max-width:480px;
}
.trust-big-label strong { color:#fff; font-weight:600; }
.trust-since {
  font-size:0.65rem; letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(255,255,255,0.3); margin-top:1.5rem; display:block;
}

/* ── HOW IT WORKS ── */
.hiw-section { background:#050505; padding:6rem 5rem; }
.hiw-title {
  font-size:clamp(2.5rem,5vw,5rem); font-weight:700;
  color:#fff; letter-spacing:-0.03em; margin-bottom:1rem;
}
.hiw-title span { color:#e8920f; }
.hiw-subtitle {
  font-size:clamp(1rem,1.8vw,1.4rem); font-weight:300;
  color:rgba(255,255,255,0.5); margin-bottom:5rem; max-width:600px; line-height:1.6;
}
.hiw-steps { display:flex; flex-direction:column; gap:0; }
.hiw-step {
  display:grid; grid-template-columns:6rem 1fr;
  border-bottom:1px solid rgba(255,255,255,0.05);
  padding:4rem 0;
  transition:background 0.3s;
  position:relative;
}
.hiw-step:hover { background:rgba(255,255,255,0.01); }
.hiw-step-num {
  font-size:clamp(3rem,5vw,4.5rem); font-weight:700;
  color:rgba(232,146,15,0.18); letter-spacing:-0.04em; line-height:1;
  padding-top:0.4rem;
  transition:color 0.3s;
}
.hiw-step:hover .hiw-step-num { color:rgba(232,146,15,0.45); }
.hiw-step-content { padding-left:3rem; }
.hiw-step-label {
  font-size:0.65rem; font-weight:500; letter-spacing:0.22em; text-transform:uppercase;
  color:#e8920f; margin-bottom:1rem; display:block;
}
.hiw-step-title {
  font-size:clamp(1.8rem,3.5vw,3.2rem); font-weight:700;
  color:#fff; line-height:1.1; letter-spacing:-0.02em;
  margin-bottom:1.4rem;
}
.hiw-step-body {
  font-size:clamp(0.95rem,1.5vw,1.15rem); font-weight:300;
  color:rgba(255,255,255,0.55); line-height:1.85; max-width:680px;
}
.hiw-step-icon {
  position:absolute; right:0; top:50%; transform:translateY(-50%);
  font-size:3.5rem; opacity:0.06;
}

/* ── OFFICES ── */
.ip-offices {
  background:#050505;
  padding:5rem;
  border-top:1px solid rgba(255,255,255,0.05);
}
.ip-offices-header { margin-bottom:3.5rem; }
.ip-offices-title {
  font-size:clamp(2rem,4vw,3.5rem); font-weight:700;
  color:#fff; letter-spacing:-0.03em; line-height:1.1;
}
.ip-offices-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:1.5px;
}
.ip-office-card {
  background:#0d0d0d; padding:2.8rem 2.5rem;
  border-top:2px solid transparent;
  transition:border-color 0.35s, background 0.35s;
}
.ip-office-card:hover { background:#111; border-color:#e8920f; }
.ip-office-tag {
  font-size:0.58rem; font-weight:500; letter-spacing:0.2em;
  text-transform:uppercase; color:#e8920f;
  border:1px solid rgba(232,146,15,0.3);
  padding:0.3rem 0.8rem; display:inline-block;
  margin-bottom:1.2rem;
}
.ip-office-city {
  font-size:1.5rem; font-weight:700; color:#fff;
  margin-bottom:1rem; letter-spacing:-0.01em;
}
.ip-office-addr {
  font-size:0.88rem; font-weight:300; color:rgba(255,255,255,0.5);
  line-height:1.9; font-style:normal;
}
.ip-office-map {
  display:inline-block; margin-top:1.2rem;
  font-size:0.68rem; font-weight:400; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.4); text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.15);
  padding-bottom:2px; transition:color 0.3s, border-color 0.3s;
}
.ip-office-map:hover { color:#e8920f; border-color:#e8920f; }

/* ── INNER PAGE ACTIONS ── */
.ip-actions {
  display:flex; align-items:center; gap:1.5rem;
  padding:2.5rem 5rem 0;
}
.ip-back-btn {
  font-size:0.68rem; font-weight:400; letter-spacing:0.15em; text-transform:uppercase;
  color:rgba(255,255,255,0.45); background:none; border:none;
  cursor:pointer; font-family:'Inter',sans-serif;
  display:flex; align-items:center; gap:0.5rem;
  padding-bottom:2px; border-bottom:1px solid rgba(255,255,255,0.15);
  transition:color 0.3s, border-color 0.3s;
}
.ip-back-btn:hover { color:#fff; border-color:rgba(255,255,255,0.5); }
.ip-back-btn::before { content:'←'; font-size:0.85rem; }
.ip-contact-btn {
  font-size:0.68rem; font-weight:500; letter-spacing:0.15em; text-transform:uppercase;
  color:#fff; background:#e8920f; border:none;
  cursor:pointer; font-family:'Inter',sans-serif;
  padding:0.75rem 1.6rem;
  transition:background 0.3s, transform 0.2s;
  margin-left:auto;
}
.ip-contact-btn:hover { background:#cf7e0a; transform:translateY(-1px); }

/* ── FLOATING CONTACT ── */
#contact-float {
  position:fixed; bottom:2.5rem; right:2.5rem; z-index:999;
  background:#e8920f; color:#fff; border:none; font-family:'Inter',sans-serif;
  font-size:0.7rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  padding:1rem 1.8rem; cursor:pointer;
  box-shadow:0 8px 32px rgba(232,146,15,0.35);
  transition:background 0.3s, transform 0.2s;
}
#contact-float:hover { background:#cf7e0a; transform:translateY(-2px); }

/* ── SECTIONS ── */
section {
  position:relative; width:100%; height:100vh; min-height:620px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
section img.bg {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  transition:transform 9s ease, filter 1.2s ease;
}
section:hover img.bg { transform:scale(1.03); }
.overlay { position:absolute; inset:0; }
.content {
  position:relative; z-index:2; text-align:center;
  padding:0 2rem; max-width:900px;
}
.eyebrow {
  font-size:0.65rem; font-weight:400; letter-spacing:0.28em; text-transform:uppercase;
  color:rgba(255,255,255,0.5); margin-bottom:1.8rem; display:block;
}
.headline {
  font-size:clamp(3.2rem,7vw,7rem); font-weight:400;
  line-height:1.04; letter-spacing:-0.03em; color:#fff; margin-bottom:1.8rem;
  text-shadow:0 2px 40px rgba(0,0,0,0.8);
}
#hero .headline {
  font-size:clamp(3.8rem,9vw,9rem); font-weight:400;
  line-height:1.0; letter-spacing:-0.035em;
}
.subline {
  font-size:clamp(0.95rem,1.5vw,1.12rem); font-weight:300;
  color:rgba(255,255,255,0.6); letter-spacing:0.025em; line-height:1.9;
  text-shadow:0 1px 20px rgba(0,0,0,0.9);
}
.section-number {
  position:absolute; bottom:2rem; right:3rem;
  font-size:0.6rem; font-weight:300; letter-spacing:0.2em;
  color:rgba(255,255,255,0.18); z-index:2;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position:absolute; bottom:3rem; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; animation:fadeUp 1s 1.8s forwards;
}
.scroll-hint span { font-size:0.6rem; letter-spacing:0.22em; text-transform:uppercase; color:rgba(255,255,255,0.3); }
.scroll-line {
  width:1px; height:48px;
  background:linear-gradient(to bottom,rgba(255,255,255,0.45),transparent);
  animation:scrollPulse 2s infinite;
}

/* ── STARS CANVAS ── */
#stars-canvas { position:fixed; inset:0; z-index:1; pointer-events:none; opacity:0.5; }

/* ═══════════════════════════════════════════
   CONFUSION → CLARITY COLOR JOURNEY
   S1: deepest grey/BW (most confused)
   S2: slightly warmer grey
   S3: hints of sepia (stirring)
   S4: warm tones emerging
   S5: color breaking through
   S6: full natural color (clarity arrived)
   CTA: warm amber light (future)
═══════════════════════════════════════════ */

/* HERO — deep grey, heavy confusion */
#hero img.bg { filter:grayscale(80%) brightness(0.5) contrast(1.1); }
#hero .overlay {
  background:
    radial-gradient(ellipse 40% 50% at 62% 65%, rgba(232,146,15,0.18) 0%, transparent 70%),
    linear-gradient(170deg,rgba(0,0,0,0.82) 0%,rgba(0,0,0,0.38) 50%,rgba(0,0,0,0.72) 100%);
}
#hero .eyebrow  { opacity:0; animation:fadeUp 1s 0.2s forwards; }
#hero .headline { opacity:0; animation:fadeUp 1.2s 0.4s forwards; }
#hero .subline  { opacity:0; animation:fadeUp 1.2s 0.65s forwards; }

/* S2 — still grey, slightly brighter */
#s2 img.bg { filter:grayscale(100%) brightness(0.52) contrast(1.08); }
#s2 .overlay { background:linear-gradient(to right,rgba(0,0,0,0.05) 20%,rgba(0,0,0,0.85) 100%); }
#s2 .content { text-align:right; margin-left:auto; margin-right:7vw; }

/* S3 — grey but warmer, confusion at its peak */
#s3 img.bg { filter:grayscale(85%) brightness(0.5) sepia(20%) contrast(1.1); }
#s3 .overlay { background:linear-gradient(to top,rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.2) 65%,rgba(0,0,0,0.5) 100%); }
#s3 .content { text-align:left; margin-right:auto; margin-left:8vw; }

/* S4 — guidance arrives, warmth breaking in */
#s4 img.bg { filter:grayscale(60%) brightness(0.55) sepia(30%); }
#s4 .overlay { background:linear-gradient(to left,rgba(0,0,0,0.05) 20%,rgba(0,0,0,0.82) 100%); }
#s4 .content { text-align:left; margin-right:auto; margin-left:8vw; }

/* S5 — color coming through, focus, clarity forming */
#s5 img.bg { filter:grayscale(30%) brightness(0.58) sepia(15%); }
#s5 .overlay { background:linear-gradient(to bottom,rgba(0,0,0,0.08) 0%,rgba(0,0,0,0.78) 100%); }

/* S6 — full color arrives. Clarity. Confidence. Energy. */
#s6 img.bg { filter:grayscale(0%) brightness(0.78) saturate(1.3) contrast(1.05); }
#s6 .overlay { background:linear-gradient(135deg,rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.05) 45%,rgba(0,0,0,0.5) 100%); }

/* ── CTA — warm amber world ── */
#cta { height:auto; min-height:100vh; background:#060608; flex-direction:column; }
#cta .content { padding:11rem 2rem 7rem; }
#cta .headline { font-size:clamp(2.8rem,6.5vw,5.8rem); font-weight:200; line-height:1.02; margin-bottom:2.2rem; }
#cta .headline em { font-style:normal; color:rgba(255,255,255,0.22); }
#cta .subline { color:rgba(255,255,255,0.32); margin-bottom:3.5rem; }
.cta-btn {
  display:inline-block; font-size:0.72rem; font-weight:500; letter-spacing:0.15em; text-transform:uppercase;
  color:#fff; border:1px solid rgba(255,255,255,0.3); padding:1.2rem 3.5rem;
  cursor:pointer; background:none; font-family:'Inter',sans-serif;
  transition:background 0.4s, border-color 0.4s;
}
.cta-btn:hover { background:rgba(255,255,255,0.07); border-color:rgba(255,255,255,0.65); }

/* ── CLARITY PROGRESS INDICATOR ── */
#clarity-bar {
  position:fixed; top:0; left:0; height:2px; z-index:9999;
  background:linear-gradient(to right,rgba(255,255,255,0.3),#e8920f);
  width:0%; transition:width 0.4s ease;
  pointer-events:none;
}

/* ── FORM MODAL ── */
#form-overlay {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,0.88);
  align-items:center; justify-content:center; padding:1rem;
}
#form-overlay.open { display:flex; }
.form-panel {
  background:#0c1014; border:1px solid rgba(255,255,255,0.07);
  width:100%; max-width:580px; max-height:92vh; overflow-y:auto;
  padding:3.5rem 3rem 3rem; position:relative;
  animation:slideUp 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.form-close {
  position:absolute; top:1.4rem; right:1.6rem;
  background:none; border:none; color:rgba(255,255,255,0.3);
  font-size:1.6rem; cursor:pointer; font-family:'Inter',sans-serif; transition:color 0.2s;
}
.form-close:hover { color:#fff; }
.form-eyebrow { font-size:0.62rem; font-weight:500; letter-spacing:0.24em; text-transform:uppercase; color:#e8920f; margin-bottom:0.9rem; }
.form-title { font-size:1.8rem; font-weight:200; line-height:1.18; color:#fff; margin-bottom:0.5rem; }
.form-subtitle { font-size:0.8rem; color:rgba(255,255,255,0.32); margin-bottom:2.5rem; line-height:1.75; }
.form-group { margin-bottom:1.5rem; }
.form-group label {
  display:block; font-size:0.62rem; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.38); margin-bottom:0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; background:transparent;
  border:none; border-bottom:1px solid rgba(255,255,255,0.15);
  color:#fff; font-family:'Inter',sans-serif;
  font-size:0.9rem; font-weight:300; padding:0.75rem 0;
  outline:none; transition:border-color 0.3s;
  border-radius:0; -webkit-appearance:none; appearance:none;
}
.form-group select { cursor:pointer; }
.form-group select option { background:#0c1014; color:#fff; }
.form-group textarea { resize:none; min-height:82px; line-height:1.65; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color:#e8920f; }
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,0.2); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.form-submit {
  width:100%; background:#e8920f; color:#fff; border:none;
  font-family:'Inter',sans-serif; font-size:0.72rem; font-weight:500;
  letter-spacing:0.16em; text-transform:uppercase;
  padding:1.15rem 2rem; cursor:pointer; transition:background 0.3s; margin-top:0.75rem;
}
.form-submit:hover { background:#cf7e0a; }
.form-note { font-size:0.65rem; color:rgba(255,255,255,0.2); text-align:center; margin-top:1.1rem; line-height:1.75; }
.form-success { display:none; text-align:center; padding:3rem 0 1rem; }
.success-icon {
  width:54px; height:54px; border:1px solid #e8920f; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.5rem; color:#e8920f; font-size:1.3rem;
}
.form-success h3 { font-size:1.55rem; font-weight:200; color:#fff; margin-bottom:0.8rem; }
.form-success p { font-size:0.82rem; color:rgba(255,255,255,0.38); line-height:1.85; }

/* ── MAIN FOOTER ── */
footer{background:#060606;border-top:1px solid rgba(255,255,255,0.06);}
.footer-main{padding:4rem 5rem 3rem;display:flex;justify-content:space-between;align-items:flex-start;gap:3rem;flex-wrap:wrap;}
.footer-brand-col{}
.footer-brand-name{font-size:1.6rem;font-weight:700;color:#fff;line-height:1;}
.footer-brand-name span{color:#e8920f;}
.footer-tagline{font-size:0.6rem;letter-spacing:0.18em;text-transform:uppercase;color:rgba(255,255,255,0.3);margin-top:0.4rem;display:block;}
.footer-brand-statement{font-size:0.9rem;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.7;max-width:300px;margin-top:1.5rem;}
.footer-brand-statement strong{color:#e8920f;font-weight:500;}
.footer-right{display:flex;flex-direction:column;align-items:flex-end;gap:1.5rem;}
.footer-email-block{display:flex;align-items:center;gap:0.8rem;text-decoration:none;}
.footer-email-icon{width:18px;height:18px;border:1px solid rgba(255,255,255,0.2);display:flex;align-items:center;justify-content:center;font-size:0.6rem;}
.footer-email-text{font-size:0.8rem;font-weight:300;color:rgba(255,255,255,0.55);border-bottom:1px solid rgba(255,255,255,0.15);padding-bottom:1px;transition:color 0.3s;}
.footer-email-block:hover .footer-email-text{color:#e8920f;}
.footer-social{display:flex;gap:0.8rem;}
.footer-social a{width:36px;height:36px;border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;text-decoration:none;color:rgba(255,255,255,0.4);font-size:0.7rem;font-weight:500;transition:color 0.3s,border-color 0.3s;}
.footer-social a:hover{color:#e8920f;border-color:#e8920f;}
.footer-strip{background:#040404;padding:1.2rem 5rem;display:flex;justify-content:space-between;align-items:center;border-top:1px solid rgba(255,255,255,0.04);flex-wrap:wrap;gap:0.8rem;}
.footer-strip-left{display:flex;flex-direction:column;gap:0.3rem;}
.footer-strip p{font-size:0.6rem;color:rgba(255,255,255,0.2);letter-spacing:0.04em;}
.footer-legal{display:flex;gap:1.5rem;flex-wrap:wrap;}
.footer-legal a{font-size:0.6rem;color:rgba(255,255,255,0.3);text-decoration:none;letter-spacing:0.04em;transition:color 0.3s;}
.footer-legal a:hover{color:#e8920f;}

/* ── REVEAL ── */
.reveal {
  opacity:0; transform:translateY(26px);
  transition:opacity 0.95s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.95s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.delay-1 { transition-delay:0.15s; }
.reveal.delay-2 { transition-delay:0.3s; }
.reveal.delay-3 { transition-delay:0.45s; }
.reveal.visible { opacity:1; transform:translateY(0); }

@keyframes fadeUp   { from{opacity:0;transform:translateY(22px);}  to{opacity:1;transform:translateY(0);} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-10px);} to{opacity:1;transform:translateY(0);} }
@keyframes slideUp  { from{opacity:0;transform:translateY(26px);}  to{opacity:1;transform:translateY(0);} }
@keyframes scrollPulse {
  0%  {opacity:0.35;transform:scaleY(1);}
  50% {opacity:1;  transform:scaleY(1.25);}
  100%{opacity:0.35;transform:scaleY(1);}
}

@media(max-width:768px){
  nav { padding:1rem 1.2rem; }
  .nav-links { gap:1rem; }
  .nav-link { font-size:0.6rem; letter-spacing:0.08em; }
  .nav-cta { font-size:0.6rem; }
  #s2 .content, #s3 .content, #s4 .content { text-align:center; margin:0; }
  .form-panel { padding:2.5rem 1.5rem 2rem; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-main { padding:3rem 1.5rem 2.5rem; flex-direction:column; }
  .footer-right { align-items:flex-start; }
  .footer-strip { padding:1rem 1.5rem; flex-direction:column; align-items:flex-start; gap:0.75rem; }
  .footer-legal { flex-wrap:wrap; gap:1rem; }
  #contact-float { bottom:1.2rem; right:1.2rem; padding:0.85rem 1.3rem; }
  /* Inner pages mobile */
  .ip-hero { height:50vh; min-height:320px; }
  .ip-hero-content { padding:0 1.5rem 2.5rem; }
  .ip-body { padding:3rem 1.5rem 2.5rem; }
  .ip-lead { font-size:1.15rem; padding-left:1.2rem; margin-bottom:3rem; }
  .ip-grid { grid-template-columns:1fr; gap:1.5px; }
  .ip-two-col { grid-template-columns:1fr; }
  .ip-card { padding:2rem 1.5rem; }
  .ip-card-title { font-size:1.2rem; }
  .ip-card-body { font-size:0.88rem; }
  .ip-statement { padding:3rem 1.5rem; }
  .ip-stats { grid-template-columns:1fr; }
  .ip-stat { border-right:none; border-bottom:1px solid rgba(255,255,255,0.06); }
  .ip-stat:last-child { border-bottom:none; }
  .ip-stat-num { font-size:3rem; }
  .ip-actions { padding:1.5rem 1.5rem 0; flex-wrap:wrap; gap:1rem; }
  .ip-contact-btn { margin-left:0; }
  .trust-strip { padding:3rem 1.5rem; flex-direction:column; gap:2rem; }
  .trust-big-num { font-size:clamp(3.5rem,12vw,5rem); }
  .hiw-section { padding:3.5rem 1.5rem; }
  .hiw-step { grid-template-columns:3.5rem 1fr; padding:2.5rem 0; }
  .hiw-step-content { padding-left:1.2rem; }
  .hiw-step-num { font-size:2.5rem; }
  .hiw-step-icon { display:none; }
  .ip-offices { padding:3rem 1.5rem; }
  .ip-offices-grid { grid-template-columns:1fr; }
  .ip-office-card { padding:2rem 1.5rem; }
  .course-ticker-wrap::before, .course-ticker-wrap::after { width:40px; }
}
@media(max-width:480px){
  nav { padding:0.9rem 1rem; }
  .nav-links { gap:0.7rem; }
  .nav-link { font-size:0.55rem; letter-spacing:0.06em; }
  .logo-text { font-size:0.78rem; }
  .ip-title { font-size:2.5rem; }
  .hiw-step-title { font-size:1.6rem; }
}

/* ── LANGUAGE SWITCHER ── */
.nav-lang-wrap { position:relative; }
.lang-dropdown {
  display:none; position:absolute; top:calc(100% + 12px); right:0;
  background:#0d0d0d; border:1px solid rgba(255,255,255,0.1);
  min-width:140px; z-index:999; padding:0.4rem 0;
  box-shadow:0 12px 40px rgba(0,0,0,0.6);
}
.lang-dropdown.open { display:block; }
.lang-dropdown button {
  display:block; width:100%; padding:0.7rem 1.2rem;
  font-size:0.78rem; font-weight:400; color:rgba(255,255,255,0.6);
  background:none; border:none; cursor:pointer; font-family:'Inter',sans-serif;
  text-align:left; letter-spacing:0.03em;
  transition:color 0.2s, background 0.2s;
}
.lang-dropdown button:hover { color:#e8920f; background:rgba(232,146,15,0.05); }

/* ── VIDEO HERO OVERLAY ── */
.hero-video-wrap {
  position:absolute; inset:0; width:100%; height:100%;
  overflow:hidden; z-index:0;
}
.hero-video-wrap video {
  width:100%; height:100%; object-fit:cover;
  filter:brightness(0.35) grayscale(40%);
}
.hero-video-fallback { display:none; }
#hero .content { z-index:3; }
#hero .overlay { z-index:1; }

/* ── GLOBAL FOOTER on inner pages ── */
.ip-global-footer {
  background:#060606;
  padding:3rem 5rem 2rem;
  border-top:1px solid rgba(255,255,255,0.06);
}
.ip-global-footer-top {
  display:flex; justify-content:space-between; align-items:flex-start;
  flex-wrap:wrap; gap:2rem; margin-bottom:2rem;
  padding-bottom:2rem; border-bottom:1px solid rgba(255,255,255,0.05);
}
.ip-footer-brand { font-size:1.1rem; font-weight:700; color:#fff; }
.ip-footer-brand span { color:#e8920f; }
.ip-footer-tag { font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-top:0.3rem; display:block; }
.ip-footer-links { display:flex; gap:2rem; flex-wrap:wrap; align-items:center; }
.ip-footer-links a {
  font-size:0.68rem; color:rgba(255,255,255,0.4); text-decoration:none;
  letter-spacing:0.08em; text-transform:uppercase;
  transition:color 0.3s;
}
.ip-footer-links a:hover { color:#e8920f; }
.ip-footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:0.8rem;
}
.ip-footer-copy { font-size:0.6rem; color:rgba(255,255,255,0.2); letter-spacing:0.04em; }
.ip-footer-email a { font-size:0.68rem; color:rgba(255,255,255,0.35); text-decoration:none; transition:color 0.3s; }
.ip-footer-email a:hover { color:#e8920f; }

/* ── ARTICLES PAGE ── */
.art-hero {
  background:#050505; padding:8rem 5rem 5rem;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.art-hero-eyebrow { font-size:0.65rem; font-weight:500; letter-spacing:0.25em; text-transform:uppercase; color:#e8920f; margin-bottom:1.2rem; display:block; }
.art-hero-title {
  font-size:clamp(3rem,6vw,6rem); font-weight:700;
  color:#fff; line-height:1.0; letter-spacing:-0.04em; margin-bottom:1.2rem;
}
.art-hero-sub { font-size:clamp(1rem,1.8vw,1.35rem); font-weight:300; color:rgba(255,255,255,0.5); max-width:560px; line-height:1.65; }
.art-featured {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:60vh; border-bottom:1px solid rgba(255,255,255,0.05);
}
.art-featured-img {
  position:relative; overflow:hidden; background:#111;
}
.art-featured-img img { width:100%; height:100%; object-fit:cover; filter:brightness(0.75); transition:transform 8s ease; }
.art-featured-img:hover img { transform:scale(1.04); }
.art-featured-img .art-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to right, rgba(5,5,5,0) 50%, rgba(5,5,5,0.4) 100%);
}
.art-featured-content {
  background:#080808; padding:4rem;
  display:flex; flex-direction:column; justify-content:center;
}
.art-tag {
  display:inline-block; font-size:0.55rem; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase;
  padding:0.35rem 0.9rem; margin-bottom:1.8rem;
  border:1px solid rgba(232,146,15,0.45); color:#e8920f;
}
.art-card-title {
  font-size:clamp(1.6rem,3vw,2.8rem); font-weight:700;
  color:#fff; line-height:1.15; letter-spacing:-0.02em; margin-bottom:1.2rem;
}
.art-card-body { font-size:0.95rem; font-weight:300; color:rgba(255,255,255,0.55); line-height:1.85; margin-bottom:2rem; }
.art-read-more {
  font-size:0.68rem; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(255,255,255,0.45); background:none; border:none;
  cursor:pointer; font-family:'Inter',sans-serif;
  display:inline-flex; align-items:center; gap:0.5rem;
  padding-bottom:2px; border-bottom:1px solid rgba(255,255,255,0.2);
  transition:color 0.3s, border-color 0.3s;
}
.art-read-more:hover { color:#e8920f; border-color:#e8920f; }
.art-grid-section { padding:5rem; background:#050505; }
.art-grid-title { font-size:clamp(1.5rem,2.5vw,2.2rem); font-weight:700; color:#fff; letter-spacing:-0.02em; margin-bottom:3rem; }
.art-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5px; margin-bottom:5rem; }
.art-card {
  background:#0d0d0d; display:flex; flex-direction:column;
  border-top:2px solid transparent;
  transition:border-color 0.35s, background 0.35s; overflow:hidden;
}
.art-card:hover { background:#111; border-color:#e8920f; }
.art-card-img { height:200px; overflow:hidden; }
.art-card-img img { width:100%; height:100%; object-fit:cover; filter:brightness(0.65); transition:transform 6s ease; }
.art-card:hover .art-card-img img { transform:scale(1.05); }
.art-card-content { padding:2rem 2rem 2.5rem; flex:1; display:flex; flex-direction:column; }
.art-card-label { font-size:0.55rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:#e8920f; margin-bottom:0.8rem; display:block; }
.art-card-heading { font-size:1.2rem; font-weight:600; color:#fff; line-height:1.3; margin-bottom:0.8rem; }
.art-card-snip { font-size:0.85rem; font-weight:300; color:rgba(255,255,255,0.45); line-height:1.8; flex:1; }
.art-divider { border:none; border-top:1px solid rgba(255,255,255,0.05); margin:0 5rem 4rem; }

/* ── LEGAL PAGES ── */
.legal-page { padding:8rem 5rem 5rem; max-width:880px; }
.legal-title { font-size:clamp(2rem,4vw,3.5rem); font-weight:700; color:#fff; letter-spacing:-0.03em; margin-bottom:0.6rem; }
.legal-date { font-size:0.7rem; color:rgba(255,255,255,0.3); letter-spacing:0.1em; margin-bottom:3.5rem; display:block; }
.legal-section { margin-bottom:2.8rem; }
.legal-section h3 { font-size:1.15rem; font-weight:600; color:#fff; margin-bottom:0.9rem; }
.legal-section p { font-size:0.92rem; font-weight:300; color:rgba(255,255,255,0.55); line-height:1.9; }
.legal-section ul { padding-left:1.5rem; }
.legal-section ul li { font-size:0.92rem; font-weight:300; color:rgba(255,255,255,0.55); line-height:1.9; margin-bottom:0.4rem; }
.legal-highlight { color:#e8920f; }

@media(max-width:768px){
  .art-featured { grid-template-columns:1fr; }
  .art-featured-img { height:280px; }
  .art-featured-content { padding:2.5rem 1.5rem; }
  .art-hero { padding:6rem 1.5rem 3rem; }
  .art-grid-section { padding:3rem 1.5rem; }
  .art-grid { grid-template-columns:1fr; }
  .legal-page { padding:6rem 1.5rem 3rem; }
  .ip-global-footer { padding:2.5rem 1.5rem 1.5rem; }
  .ip-footer-links { gap:1.2rem; }
  .lang-dropdown { right:auto; left:0; }
}

/* --- production refinements: about + offices --- */
#page-about .ip-body,
#page-about .trust-strip,
#page-about .ip-offices,
#page-about .ip-statement,
#page-about > div[style*="padding:2.5rem 5rem"] {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
#page-about .ip-grid { gap: 16px; }
#page-about .ip-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 2.3rem 2rem;
  background: linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(11,11,11,0.98) 100%);
}
#page-about .trust-strip {
  border-radius: 24px;
  margin-top: 1.5rem;
  padding: 3.8rem 4rem;
}
#page-about .ip-offices {
  padding: 4rem 5rem 5rem;
}
#page-about .ip-offices-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 16px;
}
#page-about .ip-office-card {
  min-height: 230px;
  padding: 2rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(17,17,17,1) 0%, rgba(10,10,10,1) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
#page-about .ip-office-city { margin-bottom: 0.8rem; }
#page-about .ip-office-addr { font-size: 0.84rem; line-height: 1.8; }
#page-about .ip-office-tag { margin-bottom: 1rem; }
#page-about .ip-statement { border-radius: 24px; }
body.rtl-active .ip-actions,
body.rtl-active .footer-main,
body.rtl-active .footer-strip,
body.rtl-active .ip-global-footer-top,
body.rtl-active .ip-footer-bottom,
body.rtl-active .trust-strip {
  direction: rtl;
}
body.rtl-active .ip-lead { border-left: none; border-right: 3px solid #e8920f; padding-left: 0; padding-right: 2rem; }
@media(max-width:768px){
  #page-about .trust-strip { padding: 2.5rem 1.5rem; border-radius: 18px; }
  #page-about .ip-grid { gap: 12px; }
  #page-about .ip-card { padding: 1.8rem 1.4rem; border-radius: 14px; }
  #page-about .ip-offices { padding: 3rem 1.5rem; }
  #page-about .ip-offices-grid { grid-template-columns: 1fr; gap: 12px; }
  #page-about .ip-office-card { min-height: auto; padding: 1.7rem 1.4rem; border-radius: 14px; }
}

#cookie-banner{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  padding:16px 18px;
  background:rgba(10,10,10,0.96);
  color:#fff;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 18px 50px rgba(0,0,0,0.45);
  z-index:10000;
  backdrop-filter:blur(10px);
}
#cookie-banner .cookie-text{
  font-size:0.85rem;
  line-height:1.7;
  color:rgba(255,255,255,0.76);
  max-width:760px;
}
#cookie-banner .cookie-text a{
  color:#e8920f;
  text-decoration:none;
}
#cookie-banner .cookie-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
#cookie-banner button{
  padding:10px 18px;
  border:none;
  cursor:pointer;
  font-size:0.74rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-family:'Inter',-apple-system,sans-serif;
}
#cookie-banner .cookie-accept{
  background:#e8920f;
  color:#fff;
}
#cookie-banner .cookie-reject{
  background:#1d1d1d;
  color:#cfcfcf;
  border:1px solid rgba(255,255,255,0.08);
}
@media(max-width:768px){
  #cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:14px;
  }
  #cookie-banner .cookie-text{
    font-size:0.8rem;
  }
  #cookie-banner button{
    width:100%;
  }
  #cookie-banner .cookie-actions{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
  }
}
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}
#form-status{
  line-height:1.6;
}
.form-success p{
  margin-top:0.55rem;
}
