/* ═════════════════════════════════════════════════════
   invest.adveles.com — Main Stylesheet
═════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   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;
  --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-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-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.btn-nav-cta {
  height: 36px; padding: 0 20px; background: var(--blue);
  border: none; border-radius: 6px; color: #fff; font-size: 13px; font-weight: 500; transition: opacity .15s;
}
.btn-nav-cta:hover { opacity: .88; }
.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; }
.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(--blue); 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); }

/* ═══════════════════════════════════════════
   SHARED LAYOUT
═══════════════════════════════════════════ */
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.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;
}
.eyebrow.green { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: var(--green); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 100px var(--pad-x) 90px;
  background: linear-gradient(180deg, #111 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(79,110,247,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.hero h1 {
  font-size: clamp(30px, 4.5vw, 58px); font-weight: 300; color: var(--white);
  line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero h1 strong { font-weight: 600; }
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px); color: var(--gray); font-weight: 300;
  max-width: 560px; margin: 0 auto 40px; line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 36px; border-radius: 8px; font-size: 15px; font-weight: 500;
  background: var(--blue); border: none; color: #fff; transition: opacity .15s;
}
.btn-primary:hover { opacity: .88; }
.btn-ghost {
  padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 400;
  background: transparent; border: 1px solid var(--border2); color: var(--gray); transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: #444; color: #ddd; }

/* Hero stat pills */
.hero-stats {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 48px;
}
.hstat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 22px; text-align: center; min-width: 140px;
}
.hstat .sv { font-size: 26px; font-weight: 300; color: var(--white); letter-spacing: -1px; line-height: 1; }
.hstat .sv em { font-style: normal; color: var(--green); }
.hstat .sk { font-size: 11px; color: var(--gray2); text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; line-height: 1.4; }

/* ═══════════════════════════════════════════
   THE GAP
═══════════════════════════════════════════ */
.gap-section {
  padding: 80px var(--pad-x); background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.gap-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gap-text h2 {
  font-size: clamp(24px, 3vw, 40px); font-weight: 300; color: var(--white);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px;
}
.gap-text h2 em { font-style: normal; color: var(--blue); }
.gap-text p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.gap-visual {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 14px;
}
.gap-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface3); border-radius: 10px; padding: 16px 20px;
  border: 1px solid var(--border);
}
.gap-row-label { font-size: 14px; color: var(--gray); display: flex; align-items: center; gap: 10px; }
.gap-row-label .flag { font-size: 18px; }
.gap-row-status {
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 20px;
}
.gap-row-status.none { background: rgba(34,197,94,.1); color: var(--green); }
.gap-row-status.none::before { content: '● '; font-size: 8px; vertical-align: middle; }
.gap-caption { font-size: 12px; color: var(--gray3); text-align: center; margin-top: 4px; }

/* ═══════════════════════════════════════════
   MARKET BY REGION
═══════════════════════════════════════════ */
.market-section {
  padding: 80px var(--pad-x); background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.market-head { text-align: center; margin-bottom: 48px; }
.market-head h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 300; color: var(--white); letter-spacing: -.8px; margin-bottom: 10px; }
.market-head p { font-size: 14px; color: var(--gray2); }

/* Region tabs */
.region-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.rtab {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--gray); font-size: 14px; cursor: pointer;
  transition: all .15s;
}
.rtab:hover { border-color: rgba(79,110,247,.4); color: var(--white); }
.rtab.active { background: var(--blue-dim); border-color: rgba(79,110,247,.5); color: var(--white); }
.rtab .rflag { font-size: 18px; }

/* Region panels */
.region-panel { display: none; }
.region-panel.active { display: block; }

.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--max-w); margin: 0 auto 32px; }
.mstat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px 20px; text-align: center;
}
.mstat .mv { font-size: clamp(26px, 3vw, 36px); font-weight: 300; color: var(--white); letter-spacing: -1px; line-height: 1; }
.mstat .mv em { font-style: normal; color: var(--blue); }
.mstat .mv.green { color: var(--green); }
.mstat .mk { font-size: 11px; color: var(--gray2); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; line-height: 1.4; }
.mstat .ms { font-size: 11px; color: var(--gray3); margin-top: 4px; }

