*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #09090d;
  --black2: #111118;
  --surface: #15151e;
  --surface2: #1c1c28;
  --red: #e0293a;
  --red-dark: #b01f2d;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --white: #f0eee8;
  --muted: #7a7a8c;
  --border: rgba(255,255,255,0.07);
  --border-red: rgba(224,41,58,0.3);
  --container-max: 1440px;
  --gutter: max(5%, calc((100% - var(--container-max)) / 2));
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9,9,13,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo .logo-img { height: 21px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 64px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.btn-nav {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-nav:hover { background: #c0222f; transform: translateY(-1px); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224,41,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-bg-glow2 {
  position: absolute;
  bottom: -300px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid-line {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-art .spark {
  position: absolute;
  fill: none;
  stroke: rgba(255,255,255,0.5);
}
.spark-1 {
  top: auto;
  bottom: 6%;
  right: 22%;
  width: 420px;
  height: 420px;
  transform: none;
  stroke-width: 0.7;
  opacity: 0.14;
  animation: spark-spin 90s linear infinite;
}
@keyframes spark-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 900px) {
  .spark-1 { width: 260px; height: 260px; right: -100px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,41,58,0.12);
  border: 1px solid var(--border-red);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: clamp(48px, 8vw, 110px);
  white-space: nowrap;
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.hero h1 .accent { color: var(--red); }

.hero-sub {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-sub span { color: var(--white); }

.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover { background: #c0222f; transform: translateY(-2px); }

.btn-outline {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ─── HERO STATS ─── */
.hero-stats {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--red);
  padding: 20px 28px;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover {
  border-left-color: var(--gold);
  transform: translateX(-4px);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  background: var(--red);
  opacity: 0.05;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.stat-num {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
}
.stat-num .unit { color: var(--red); font-size: 28px; }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item::before {
  content: '✦';
  color: var(--red);
  opacity: 0.8;
  font-size: 8px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION BASE ─── */
section {
  position: relative;
  padding: 100px var(--gutter);
  z-index: 1;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 60px;
}

/* ─── WHY SECTION ─── */
.why { background: var(--black2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.why-card {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.why-card:hover { background: var(--surface2); }
.why-card:hover .why-icon { color: var(--white); }

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  color: var(--red);
  margin-bottom: 20px;
  display: block;
  transition: color 0.2s;
}
.why-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.why-num {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 12px;
}

/* compact why section */
.why { padding: 64px var(--gutter); }
.why .section-desc { margin-bottom: 0; }
.why-grid { margin-top: 36px; }
.why-card { padding: 26px 28px; }
.why-icon { margin-bottom: 14px; }
.why-icon svg { width: 28px; height: 28px; }
.why-num { margin-bottom: 8px; }
.why .section-cta { margin-top: 32px; }

.why-title {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.why-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── COMMISSION SECTION ─── */
.commission { background: var(--black); }

.commission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.comm-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.comm-card.featured {
  background: var(--surface2);
  border: 1px solid var(--border-red);
}

.comm-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--red);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 48px;
  transform: rotate(45deg);
}

.comm-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.comm-rate {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.comm-rate .unit {
  font-size: 36px;
  color: var(--gold);
}

.comm-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.comm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comm-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comm-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(224,41,58,0.15);
  border: 1px solid var(--red);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.5L4 7.5L8 3' stroke='%23e0293a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── GEO SECTION ─── */
.geos { background: var(--black2); }

.geo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2px;
  margin-top: 60px;
}
.geo-grid .geo-item {
  flex: 0 0 calc(25% - 2px);
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .geo-grid .geo-item { flex-basis: calc(50% - 2px); }
}

.geo-item {
  background: var(--surface);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  position: relative;
}
.geo-item:hover {
  background: var(--surface2);
  transform: scale(1.06);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.geo-flag { font-size: 40px; line-height: 1; }

.geo-info {}
.geo-name {
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.1;
}
.geo-rate {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── HOW IT WORKS ─── */
.how { background: var(--black); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), var(--red), var(--border-red), transparent);
}

.step {
  padding: 0 32px 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-num {
  width: 80px;
  height: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Special Gothic Condensed One', sans-serif;
  font-size: 28px;
  color: var(--red);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}
.step:hover .step-num {
  background: var(--surface2);
  border-color: var(--red);
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--black2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.testi-card {
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '\201D';
  position: absolute;
  top: 16px; right: 24px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  color: var(--red);
  opacity: 0.35;
  line-height: 0.6;
  pointer-events: none;
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.testi-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testi-role { font-size: 12px; color: var(--muted); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--gutter);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(224,41,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }

.cta-section .section-title {
  font-size: clamp(48px, 6vw, 80px);
  margin-bottom: 24px;
}

.cta-section .section-desc {
  margin: 0 auto 48px;
  max-width: 480px;
  text-align: center;
}

.cta-form {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--muted); }
.cta-input:focus { border-color: var(--red); }

.cta-submit {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-submit:hover { background: #c0222f; }

/* ─── FOOTER ─── */
footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 60px var(--gutter) 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo { display: inline-flex; margin-bottom: 16px; }
.footer-brand .logo .logo-img { height: 24px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ─── SECTION CTA ─── */
.section-cta {
  display: flex;
  align-items: center;
  margin-top: 48px;
}
.section-cta a {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px;
  border: none;
  background: var(--red);
  color: #fff;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.section-cta a::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.4s;
}
.section-cta a:hover::before { left: 150%; }
.section-cta a span, .section-cta a .arrow { position: relative; z-index: 1; }
.section-cta a .arrow {
  font-size: 18px;
  transition: transform 0.25s;
}
.section-cta a:hover .arrow { transform: translateX(5px); }
.section-cta a:hover { background: #c0222f; transform: translateY(-2px); }


.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border-red);
  width: 100%;
  max-width: 520px;
  margin: 20px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { padding: 32px 36px 24px; border-bottom: 1px solid var(--border); }
.modal-header .section-label { margin-bottom: 10px; }
.modal-title { font-family: 'Special Gothic Condensed One', sans-serif; font-size: 36px; letter-spacing: 1px; line-height: 1; color: var(--white); }
.modal-title span { color: var(--red); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; background: var(--surface2); border: 1px solid var(--border); color: var(--muted); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close:hover { background: var(--red); border-color: var(--red); color: #fff; }
.modal-body { padding: 28px 36px 36px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--black2); border: 1px solid var(--border); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 12px 14px; outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237a7a8c' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--surface); color: var(--white); }
.form-group textarea { resize: none; height: 100px; }
.modal-submit { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 16px; background: var(--red); color: #fff; border: none; cursor: pointer; width: 100%; clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%); transition: background 0.2s; margin-top: 4px; position: relative; overflow: hidden; }
.modal-submit::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.4s; }
.modal-submit:hover::after { left: 150%; }
.modal-submit:hover { background: #c0222f; }
.modal-note { font-size: 11px; color: var(--muted); text-align: center; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 12px; line-height: 1.5; color: var(--muted); padding: 2px; border: 1px solid transparent; transition: border-color 0.2s; }
.form-consent input { appearance: none; flex: 0 0 auto; width: 16px; height: 16px; margin-top: 1px; background: var(--black2); border: 1px solid var(--border); cursor: pointer; display: grid; place-content: center; transition: border-color 0.2s, background 0.2s; }
.form-consent input:checked { background: var(--red); border-color: var(--red); }
.form-consent input:checked::before { content: ''; width: 9px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(1px, -1px); }
.form-consent input:focus-visible { border-color: var(--red); }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1180px): hero stats move under content
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1180px) {
  .hero { padding: 110px 5% 60px; flex-direction: column; align-items: flex-start; }
  .hero-content { max-width: 100%; padding-right: 0; }
  .hero-stats {
    position: static;
    top: auto;
    right: auto;
    transform: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 100%;
    margin-top: 56px;
  }
  .stat-card { min-width: 0; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px): hamburger nav, 2-col grids
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: 4px 5% 12px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }

  section { padding: 72px 6%; }
  .why { padding: 56px 6%; }
  .section-desc { margin-bottom: 40px; }
  .section-title { margin-bottom: 16px; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .commission-layout { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 420px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  nav { height: 64px; padding: 0 5%; }
  .logo .logo-img { height: 18px; }
  .nav-links { top: 64px; max-height: calc(100vh - 64px); }

  .hero { padding: 96px 6% 48px; }
  .hero-badge { font-size: 10.5px; letter-spacing: 1.5px; padding: 6px 14px; margin-bottom: 24px; }
  .hero h1 {
    white-space: normal;
    font-size: clamp(32px, 11vw, 52px);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }
  .hero-sub { font-size: clamp(16px, 4.5vw, 20px); margin-bottom: 20px; }
  .hero-desc { font-size: 14.5px; margin-bottom: 32px; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; text-align: center; }
  .hero-stats { margin-top: 40px; }
  .stat-card { padding: 16px 18px; }
  .stat-num { font-size: 34px; }

  .section-title { font-size: clamp(32px, 9vw, 44px); }
  .section-desc { font-size: 14.5px; margin-bottom: 32px; }

  .why-grid, .testimonials-grid, .steps { grid-template-columns: 1fr; }
  .why-card { padding: 24px 22px; }

  .geo-grid .geo-item { flex-basis: 100%; }
  .geo-item { padding: 20px 22px; gap: 16px; }
  .geo-flag { font-size: 32px; }
  .geo-name { font-size: 20px; }

  .comm-card { padding: 32px 26px; }
  .comm-rate { font-size: 52px; }

  .cta-section { padding: 80px 6%; }
  .cta-form { flex-direction: column; }
  .cta-form .cta-submit { width: 100%; }

  .section-cta a { width: 100%; justify-content: center; padding: 16px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .modal { margin: 14px; max-height: calc(100vh - 28px); overflow-y: auto; }
  .modal-header { padding: 22px 20px 16px; }
  .modal-title { font-size: 26px; }
  .modal-body { padding: 18px 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤380px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: clamp(26px, 11vw, 38px); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }
  .comm-rate { font-size: 44px; }
}
