/* ============================================
   eToro España — Stylesheet
   ============================================ */

/* --- CSS Variables (Design Tokens) --- */
:root {
  --green: #00c73c;
  --green-hover: #00a832;
  --green-light: #e8f9ed;
  --green-logo: #6cda64;
  --dark: #0b1126;
  --dark-bg: #071e2f;
  --dark-section: #0d1421;
  --text: #0b1126;
  --text-secondary: #5b6987;
  --text-light: #8a94a6;
  --white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-gray: #f0f3f7;
  --border: #e0e4ea;
  --red: #e8192c;
  --shadow: 0 4px 24px rgba(11,17,38,0.08);
  --shadow-lg: 0 12px 48px rgba(11,17,38,0.12);
  --radius: 12px;
  --radius-pill: 50px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Utilities --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-green { color: var(--green); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,199,60,0.3);
}
.btn--primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,199,60,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn--white:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }
.btn--sm { padding: 10px 24px; font-size: 14px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-align: center;
  padding: 8px 0;
  line-height: 1.5;
  position: relative;
  z-index: 1001;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 16px rgba(11,17,38,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo-svg {
  height: 32px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
.header__nav a:hover { color: var(--green); }
.header__nav a:hover::after { width: 100%; }
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__search {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__search svg { width: 18px; height: 18px; }
.header__lang {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__login {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.header__login:hover { color: var(--green); }
.header__cta { padding: 10px 24px; font-size: 14px; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 16px; text-align: center; }

/* ============================================
   HERO WITH INLINE FORM
   ============================================ */
.hero-form-section {
  padding: 48px 0 60px;
  background: var(--white);
  overflow: hidden;
}
.hero-form__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.hero-form__badges {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}
.hero-badge strong { font-weight: 800; }
.hero-badge--deposit {
  background: var(--green-light);
  color: #0a7c2e;
}
.hero-badge--bonus {
  background: #fff3e0;
  color: #b86e00;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-form__subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
  font-style: italic;
}
.hero-form__title {
  font-size: 52px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-form__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-form__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
.hero-stat__value {
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}
.hero-stat__label {
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-form__photo {
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

/* Hero form card */
.hero-form__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 90px;
}
.hero-form__card-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.hero-form__card-badges .hero-badge {
  font-size: 12px;
  padding: 6px 12px;
}
.hero-form__card-title {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4px;
}
.hero-form__card-sub {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 20px;
}
.hero-form .form__group { margin-bottom: 12px; }
.hero-form .form__group input,
.hero-form .form__group select {
  padding: 12px 14px;
  font-size: 14px;
}
.hero-form .form__check { font-size: 12px; margin-bottom: 16px; }
.hero-form__submit { font-size: 16px; padding: 14px; }
.hero-form__footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ============================================
   INVESTMENT CALCULATOR
   ============================================ */
.calculator {
  padding: 80px 0;
  background: var(--bg-light);
}
.calculator__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.calculator__subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.calculator__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}
.calculator__inputs {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calculator__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.calculator__input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.calculator__input-wrap:focus-within { border-color: var(--green); }
.calculator__currency {
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  background: var(--bg-light);
  border-right: 2px solid var(--border);
}
.calculator__input-wrap input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 700;
  outline: none;
  background: transparent;
}
.calculator__slider {
  width: 100%;
  margin-top: 12px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--green) 0%, var(--border) 0%);
  outline: none;
}
.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,199,60,0.3);
}
.calculator__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: none;
}
.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.calculator__field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  outline: none;
  background: var(--white);
}
.calculator__field select:focus { border-color: var(--green); }
.calculator__result {
  background: var(--dark);
  color: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.calculator__result-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.calculator__result-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.calculator__result-profit {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.calculator__result-profit span { color: var(--green); }
.calculator__result-rate {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.calculator__disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SUCCESS SCREEN
   ============================================ */
/* Success Modal */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}
.success-modal.active {
  display: flex;
}
.success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.success-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: successSlideUp 0.4s ease;
}
@keyframes successSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.success-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.25);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.success-modal__close:hover {
  background: rgba(255,255,255,0.4);
}

/* Header */
.success-modal__header {
  background: linear-gradient(135deg, var(--green) 0%, #00a032 100%);
  padding: 36px 28px 28px;
  text-align: center;
  border-radius: 20px 20px 0 0;
}
.success-modal__check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-modal__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.success-modal__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* Body */
.success-modal__body {
  padding: 24px 28px 28px;
}
.success-modal__info-box {
  display: flex;
  gap: 12px;
  background: #f0faf3;
  border: 1px solid #d4edda;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}
.success-modal__info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.success-modal__info-box strong {
  color: var(--dark);
}

/* Timer */
.success-modal__timer {
  text-align: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}
.success-modal__timer-label {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.success-modal__timer-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  font-family: 'Courier New', monospace;
  letter-spacing: 3px;
  line-height: 1.2;
}
.success-modal__timer-bar {
  height: 5px;
  background: #e8ecf1;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
}
.success-modal__timer-progress {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), #00e64d);
  width: 100%;
  transition: width 1s linear;
}

/* Features */
.success-modal__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.success-modal__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-light);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}
.success-modal__feature svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.success-modal__feature strong {
  color: var(--dark);
}

