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

/* ── DESIGN TOKENS ──────────────────────────── */
:root {
  --bg:    #060b18;
  --bg2:   #080e20;
  --bg3:   #0b1427;
  --card:  #0d1829;
  --card2: #101f35;
  --border:  #162540;
  --border2: #1e3556;
  --cyan:    #00c8ff;
  --cyan2:   #0099cc;
  --purple:  #7c4dff;
  --purple2: #5c35cc;
  --green:   #00e676;
  --orange:  #ff6d3b;
  --red:     #ff4444;
  --text:    #d4e4f7;
  --text2:   #7a90b0;
  --text3:   #3a5070;
  --white:   #ffffff;
  --font:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', 'Fira Code', monospace;
  --r:    10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow:      0 8px 32px rgba(0,0,0,.55);
  --shadow-cyan: 0 0 50px rgba(0,200,255,.12);
  --tr: all .28s cubic-bezier(.4,0,.2,1);
}

/* ── BASE ───────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: var(--cyan); text-decoration: none; transition: var(--tr); }
a:hover { opacity: .8; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; color: var(--white); }

/* ── TYPOGRAPHY HELPERS ─────────────────────── */
.label {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: .75rem;
  display: block;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; color: var(--text2); max-width: 640px; line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #4d9fff 50%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.mono { font-family: var(--mono); }
.code-chip {
  display: inline-block; font-family: var(--mono); font-size: .78rem;
  padding: 2px 8px; border-radius: 5px;
  background: rgba(0,200,255,.08); border: 1px solid rgba(0,200,255,.18);
  color: var(--cyan); margin: 1px;
}

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r); font-size: .95rem;
  font-weight: 600; cursor: pointer; transition: var(--tr);
  border: none; font-family: var(--font); white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0066ff);
  color: var(--white); box-shadow: 0 4px 20px rgba(0,200,255,.35);
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,200,255,.5); opacity: 1;
}
.btn-outline {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); opacity: 1; }
.btn-purple-outline {
  background: transparent; color: #b89aff;
  border: 1.5px solid rgba(124,77,255,.5);
}
.btn-purple-outline:hover {
  background: rgba(124,77,255,.1); border-color: var(--purple);
  color: #d4baff; opacity: 1;
}
.btn-lg { padding: 14px 30px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGE / PILL ────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: .8rem; font-weight: 500;
}
.pill-cyan   { background: rgba(0,200,255,.1); color: var(--cyan); border: 1px solid rgba(0,200,255,.2); }
.pill-purple { background: rgba(124,77,255,.1); color: #b89aff; border: 1px solid rgba(124,77,255,.2); }
.pill-orange { background: rgba(255,109,59,.1); color: #ff9070; border: 1px solid rgba(255,109,59,.2); }
.pill-green  { background: rgba(0,230,118,.1); color: var(--green); border: 1px solid rgba(0,230,118,.2); }

/* ── ICON BOX ────────────────────────────────── */
.icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.ib-cyan   { background: rgba(0,200,255,.12); border: 1px solid rgba(0,200,255,.2); }
.ib-purple { background: rgba(124,77,255,.12); border: 1px solid rgba(124,77,255,.2); }
.ib-red    { background: rgba(255,68,68,.12); border: 1px solid rgba(255,68,68,.2); }
.ib-orange { background: rgba(255,109,59,.12); border: 1px solid rgba(255,109,59,.2); }
.ib-green  { background: rgba(0,230,118,.12); border: 1px solid rgba(0,230,118,.2); }

/* ── GRID ────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── CARD ────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; transition: var(--tr);
}
.card:hover {
  background: var(--card2); border-color: var(--border2);
  transform: translateY(-5px); box-shadow: var(--shadow);
}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes flowRight {
  0%{transform:translateX(-110%);opacity:0}
  15%{opacity:1} 85%{opacity:1}
  100%{transform:translateX(210%);opacity:0}
}
@keyframes scanLine {
  0%{top:0;opacity:.6} 100%{top:100%;opacity:0}
}
@keyframes typeAppear {
  from{opacity:0;transform:translateX(-4px)} to{opacity:1;transform:translateX(0)}
}

.fade-up { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity:1; transform:translateY(0); }

/* ── BG GRID / BLOBS ─────────────────────────── */
.bg-grid {
  background-image: linear-gradient(rgba(0,200,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,200,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; transition: var(--tr);
}
.header.scrolled {
  background: rgba(6,11,24,.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), #0066ff);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: .85rem; color: #fff;
  box-shadow: 0 0 22px rgba(0,200,255,.4);
}
.logo-wordmark { line-height: 1; }
.logo-wordmark strong { font-size: 1.35rem; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.logo-wordmark span { display: block; font-size: .62rem; color: var(--text2); letter-spacing: .05em; font-weight: 400; margin-top: 1px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: .88rem; font-weight: 500;
  color: var(--text2); text-decoration: none; transition: var(--tr);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.05); opacity: 1; }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > .nav-link::after { content: '▾'; margin-left: 3px; font-size: .68rem; }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--card2); border: 1px solid var(--border2); border-radius: var(--r);
  padding: 6px; min-width: 220px; opacity: 0; visibility: hidden; transition: var(--tr);
  box-shadow: var(--shadow);
}
.has-drop:hover .drop-menu { opacity: 1; visibility: visible; }
.drop-item {
  display: block; padding: 9px 14px; border-radius: 7px;
  font-size: .87rem; color: var(--text2); transition: var(--tr);
}
.drop-item:hover { background: rgba(0,200,255,.07); color: var(--cyan); opacity: 1; }
.drop-item.accent { color: #a87aff; }
.drop-divider { height: 1px; background: var(--border); margin: 5px 0; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile toggle */
.burger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; padding: 4px; }

/* ═══════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════ */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(6,11,24,.98); backdrop-filter: blur(20px);
  flex-direction: column; padding: 80px 24px 32px; gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1.05rem; padding: 13px 16px; color: var(--text); }
.mobile-nav-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: var(--text2); font-size: 1.5rem; cursor: pointer;
}
.mobile-nav-footer { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; width: 100%; padding: 60px 0;
}

/* Hero text side */
.hero-content { animation: fadeInUp .8s ease both; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  background: rgba(0,200,255,.08); border: 1px solid rgba(0,200,255,.2);
  font-size: .78rem; font-weight: 600; color: var(--cyan);
  letter-spacing: .07em; text-transform: uppercase;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); animation: blink 2s infinite;
}
.hero-h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -.04em; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text2); line-height: 1.7;
  margin-bottom: 36px; max-width: 510px;
}
.hero-form { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.hero-form input {
  flex: 1; min-width: 190px; padding: 13px 18px;
  background: var(--card2); border: 1.5px solid var(--border2);
  border-radius: var(--r); color: var(--text); font-family: var(--font);
  font-size: .95rem; outline: none; transition: var(--tr);
}
.hero-form input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,200,255,.1); }
.hero-form input::placeholder { color: var(--text3); }
.hero-note { font-size: .83rem; color: var(--text3); }
.hero-note a { color: var(--text2); text-decoration: underline; text-decoration-color: var(--border2); }
.hero-note a:hover { color: var(--cyan); opacity: 1; }

