:root {
  --orange: #f27a1a;
  --orange-dark: #e06a10;
  --orange-soft: #ff9a45;
  --black: #0a0d14;
  --ink: #111827;
  --muted: #8fa0b8;
  --text-light: #c5d0e0;
  --card: #ffffff;
  --line: rgba(242, 122, 26, 0.45);
  --hero-start: #f27a1a;
  --hero-end: #ffb06a;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  --max: 1180px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, select { font: inherit; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand span { font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav > a, .nav-drop > button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 8px;
}
.nav > a:hover,
.nav > a.active,
.nav-drop > button:hover { color: var(--orange); }
.nav > a.active { box-shadow: inset 0 -2px 0 var(--orange); border-radius: 0; }

.nav-drop { position: relative; }
.nav-drop .menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  border: 1px solid #eee;
}
.nav-drop.open .menu,
.nav-drop:hover .menu { display: block; }
.nav-drop .menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.nav-drop .menu a:hover { background: #fff4eb; color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-select {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #333;
  cursor: pointer;
}
.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-app:hover { background: var(--orange-dark); }
.menu-toggle {
  display: none;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-drop > button::after {
  content: " ▾";
  font-size: 0.75em;
}

/* Hero */
.hero {
  background: linear-gradient(90deg, var(--hero-start), var(--hero-end));
  color: #fff;
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.22) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 22px;
  max-width: 14ch;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 1.35rem; }
.hero-stat span { opacity: 0.92; font-size: 0.92rem; }
.hero-amp { font-size: 2rem; font-weight: 700; opacity: 0.85; }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0b1b3a;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 180px;
}
.btn-play .small { display: block; font-size: 0.7rem; opacity: 0.85; }
.btn-play .big { display: block; font-size: 1.05rem; font-weight: 700; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.per-trade {
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffe7c2, #f0a84a 45%, #c56a12 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-align: center;
  color: #5a3200;
  position: relative;
}
.per-trade .amount {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 16px rgba(120, 60, 0, 0.35);
}
.per-trade .label {
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.coin {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe39a, #d4a017);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #6b4700;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* Sections */
.section { padding: 72px 0; }
.section-dark { background: var(--black); color: #fff; }
.section h2 {
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #9eb0cc;
}
.section-dark .lead,
.muted { color: var(--muted); text-align: center; margin: 0 auto 36px; max-width: 560px; }

.welcome-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.stat-col { display: grid; gap: 14px; }
.stat-card {
  background: #fff;
  color: #1e2a44;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.stat-card .tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.stat-card .value { font-size: 1.55rem; font-weight: 800; color: #1c2d55; }
.phone-card {
  width: 220px;
  border: 3px solid #2a3f6d;
  border-radius: 28px;
  padding: 18px 14px 22px;
  text-align: center;
  background: linear-gradient(180deg, #10182b, #0a1020);
}
.phone-card img { width: 64px; margin: 8px auto 12px; border-radius: 50%; }
.phone-card .rating { color: #fff; font-weight: 700; font-size: 1.4rem; }
.stars { color: var(--orange); letter-spacing: 2px; margin: 4px 0 10px; }

.why-box {
  background: #fff;
  color: #222;
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-shadow: var(--shadow);
}
.why-item { text-align: center; padding: 8px; }
.why-icon {
  width: 56px; height: 56px; margin: 0 auto 12px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff4eb;
  color: var(--orange);
  font-size: 1.4rem;
}
.why-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.why-item p { margin: 0; color: #555; font-size: 0.95rem; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.offer-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255,255,255,0.02);
  min-height: 190px;
}
.offer-card h3 { margin: 0 0 10px; color: #9ec3ff; }
.offer-card p { color: var(--text-light); margin: 0 0 16px; }
.offer-card .more { color: var(--orange); font-weight: 700; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step .num {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
}
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: #555; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.news-card {
  background: #151b2b;
  border: 1px solid #243049;
  border-radius: 16px;
  padding: 20px;
}
.news-card .date { color: var(--orange); font-size: 0.85rem; font-weight: 700; }
.news-card h3 { color: #fff; font-size: 1.05rem; margin: 8px 0; }
.news-card p { color: var(--muted); margin: 0 0 12px; font-size: 0.92rem; }
.news-card .more { color: var(--orange); font-weight: 700; }

.cta-band {
  background: linear-gradient(90deg, var(--hero-start), var(--hero-end));
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 18px; }

.page-hero {
  background: linear-gradient(120deg, #ffe3c8, #f7f0ff 55%, #dfe9ff);
  padding: 48px 0 64px;
  text-align: center;
}
.breadcrumb { color: #666; font-size: 0.9rem; margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--orange); }
.page-hero h1 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); color: #1c2d55; }

.content-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.content-card h2 { color: var(--orange); text-align: left; margin-top: 0; }
.content-card p { color: #444; line-height: 1.7; }
.section-dark .content-card p { color: #444; }
.tab-panel .border-card p { min-height: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.border-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
}
.border-card h3 { color: var(--orange); margin-top: 0; }
.timeline { display: grid; gap: 16px; }
.timeline-item {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}
.timeline-item .when { color: var(--orange); font-weight: 700; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.tab-btn {
  border: 1px solid var(--orange);
  background: #fff;
  color: var(--orange);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 700;
}
.tab-btn.active { background: var(--orange); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.faq { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.faq-item button {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-item .answer {
  display: none;
  padding: 0 16px 14px;
  color: #555;
}
.faq-item.open .answer { display: block; }
.faq-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.faq-cats button {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.faq-cats button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.feature-list { display: grid; gap: 10px; max-width: 820px; margin: 0 auto; }
.feature-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
}
.feature-item > button {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
}
.feature-item .body {
  display: none;
  padding: 0 18px 16px;
  color: #555;
}
.feature-item.open .body { display: block; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review {
  background: #151b2b;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #243049;
}
.review .name { color: #fff; font-weight: 700; }
.review .city { color: var(--orange); font-size: 0.85rem; margin-bottom: 8px; }
.review p { color: var(--muted); margin: 0; }

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.glossary-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #eee;
}
.glossary-item h3 { margin: 0 0 6px; color: var(--orange); font-size: 1rem; }
.glossary-item p { margin: 0; color: #555; font-size: 0.92rem; }

.site-footer {
  background: #070a10;
  color: #9aa8bd;
  padding: 28px 0 36px;
  font-size: 0.9rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-company {
  max-width: 640px;
}
.footer-company p {
  margin: 0 0 8px;
  line-height: 1.55;
}
.footer-company .company-name {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-company a {
  color: var(--orange-soft);
  text-decoration: underline;
}
.footer-company a:hover { color: #fff; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #1a2233;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
}
.socials a:hover { background: var(--orange); }
.risk { max-width: 900px; line-height: 1.6; }

@media (max-width: 960px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-drop .menu { position: static; box-shadow: none; border: 0; display: none; }
  .nav-drop.open .menu { display: block; }
  .hero-grid,
  .welcome-wrap,
  .why-box,
  .offer-grid,
  .stats-row,
  .steps,
  .news-grid,
  .two-col,
  .reviews,
  .glossary-grid {
    grid-template-columns: 1fr;
  }
  .welcome-wrap { justify-items: center; }
  .stat-col { width: 100%; }
  .header-actions .btn-app span.hide-sm { display: none; }
}