/* Turbo Finanz AI — dark, colorful theme */
:root {
  --bg: #060818;
  --bg-2: #0b1030;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #eef1ff;
  --muted: #a6b0d6;
  --c1: #22d3ee; /* cyan  */
  --c2: #a855f7; /* purple*/
  --c3: #f59e0b; /* amber */
  --grad: linear-gradient(90deg, #22d3ee, #a855f7 55%, #f59e0b);
  --grad-soft: linear-gradient(135deg, rgba(34, 211, 238, .18), rgba(168, 85, 247, .18));
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* aurora background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 12% -8%, rgba(34, 211, 238, .18), transparent 60%),
    radial-gradient(800px 520px at 92% 6%, rgba(168, 85, 247, .20), transparent 60%),
    radial-gradient(900px 600px at 50% 110%, rgba(245, 158, 11, .12), transparent 60%),
    var(--bg);
}

.container { width: 92%; max-width: var(--max); margin: 0 auto; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
section { padding: 84px 0; position: relative; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c1); margin-bottom: 14px;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; font-weight: 800; letter-spacing: -.02em; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }

/* ---------- Header / Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 8, 24, .72);
  border-bottom: 1px solid var(--card-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-weight: 800; font-size: 21px; letter-spacing: -.02em; text-decoration: none; color: var(--text); }
.brand b { font-weight: 800; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
/* Language dropdown selector */
.lang-dd { position: relative; margin-left: 4px; }
.lang-dd-btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font: inherit;
  font-size: 14px; font-weight: 700; color: var(--text);
  padding: 8px 12px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--card-border);
  transition: border-color .2s, background .2s;
}
.lang-dd-btn:hover { border-color: rgba(168, 85, 247, .5); background: rgba(255, 255, 255, .06); }
.lang-dd-btn .flag { font-size: 17px; line-height: 1; }
.lang-dd-btn .code { letter-spacing: .5px; }
.lang-dd-btn .chev { opacity: .7; transition: transform .25s; }
.lang-dd.open .lang-dd-btn { border-color: transparent; background: var(--grad-soft); }
.lang-dd.open .lang-dd-btn .chev { transform: rotate(180deg); }

.lang-dd-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 196px;
  margin: 0; padding: 6px; list-style: none;
  background: rgba(11, 14, 36, .97); backdrop-filter: blur(16px);
  border: 1px solid var(--card-border); border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55); z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transform-origin: top right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.lang-dd.open .lang-dd-menu { opacity: 1; visibility: visible; transform: none; }
.lang-dd-menu li { margin: 0; }
.lang-dd-menu a {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px;
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600;
  transition: background .15s, color .15s;
}
.lang-dd-menu a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.lang-dd-menu a.active { color: #fff; background: var(--grad-soft); }
.lang-dd-menu .flag { font-size: 19px; line-height: 1; }
.lang-dd-menu .name { flex: 1; }
.lang-dd-menu .code-min { font-size: 11px; font-weight: 700; letter-spacing: 1px; opacity: .55; }
.lang-dd-menu .tick { width: 12px; color: var(--c1); font-weight: 900; text-align: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 16px;
  text-decoration: none; cursor: pointer; border: none; transition: transform .15s, box-shadow .2s;
}
.btn-primary { background: var(--grad); color: #07091c; box-shadow: 0 10px 30px rgba(168, 85, 247, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(34, 211, 238, .4); }
.btn-ghost { background: var(--card); color: var(--text); border: 1px solid var(--card-border); }
.nav .btn { padding: 10px 20px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { padding-top: 60px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--grad-soft); border: 1px solid var(--card-border); color: #d8defc;
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, .25); }
.hero h1 { font-size: clamp(34px, 5vw, 56px); }
.hero .lead { font-size: 19px; color: var(--muted); margin: 0 0 26px; max-width: 560px; }
.hero-points { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.hero-points li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.hero-points .check {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #07091c; font-size: 14px; font-weight: 900;
}

/* form card */
.form-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--card-border); border-radius: 24px; padding: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45); position: relative;
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; text-align: center; }
.form-card .form-sub { color: var(--muted); font-size: 15px; text-align: center; margin: 0 0 18px; }
.form-card .micro { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }
.app { min-height: 120px; }