/* ============================================
   LOW FEES
   ============================================ */
.fees {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
}
.fees__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 60px;
  line-height: 1.2;
}
.fees__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.fees__icon {
  width: auto;
  height: 80px;
  max-width: 240px;
  margin: 0 auto 24px;
  object-fit: contain;
}
/* fees values now use SVG images from CDN */
.fees__label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.fees__disclaimer {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.fees__disclaimer a { color: rgba(255,255,255,0.7); text-decoration: underline; }

/* ============================================
   EARN INTEREST
   ============================================ */
.interest {
  padding: 100px 0;
  background: var(--white);
}
.interest__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.interest__tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.interest__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.interest__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.interest__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.interest__disclaimer {
  font-size: 13px;
  color: var(--text-light);
}
.interest__disclaimer a { text-decoration: underline; }
.interest__visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interest__chart {
  width: 100%;
  height: 300px;
  position: relative;
}
.interest__chart svg { width: 100%; height: 100%; }
.interest__percent {
  position: absolute;
  font-size: 80px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.12;
}
.interest__percent:nth-child(1) { top: 10%; left: 5%; font-size: 60px; }
.interest__percent:nth-child(2) { top: 30%; right: 10%; font-size: 100px; }
.interest__percent:nth-child(3) { bottom: 10%; left: 20%; font-size: 50px; }

/* ============================================
   AWARDS MARQUEE
   ============================================ */
.awards {
  background: var(--bg-light);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.awards__track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.awards__item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 0;
}
.awards__item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.awards__item span {
  font-size: 12px;
  color: var(--text-secondary);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.awards__track:hover { animation-play-state: paused; }

/* ============================================
   DIVERSIFY PORTFOLIO
   ============================================ */
.diversify {
  padding: 100px 0;
  background: var(--white);
}
.diversify__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.diversify__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.diversify__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.diversify__disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.diversify__cards {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invest-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-width: 220px;
}
.invest-card:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 14px 44px rgba(0,0,0,0.18);
  z-index: 20 !important;
}
.invest-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.invest-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.invest-card__info { flex: 1; }
.invest-card__name { font-size: 16px; font-weight: 700; color: var(--dark); }
.invest-card__change { font-size: 15px; font-weight: 700; margin-top: 2px; }
.invest-card__change.up { color: var(--green); }

.invest-card:nth-child(1) { top: 10px; left: 20px; transform: rotate(-5deg); z-index: 5; }
.invest-card:nth-child(2) { top: 50px; right: 10px; transform: rotate(3deg); z-index: 4; }
.invest-card:nth-child(3) { top: 170px; left: 0; transform: rotate(2deg); z-index: 3; }
.invest-card:nth-child(4) { top: 210px; right: -10px; transform: rotate(-3deg); z-index: 2; }
.invest-card:nth-child(5) { bottom: 30px; left: 50px; transform: rotate(-2deg); z-index: 6; }
.invest-card:nth-child(6) { bottom: 10px; right: 30px; transform: rotate(4deg); z-index: 1; }

/* ============================================
   CRYPTO
   ============================================ */
.crypto {
  padding: 100px 0;
  background: var(--bg-light);
}
.crypto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.crypto__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.crypto__logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  transition: transform var(--transition);
}
.crypto__logo:hover { transform: scale(1.1); }
.crypto__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.crypto__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ============================================
   COPY TRADERS
   ============================================ */

/* ============================================
   EDUCATION
   ============================================ */
