/* ═══════════════════════════════════════════
   TITAN SIGNALS — Shared Design System
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg-primary:    #080E17;
  --bg-surface:    #0F1A28;
  --bg-elevated:   #162032;
  --bg-card:       rgba(15,26,40,0.72);
  --gold:          #D4A843;
  --gold-bright:   #E8BA4A;
  --gold-muted:    rgba(212,168,67,.18);
  --gold-border:   rgba(212,168,67,.22);
  --green:         #00D4A0;
  --green-muted:   rgba(0,212,160,.12);
  --green-border:  rgba(0,212,160,.25);
  --red:           #F04D4D;
  --red-muted:     rgba(240,77,77,.1);
  --text-primary:  #EEF2F7;
  --text-secondary:#8A9BBE;
  --text-muted:    #4A5A74;
  --border:        rgba(255,255,255,.06);
  --border-strong: rgba(255,255,255,.1);
  --radius:        14px;
  --radius-sm:     9px;
  --radius-xs:     6px;
  --mono:          'IBM Plex Mono', 'Fira Code', monospace;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
body > * { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container  { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.divider    { height: 1px; background: var(--border); }
.text-center { text-align: center; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.flex       { display: flex; }
.flex-center{ display: flex; align-items: center; justify-content: center; }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

/* ─── TYPOGRAPHY ─── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  line-height: 1.18; letter-spacing: -.02em; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-secondary); line-height: 1.75; max-width: 560px;
}
.page-title {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  line-height: 1.08; letter-spacing: -.03em; margin-bottom: 18px;
}
.gold-text  { color: var(--gold); }
.green-text { color: var(--green); }
.red-text   { color: var(--red); }
.muted-text { color: var(--text-muted); }
.mono       { font-family: var(--mono); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 700;
  cursor: pointer; border: none; letter-spacing: -.01em;
  white-space: nowrap; /* prevent text wrapping in all languages */
  transition: all .22s cubic-bezier(.4,0,.2,1);
}
.btn-gold {
  background: linear-gradient(135deg, #E0B340 0%, #D4A843 55%, #B8922A 100%);
  color: #0A0C10;
  box-shadow: 0 4px 20px rgba(212,168,67,.28), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(212,168,67,.48), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,.04); color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.btn-green {
  background: var(--green); color: #040A10; font-weight: 800;
}
.btn-green:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-lg  { padding: 17px 36px; font-size: 16px; }
.btn-sm  { padding: 9px clamp(12px, 1.4vw, 20px); font-size: clamp(11px, 1vw, 13px); }
.btn-full { width: 100%; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase;
}
.badge-green {
  background: var(--green-muted); border-color: var(--green-border); color: var(--green);
}
.badge-red {
  background: var(--red-muted); border-color: rgba(240,77,77,.25); color: var(--red);
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.card-pad  { padding: 28px; }
.card-pad-lg { padding: 36px; }
.card-hover { transition: border-color .2s, transform .2s; }
.card-hover:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card-gold { border-color: var(--gold-border); }

/* Gradient border card */
.card-gradient {
  position: relative; border: none !important;
  background: rgba(12,20,34,.85);
}
.card-gradient::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold) 0%, rgba(212,168,67,.25) 50%, var(--green) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

/* ─── ICON BOX ─── */
.icon-box {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--gold-muted); border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 22px;
}
.icon-box-green {
  background: var(--green-muted); border-color: var(--green-border); color: var(--green);
}
.icon-box-lg { width: 60px; height: 60px; font-size: 28px; border-radius: var(--radius); }

/* ─── CHECK LIST ─── */
.check-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 15px; color: var(--text-secondary);
}
.check-item i { color: var(--green); margin-top: 3px; flex-shrink: 0; font-size: 16px; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 80px 0 68px;
  background: radial-gradient(ellipse 75% 55% at 50% -5%, rgba(212,168,67,.1) 0%, transparent 68%);
}
.page-hero .badge { margin-bottom: 20px; }