/* ── Widget ─────────────────────────────────── */
.hero-widget { animation: fadeInUp .8s ease .2s both; position: relative; }
.widget-wrap {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--r-xl); padding: 22px; box-shadow: var(--shadow), var(--shadow-cyan);
  position: relative; overflow: hidden;
}
.widget-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.wg-titlebar { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.wg-dot { width: 10px; height: 10px; border-radius: 50%; }
.wg-label { font-family: var(--mono); font-size: .75rem; color: var(--text3); margin-left: auto; }
.wg-body { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 12px; align-items: start; }

/* Code panes */
.pane {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 14px;
  font-family: var(--mono); font-size: .7rem; line-height: 1.75; overflow: hidden;
  position: relative;
}
.pane-head {
  font-size: .67rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid var(--border);
}
.pane-xml .pane-head { color: #ff9040; }
.pane-sql .pane-head { color: var(--cyan); }

/* XML syntax */
.xt { color: #ff9040; }
.xa { color: #87ceeb; }
.xv { color: #90ee90; }
.xc { color: var(--text3); font-style: italic; }

/* SQL syntax */
.sk { color: #569cd6; }
.st { color: #4ec9b0; }
.sn { color: #dcdcaa; }
.sr { color: var(--cyan); }
.sc { color: var(--text3); font-style: italic; }

/* scan line animation */
.pane-xml::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,144,64,.4), transparent);
  animation: scanLine 3s ease infinite;
}

/* Center arrow */
.wg-arrow {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px; padding-top: 36px;
}
.wg-arrow-badge {
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: .04em;
}
.wg-arrow-line {
  width: 2px; height: 28px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cyan), var(--purple));
}
.wg-arrow-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%;
  background: rgba(255,255,255,.6);
  animation: flowRight 1.8s ease infinite;
}
.wg-arrow-head { color: var(--cyan); font-size: 1rem; animation: float 2s ease infinite; }
.wg-arrow-note { font-size: .62rem; color: var(--text3); font-family: var(--mono); text-align: center; line-height: 1.4; }

/* Widget footer */
.wg-footer {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.wg-stat { font-size: .75rem; color: var(--text2); display: flex; align-items: center; gap: 5px; }
.wg-stat b { color: var(--green); }

/* ═══════════════════════════════════════════════
   PAIN SECTION
═══════════════════════════════════════════════ */
.pain-section { background: var(--bg2); }
.pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px; transition: var(--tr);
  position: relative; overflow: hidden;
}
.pain-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: var(--tr);
}
.pain-card:hover::after { opacity: 1; }
.pain-card:nth-child(1)::after { background: var(--red); }
.pain-card:nth-child(2)::after { background: var(--orange); }
.pain-card:nth-child(3)::after { background: var(--purple); }
.pain-card:hover { border-color: var(--border2); transform: translateY(-6px); box-shadow: var(--shadow); }
.pain-num { font-family: var(--mono); font-size: 3rem; font-weight: 900; color: var(--border2); line-height: 1; margin-bottom: 16px; }
.pain-title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin: 12px 0 10px; }
.pain-text { font-size: .9rem; color: var(--text2); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   CORE VALUE / FEATURES
═══════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--border); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border);
}
.feat-item { background: var(--bg2); padding: 40px; transition: var(--tr); }
.feat-item:hover { background: var(--card); }
.feat-title { font-size: 1.12rem; font-weight: 700; margin: 16px 0 10px; }
.feat-text  { font-size: .9rem; color: var(--text2); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   DB SECTION
═══════════════════════════════════════════════ */
.db-section { background: var(--bg2); }
.db-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; transition: var(--tr); text-align: center;
}
.db-card:hover { border-color: var(--border2); transform: translateY(-5px); box-shadow: var(--shadow); }
.db-icon {
  width: 68px; height: 68px; border-radius: 18px; font-size: 2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.db-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.db-desc { font-size: .85rem; color: var(--text2); line-height: 1.6; }
.db-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.db-tag {
  font-family: var(--mono); font-size: .7rem; padding: 3px 9px;
  background: var(--bg3); border: 1px solid var(--border2); border-radius: 5px; color: var(--text2);
}

/* ═══════════════════════════════════════════════
   USE CASES
═══════════════════════════════════════════════ */
.uc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px; transition: var(--tr);
}
.uc-card:hover { border-color: var(--border2); transform: translateY(-5px); box-shadow: var(--shadow); }
.uc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.uc-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.uc-text  { font-size: .9rem; color: var(--text2); line-height: 1.65; }