.market-note {
  max-width: var(--max-w); margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.market-note .mn-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.market-note .mn-text { font-size: 13px; color: var(--gray2); line-height: 1.65; }
.market-note .mn-text strong { color: var(--white); font-weight: 500; }
.data-badge {
  display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .5px;
  background: rgba(255,200,0,.08); border: 1px solid rgba(255,200,0,.2); color: #F5C842;
  padding: 2px 8px; border-radius: 4px; margin-left: 6px; vertical-align: middle;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (INVESTMENT MODEL)
═══════════════════════════════════════════ */
.how-section {
  padding: 80px var(--pad-x); background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.how-head { text-align: center; margin-bottom: 56px; }
.how-head h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 300; color: var(--white); letter-spacing: -.8px; margin-bottom: 10px; }
.how-head p { font-size: 14px; color: var(--gray2); }

.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: var(--max-w); margin: 0 auto; position: relative;
}
.how-steps::before {
  content: ''; position: absolute; top: 26px;
  left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: linear-gradient(90deg, rgba(79,110,247,.4), rgba(34,197,94,.5));
  z-index: 0;
}
.hw {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 0 16px; position: relative; z-index: 1; text-align: center;
}
.hw-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-dim); border: 1px solid rgba(79,110,247,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--blue);
}
.hw-num.last {
  background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.4); color: var(--green);
}
.hw-title { font-size: 15px; font-weight: 500; color: var(--white); line-height: 1.3; }
.hw-desc { font-size: 13px; color: var(--gray2); line-height: 1.6; font-weight: 300; }