/* ─── SIGNAL CARD ─── */
.signal-card {
  background: #060C14; border: 1px solid var(--gold-border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 0 60px rgba(212,168,67,.07), 0 24px 64px rgba(0,0,0,.5);
}
.signal-header {
  background: rgba(212,168,67,.07); border-bottom: 1px solid var(--gold-border);
  padding: 16px 22px; display: flex; align-items: center; justify-content: space-between;
}
.signal-pair { font-size: 17px; font-weight: 800; font-family: var(--mono); }
.signal-pair-sub { font-size: 11px; color: var(--text-muted); font-family: var(--mono); margin-top: 2px; }
.signal-type {
  font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 100px;
  letter-spacing: .08em; text-transform: uppercase;
}
.signal-type-buy  { background: var(--green); color: #040A10; }
.signal-type-sell { background: var(--red);   color: #fff; }
.signal-body { padding: 18px 22px; }
.signal-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); font-size: 13px;
}
.signal-row:last-child { border-bottom: none; }
.signal-lbl { color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.signal-val { font-weight: 600; font-family: var(--mono); font-size: 13px; }

/* ─── FAQ / ACCORDION ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text-primary);
  font-size: 16px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-align: left; padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  letter-spacing: -.01em; transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--text-muted); flex-shrink: 0; transition: transform .3s, color .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-a { font-size: 15px; color: var(--text-secondary); padding: 0 0 20px; display: none; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ─── FORM ─── */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .06em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xs); color: var(--text-primary);
  font-size: 15px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px rgba(212,168,67,.08);
}
.form-field select option { background: #0F1A28; }
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ─── STAT BLOCK ─── */
.stat-block { text-align: center; }
.stat-num { font-size: 42px; font-weight: 900; letter-spacing: -.03em; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ─── TABLE ─── */
.ts-table { width: 100%; border-collapse: collapse; }
.ts-table th {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); padding: 12px 16px; border-bottom: 1px solid var(--border);
  text-align: left;
}
.ts-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.03); }
.ts-table tr:last-child td { border-bottom: none; }
.ts-table tr:hover td { background: rgba(255,255,255,.02); }

/* ─── LEGAL TEXT ─── */
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; color: var(--text-primary); }
.legal-content h3 { font-size: 16px; font-weight: 600; margin: 24px 0 10px; color: var(--text-secondary); }
.legal-content p  { font-size: 14px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 14px 20px; }
.legal-content ul li { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 6px; }
.legal-content .last-updated { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; }

/* ─── PROGRESS BAR ─── */
.progress-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.progress-lbl { font-size: 12px; color: var(--text-muted); width: 80px; flex-shrink: 0; }
.progress-bar { flex: 1; height: 6px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.progress-fill-green { background: var(--green); }
.progress-fill-red   { background: var(--red); }
.progress-pct { font-size: 12px; font-weight: 700; width: 40px; text-align: right; font-family: var(--mono); }

/* ─── CALCULATOR ─── */
.calc-tabs {
  display: flex; gap: 6px; padding: 6px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 28px; flex-wrap: wrap;
}
.calc-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 14px; border-radius: var(--radius-xs);
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  cursor: pointer; border: none; background: transparent;
  transition: all .2s; font-family: 'Inter', sans-serif; white-space: nowrap;
}
.calc-tab i { font-size: 15px; }
.calc-tab.active {
  background: var(--bg-elevated); color: var(--text-primary);
  border: 1px solid var(--border-strong); box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.calc-card { display: none; }
.calc-card.active { display: block; }
.calc-card-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.calc-card-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.6; }
.calc-result {
  background: rgba(212,168,67,.05); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm); padding: 28px 24px; text-align: center; margin-top: 6px;
}
.calc-result-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.calc-result-num {
  font-size: 52px; font-weight: 900; color: var(--gold); letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; line-height: 1;
  text-shadow: 0 0 40px rgba(212,168,67,.4); font-family: var(--mono);
}
.calc-result-unit { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.calc-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border-radius: var(--radius-xs); overflow: hidden; margin-top: 16px;
}
.calc-metric { background: var(--bg-surface); padding: 14px 18px; text-align: center; }
.calc-metric-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.calc-metric-val { font-size: 18px; font-weight: 700; font-family: var(--mono); }