/* Fintech banner */
.fintech-banner {
  background: linear-gradient(135deg, rgba(124,77,255,.1), rgba(0,100,255,.08));
  border: 1px solid rgba(124,77,255,.28); border-radius: var(--r-xl);
  padding: 40px; margin-top: 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.ft-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.ft-text  { font-size: .95rem; color: var(--text2); line-height: 1.65; }
.ft-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-section { background: var(--bg2); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); position: relative; }
.steps::before {
  content: ''; position: absolute; top: 31px; left: 16.66%; right: 16.66%; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--cyan));
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 1.3rem; font-weight: 800; color: var(--cyan);
  margin: 0 auto 24px; position: relative; z-index: 1; transition: var(--tr);
}
.step:hover .step-num {
  background: rgba(0,200,255,.1); border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0,200,255,.28);
}
.step-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.step-text  { font-size: .9rem; color: var(--text2); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   LEAD CAPTURE
═══════════════════════════════════════════════ */
.leads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lead-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px; position: relative; overflow: hidden;
}
.lead-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.lead-form.fa::before { background: linear-gradient(90deg, var(--cyan), #0066ff); }
.lead-form.fb::before { background: linear-gradient(90deg, var(--purple), #e040fb); }
.lf-tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 16px;
}
.lf-tag.a { background: rgba(0,200,255,.1); color: var(--cyan); }
.lf-tag.b { background: rgba(124,77,255,.1); color: #b89aff; }
.lf-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.lf-desc  { font-size: .9rem; color: var(--text2); margin-bottom: 28px; line-height: 1.6; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--text2); margin-bottom: 6px; letter-spacing: .02em; }
.field input, .field select {
  width: 100%; padding: 11px 16px; background: var(--bg3);
  border: 1.5px solid var(--border2); border-radius: var(--r);
  color: var(--text); font-family: var(--font); font-size: .9rem;
  outline: none; transition: var(--tr); appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,200,255,.1); }
.lead-form.fb .field input:focus,
.lead-form.fb .field select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,77,255,.1); }
.field input::placeholder { color: var(--text3); }
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a90b0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field select option { background: var(--card2); }
.btn-purple {
  background: linear-gradient(135deg, var(--purple), #e040fb);
  box-shadow: 0 4px 20px rgba(124,77,255,.35);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,77,255,.5); opacity:1; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; color: var(--text2); margin-top: 14px; line-height: 1.65; max-width: 300px; }
