
   *{
      /* outline: 1px solid rgba(231, 147, 147, 0.2);  */
   }

:root {
  --bg:       #0a0c10;
  --bg2:      #111318;
  --bg3:      #181c24;
  --surface:  #1e2330;
  --border:   rgba(255,255,255,0.08);
  --accent:   #2563eb;
  --accent2:  #3b82f6;
  --green:    #22d3a5;
  --amber:    #f59e0b;
  --red:      #f87171;
  --blue:     #60a5fa;
  --text:     #e8e9ea;
  --muted:    #8a8f9e;
  --radius:   14px;
  --radius-lg:22px;
  --font-disp: Arial, sans-serif;
  --font-ui:   Arial, sans-serif;
  --font-body: Arial, sans-serif;
  --max:       1200px;
  --shadow:    0 24px 64px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 8px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.4);
}
.btn-xl { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }
.btn-ghost {
  display: inline-block;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.btn-ghost:hover { color: var(--text); background: var(--surface); }
.btn-outline-xl {
  display: inline-block;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-xl:hover { border-color: var(--accent); color: var(--accent); background: rgba(37,99,235,0.06); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,13,15,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-icon { color: var(--accent); font-size: 1.3rem; }
.nav-links {
  display: flex; list-style: none; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border: none; margin-top: 12px; text-align: center; }
.mobile-menu.open { display: flex; }

.header__img {
  width: 5em;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 64px;
  padding: 120px 28px 80px;
  max-width: var(--max);
  margin: 0 auto;
  overflow: visible;
}
.hero-grid-bg {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-blob {
  position: fixed; z-index: -1; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.b1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.b2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  bottom: 100px; left: -150px;
}
.hero-content { flex: 1 1 480px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: block;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-note { color: var(--muted); font-size: 0.82rem; }

.hero-visual {
   flex: 1 1 480px;
    display: flex; 
    justify-content:    center;
     position: relative; 
    }

/* DASHBOARD MOCK */
.dashboard-mock {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}
.mock-header {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  display: block; width: 11px; height: 11px; border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #3b82f6; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-title { font-family: var(--font-ui); font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.mock-body { padding: 20px; }
.mock-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.7fr 1fr 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  align-items: center;
}
.mock-row.head {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1.5px solid rgba(255,255,255,0.1);
}
.mock-row.total {
  font-family: var(--font-ui); font-weight: 800;
  font-size: 0.88rem; color: var(--text);
  border-bottom: none; border-top: 1.5px solid var(--border);
}
.mock-row span.green { color: var(--green); font-weight: 600; }
.mock-bar-wrap { margin-top: 18px; }
.mock-bar-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.mock-bar-label strong { color: var(--accent); }
.mock-bar {
  height: 6px; background: var(--surface); border-radius: 99px; overflow: hidden;
}
.mock-bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: fillBar 1.8s 0.5s ease both;
}
@keyframes fillBar { from { width: 0 !important; } }
.mock-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag {
  font-size: 0.72rem; font-family: var(--font-ui); font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.tag-blue  { background: rgba(96,165,250,0.15); color: var(--blue); }
.tag-amber { background: rgba(245,158,11,0.15); color: var(--amber); }
.tag-green { background: rgba(62,207,142,0.15); color: var(--green); }

/* FLOATING CARDS */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.fc-icon { font-size: 1.4rem; }
.fc-val { font-family: var(--font-ui); font-weight: 800; font-size: 1rem; color: var(--text); }
.fc-label { font-size: 0.76rem; color: var(--muted); }
.fc1 { bottom: -24px; left: -40px; animation: floatA 4s ease-in-out infinite; }
.fc2 { top: -24px; right: -30px; animation: floatB 4.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ══════════════════════════════
   LOGOS BAND
══════════════════════════════ */
.logos-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
  background: var(--bg2);
}
.logos-band p {
  font-size: 0.78rem; font-family: var(--font-ui); font-weight: 600;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 32px;
  font-family: var(--font-ui); font-size: 0.88rem; font-weight: 700;
  color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════
   SECTION COMMON
══════════════════════════════ */
.section-tag {
  display: inline-block;
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light { color: #93c5fd; background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.3); }
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-title.light { color: #f0f4ff; }
.section-title.light em { color: #93c5fd; text-decoration: underline; text-decoration-style: wavy; text-underline-offset: 6px; }

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 28px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.fc-large { grid-column: span 2; }
.feat-icon-wrap {
  font-size: 1.8rem; margin-bottom: 18px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border-radius: 12px;
}
.feat-card h3 {
  font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.feat-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }

/* feature visuals */
.feat-visual { margin-top: 24px; }
.fv-calc { display: flex; flex-direction: column; gap: 8px; }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface); border-radius: 8px;
  padding: 10px 14px; font-size: 0.82rem; color: var(--muted);
}
.calc-row.hi { background: rgba(62,207,142,0.08); border: 1px solid rgba(62,207,142,0.2); }
.cv { font-family: var(--font-ui); font-weight: 700; color: var(--text); }
.cv.green { color: var(--green); }
.fv-dash { display: flex; gap: 20px; margin-top: 16px; }
.dash-stat { text-align: center; flex: 1; background: var(--surface); border-radius: 10px; padding: 14px 8px; }
.dash-num { font-family: var(--font-ui); font-size: 1.6rem; font-weight: 800; color: var(--text); }
.dash-num.green { color: var(--green); }
.dash-num.amber { color: var(--amber); }
.dash-num.red   { color: var(--red); }
.dash-lbl { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.how {
  background: #1a2a4a;
  padding: 100px 28px;
}
.how-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.steps {
  display: flex; align-items: flex-start; gap: 0;
  flex-wrap: nowrap;
}
.step {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.step-connector {
  width: 40px; flex-shrink: 0;
  height: 2px; background: rgba(255,255,255,0.15);
  align-self: center; margin: 0;
  position: relative; top: 0;
}
.step-num {
  font-family: var(--font-disp);
  font-size: 3rem; color: rgba(255,255,255,0.2);
  line-height: 1; margin-bottom: 12px;
  font-style: italic;
}
.step h3 {
  font-family: var(--font-ui); font-size: 1.05rem; font-weight: 800;
  color: #e0ecff; margin-bottom: 10px;
}
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 28px;
  text-align: center;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.25s, transform 0.25s;
}
.testi-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 3px; }
.testi-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 800; font-size: 0.82rem;
  flex-shrink: 0;
}
.av1 { background: rgba(37,99,235,0.2); color: var(--accent); }
.av2 { background: rgba(96,165,250,0.2); color: var(--blue); }
.av3 { background: rgba(62,207,142,0.2); color: var(--green); }
.testi-author strong { display: block; font-family: var(--font-ui); font-size: 0.88rem; color: var(--text); }
.testi-author span  { font-size: 0.78rem; color: var(--muted); }

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.pricing {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 28px;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  background: var(--bg3);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.plan-price {
  font-family: var(--font-disp);
  font-size: 3rem; color: var(--text);
  line-height: 1; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 4px;
}
.currency { font-size: 1.4rem; margin-top: 10px; }
.per { font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); align-self: flex-end; margin-bottom: 6px; }
.plan-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  font-size: 0.88rem; color: var(--muted);
  flex: 1; margin-bottom: 28px;
}
.plan-features li { padding-left: 0; }
.plan-features li.dim { opacity: 0.4; }
.btn-plan {
  display: block; text-align: center;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.88rem;
  padding: 14px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan-featured {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-plan-featured:hover { background: var(--accent2); border-color: var(--accent2); color: #fff; }

/* ══════════════════════════════
   CTA FINAL
══════════════════════════════ */
.cta-final {
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 120px 28px;
  text-align: center;
}
.cta-blob {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 70%);
  border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-content h2 em { font-style: italic; color: var(--accent); }
.cta-content p {
  color: var(--muted); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto 36px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 28px 0;
}


.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1 1 260px; }

.footer__img {
  width: 4.5em;
}


.footer-brand p { margin-top: 16px; font-size: 0.88rem; color: var(--muted); max-width: 280px; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: 10px; min-width: 110px; }
.fl-col strong {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
  margin-bottom: 4px;
}
.fl-col a { font-size: 0.88rem; color: var(--muted); transition: color 0.18s; }
.fl-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding: 20px 0 32px;
  font-size: 0.8rem; color: var(--muted);
}

/* ══════════════════════════════
   REVEAL ANIMATION
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .fc-large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 20px; }
  .step-connector { width: 2px; height: 30px; align-self: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; gap: 40px; padding-top: 96px; }
  .hero-visual { width: 100%; }
  .fc1, .fc2 { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .fc-large { grid-column: span 1; }
  .fv-dash { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .logos-row span { display: none; }
  .logos-row span:nth-child(-n+3) { display: inline; }
}

/* ══════════════════════════════
   GREEN & AMBER utility colors
══════════════════════════════ */
.green { color: var(--green); }
.amber { color: var(--amber); }
.red   { color: var(--red); }