.education {
  padding: 100px 0;
  background: var(--white);
}
.education__header {
  text-align: center;
  margin-bottom: 48px;
}
.education__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}
.education__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.education__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.education__scroll::-webkit-scrollbar { display: none; }
.education__card {
  min-width: 260px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition);
}
.education__card:hover { transform: translateY(-4px); }
.education__card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.education__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.education__card-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.education__cta {
  text-align: center;
  margin-top: 40px;
}
.education__disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   PROMO CARDS
   ============================================ */
.promos {
  padding: 40px 0 80px;
  background: var(--white);
}
.promos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  transition: transform var(--transition);
  cursor: pointer;
}
.promo-card:hover { transform: translateY(-4px); }
.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.promo-card > * { position: relative; z-index: 2; }
.promo-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.promo-card__desc {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}
.promo-card__btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.promo-card--interest { background: linear-gradient(135deg, #1a7a4e 0%, #0d9b4a 100%); }
.promo-card--global { background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 100%); }
.promo-card--loud { background: linear-gradient(135deg, #4a1a5e 0%, #6b3fa0 100%); }

/* ============================================
   BANKS
   ============================================ */
.banks {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.banks__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.banks__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.banks__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 64px;
  max-width: 800px;
  margin: 0 auto;
}
.bank-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.bank-logo:hover { opacity: 1; }
.banks__disclaimer {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   TRUSTED
   ============================================ */
.trusted {
  padding: 100px 0;
  background: var(--bg-light);
}
.trusted__header {
  text-align: center;
  margin-bottom: 56px;
}
.trusted__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  font-style: italic;
}
.trusted__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
}
.trusted__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.trust-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-card__icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.trust-card__icon svg { width: 40px; height: 40px; color: var(--green); }
.trust-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   SPONSORS
   ============================================ */
.sponsors {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.sponsors__header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.sponsors__title {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.sponsors__track {
  display: flex;
  gap: 32px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.sponsors__track:hover { animation-play-state: paused; }
.sponsor-logo {
  width: 55px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.sponsor-logo:hover { transform: scale(1.15); }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 80px 0;
  background: var(--bg-light);
}
.faq__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--green); }
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.active .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.active .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand-name {
  margin-bottom: 16px;
}
.footer__logo-svg {
  height: 28px;
  width: auto;
}
.footer__download {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer__store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--white);
  transition: background var(--transition);
}
.footer__store:hover { background: rgba(255,255,255,0.2); }
.footer__store svg { width: 20px; height: 20px; }
.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--green); }
.footer__legal {
  padding: 32px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer__legal p { margin-bottom: 16px; }
.footer__legal a { text-decoration: underline; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.active { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,17,38,0.6);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.modal__close:hover { background: var(--border); color: var(--dark); }
.modal__title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}
.modal__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
}
.modal__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Form */
.form__group {
  margin-bottom: 16px;
}
.form__group input,
.form__group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form__group input:focus,
.form__group select:focus {
  border-color: var(--green);
}
.form__group input::placeholder {
  color: var(--text-light);
}
.form__phone {
  display: flex;
  gap: 8px;
}
.form__phone select {
  width: 130px;
  flex-shrink: 0;
}
.form__phone input { flex: 1; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green);
}
.form__check a { color: var(--green); text-decoration: underline; }
.form__submit-btn {
  margin-bottom: 12px;
}
.form__footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
}
.form__message {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form__message.success { display: block; background: var(--green-light); color: var(--green); }
.form__message.error { display: block; background: #fde8e8; color: var(--red); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { margin: 0 6px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-form__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-form__card { position: static; }
  .hero-form__photo { max-width: 400px; }
  .calculator__card { grid-template-columns: 1fr; }
  .calculator__result { padding: 32px; }
  .calculator__result-value { font-size: 44px; }
  .success-modal__dialog { max-width: 460px; }
  .interest__inner,
  .diversify__inner,
  .crypto__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fees__title,
  .interest__title,
  .diversify__title,
  .crypto__title,
  .education__title,
  .trusted__title,
  .banks__title {
    font-size: 32px;
  }
  .fees__grid { gap: 32px; }
  .fees__value { font-size: 72px; }
  .trusted__grid { grid-template-columns: repeat(2, 1fr); }
  .promos__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: repeat(2, 1fr); }
  .hero__image { height: 360px; }
  .diversify__cards { height: 400px; }
  .invest-card { min-width: 190px; padding: 16px 20px; }
  .invest-card__icon { width: 48px; height: 48px; }
  .invest-card__name { font-size: 14px; }
  .invest-card__change { font-size: 13px; }
}