/* ═══════════════════════════════════════════
   WHAT WE BRING
═══════════════════════════════════════════ */
.bring-section {
  padding: 80px var(--pad-x); background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.bring-head { text-align: center; margin-bottom: 48px; }
.bring-head h2 { font-size: clamp(22px, 3.5vw, 38px); font-weight: 300; color: var(--white); letter-spacing: -.8px; margin-bottom: 10px; }
.bring-head p { font-size: 14px; color: var(--gray2); }
.bring-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--max-w); margin: 0 auto; }
.bg-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  transition: border-color .2s;
}
.bg-card:hover { border-color: rgba(79,110,247,.35); }
.bg-card .ic { font-size: 28px; margin-bottom: 14px; }
.bg-card h3 { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.bg-card p { font-size: 14px; color: var(--gray2); line-height: 1.65; }

/* ═══════════════════════════════════════════
   EXIT MODEL
═══════════════════════════════════════════ */
.exit-section {
  padding: 80px var(--pad-x); background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.exit-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.exit-text h2 {
  font-size: clamp(24px, 3vw, 40px); font-weight: 300; color: var(--white);
  letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px;
}
.exit-text h2 em { font-style: normal; color: var(--green); }
.exit-text p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }

.exit-timeline { display: flex; flex-direction: column; gap: 0; }
.et-item {
  display: flex; gap: 20px; padding-bottom: 28px;
  position: relative;
}
.et-item:last-child { padding-bottom: 0; }
.et-item:not(:last-child)::before {
  content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 1px;
  background: var(--border2);
}
.et-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-dim); border: 1px solid rgba(79,110,247,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--blue);
}
.et-dot.green { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.4); color: var(--green); }
.et-content {}
.et-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; margin-top: 8px; }
.et-desc { font-size: 13px; color: var(--gray2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   REDIRECT TO BUILD
═══════════════════════════════════════════ */
.build-redirect {
  padding: 56px var(--pad-x); background: #0a0a0a;
  border-bottom: 1px solid var(--border);
}
.build-redirect-inner {
  max-width: var(--max-w); margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.brd-text h3 { font-size: 22px; font-weight: 500; color: var(--white); letter-spacing: -.3px; margin-bottom: 8px; }
.brd-text p { font-size: 14px; color: var(--gray2); line-height: 1.6; max-width: 480px; }
.btn-build {
  flex-shrink: 0; padding: 13px 28px; border-radius: 8px; font-size: 14px; font-weight: 500;
  background: transparent; border: 1px solid rgba(34,197,94,.4); color: var(--green);
  transition: background .15s, border-color .15s; white-space: nowrap;
}
.btn-build:hover { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.7); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-section {
  padding: 80px var(--pad-x); background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.contact-text h2 {
  font-size: clamp(24px, 3vw, 38px); font-weight: 300; color: var(--white);
  letter-spacing: -.8px; line-height: 1.2; margin-bottom: 16px;
}
.contact-text p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.ci-list { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-ico { font-size: 18px; margin-top: 2px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray3); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--gray); }
.ci-val a { color: var(--blue); }
.ci-val a:hover { opacity: .8; }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
}
.cf-title { font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.cf-sub { font-size: 13px; color: var(--gray2); margin-bottom: 24px; line-height: 1.55; }
.cf-field { margin-bottom: 16px; }
.cf-field label { display: block; font-size: 12px; color: var(--gray2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.cf-field input, .cf-field textarea, .cf-field select {
  width: 100%; padding: 11px 14px; background: #0e0e0e;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--white); font-size: 14px; outline: none; font-family: inherit;
  transition: border-color .15s;
}
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { border-color: var(--blue); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-field select option { background: #1a1a1a; }
.cf-captcha { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cf-captcha-q { font-size: 16px; font-weight: 500; color: var(--white); }
.cf-captcha-eq { color: var(--gray2); font-size: 14px; }
.cf-captcha input { width: 70px !important; text-align: center; }
.cf-captcha-hint { font-size: 11px; color: var(--gray3); }
.btn-submit {
  width: 100%; padding: 14px; background: var(--blue); border: none;
  border-radius: 8px; color: #fff; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: opacity .15s; font-family: inherit;
}
.btn-submit:hover { opacity: .88; }
.cf-success {
  display: none; text-align: center; color: var(--green); font-size: 14px; font-weight: 500; padding: 10px 0;
}
.cs-ico { margin-right: 6px; }

/* ═══════════════════════════════════════════
   FOOTER CTA
═══════════════════════════════════════════ */
.fcta-section {
  padding: 80px var(--pad-x); text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #0C0C0C 100%);
  border-bottom: 1px solid var(--border);
}
.fcta-section h2 {
  font-size: clamp(24px, 3.5vw, 44px); font-weight: 300; color: var(--white);
  letter-spacing: -1px; margin-bottom: 16px; line-height: 1.15;
}
.fcta-section h2 em { font-style: normal; color: var(--blue); }
.fcta-section p { font-size: 15px; color: var(--gray); margin-bottom: 36px; line-height: 1.65; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 48px var(--pad-x) 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.fb p { font-size: 13px; color: var(--gray2); margin-top: 12px; line-height: 1.55; max-width: 220px; }
.fc h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gray3); margin-bottom: 14px; }
.fc ul li { margin-bottom: 8px; }
.fc ul li a { font-size: 13px; color: var(--gray2); transition: color .15s; }
.fc ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; color: var(--gray3); }
.fl { display: flex; gap: 12px; }
.fl span { font-size: 12px; color: var(--gray3); cursor: pointer; transition: color .15s; }
.fl span:hover { color: var(--white); }
.fl span.on { color: var(--blue); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --pad-x: 28px; }
  .nav-links, .nav-right .btn-nav-cta { display: none; }
  .nav-burger { display: flex; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .gap-inner, .exit-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .bring-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .build-redirect-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
  .bring-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: row; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .region-tabs { gap: 6px; }
  .rtab { padding: 8px 14px; font-size: 13px; }
  .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-inner { text-align: right; }
[dir=rtl] input[type="email"], [dir=rtl] input[type="text"], [dir=rtl] textarea { direction: ltr; text-align: left; }