/* ─── COUNTDOWN ─── */
.countdown-wrap { text-align: center; margin: 24px 0 32px; }
.countdown-label { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; }
.c-block {
  background: var(--bg-elevated); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xs); padding: 10px 16px; text-align: center; min-width: 64px;
}
.c-num { font-size: 30px; font-weight: 900; color: var(--red); font-family: var(--mono); font-variant-numeric: tabular-nums; }
.c-lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.c-sep { font-size: 26px; color: var(--red); font-weight: 900; padding-bottom: 18px; font-family: var(--mono); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ─── BANNER ─── */
#banner {
  background: linear-gradient(90deg, rgba(212,168,67,.12) 0%, rgba(212,168,67,.22) 50%, rgba(212,168,67,.12) 100%);
  border-bottom: 1px solid var(--gold-border);
  color: var(--gold); font-size: 12px; font-weight: 600;
  text-align: center; padding: 10px 24px; letter-spacing: .03em;
}
#banner span { opacity: .5; margin: 0 10px; }
#banner strong { color: var(--gold-bright); }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,14,23,.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
nav.scrolled { background: rgba(8,14,23,.97); border-color: var(--border-strong); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 28px; max-width: 1140px; margin: 0 auto;
  gap: 12px; overflow: hidden;
}
.nav-logo { font-size: 19px; font-weight: 900; letter-spacing: -.03em; color: var(--text-primary); flex-shrink: 0; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 28px); list-style: none; flex-shrink: 1; min-width: 0; }
.nav-links a { font-size: clamp(11.5px, 1vw, 14px); font-weight: 500; color: var(--text-secondary); transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 10px; background: rgba(255,255,255,.05);
  border: 1px solid var(--border-strong); border-radius: var(--radius-xs);
  color: var(--text-secondary); font-size: clamp(11px, 0.95vw, 13px); font-weight: 500;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s;
  white-space: nowrap; max-width: 130px;
}
.lang-btn:hover { background: rgba(255,255,255,.09); color: var(--text-primary); }
.lang-btn i { font-size: 15px; }
.lang-caret { font-size: 12px; transition: transform .2s; }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: #0D1929;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  overflow: hidden; z-index: 999; display: none;
  box-shadow: 0 16px 48px rgba(0,0,0,.55);
}
.lang-dropdown.open { display: block; animation: dropIn .18s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.lang-option {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 11px 16px; background: none; border: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--text-secondary); font-size: 14px; font-family: 'Inter', sans-serif;
  cursor: pointer; text-align: left; transition: background .15s;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(255,255,255,.06); color: var(--text-primary); }
.lang-option.active { background: rgba(212,168,67,.12); color: var(--gold); }

/* ─── FOOTER ─── */
footer { background: #050A12; border-top: 1px solid var(--border); padding: 52px 0 0; }
.footer-main {
  display: grid; grid-template-columns: 230px 1fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { display: block; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: rgba(255,255,255,.05); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 16px; transition: all .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.1); color: var(--text-primary); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--text-secondary); }