@media (max-width: 768px) {
  .header__nav,
  .header__search,
  .header__lang,
  .header__login { display: none; }
  .header__hamburger { display: flex; }
  .header__cta { display: none; }
  
  .hero-form-section { padding: 32px 0 40px; }
  .hero-form__title { font-size: 36px; }
  .hero-form__subtitle { font-size: 22px; }
  .hero-form__desc { font-size: 15px; }
  .hero-form__stats { gap: 20px; }
  .hero-stat__value { font-size: 22px; }
  .hero-form__card { padding: 24px 20px; }
  .calculator__inputs { padding: 28px 24px; }
  .calculator__result { padding: 28px 24px; }
  .calculator__result-value { font-size: 40px; }
  .success-modal__title { font-size: 20px; }
  .success-modal__timer-value { font-size: 40px; }
  .success-modal__header { padding: 28px 20px 24px; }
  .success-modal__body { padding: 20px 20px 24px; }
  
  .fees { padding: 60px 0; }
  .fees__grid { grid-template-columns: 1fr; gap: 40px; }
  .fees__value { font-size: 80px; }
  .fees__title { font-size: 28px; }
  
  .interest,
  .diversify,
  .crypto,
  .education,
  .trusted { padding: 60px 0; }

  
  .trusted__grid { grid-template-columns: 1fr 1fr; }
  
  .banks__grid { gap: 32px 40px; }
  
  .sponsors__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  
  .modal__content { padding: 28px 20px; }
  .modal__title { font-size: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-form__title { font-size: 30px; }
  .hero-form__subtitle { font-size: 18px; }
  .hero-form__badges { gap: 8px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }
  .hero-form__stats { flex-wrap: wrap; gap: 16px; }
  .calculator__title { font-size: 28px; }
  .calculator__result-value { font-size: 36px; }
  .success-modal__timer-value { font-size: 36px; letter-spacing: 2px; }
  .success-modal__info-box { flex-direction: column; }
  
  .fees__value { font-size: 64px; }
  .fees__title { font-size: 24px; margin-bottom: 40px; }
  
  .interest__title,
  .diversify__title,
  .crypto__title { font-size: 28px; }
  
  .education__title,
  .trusted__title,
  .banks__title,
  .faq__title { font-size: 26px; }
  
  .trusted__grid { grid-template-columns: 1fr; }
  
  .interest__buttons { flex-direction: column; }
  .interest__buttons .btn { text-align: center; }
  
  .hero__badge { padding: 12px 16px; }
  .hero__badge--top { font-size: 16px; right: 0; }
  .hero__badge--bottom { right: 0; }
  .hero__badge--bottom .badge-value { font-size: 18px; }
  
  
  .diversify__cards { height: 360px; }
  .invest-card { min-width: 150px; padding: 14px 16px; }
  .invest-card__icon { width: 40px; height: 40px; border-radius: 10px; }
  .invest-card__name { font-size: 13px; }
  .invest-card__change { font-size: 12px; }
  
  .btn { padding: 12px 24px; font-size: 14px; }

  .why-invest__grid { grid-template-columns: 1fr; }
  .why-invest__title { font-size: 26px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__title { font-size: 24px; }
  .cta-banner__points { justify-content: center; }
}

/* ========================================
   WHY INVEST NOW SECTION
   ======================================== */
.why-invest {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #eff6ff 100%);
}

.why-invest__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 12px;
}

.why-invest__subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.why-invest__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-invest__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-invest__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.why-invest__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,199,60,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-invest__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-invest__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #0a3d1e 50%, #071e2f 100%);
  color: #fff;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-banner__content {
  flex: 1;
}

.cta-banner__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-banner__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.cta-banner__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.cta-banner__action {
  text-align: center;
  flex-shrink: 0;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 14px;
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,199,60,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(0,199,60,0); }
}

.cta-banner__urgency {
  margin-top: 12px;
  font-size: 13px;
  color: #f0c040;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .why-invest__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-invest__grid { grid-template-columns: 1fr 1fr; }
  .why-invest__title { font-size: 32px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__points { justify-content: center; }
  .cta-banner__title { font-size: 26px; }
}
