:root {
  --bg: #F5F2EE;
  --white: #FDFCFA;
  --ink: #0F0E0C;
  --ink2: #3A3836;
  --muted: #9A9490;
  --orange: #F5520C;
  --green: #00875A;
  --green-light: #D4F0E6;
  --orange-light: #FDE8DF;
  --border: #E2DDD8;
  --surface: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.logo span { color: var(--orange); }
.nav-center {
  display: flex; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn-outline {
  border: 1.5px solid var(--ink);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-fill {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-fill:hover { background: #d94200; border-color: #d94200; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 68px 0 0;
  display: grid;
  grid-template-rows: 1fr auto;
}
.hero-main {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  padding: 80px 56px 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: riseIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards 0.1s;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  opacity: 0;
  animation: riseIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards 0.25s;
}
h1 .accent { color: var(--orange); font-style: italic; }
h1 .under {
  position: relative;
  display: inline-block;
}
h1 .under::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 4px;
  background: var(--orange);
  opacity: 0.3;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink2);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: riseIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards 0.4s;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: riseIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards 0.55s;
}
.btn-hero {
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero:hover { background: #d94200; transform: translateY(-2px); }
.hero-note {
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.hero-note svg { width: 14px; height: 14px; }

/* Hero right - live card */
.hero-card-stack {
  position: relative;
  height: 460px;
  opacity: 0;
  animation: riseIn 1s cubic-bezier(0.16,1,0.3,1) forwards 0.7s;
}
.card-main {
  position: absolute;
  top: 0; right: 0;
  width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(15,14,12,0.1);
  padding: 28px;
  z-index: 2;
}
.card-back {
  position: absolute;
  top: 20px; right: -16px;
  width: 380px;
  height: 100%;
  background: var(--orange-light);
  border: 1px solid rgba(245,82,12,0.2);
  z-index: 1;
}
.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.live-dot {
  display: flex; align-items: center; gap: 5px;
  color: var(--green);
  font-size: 10px;
}
.live-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.asset-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.asset-row:last-child { border-bottom: none; }
.asset-left { display: flex; align-items: center; gap: 12px; }
.asset-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.asset-name { font-size: 14px; font-weight: 600; }
.asset-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.asset-right { text-align: right; }
.asset-price { font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }
.asset-pct {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  margin-top: 3px;
  display: inline-block;
}
.pct-up { background: var(--green-light); color: var(--green); }
.pct-down { background: #FFE5E5; color: #D0021B; }

/* Mini chart in card */
.card-chart { margin-top: 20px; }
.card-chart canvas { width: 100% !important; height: 70px !important; }

/* ── SCROLLING TICKER ── */
.ticker-strip {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: scrollLeft 30s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ticker-track span.up { color: #4ADE80; }
.ticker-track span.down { color: #F87171; }
.ticker-sep { color: #444; margin: 0 8px; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── WHY EXNOVA ── */
.why {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left .section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.why-left h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.why-left h2 em { font-style: italic; color: var(--orange); }
.why-left p { font-size: 16px; font-weight: 300; line-height: 1.8; color: var(--ink2); max-width: 440px; margin-bottom: 40px; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.metric {
  background: var(--white);
  padding: 28px 24px;
}
.metric-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -2px;
  color: var(--ink);
}
.metric-num span { color: var(--orange); }
.metric-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-feature {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  transition: padding-left 0.3s;
  cursor: default;
}
.why-feature:first-child { padding-top: 0; }
.why-feature:last-child { border-bottom: none; }
.why-feature:hover { padding-left: 8px; }
.feat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--border);
  transition: color 0.3s;
}
.why-feature:hover .feat-num { color: var(--orange-light); }
.feat-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 4px;
}
.feat-desc { font-size: 14px; color: var(--ink2); line-height: 1.7; font-weight: 300; }

/* ── INSTRUMENTS ── */
.instruments {
  padding: 0 56px 120px;
}
.instr-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
}
.instr-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -2px;
}
.instr-header h2 em { font-style: italic; color: var(--orange); }
.see-all { font-size: 13px; font-weight: 600; color: var(--orange); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.see-all:hover { text-decoration: underline; }

.instr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.instr-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 20px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.instr-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.instr-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,14,12,0.1); }
.instr-card:hover::after { transform: scaleX(1); }
.instr-emoji { font-size: 28px; margin-bottom: 16px; display: block; }
.instr-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.instr-count { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.instr-tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  background: var(--bg);
  color: var(--ink2);
  letter-spacing: 0.04em;
}

/* ── HOW ── */
.how-section {
  background: var(--ink);
  color: var(--white);
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,82,12,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.how-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.how-top h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -2px;
}
.how-top h2 em { color: var(--orange); font-style: italic; }
.how-top p { font-size: 15px; color: rgba(253,252,250,0.5); max-width: 300px; text-align: right; font-weight: 300; line-height: 1.7; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.how-step {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 40px;
  position: relative;
}
.how-step:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.how-step:not(:first-child):not(:last-child) { padding: 0 40px; }
.how-step:nth-child(2) { padding: 0 40px; }
.how-step:nth-child(3) { padding: 0 40px; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: rgba(245,82,12,0.15);
  margin-bottom: 20px;
  display: block;
}
.step-icon {
  width: 48px; height: 48px;
  background: rgba(245,82,12,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.step-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-desc { font-size: 13px; color: rgba(253,252,250,0.5); line-height: 1.8; font-weight: 300; }

/* ── PLATFORM SHOWCASE ── */
.platform-section {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
}
.platform-text .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.platform-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.05;
}
.platform-text p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink2); margin-bottom: 40px; }
.platform-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.pill {
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  cursor: default;
  transition: all 0.2s;
}
.pill.active { border-color: var(--orange); background: var(--orange-light); color: var(--orange); }
.pill:hover { border-color: var(--ink); color: var(--ink); }

.platform-visual {
  background: var(--ink);
  border: 1px solid #1E1E1E;
  position: relative;
  height: 420px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(15,14,12,0.2);
}
.platform-visual canvas { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.pv-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: #161616;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  border-bottom: 1px solid #222;
}
.pv-dot { width: 10px; height: 10px; border-radius: 50%; }
.pv-title { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; margin-left: auto; margin-right: auto; }
.pv-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(0,135,90,0.9);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  display: flex; align-items: center; gap: 8px;
  z-index: 5;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--white);
  padding: 120px 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testi-header { text-align: center; margin-bottom: 72px; }
.testi-header .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.testi-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -2px;
}
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  border: 1px solid var(--border);
  padding: 36px;
  background: var(--bg);
  position: relative;
}
.testi-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.testi-quote {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink2);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 42px; height: 42px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-loc { font-size: 12px; color: var(--muted); margin-top: 1px; }
.testi-flag { font-size: 16px; }

/* ── COUNTRIES ── */
.countries {
  padding: 80px 56px;
  overflow: hidden;
}
.countries h3 {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.flag-track-wrap { overflow: hidden; }
.flag-track {
  display: flex;
  gap: 0;
  animation: scrollLeft 20s linear infinite;
  width: max-content;
}
.flag-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 32px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.flag-item span:first-child { font-size: 24px; }
.flag-item span:last-child { font-size: 13px; font-weight: 600; color: var(--ink2); }

/* ── CTA ── */
.cta-section {
  padding: 0 56px 120px;
}
.cta-inner {
  background: var(--orange);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: 'EXNOVA';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 160px;
  color: rgba(255,255,255,0.07);
  letter-spacing: -8px;
  pointer-events: none;
  white-space: nowrap;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -2px;
  color: #fff;
  line-height: 1.05;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 16px; font-weight: 300; line-height: 1.7; max-width: 480px; }
.cta-inner .cta-btns { display: flex; gap: 16px; flex-direction: column; flex-shrink: 0; }
.btn-white {
  background: #fff;
  color: var(--orange);
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-white:hover { transform: scale(1.03); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-ghost-white:hover { border-color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(253,252,250,0.5);
  padding: 60px 56px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 13px; line-height: 1.6; font-weight: 300; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: rgba(253,252,250,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; font-weight: 300; }
.footer-bottom .risk { font-size: 11px; max-width: 500px; opacity: 0.5; }
.risk-badge {
  font-size: 11px;
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  color: rgba(255,255,255,0.4);
}

/* ── ANIMATIONS ── */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* ══ TRUST BAR ══ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}
.trust-bar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-items {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  white-space: nowrap;
}
.trust-item svg { color: var(--green); width: 14px; height: 14px; flex-shrink: 0; }

/* ══ AWARDS ══ */
.awards {
  padding: 80px 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.awards-header { text-align: center; margin-bottom: 52px; }
.awards-header .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.awards-header h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -1.5px; }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.award-item {
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background 0.2s;
}
.award-item:hover { background: var(--bg); }
.award-year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 3px 10px;
}
.award-icon { font-size: 32px; }
.award-name { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.award-org { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ══ COMPARISON ══ */
.comparison {
  padding: 120px 56px;
  background: var(--bg);
}
.comparison-header { text-align: center; margin-bottom: 64px; }
.comparison-header .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.comparison-header h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(30px, 3.5vw, 48px); letter-spacing: -2px; }
.comparison-header h2 em { font-style: italic; color: var(--orange); }
.comparison-header p { font-size: 16px; color: var(--ink2); font-weight: 300; max-width: 480px; margin: 16px auto 0; line-height: 1.7; }

.comp-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); }
.comp-table thead tr { background: var(--ink); color: var(--white); }
.comp-table th { padding: 20px 24px; text-align: left; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.comp-table th:first-child { width: 280px; }
.comp-table th.highlight-col { background: var(--orange); }
.comp-table td { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 400; color: var(--ink2); }
.comp-table td:first-child { font-weight: 600; color: var(--ink); }
.comp-table td.highlight-col { background: rgba(245,82,12,0.04); font-weight: 600; }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: var(--bg); }
.comp-table tbody tr:hover td.highlight-col { background: rgba(245,82,12,0.08); }
.check { color: var(--green); font-weight: 700; font-size: 16px; }
.cross { color: #D0021B; font-weight: 700; font-size: 16px; }
.partial { color: var(--orange); font-weight: 600; font-size: 13px; }

/* ══ EDUCATION ══ */
.education {
  padding: 120px 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.edu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}
.edu-header-left .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.edu-header h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(28px, 3.5vw, 44px); letter-spacing: -2px; }
.edu-header h2 em { font-style: italic; color: var(--orange); }
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.edu-card {
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  cursor: default;
  transition: transform 0.25s, box-shadow 0.25s;
}
.edu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(15,14,12,0.1); }
.edu-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.edu-thumb-bg {
  position: absolute; inset: 0;
}
.edu-thumb-emoji { position: relative; z-index: 1; }
.edu-body { padding: 24px; }
.edu-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}
.cat-beginner { background: var(--green-light); color: var(--green); }
.cat-intermediate { background: #FEF3C7; color: #92400E; }
.cat-advanced { background: var(--orange-light); color: var(--orange); }
.edu-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.edu-desc { font-size: 13px; color: var(--ink2); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.edu-meta { display: flex; gap: 16px; align-items: center; font-size: 11px; color: var(--muted); font-weight: 500; }
.edu-meta span { display: flex; align-items: center; gap: 4px; }

/* ══ APP DOWNLOAD ══ */
.app-section {
  padding: 100px 56px;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute; top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,82,12,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.app-text { color: var(--white); }
.app-text .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.app-text h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(32px, 4vw, 52px); letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px; }
.app-text h2 em { color: var(--orange); font-style: italic; }
.app-text p { font-size: 16px; color: rgba(253,252,250,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 40px; max-width: 420px; }
.app-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.app-feature { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(253,252,250,0.75); font-weight: 400; }
.app-feature::before { content: '✓'; color: var(--green); font-weight: 700; width: 20px; height: 20px; background: rgba(0,135,90,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.app-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  color: var(--white);
}
.app-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.app-btn-icon { font-size: 24px; }
.app-btn-text { display: flex; flex-direction: column; }
.app-btn-sub { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.app-btn-name { font-size: 14px; font-weight: 700; margin-top: 1px; }
.app-rating { display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 40px; gap: 20px; }
.app-rating-num { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--orange); line-height: 1; }
.app-rating-stars { font-size: 20px; color: #FBBF24; letter-spacing: 3px; }
.app-rating-label { font-size: 12px; color: rgba(253,252,250,0.4); text-align: center; line-height: 1.6; font-weight: 300; }
.app-rating-badges { display: flex; gap: 12px; }
.app-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 6px;
}

/* ══ FAQ ══ */
.faq-section {
  padding: 120px 56px;
  background: var(--bg);
}
.faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; }
.faq-left h2 { font-family: 'Playfair Display', serif; font-weight: 900; font-size: clamp(28px, 3vw, 44px); letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px; }
.faq-left h2 em { color: var(--orange); font-style: italic; }
.faq-left p { font-size: 15px; color: var(--ink2); font-weight: 300; line-height: 1.8; margin-bottom: 32px; }
.faq-contact {
  display: flex; flex-direction: column; gap: 12px;
}
.faq-contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink2); font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.faq-contact-item:hover { color: var(--orange); }
.faq-contact-icon {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  transition: background 0.2s, transform 0.3s;
  color: var(--ink2);
}
.faq-item.open .faq-icon { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a-inner {
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.8;
  font-weight: 300;
}

/* ══ SEO TEXT BLOCK ══ */
.seo-block {
  padding: 80px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.seo-block-inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-block h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--ink);
}
.seo-block h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 32px 0 12px;
  color: var(--ink);
}
.seo-block p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 16px;
}
.seo-block ul {
  padding-left: 0;
  margin-bottom: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seo-block ul li {
  font-size: 14px;
  color: var(--ink2);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.seo-block ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ══ RESPONSIVE NEW SECTIONS ══ */
@media (max-width: 1024px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .app-section { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 768px) {
  .awards, .comparison, .education, .app-section, .faq-section, .seo-block { padding-left: 20px; padding-right: 20px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .edu-grid { grid-template-columns: 1fr; }
  .comp-table { font-size: 12px; }
  .comp-table th, .comp-table td { padding: 12px 14px; }
  .trust-bar { padding: 14px 20px; }
  .app-btns { flex-direction: column; }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-main { grid-template-columns: 1fr; }
  .hero-card-stack { display: none; }
  .why { grid-template-columns: 1fr; }
  .platform-section { grid-template-columns: 1fr; }
  .instr-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .how-step { padding: 0 !important; border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-center { display: none; }
  .hero-main { padding: 60px 20px; }
  .why, .instruments, .platform-section, .testimonials, .countries, .cta-section { padding-left: 20px; padding-right: 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .instr-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-section { padding: 80px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 20px; }
  .cta-inner { padding: 48px 28px; }
  .metrics { grid-template-columns: 1fr 1fr; }
}

/* ── LANGUAGE SWITCH ── */
.lang-switch { display:flex; align-items:center; gap:6px; margin-right: 6px; }
.lang-switch a { text-decoration:none; font-size:11px; font-weight:700; letter-spacing:0.06em; color:var(--ink2); border:1px solid var(--border); padding:6px 8px; line-height:1; transition:all 0.2s; }
.lang-switch a:hover { border-color:var(--ink); color:var(--ink); }
.lang-switch a.active { background:var(--orange); color:#fff; border-color:var(--orange); }
@media (max-width:768px){ .lang-switch { display:none; } }