.footer-contact-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--gold); font-weight: 600; transition: color .2s;
  white-space: nowrap;
}
.footer-contact-link:hover { color: var(--gold-bright); }
.footer-bottom { padding: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.footer-seo-line { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-seo { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.footer-disclaimer-text { font-size: 11px; color: var(--text-muted); line-height: 1.8; }
.footer-lang { position: relative; }
.footer-lang-btn {
  display: flex; align-items: center; gap: 7px; padding: 8px 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06);
  border-radius: var(--radius-xs); color: var(--text-secondary); font-size: 12px;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s;
}
.footer-lang-dropdown {
  position: absolute; bottom: calc(100% + 8px); right: 0; min-width: 180px;
  background: #0D1929; border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); overflow: hidden; z-index: 999; display: none;
  box-shadow: 0 -16px 48px rgba(0,0,0,.5);
}
.footer-lang-dropdown.open { display: block; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 36px;
  position: relative; transition: transform .2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  color: #0A0C10; font-size: 11px; font-weight: 800;
  padding: 5px 18px; border-radius: 100px; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 16px rgba(212,168,67,.35);
}
.pricing-name { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.pricing-price { font-size: 52px; font-weight: 900; letter-spacing: -.04em; margin-bottom: 2px; line-height: 1; }
.pricing-price sup { font-size: 24px; vertical-align: super; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,.03); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--green); font-size: 16px; flex-shrink: 0; }

/* ─── BLOG ─── */
.article-card {
  background: var(--bg-card); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s, transform .2s;
}
.article-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.article-img {
  height: 180px; background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; border-bottom: 1px solid var(--border);
}
.article-body { padding: 22px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.article-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.article-date { font-size: 12px; color: var(--text-muted); }
.article-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; letter-spacing: -.01em; }
.article-exc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.article-read { font-size: 12px; color: var(--text-muted); margin-top: 14px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 1100px) {
  /* Hide nav links earlier so CTA buttons always have room */
  .nav-links { display: none; }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .calc-tabs { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .calc-result-num { font-size: 40px; }
  .c-num { font-size: 24px; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* ─── RTL SUPPORT (Arabic) ─── */
[dir="rtl"] {
  text-align: right;
}
[dir="rtl"] .nav-inner {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-cta {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-logo {
  margin-right: 0;
}
[dir="rtl"] .footer-main {
  direction: rtl;
}
[dir="rtl"] .footer-col ul {
  text-align: right;
}
[dir="rtl"] .footer-contact-link {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-social {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-seo-line {
  flex-direction: row-reverse;
}
[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .trust-icon-wrap {
  margin-left: 0;
}
[dir="rtl"] .check-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .faq-q {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .faq-a {
  text-align: right;
}
[dir="rtl"] .testi-author {
  flex-direction: row-reverse;
}
[dir="rtl"] .section-label {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
[dir="rtl"] .hero-cta-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-eyebrow {
  flex-direction: row-reverse;
}
[dir="rtl"] .grid-2 {
  direction: rtl;
}
[dir="rtl"] .edu-grid {
  direction: rtl;
}
[dir="rtl"] .spc-card {
  direction: rtl;
}
[dir="rtl"] .spc-left {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,.06);
}
[dir="rtl"] .comp-item {
  text-align: right;
}
[dir="rtl"] .contact-card {
  direction: rtl;
}
[dir="rtl"] .pricing-features li {
  flex-direction: row-reverse;
}
[dir="rtl"] .step {
  direction: rtl;
}
[dir="rtl"] .steps-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-content {
  direction: rtl;
}
[dir="rtl"] .hero-pill {
  flex-direction: row-reverse;
}
[dir="rtl"] .mock-topbar {
  flex-direction: row-reverse;
}
[dir="rtl"] .mock-signal {
  flex-direction: row-reverse;
}
[dir="rtl"] .mock-sig-details {
  flex-direction: row-reverse;
}
[dir="rtl"] .mock-sig-time {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .testi-stars-v2 {
  text-align: right;
}
[dir="rtl"] .testi-col-inner {
  direction: rtl;
}
[dir="rtl"] .testi-user {
  flex-direction: row-reverse;
}
[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}
[dir="rtl"] .footer-lang-dropdown {
  right: auto;
  left: 0;
}
[dir="rtl"] .badge {
  flex-direction: row-reverse;
}
[dir="rtl"] .trust-grid {
  direction: rtl;
}
[dir="rtl"] .icon-box {
  margin-right: 0;
}
[dir="rtl"] .pay-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .countdown {
  flex-direction: row-reverse;
}
[dir="rtl"] .scarcity-bar {
  flex-direction: row-reverse;
}
[dir="rtl"] .social-grid {
  flex-direction: row-reverse;
}
[dir="rtl"] .contact-card .contact-icon-wrap {
  margin-right: 0;
}
[dir="rtl"] .stats-strip {
  direction: rtl;
}
[dir="rtl"] .billing-toggle {
  flex-direction: row-reverse;
}
[dir="rtl"] .spc-benefits {
  direction: rtl;
}
[dir="rtl"] .spc-feature-list {
  direction: rtl;
}
[dir="rtl"] .spc-feature {
  flex-direction: row-reverse;
}
[dir="rtl"] .guarantee-card {
  flex-direction: row-reverse;
}
[dir="rtl"] .ebook-card {
  direction: rtl;
}
[dir="rtl"] .milestone {
  flex-direction: row-reverse;
}
[dir="rtl"] .team-card {
  direction: rtl;
}

/* RTL: font adjustments */
[dir="rtl"] body {
  font-family: 'Segoe UI', 'Arabic Typesetting', 'Traditional Arabic', system-ui, sans-serif;
}
[dir="rtl"] .nav-logo,
[dir="rtl"] .section-title,
[dir="rtl"] .page-title {
  letter-spacing: 0;
}