.footer-col h4 { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .88rem; color: var(--text2); text-decoration: none; transition: var(--tr); }
.footer-col ul li a:hover { color: var(--white); opacity: 1; }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: .83rem; color: var(--text3); }

/* ═══════════════════════════════════════════════
   UTILS
═══════════════════════════════════════════════ */
.mt-8  { margin-top:  8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom:  8px; } .mb-12 { margin-bottom: 12px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.center { text-align: center; }
.divider { height: 1px; background: var(--border); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .g4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 68px 0; }
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 40px 0; }
  .hero-widget { display: none; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .leads-grid { grid-template-columns: 1fr; }
  .fintech-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-form { flex-direction: column; }
  .hero-form input { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── LANGUAGE SWITCHER ─────────────────────────── */
.lang-switcher { display:flex; align-items:center; gap:2px; background:rgba(255,255,255,.06); border:1px solid var(--border2); border-radius:8px; padding:3px; }
.lang-btn { background:none; border:none; cursor:pointer; font-family:var(--font); font-size:.78rem; font-weight:600; padding:4px 9px; border-radius:6px; color:var(--text2); letter-spacing:.04em; transition:var(--tr); }
.lang-btn:hover { color:var(--white); }
.lang-btn.active { background:rgba(0,200,255,.15); color:var(--cyan); }
html[lang="en"] .i18n-uk { display:none; }
html[lang="uk"] .i18n-en { display:none; }