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

html { scroll-behavior: smooth; font-size: 16px; }

/* Neural network canvas — fixed, full-viewport, behind everything */
#neural-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.nav, .ticker-bar, main, footer { position: relative; z-index: 1; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #e2e8f0;
  background: #000000;
  min-height: 100vh;
}

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.375rem); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; color: #f1f5f9; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; line-height: 1.18; color: #f1f5f9; }
h3 { font-size: 1rem; font-weight: 700; color: #e2e8f0; }
p  { line-height: 1.7; color: #94a3b8; }

/* ── Layout ── */
.container { max-width: 72rem; margin-inline: auto; padding-inline: 1rem; }
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

/* ── Ticker Bar ── */
.ticker-bar {
  position: relative; z-index: 49;
  background: rgba(10,10,15,.95);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  height: 2.25rem;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: 0 .75rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.ticker-symbol {
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .7rem;
  text-transform: uppercase;
}
.ticker-price {
  color: #e2e8f0;
  font-variant-numeric: tabular-nums;
}
.ticker-change.up   { color: #22c55e; }
.ticker-change.down { color: #f43f5e; }
.ticker-sep {
  color: rgba(255,255,255,.1);
  font-size: .625rem;
  user-select: none;
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(237,173,223,.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 4rem;
}
.nav-logo { display: flex; align-items: center; gap: .625rem; text-decoration: none; flex-shrink: 0; }
.nav-logo-mark {
  width: 2rem; height: 2rem; border-radius: .5rem;
  background: linear-gradient(135deg,#e879b0,#a855d4);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(232,121,176,.35);
  flex-shrink: 0;
}
.nav-logo-text { font-size: 1.125rem; font-weight: 800; color: #f1f5f9; letter-spacing: -.02em; }
.nav-logo-text span { color: #e879b0; }
.nav-links { display: none; gap: 1.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; align-items: center; } }
.nav-links a { font-size: .875rem; font-weight: 500; color: #94a3b8; text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: #f1f5f9; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.btn-ghost {
  display: none; padding: .5rem 1rem; border-radius: .5rem; font-size: .875rem;
  font-weight: 500; color: #94a3b8; text-decoration: none; border: 1px solid rgba(237,173,223,.2);
  background: rgba(255,255,255,.04); transition: background .15s, box-shadow .15s;
}
@media (min-width: 640px) { .btn-ghost { display: inline-flex; align-items: center; } }
.btn-ghost:hover { background: rgba(255,255,255,.08); box-shadow: 0 2px 10px rgba(237,173,223,.12); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.75rem; border-radius: .75rem;
  background: linear-gradient(135deg,#e879b0 0%,#c026a0 50%,#9333a0 100%);
  color: #fff; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,121,176,.38), 0 1px 4px rgba(232,121,176,.2);
  transition: box-shadow .2s, transform .15s;
}
.btn-primary:hover  { box-shadow: 0 6px 28px rgba(232,121,176,.55); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.sm { padding: .5rem 1rem; font-size: .875rem; border-radius: .5rem; }
.btn-primary.lg { padding: 1rem 2.5rem; font-size: 1.125rem; font-weight: 700; border-radius: .875rem; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.5rem; border-radius: .75rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(237,173,223,.25);
  color: #e2e8f0; font-weight: 500; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  transition: background .15s, box-shadow .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.08); box-shadow: 0 2px 12px rgba(237,173,223,.15); }

/* ── Glass card ── */
.card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(237,173,223,.14);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 1px 4px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}
.card-hover { transition: transform .2s, box-shadow .2s; }
.card-hover:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(237,173,223,.1); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(237,173,223,.2);
  font-size: .75rem; font-weight: 600; color: #cbd5e1; letter-spacing: .06em; text-transform: uppercase;
}
.badge-dot { width: .5rem; height: .5rem; border-radius: 50%; background: #4ade80; flex-shrink: 0; }

/* ── System Status ── */
.sys-status {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(74,222,128,.18);
  font-size: .73rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: .04em;
  flex-wrap: wrap;
  row-gap: .3rem;
}
.sys-live-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  box-shadow: 0 0 6px #4ade80;
  animation: sys-blink 1.4s ease-in-out infinite;
}
@keyframes sys-blink {
  0%,100% { opacity: 1; box-shadow: 0 0 6px #4ade80; }
  50%      { opacity: .35; box-shadow: none; }
}
.sys-live-text {
  color: #4ade80;
  font-weight: 800;
  letter-spacing: .1em;
  font-size: .7rem;
}
.sys-divider {
  width: 1px;
  height: .85rem;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.sys-metric {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.sys-metric-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .67rem;
}
.sys-metric-val {
  color: #e2e8f0;
  font-variant-numeric: tabular-nums;
  min-width: 3.5ch;
}
.sys-metric-val.sys-ok { color: #4ade80; }
.sys-time {
  color: #475569;
  font-size: .67rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
}

/* ── Hero ── */
.hero { padding-block: 3rem 5rem; }
@media (min-width: 1024px) { .hero { padding-block: 5rem 7rem; } }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-left { display: flex; flex-direction: column; gap: 2rem; }
.hero-h1 { max-width: 30ch; }
.hero-h1 .accent { color: #e879b0; }

.hero-desc { display: flex; flex-direction: column; gap: .875rem; }
.hero-desc p { font-size: 1.0625rem; }
.hero-desc strong { font-weight: 600; color: #cbd5e1; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Trust grid ── */
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: .75rem;
}
@media (min-width: 480px) { .trust-grid { grid-template-columns: 1fr 1fr; } }

.trust-item {
  display: flex; gap: .75rem; align-items: flex-start; padding: 1rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(237,173,223,.12);
  border-radius: 1rem; transition: transform .2s, box-shadow .2s;
}
.trust-item:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(237,173,223,.1); }
.trust-icon {
  width: 2.25rem; height: 2.25rem; border-radius: .625rem;
  background: rgba(232,121,176,.1); border: 1px solid rgba(232,121,176,.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg path, .trust-icon svg circle, .trust-icon svg polyline {
  stroke: #e879b0 !important;
}
.trust-item h3 { font-size: .875rem; margin-bottom: .25rem; color: #e2e8f0; }
.trust-item p  { font-size: .75rem; line-height: 1.5; color: #64748b; }

/* ── Stats strip ── */
.stats-strip {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  padding-top: .75rem; border-top: 1px solid rgba(237,173,223,.15);
}
.stat-item .stat-val { font-size: 1.25rem; font-weight: 700; color: #f1f5f9; }
.stat-item .stat-lbl { font-size: .75rem; color: #64748b; margin-top: .1rem; }

/* ── Form card ── */
@keyframes border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.form-card {
  padding: 2.5rem 2rem 2rem;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(1.5rem + 2px);
  background: linear-gradient(135deg, #e879b0, #38bdf8, #4ade80, #f59e0b, #e879b0);
  background-size: 300% 300%;
  animation: border-flow 5s ease infinite;
  z-index: -1;
  opacity: .7;
}
.form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: #0d0d0f;
  z-index: -1;
}
@media (min-width: 768px) { .form-card { padding: 3rem 2.75rem 2.5rem; } }
.form-card-sticky { }
@media (min-width: 1024px) { .form-card-sticky { position: sticky; top: 5.5rem; } }

.form-header { margin-bottom: 1.25rem; }
.form-header h2 { font-size: 1.25rem; color: #f1f5f9; }
.form-header p  { font-size: .875rem; color: #64748b; margin-top: .25rem; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-field { display: flex; flex-direction: column; gap: .375rem; }
.form-field label { font-size: .875rem; font-weight: 500; color: #cbd5e1; }

.input {
  width: 100%; padding: .75rem 1rem; border-radius: .75rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(237,173,223,.18);
  font-size: .875rem; color: #f1f5f9; outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.input::placeholder { color: #475569; }
.input:focus { border-color: rgba(232,121,176,.5); box-shadow: 0 0 0 3px rgba(232,121,176,.1); }
.input.error { border-color: #f87171; background: rgba(239,68,68,.06); }

.phone-row { display: flex; gap: .5rem; }
.phone-row .dial-wrap { position: relative; flex-shrink: 0; }

/* hidden real select for form submission */
.phone-row .dial-wrap select {
  position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0;
}
.phone-row .input { flex: 1; }

/* Custom flag dial picker */
.flag-dial {
  display: flex; align-items: center; gap: .4rem;
  padding: .75rem .5rem .75rem .75rem; border-radius: .75rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(237,173,223,.18);
  font-size: .875rem; color: #f1f5f9; cursor: pointer; outline: none;
  min-width: 90px; font-family: inherit; user-select: none;
  transition: border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.flag-dial:focus, .flag-dial.open {
  border-color: rgba(232,121,176,.5);
  box-shadow: 0 0 0 3px rgba(232,121,176,.1);
}
.flag-dial img { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.flag-dial-arrow {
  margin-left: auto; width: 12px; height: 12px; flex-shrink: 0;
  transition: transform .2s;
}
.flag-dial.open .flag-dial-arrow { transform: rotate(180deg); }

.flag-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; z-index: 999;
  background: #141418; border: 1px solid rgba(237,173,223,.2);
  border-radius: .875rem; padding: .375rem 0;
  width: 220px; max-height: 260px; overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.6);
  display: none;
  scrollbar-width: thin; scrollbar-color: rgba(232,121,176,.3) transparent;
}
.flag-dropdown.open { display: block; }
.flag-dropdown-item {
  display: flex; align-items: center; gap: .625rem;
  padding: .5rem .875rem; cursor: pointer; font-size: .85rem; color: #e2e8f0;
  transition: background .12s;
}
.flag-dropdown-item:hover { background: rgba(232,121,176,.1); }
.flag-dropdown-item.selected { background: rgba(232,121,176,.08); color: #e879b0; }
.flag-dropdown-item img { width: 22px; height: 15px; border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.flag-dropdown-item-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.flag-dropdown-item-dial { color: #64748b; font-size: .8rem; }

.form-submit { margin-top: .25rem; width: 100%; padding: 1rem; border-radius: .75rem; font-size: 1rem; }

.form-privacy {
  font-size: .75rem; color: #475569; text-align: center; line-height: 1.6; margin-top: .75rem;
}
.form-privacy a { color: #e879b0; text-decoration: underline; text-underline-offset: 2px; }
.form-privacy a:hover { color: #f0a0c8; }

.form-trust {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding-top: .875rem; border-top: 1px solid rgba(237,173,223,.12);
  margin-top: .75rem;
}
.form-trust-item { display: flex; align-items: center; gap: .375rem; font-size: .75rem; color: #475569; }
.form-trust-div  { width: 1px; height: .875rem; background: rgba(237,173,223,.15); }

.error-msg { font-size: .75rem; color: #f87171; font-weight: 500; }

/* ── Section spacing ── */
.section { padding-block: 5rem; }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }

.section-header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 4rem; }
.section-header p { max-width: 40rem; font-size: 1rem; }

/* ── Features grid ── */
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3,1fr); } }

.feature-card { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-icon { font-size: 1.875rem; line-height: 1; }
.feature-card h3 { font-size: 1rem; color: #e2e8f0; }
.feature-card p  { font-size: .875rem; }

/* ── Steps ── */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }

.step-card { padding: 1.5rem; display: flex; flex-direction: column; gap: .875rem; }
.step-num {
  width: 3rem; height: 3rem; border-radius: .875rem; flex-shrink: 0;
  background: linear-gradient(135deg,#e879b0,#9333a0);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: #fff;
  box-shadow: 0 4px 12px rgba(232,121,176,.4);
}
.step-card h3 { font-size: 1rem; color: #e2e8f0; }
.step-card p  { font-size: .875rem; }

/* ── Testimonials ── */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }

.testi-card { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.stars { display: flex; gap: .2rem; }
.star { color: #f59e0b; font-size: .875rem; }
.testi-card blockquote { font-size: .875rem; line-height: 1.7; font-style: normal; color: #94a3b8; }
.testi-footer { border-top: 1px solid rgba(237,173,223,.12); padding-top: .875rem; margin-top: auto; }
.testi-name { font-size: .875rem; font-weight: 600; color: #e2e8f0; }
.testi-role { font-size: .75rem; color: #64748b; margin-top: .15rem; }

/* ── CTA banner ── */
.cta-banner {
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 2rem; text-align: center;
}
@media (min-width: 1024px) {
  .cta-banner {
    flex-direction: row; justify-content: space-between; text-align: left;
    padding: 4rem;
  }
}
.cta-banner-text { display: flex; flex-direction: column; gap: .75rem; max-width: 38rem; }
.cta-banner-text p { font-size: 1rem; }

/* ── FAQ ── */
.faq-section {
  padding: 5rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.faq-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-top: .5rem;
  line-height: 1.6;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.faq-item {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(237,173,223,.14);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.faq-item:hover {
  border-color: rgba(237,173,223,.25);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.faq-item.open {
  border-color: rgba(232,121,176,.4);
  background: rgba(232,121,176,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 6px 28px rgba(232,121,176,.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  font-family: inherit;
  line-height: 1.4;
  transition: color .15s;
}
.faq-q:hover { color: #f8fafc; }
.faq-icon {
  flex-shrink: 0;
  color: #e879b0;
  transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > p {
  overflow: hidden;
  padding: 0 1.5rem 1.375rem;
  font-size: .9625rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0;
  border-top: 1px solid rgba(237,173,223,.1);
  padding-top: 1rem;
}
.faq-cta {
  max-width: 780px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(237,173,223,.14);
  border-radius: 1rem;
}
.faq-cta p { color: #94a3b8; font-size: .9375rem; margin: 0; }
@media (max-width: 560px) { .faq-cta { flex-direction: column; text-align: center; } }

/* ── Office Map ── */
.map-section {
  padding: 5rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.map-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
  align-items: stretch;
}
.map-embed {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(237,173,223,.15);
  min-height: 440px;
  background: #0d1117;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
  display: block;
  filter: saturate(.7) brightness(.85) contrast(1.05);
}
.map-pin-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(10,12,18,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232,121,176,.25);
  border-radius: 100px;
  padding: .4rem .9rem .4rem .65rem;
  font-size: .8rem;
  font-weight: 600;
  color: #e2e8f0;
  pointer-events: none;
}
.map-info-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.25rem;
}
.map-info-logo {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.map-info-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -.01em;
}
.map-info-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.map-info-row {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.map-info-icon {
  width: 2rem;
  height: 2rem;
  border-radius: .5rem;
  background: rgba(232,121,176,.1);
  border: 1px solid rgba(232,121,176,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e879b0;
  margin-top: .1rem;
}
.map-info-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #e879b0;
  margin-bottom: .2rem;
}
.map-info-value {
  font-size: .9rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: .75rem;
  background: rgba(232,121,176,.1);
  border: 1px solid rgba(232,121,176,.25);
  color: #e879b0;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  margin-top: auto;
}
.map-directions-btn:hover {
  background: rgba(232,121,176,.18);
  border-color: rgba(232,121,176,.45);
  color: #f472b6;
}
@media (max-width: 860px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }
  .map-embed,
  .map-embed iframe { min-height: 300px; }
}

.map-branches {
  max-width: 1100px;
  margin: 1.5rem auto 0;
}
.map-branches-inner {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(237,173,223,.12);
  border-radius: .875rem;
  font-size: .875rem;
  color: #64748b;
  line-height: 1.6;
}
.map-branches-inner svg { color: #e879b0; flex-shrink: 0; margin-top: .15rem; }
.map-branches-inner strong { color: #cbd5e1; font-weight: 600; }
.map-branches-inner a { color: #e879b0; text-decoration: underline; text-underline-offset: 2px; }
.map-branches-inner a:hover { color: #f0a0c8; }

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(237,173,223,.1);
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .375rem 1.25rem; }
.footer-nav a { font-size: .875rem; color: #475569; text-decoration: none; transition: color .15s; }
.footer-nav a:hover { color: #94a3b8; }
.footer-legal { font-size: .75rem; color: #475569; }
.footer-legal span { display: block; margin-top: .25rem; color: #334155; }

/* ── Success state ── */
.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; min-height: 24rem; text-align: center; padding: 2rem;
}
.success-icon {
  width: 4rem; height: 4rem; border-radius: 50%; background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.3); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #4ade80;
}
.form-success h2 { font-size: 1.5rem; color: #f1f5f9; }
.form-success p { font-size: .875rem; max-width: 20rem; }

/* ═══════════════════════════════════════════
   EARNINGS SHOWCASE SECTION
═══════════════════════════════════════════ */

.earn-section {
  position: relative;
  padding: 6rem 0 7rem;
  overflow: hidden;
  background: #000;
}

/* Decorative background */
.earn-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.earn-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .18;
}
.earn-bg-glow--left  { top: -100px; left: -200px; background: #3b82f6; }
.earn-bg-glow--right { bottom: -100px; right: -200px; background: #e879b0; }

/* Glass card base */
.glass-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
}

/* ── Section header ── */
.earn-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.earn-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #e879b0;
  text-transform: uppercase;
  background: rgba(232,121,176,.08);
  border: 1px solid rgba(232,121,176,.18);
  padding: .375rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.earn-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e879b0;
  animation: pulse-pink 2s infinite;
}
@keyframes pulse-pink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.earn-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.earn-accent { color: #e879b0; }
.earn-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.earn-subtitle .hl {
  color: #f1f5f9;
  font-weight: 600;
}

/* ── KPI Strip ── */
.earn-kpi-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 2.5rem 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.earn-kpi {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 1rem 1.5rem;
}
.earn-kpi-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #f1f5f9 30%, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.earn-kpi-label {
  font-size: .875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-top: .5rem;
}
.earn-kpi-sub {
  font-size: .75rem;
  color: #64748b;
  margin-top: .25rem;
}
.earn-kpi-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}
@media (max-width: 640px) { .earn-kpi-divider { display: none; } }

/* ── Main 3-column grid ── */
/* ── New 2-col earn grid ── */
.earn-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .earn-main-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Shared card labels */
.earn-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #e879b0;
  text-transform: uppercase;
  margin-bottom: .375rem;
}
.earn-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
}

/* ── Earnings panel (left) ── */
.earn-income-panel {
  display: flex;
  flex-direction: column;
}
.earn-income-note {
  font-size: .65rem;
  color: #475569;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: .75rem;
  margin-top: .25rem;
}

/* ── AI Head (right) ── */
.earn-aihead-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.earn-aihead-img {
  width: 100%;
  max-width: 560px;
  display: block;
  border-radius: 1rem;
  object-fit: cover;
}

/* Floating chips (used on aihead) */
.earn-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,200,255,.2);
  border-radius: .75rem;
  padding: .5rem .875rem;
  animation: float-chip 4s ease-in-out infinite;
  z-index: 2;
}
.earn-chip--tl { top: 1.5rem; left: .5rem; animation-delay: 0s; }
.earn-chip--br { bottom: 3.5rem; right: .5rem; animation-delay: 1.5s; }
@keyframes float-chip {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.earn-chip-val { font-size: .875rem; font-weight: 700; color: #00d4ff; line-height: 1.2; }
.earn-chip-desc { font-size: .62rem; color: #64748b; }

/* ── Win-rate timeline ── */
.earn-winrate-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (max-width: 768px) {
  .earn-winrate-section { grid-template-columns: 1fr; gap: 2rem; }
}
.earn-winrate-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.25;
  margin-bottom: .875rem;
}
.earn-winrate-desc {
  font-size: .9rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.earn-winrate-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.earn-ws-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f1f5f9;
}
.earn-ws-label { font-size: .75rem; color: #64748b; margin-top: .2rem; }

/* Winrate chart */
.earn-winrate-chart {
  padding: 1.5rem;
}
.earn-wc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  font-weight: 600;
  color: #94a3b8;
}
.earn-wc-current { color: #e879b0; font-weight: 700; font-size: .9rem; }
.earn-wc-rows { display: flex; flex-direction: column; gap: .875rem; }
.earn-wc-row {
  display: grid;
  grid-template-columns: 40px 1fr 48px;
  align-items: center;
  gap: .75rem;
}
.earn-wc-year { font-size: .75rem; font-weight: 600; color: #64748b; }
.earn-wc-bar-wrap {
  height: 8px;
  background: rgba(255,255,255,.05);
  border-radius: 100px;
  overflow: hidden;
}
.earn-wc-bar {
  height: 100%;
  width: 0;
  background: var(--c);
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.earn-wc-bar.animated { width: var(--w); }
.earn-wc-pct { font-size: .75rem; font-weight: 600; color: #64748b; text-align: right; }
.earn-wc-pct--active { color: #e879b0; }
.earn-wc-row--active .earn-wc-year { color: #f1f5f9; }
.earn-wc-footer {
  margin-top: 1rem;
  font-size: .75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: .375rem;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: .75rem;
}

/* ── Top Earners ── */
.earn-earners { margin-bottom: 3.5rem; }
.earn-earners-header { text-align: center; margin-bottom: 2rem; }
.earn-earners-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #f1f5f9;
  margin-top: .5rem;
}
.earn-earners-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 900px) { .earn-earners-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .earn-earners-grid { grid-template-columns: 1fr; } }

.earn-earner-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.earn-earner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.earn-earner-card--featured {
  border-color: rgba(232,121,176,.3);
  box-shadow: 0 0 0 1px rgba(232,121,176,.15), 0 20px 40px rgba(232,121,176,.08);
}
.earn-earner-featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg,#e879b0,#f43f5e);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 100px;
}
.earn-earner-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.1);
}
.earn-earner-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
}
.earn-earner-flag { font-size: .875rem; }
.earn-earner-role { font-size: .75rem; color: #64748b; }
.earn-earner-profit {
  font-size: 1.25rem;
  font-weight: 800;
  color: #22c55e;
}
.earn-earner-profit span { font-size: .75rem; color: #64748b; font-weight: 400; }
.earn-earner-profit--featured { color: #e879b0; font-size: 1.4rem; }
.earn-earner-quote {
  font-size: .8rem;
  color: #94a3b8;
  line-height: 1.6;
  font-style: italic;
  border-left: 2px solid rgba(232,121,176,.3);
  padding-left: .75rem;
}

/* ── Bottom CTA — Countdown Timer ── */
.earn-bottom-cta-inner {
  padding: 2.5rem 2.75rem;
  background: linear-gradient(135deg, rgba(232,121,176,.06) 0%, rgba(59,130,246,.06) 100%);
  border-color: rgba(232,121,176,.18);
}
.cta-timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 2.75rem 2rem;
  background: linear-gradient(135deg, rgba(6,182,212,.05) 0%, rgba(232,121,176,.07) 100%);
  border-color: rgba(6,182,212,.18);
}
.cta-timer-slots {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem .9rem;
  border-radius: 100px;
}
.cta-timer-slots strong { color: #f87171; }
.cta-timer-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  display: inline-block;
  animation: pulse-red 1.2s infinite;
}
@keyframes pulse-red {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50% { opacity: .7; box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}
.cta-timer-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
}
.cta-timer-blocks {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cta-tb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(6,182,212,.2);
  border-radius: .875rem;
  padding: .875rem 1.25rem;
  min-width: 72px;
  box-shadow: 0 0 20px rgba(6,182,212,.07), inset 0 1px 0 rgba(255,255,255,.04);
}
.cta-tb-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: #00d4ff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0,212,255,.45);
}
.cta-tb-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #475569;
}
.cta-tb-sep {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0,212,255,.4);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.cta-timer-btn {
  margin-top: .25rem;
  font-size: 1rem;
  padding: .875rem 2.5rem;
}
@media (max-width: 480px) {
  .cta-tb { min-width: 56px; padding: .65rem .75rem; }
  .cta-tb-val { font-size: 1.6rem; }
  .cta-timer-blocks { gap: .4rem; }
}

/* ── Timer manager note ── */
.form-manager-note {
  margin-top: .5rem;
  margin-bottom: .25rem;
}
.cta-timer-manager-note {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  justify-content: center;
  margin-top: .9rem;
  font-size: .875rem;
  font-weight: 500;
  color: #00d4ff;
  text-shadow: 0 0 12px rgba(0,212,255,.35);
  line-height: 1.5;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ── XP Earnings rows (replaces deposit breakdown) ── */
.earn-income-intro {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.55;
  margin: .5rem 0 1.25rem;
}
.earn-xp-rows {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.earn-xp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .875rem 1rem;
  border-radius: .875rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .2s, background .2s;
}
.earn-xp-row:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.12);
}
.earn-xp-row--top {
  border-color: rgba(232,121,176,.22);
  background: rgba(232,121,176,.05);
}
.earn-xp-row--top:hover {
  background: rgba(232,121,176,.09);
  border-color: rgba(232,121,176,.35);
}
.earn-xp-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.earn-xp-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}
.earn-xp-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--bc, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bc, #22c55e);
  box-shadow: 0 0 10px color-mix(in srgb, var(--bc, #22c55e) 30%, transparent);
}
.earn-xp-title {
  font-size: .825rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}
.earn-xp-desc {
  font-size: .7rem;
  color: #64748b;
  margin-top: .2rem;
}
.earn-xp-amount {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  flex-shrink: 0;
}
.earn-xp-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #22c55e;
  font-variant-numeric: tabular-nums;
}
.earn-xp-val--mid  { color: #06b6d4; }
.earn-xp-val--top  { color: #e879b0; text-shadow: 0 0 12px rgba(232,121,176,.4); }
.earn-xp-day {
  font-size: .7rem;
  color: #64748b;
  font-weight: 500;
}

/* ── Ratings Section ── */
.ratings-section {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 1.5rem;
}
.ratings-summary {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.ratings-great {
  font-weight: 700;
  color: #f1f5f9;
  font-size: 1.35rem;
}
.ratings-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.ratings-meta {
  font-size: 1.1rem;
  color: #94a3b8;
}
.ratings-meta strong { color: #e2e8f0; }
.ratings-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.rating-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.125rem;
  padding: 1.5rem 1.75rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.rating-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-3px);
}
.rating-card-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.rating-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}
.rating-card-stars {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.rc-stars {
  color: #F5A623;
  font-size: 1.25rem;
  letter-spacing: 2px;
}
.rc-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1f5f9;
}
@media (max-width: 900px) {
  .ratings-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ratings-cards { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .rating-card { padding: 1rem 1.1rem; }
}