/* ---------- Stats ---------- */
.stats { padding: 30px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  text-align: center; padding: 26px 16px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-border);
}
.stat .num { font-size: clamp(26px, 3vw, 38px); font-weight: 800; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px; transition: transform .2s, border-color .2s, background .2s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(168, 85, 247, .5); background: rgba(255,255,255,.06); }
.card .ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  font-size: 28px; background: var(--grad-soft); border: 1px solid var(--card-border); margin-bottom: 16px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }
.step-num { font-variant-numeric: tabular-nums; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-weight: 600; }
.about-list .check { color: var(--c1); font-weight: 900; }
.about-visual {
  border-radius: 24px; border: 1px solid var(--card-border); padding: 30px;
  background: linear-gradient(160deg, rgba(34,211,238,.12), rgba(168,85,247,.12));
  position: relative; overflow: hidden;
}
.ai-orb {
  width: 180px; height: 180px; border-radius: 50%; margin: 10px auto 24px;
  background: conic-gradient(from 0deg, #22d3ee, #a855f7, #f59e0b, #22d3ee);
  filter: blur(2px); animation: spin 14s linear infinite;
  box-shadow: 0 0 80px rgba(168, 85, 247, .5);
}
@keyframes spin { to { transform: rotate(360deg); } }
.ai-bars { display: flex; gap: 10px; align-items: flex-end; height: 90px; justify-content: center; }
.ai-bars span { width: 14px; border-radius: 6px 6px 0 0; background: var(--grad); animation: bar 1.6s ease-in-out infinite; }
@keyframes bar { 0%,100% { height: 22px; } 50% { height: 84px; } }

/* ---------- Reviews ---------- */
.review .stars { color: var(--c3); margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--text); font-size: 15px; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review .av {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800;
  background: var(--grad); color: #07091c;
}
.review .who b { display: block; font-size: 15px; }
.review .who small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { color: var(--c1); font-size: 24px; transition: transform .25s; flex: 0 0 auto; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .ans { padding: 0 24px 20px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta-box {
  text-align: center; border-radius: 28px; padding: 64px 28px;
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(168,85,247,.18), rgba(245,158,11,.14));
  border: 1px solid var(--card-border);
}
.cta-box h2 { font-size: clamp(28px, 4vw, 42px); }
.cta-box p { color: #d8defc; font-size: 18px; max-width: 620px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--card-border); padding: 48px 0 36px; background: rgba(0,0,0,.25); }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 26px; }
.foot-top .brand { display: block; margin-bottom: 10px; }
.foot-top p { color: var(--muted); max-width: 360px; margin: 0; }
.foot-langs { display: flex; gap: 10px; flex-wrap: wrap; }
.foot-langs a {
  display: inline-flex; align-items: center; gap: 7px; color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: 14px; padding: 7px 12px; border-radius: 10px;
  border: 1px solid var(--card-border); transition: color .2s, border-color .2s, background .2s;
}
.foot-langs a .flag { font-size: 16px; line-height: 1; }
.foot-langs a:hover { color: #fff; border-color: rgba(168, 85, 247, .5); }
.foot-langs a.active { color: #fff; background: var(--grad-soft); border-color: transparent; }
.risk {
  border: 1px solid var(--card-border); border-radius: 14px; padding: 18px 20px;
  background: rgba(255,255,255,.03); color: var(--muted); font-size: 13px;
}
.risk b { color: #cdd5f5; display: block; margin-bottom: 6px; }
.copy { text-align: center; color: var(--muted); font-size: 13px; margin-top: 22px; }

/* ---------- Live signup toast ---------- */
.alertik, .alert-cont { font-family: inherit !important; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .stats-grid, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .nav-links .nav-only { display: none; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .cols-3, .cols-4, .stats-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 10px; }
  .foot-top { flex-direction: column; }
}
