/* ═══════════════════════════════════════════════════════
   build.adveles.com — Stylesheet
   Shared architecture with adveles.com
═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: 'Outfit', sans-serif; background: #0C0C0C; color: #e0e0e0; font-size: 16px; overflow-x: hidden; }
button { font-family: 'Outfit', sans-serif; cursor: pointer; }
ul { list-style: none; }
a { text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --bg:        #0C0C0C;
  --surface:   #111111;
  --surface2:  #161616;
  --surface3:  #1E1E1E;
  --border:    #222222;
  --border2:   #2A2A2A;
  --blue:      #4F6EF7;
  --blue-dim:  rgba(79,110,247,0.12);
  --blue-glow: rgba(79,110,247,0.05);
  --green:     #22C55E;
  --green-dim: rgba(34,197,94,0.08);
  --green-glow:rgba(34,197,94,0.04);
  --white:     #FFFFFF;
  --gray:      #AAAAAA;
  --gray2:     #888888;
  --gray3:     #666666;
  --pad-x:     60px;
  --max-w:     1060px;
  --nav-h:     64px;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
}
.nav-logo { font-size: 24px; font-weight: 500; color: var(--white); letter-spacing: -0.5px; }
.nav-logo .br { color: var(--white); }
.nav-logo .vl { color: var(--blue); }
.nav-logo-sub { font-size: 12px; font-weight: 400; color: var(--gray3); margin-left: 4px; letter-spacing: 0; }

.nav-links { display: flex; gap: 30px; justify-content: center; align-items: center; }
.nav-links a { color: var(--gray); font-size: 14px; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }

.btn-nav-ghost {
  height: 36px; padding: 0 16px;
  background: transparent; border: 1px solid var(--border2); border-radius: 6px;
  color: var(--gray); font-size: 13px;
  transition: border-color .15s, color .15s;
}
.btn-nav-ghost:hover { border-color: #444; color: #ccc; }

.btn-nav-cta {
  height: 36px; padding: 0 20px;
  background: var(--green); border: none; border-radius: 6px;
  color: #fff; font-size: 13px; font-weight: 500;
  transition: opacity .15s;
}
.btn-nav-cta:hover { opacity: .88; }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; padding: 5px;
}
.nav-burger span { display: block; height: 2px; background: var(--gray); border-radius: 2px; transition: all .2s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(12,12,12,.98); z-index: 98;
  flex-direction: column; padding: 28px 24px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 15px 0; font-size: 20px; font-weight: 300; color: var(--white); border-bottom: 1px solid var(--border); }
.mobile-cta-btn { margin-top: 24px; padding: 14px; background: var(--green); border: none; border-radius: 8px; color: #fff; font-size: 15px; font-weight: 500; width: 100%; }
.mobile-langs { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }
.mobile-langs span { font-size: 13px; color: var(--gray2); cursor: pointer; }
.mobile-langs span.on { color: var(--blue); }

/* Language Switcher */
.lang-wrap { position: relative; padding-bottom: 8px; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 12px;
  background: transparent; border: 1px solid var(--border2); border-radius: 6px;
  color: var(--gray); font-size: 13px; transition: border-color .15s, color .15s;
}
.lang-btn:hover { border-color: #444; color: #ccc; }
.lang-btn .globe { font-size: 14px; }
.lang-btn .chev  { font-size: 9px; color: var(--gray2); margin-left: 1px; }
.lang-dd {
  position: absolute; top: 100%; right: 0;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 10px; padding: 6px; min-width: 180px;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  display: none; z-index: 200;
}
.lang-dd.open { display: block; }
.lang-dd-sec { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray3); padding: 6px 10px 4px; }
.lang-item { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 6px; cursor: pointer; transition: background .12s; }
.lang-item:hover { background: var(--surface3); }
.lang-item.on { background: rgba(79,110,247,.1); }
.lang-item .fl { font-size: 14px; width: 20px; text-align: center; }
.lang-item .ln { font-size: 13px; color: #ccc; }
.lang-item .lc { font-size: 10px; color: var(--gray2); margin-left: auto; }
.lang-item.on .ln { color: var(--blue); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  padding: 80px var(--pad-x) 80px;
  background: linear-gradient(180deg, #0e110e 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -60px; left: 30%;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(34,197,94,.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-text { text-align: left; }

/* Badge above headline */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25);
  border-radius: 20px; padding: 6px 16px; margin-bottom: 20px;
}
.hb-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; flex-shrink: 0;
  animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hb-text { font-size: 11px; font-weight: 500; color: var(--green); letter-spacing: .5px; }
.hb-sep  { color: rgba(34,197,94,.3); font-size: 11px; }
.hb-text2 { font-size: 11px; color: rgba(34,197,94,.7); font-weight: 300; }

.hero-eyebrow {
  display: inline-block;
  background: var(--blue-dim); border: 1px solid rgba(79,110,247,.3);
  color: var(--blue); font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(26px, 3.4vw, 48px); font-weight: 300; color: var(--white);
  line-height: 1.12; letter-spacing: -1.5px;
  margin: 0 0 20px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero h1 .bl { color: var(--blue); }

.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px); color: var(--gray); font-weight: 300;
  max-width: 440px; margin: 0 0 32px; line-height: 1.65;
}

.hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-hp { padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 500; transition: opacity .15s; display: inline-block; }
.btn-hp.green { background: var(--green); border: none; color: #fff; }
.btn-hp.green:hover { opacity: .88; }
.btn-hp.ghost { background: transparent; border: 1px solid var(--border2); color: var(--gray); }
.btn-hp.ghost:hover { border-color: #444; color: #ccc; }

/* Hero right — visual block */
.hero-visual {
  display: flex; flex-direction: column; gap: 12px;
}
.hv-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 22px;
}
.hv-card.hv-green { border-color: rgba(34,197,94,.25); background: linear-gradient(135deg, #0e120e 0%, #111 100%); }
.hv-card.hv-blue  { border-color: rgba(79,110,247,.22); background: linear-gradient(135deg, #0f1120 0%, #111 100%); }
.hv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; gap: 12px; }
.hv-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.hv-label.green { color: var(--green); }
.hv-label.blue  { color: var(--blue); }
.hv-tag {
  font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 4px;
}
.hv-tag.popular { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.hv-tag.classic { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(79,110,247,.3); }
.hv-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 6px; letter-spacing: -.2px; }
.hv-desc  { font-size: 13px; color: var(--gray2); line-height: 1.55; font-weight: 300; }

.hv-metrics { display: flex; gap: 20px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.hvm { text-align: center; }
.hvm-val { font-size: 20px; font-weight: 300; color: var(--white); letter-spacing: -0.5px; line-height: 1; }
.hvm-val.green { color: var(--green); }
.hvm-val.blue  { color: var(--blue); }
.hvm-key { font-size: 9px; color: var(--gray3); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════ */
.trust-bar {
  padding: 32px var(--pad-x); background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 780px; margin: 0 auto; gap: 0;
}
.ti { text-align: center; }
.ti .num { font-size: clamp(26px, 4vw, 36px); font-weight: 600; color: var(--white); letter-spacing: -1px; line-height: 1; }
.ti .num.green { color: var(--green); }
.ti .lbl { font-size: 10px; color: var(--gray2); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 5px; line-height: 1.4; }

/* ═══════════════════════════════════════════════════════
   TWO MODELS
═══════════════════════════════════════════════════════ */
.models {
  padding: 80px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 300; color: var(--white); letter-spacing: -.5px; margin-bottom: 8px; }
.section-head p  { color: var(--gray2); font-size: 14px; font-weight: 300; max-width: 520px; margin: 0 auto; line-height: 1.6; }

.models-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: var(--max-w); margin: 0 auto;
}
.model-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .2s;
}
.model-card.featured {
  border-color: rgba(34,197,94,.3);
  background: linear-gradient(145deg, #0c140c 0%, #111 100%);
  position: relative;
}
.model-card:not(.featured):hover { border-color: rgba(79,110,247,.4); }
.model-card.featured:hover { border-color: rgba(34,197,94,.5); }

.mc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.mc-icon { font-size: 32px; }
.mc-badge-pill {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  padding: 4px 10px; border-radius: 12px; white-space: nowrap;
}
.mc-badge-pill.green { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.3); }
.mc-badge-pill.blue  { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(79,110,247,.3); }

.model-card h3 { font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 8px; letter-spacing: -.3px; }
.model-card .model-sub { font-size: 14px; color: var(--gray2); font-weight: 300; margin-bottom: 24px; line-height: 1.55; }

.model-list { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ml-item { display: flex; align-items: flex-start; gap: 10px; }
.ml-ic {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}
.ml-ic.green { background: rgba(34,197,94,.15); color: var(--green); }
.ml-ic.blue  { background: var(--blue-dim); color: var(--blue); }
.ml-text { font-size: 14px; color: var(--gray); line-height: 1.5; font-weight: 300; }
.ml-text strong { color: var(--white); font-weight: 500; }

.model-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.model-bottom.green-border { border-color: rgba(34,197,94,.15); }
.model-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; padding: 10px 22px;
  border-radius: 8px; transition: opacity .15s;
}
.model-cta.green { background: var(--green); color: #fff; border: none; }
.model-cta.ghost { background: transparent; border: 1px solid var(--border2); color: var(--gray); }
.model-cta:hover { opacity: .88; }
.model-note { font-size: 12px; color: var(--gray3); margin-top: 10px; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   WHAT WE DO — STACK
═══════════════════════════════════════════════════════ */
.stack {
  padding: 80px var(--pad-x);
  background: #0a0a0a;
  border-bottom: 1px solid var(--border);
}
.stack-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; max-width: var(--max-w); margin: 0 auto;
}
.sk-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.sk-card:hover { border-color: rgba(79,110,247,.4); transform: translateY(-2px); }
.sk-img {
  height: 90px; background: var(--surface3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden; padding: 0;
}
.sk-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-img-icon { font-size: 28px; }
.sk-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.sk-tag { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px; color: var(--blue); margin-bottom: 5px; }
.sk-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.sk-desc { font-size: 11px; color: var(--gray2); line-height: 1.55; font-weight: 300; }

.stack-note {
  max-width: var(--max-w); margin: 24px auto 0;
  background: var(--blue-glow); border: 1px solid rgba(79,110,247,.15);
  border-radius: 10px; padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
}
.sn-icon { font-size: 18px; flex-shrink: 0; }
.sn-text { font-size: 13px; color: var(--gray); line-height: 1.55; font-weight: 300; }
.sn-text strong { color: var(--white); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   ECONOMICS
═══════════════════════════════════════════════════════ */
.economics {
  padding: 80px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.eco-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: var(--max-w); margin: 0 auto;
}
.et {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: border-color .2s;
}
.et.feat { border-color: rgba(34,197,94,.3); background: linear-gradient(145deg, #0c140c 0%, #111 100%); }
.et:not(.feat):hover { border-color: var(--border2); }
.et.feat:hover { border-color: rgba(34,197,94,.5); }

.et-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.3px;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 16px; width: fit-content;
}
.et-badge.blue  { background: var(--blue-dim); color: var(--blue); }
.et-badge.green { background: rgba(34,197,94,.15); color: var(--green); }
.et-badge.gray  { background: rgba(255,255,255,.06); color: var(--gray2); }

.et h3 { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.et .et-screens { font-size: 13px; color: var(--gray2); margin-bottom: 20px; font-weight: 300; }

.et-metrics { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.em-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.em-row:last-child { border-bottom: none; padding-bottom: 0; }
.em-key { font-size: 12px; color: var(--gray2); font-weight: 300; }
.em-val { font-size: 16px; font-weight: 500; color: var(--white); }
.em-val.green { color: var(--green); }
.em-val.muted { color: var(--gray); font-size: 14px; }

.et-foot { margin-top: auto; padding-top: 16px; }
.et-cta {
  width: 100%; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: opacity .15s;
}
.et-cta.green { background: var(--green); border: none; color: #fff; }
.et-cta.ghost { background: transparent; border: 1px solid var(--border2); color: var(--gray); }
.et-cta:hover { opacity: .88; }

.eco-disclaimer {
  max-width: var(--max-w); margin: 20px auto 0;
  text-align: center; font-size: 11px; color: var(--gray3); font-weight: 300;
}

/* ═══════════════════════════════════════════════════════
   ROADMAP
═══════════════════════════════════════════════════════ */
.roadmap {
  padding: 80px var(--pad-x);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.roadmap-track {
  max-width: var(--max-w); margin: 0 auto;
  position: relative;
}
/* Horizontal line */
.roadmap-track::before {
  content: ''; position: absolute;
  top: 28px; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, var(--border2) 0%, rgba(34,197,94,.4) 100%);
  z-index: 0;
}

.rm-phases {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; z-index: 1;
}
.rm-phase { display: flex; flex-direction: column; align-items: center; padding: 0 8px; }
.rm-node {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
  background: var(--surface3); border: 2px solid var(--border2);
  position: relative; transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.rm-node.done    { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.4); }
.rm-node.current { background: rgba(34,197,94,.15); border-color: var(--green); box-shadow: 0 0 20px rgba(34,197,94,.2); }
.rm-node.milestone { background: rgba(34,197,94,.2); border-color: var(--green); }
.rm-content { text-align: center; }
.rm-timing { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.3px; margin-bottom: 6px; }
.rm-timing.green { color: var(--green); }
.rm-timing.blue  { color: var(--blue); }
.rm-timing.gray  { color: var(--gray3); }
.rm-title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 6px; line-height: 1.35; }
.rm-items { display: flex; flex-direction: column; gap: 4px; }
.rm-item { font-size: 11px; color: var(--gray2); line-height: 1.45; font-weight: 300; }
.rm-item::before { content: '·  '; color: var(--gray3); }

/* Milestone special */
.rm-phase.is-milestone .rm-title { color: var(--green); }

/* ═══════════════════════════════════════════════════════
   WHAT'S INCLUDED — CHECKLIST
═══════════════════════════════════════════════════════ */
.included {
  padding: 80px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: var(--max-w); margin: 0 auto;
}
.inc-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 22px;
}
.inc-block h4 { font-size: 13px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.inc-list { display: flex; flex-direction: column; gap: 10px; }
.inc-row { display: flex; align-items: flex-start; gap: 10px; }
.inc-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700;
}
.inc-dot.yes { background: rgba(34,197,94,.15); color: var(--green); }
.inc-dot.no  { background: rgba(255,255,255,.04); color: var(--gray3); }
.inc-text { font-size: 13px; color: var(--gray); line-height: 1.45; font-weight: 300; }
.inc-text.muted { color: var(--gray3); text-decoration: line-through; }
.inc-text strong { color: var(--white); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq {
  padding: 80px var(--pad-x);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 700px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: transparent; border: none;
  color: var(--white); font-size: 15px; font-weight: 400; text-align: left;
  gap: 16px; cursor: pointer; transition: background .15s;
}
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-arrow { font-size: 12px; color: var(--gray2); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 22px 18px;
  font-size: 14px; color: var(--gray); line-height: 1.65; font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════════════════
   FOOTER CTA — FORM
═══════════════════════════════════════════════════════ */
.apply {
  padding: 80px var(--pad-x);
  background: linear-gradient(180deg, var(--bg) 0%, #0a0f0a 100%);
  border-bottom: 1px solid var(--border);
}
.apply-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.apply h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 300; color: var(--white); letter-spacing: -.5px; margin-bottom: 10px; }
.apply h2 em { font-style: normal; color: var(--green); }
.apply .apply-sub { font-size: 15px; color: var(--gray2); font-weight: 300; margin-bottom: 36px; line-height: 1.6; }

.apply-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  text-align: left;
}
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 12px; color: var(--gray2); margin-bottom: 6px; font-weight: 400; letter-spacing: .3px; }
.form-input {
  width: 100%; height: 44px; padding: 0 14px;
  background: var(--surface3); border: 1px solid var(--border2);
  border-radius: 8px; color: var(--white); font-size: 14px;
  outline: none; font-family: inherit; transition: border-color .15s;
}
.form-input:focus { border-color: var(--green); }
.form-select {
  width: 100%; height: 44px; padding: 0 14px;
  background: var(--surface3); border: 1px solid var(--border2);
  border-radius: 8px; color: var(--white); font-size: 14px;
  outline: none; font-family: inherit; appearance: none;
  cursor: pointer; transition: border-color .15s;
}
.form-select:focus { border-color: var(--green); }
.form-rows-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; height: 48px; background: var(--green); border: none;
  border-radius: 10px; color: #fff; font-size: 15px; font-weight: 500;
  font-family: inherit; cursor: pointer; transition: opacity .15s;
  margin-top: 8px;
}
.form-submit:hover { opacity: .88; }
.form-note { text-align: center; font-size: 12px; color: var(--gray3); margin-top: 12px; line-height: 1.5; }
.form-success {
  display: none; text-align: center; padding: 20px 0;
  color: var(--green); font-size: 16px; font-weight: 500;
}
.form-success .fs-sub { font-size: 13px; color: var(--gray2); font-weight: 300; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { padding: 52px var(--pad-x) 28px; background: #080808; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 220px auto auto; gap: 60px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.fb .nav-logo  { font-size: 18px; margin-bottom: 12px; display: block; }
.fb p { font-size: 12px; color: var(--gray3); line-height: 1.7; }
.fc h4 { font-size: 10px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.fc li { font-size: 13px; color: var(--gray3); margin-bottom: 10px; transition: color .15s; }
.fc li a { color: var(--gray3); text-decoration: none; transition: color .15s; }
.fc li a:hover { color: var(--gray); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #333; flex-wrap: wrap; gap: 12px; }
.fl { display: flex; gap: 12px; flex-wrap: wrap; }
.fl span { cursor: pointer; color: #333; transition: color .15s; }
.fl span:hover { color: #666; }
.fl span.on { color: var(--blue); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .models-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(3, 1fr); }
  .eco-tiers { grid-template-columns: 1fr; gap: 12px; }
  .rm-phases { grid-template-columns: 1fr; gap: 0; }
  .roadmap-track::before { display: none; }
  .rm-phase { flex-direction: row; align-items: flex-start; gap: 16px; padding: 0 0 24px; }
  .rm-node { margin-bottom: 0; flex-shrink: 0; }
  .rm-content { text-align: left; }
  .included-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 767px) {
  :root { --pad-x: 20px; }
  .nav-links { display: none; }
  .nav-right .btn-nav-ghost { display: none; }
  .nav-burger { display: flex; }
  .navbar { grid-template-columns: auto 1fr auto; }
  .hero h1 { letter-spacing: -1px; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-grid .sk-card:last-child { grid-column: 1 / -1; }
  .form-rows-2 { grid-template-columns: 1fr; }
  .apply-form { padding: 22px 18px; }
  .lang-wrap { display: none; }
}

/* ═══════════════════════════════════════════════════════
   RTL (Arabic)
═══════════════════════════════════════════════════════ */
[dir=rtl] .nav-logo { direction: ltr; unicode-bidi: embed; }
[dir=rtl] .lang-dd { right: auto; left: 0; }
[dir=rtl] .qc-drop { right: auto; left: 0; }
[dir=rtl] .fl { flex-direction: row-reverse; }
[dir=rtl] .footer-bottom { flex-direction: row-reverse; }
[dir=rtl] .footer-top { direction: ltr; }
[dir=rtl] .footer-top .fb, [dir=rtl] .footer-top .fc { direction: rtl; text-align: right; }
[dir=rtl] .hero-text { text-align: right; }
[dir=rtl] .hero-cta { justify-content: flex-start; }
[dir=rtl] input[type="email"], [dir=rtl] input[type="text"], [dir=rtl] .qc-input { direction: ltr; text-align: left; }
