/* ============================================================
   NETBYZZ — Small Task Experts
   Premium dark-theme marketing landing page
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg: #060812;
  --bg-2: #0B1020;
  --card: #111827;
  --accent: #7C3AED;
  --accent-2: #06B6D4;
  --green: #22C55E;
  --white: #F8FAFC;
  --muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);

  --grad: linear-gradient(135deg, #7C3AED, #06B6D4);
  --grad-soft: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(6, 182, 212, 0.12));
  --radius: 18px;
  --radius-sm: 12px;

  --header-h: 76px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shadow-card: 0 12px 40px rgba(2, 4, 12, 0.55);
  --shadow-glow: 0 0 0 1px rgba(124, 58, 237, 0.45), 0 18px 60px rgba(124, 58, 237, 0.35), 0 8px 30px rgba(6, 182, 212, 0.18);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Advanced background: blobs + grid + noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 12% -5%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(800px 480px at 88% 12%, rgba(6, 182, 212, 0.12), transparent 60%),
    radial-gradient(1000px 700px at 50% 110%, rgba(37, 99, 235, 0.10), transparent 60%),
    var(--bg);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
}

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

ul, ol { padding: 0; list-style: none; }

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection { background: rgba(124, 58, 237, 0.55); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

.narrow { width: min(860px, 100% - 40px); }
.center { text-align: center; }

.section {
  padding: 96px 0;
  position: relative;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
}

.section.center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  will-change: transform;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 26px rgba(124, 58, 237, 0.4), 0 4px 14px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(124, 58, 237, 0.55), 0 6px 22px rgba(6, 182, 212, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.25);
}

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 8, 18, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 30px rgba(2, 4, 12, 0.45);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 17px; font-weight: 800; letter-spacing: 0.06em; }
.brand-text small { font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover { color: var(--white); background: rgba(255, 255, 255, 0.05); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  content: "";
  position: relative;
}

.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }

.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 40px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  top: 8%;
  right: -6%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.30), rgba(6, 182, 212, 0.12) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  transition: transform 0.4s ease-out;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.9);
}

.hero-title {
  margin: 22px 0 14px;
  font-size: clamp(34px, 5.2vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-alt {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.trust-chips svg { color: var(--green); }

/* Hero visual */
.hero-visual { position: relative; min-height: 480px; }

.price-badge {
  position: absolute;
  top: -6px;
  right: 2%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 20px 10px;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.5);
  transform: rotate(5deg);
  animation: badgeFloat 5s ease-in-out infinite;
}

.price-badge small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.price-badge strong { font-size: 21px; font-weight: 900; line-height: 1.1; }
.price-badge strong span { font-size: 12px; font-weight: 700; opacity: 0.85; }

@keyframes badgeFloat {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-8px); }
}

.mockup-stage {
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 35%;
}

.mockup {
  position: relative;
  width: min(480px, 100%);
  margin-inline: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.95), rgba(11, 16, 32, 0.98));
  box-shadow:
    0 40px 90px rgba(2, 4, 12, 0.75),
    0 0 0 1px rgba(124, 58, 237, 0.15),
    0 24px 70px rgba(124, 58, 237, 0.22);
  transform: rotateX(8deg) rotateY(-9deg) rotateZ(1deg);
  transform-style: preserve-3d;
  overflow: hidden;
  animation: mockFloat 7s ease-in-out infinite;
}

@keyframes mockFloat {
  0%, 100% { transform: rotateX(8deg) rotateY(-9deg) rotateZ(1deg) translateY(0); }
  50% { transform: rotateX(8deg) rotateY(-9deg) rotateZ(1deg) translateY(-10px); }
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #F87171; }
.dot-y { background: #FBBF24; }
.dot-g { background: #34D399; }

.mockup-url {
  margin-left: 8px;
  flex: 1;
  max-width: 180px;
  font-size: 10.5px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-body { padding: 16px; }

.mm-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.mm-logo { width: 20px; height: 20px; border-radius: 6px; background: var(--grad); }
.mm-links { display: flex; gap: 7px; margin-left: 6px; }
.mm-links i { width: 26px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.14); }
.mm-btn { margin-left: auto; width: 44px; height: 14px; border-radius: 999px; background: var(--grad); }

.mm-hero { margin-bottom: 18px; }
.mm-tag { display: block; width: 52px; height: 8px; border-radius: 4px; background: var(--accent-2); opacity: 0.9; margin-bottom: 10px; }
.mm-h1 { display: block; width: 92%; height: 11px; border-radius: 5px; background: rgba(248, 250, 252, 0.75); margin-bottom: 7px; }
.mm-h1.short { width: 64%; margin-bottom: 12px; }
.mm-sub { display: block; width: 80%; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.16); margin-bottom: 6px; }
.mm-sub.short { width: 55%; margin-bottom: 14px; }
.mm-cta { display: block; width: 96px; height: 18px; border-radius: 999px; background: var(--grad); }

.mm-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.mm-card { height: 46px; border-radius: 8px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border); }
.mm-card.mid { background: rgba(124, 58, 237, 0.18); border-color: rgba(124, 58, 237, 0.4); }

/* Floating cards */
.float-card {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(2, 4, 12, 0.55);
  transform: translateZ(60px);
  animation: floaty 6s ease-in-out infinite;
}

.fc-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}

.fc-purple { background: rgba(124, 58, 237, 0.22); color: #A78BFA; }
.fc-cyan { background: rgba(6, 182, 212, 0.16); color: #22D3EE; }
.fc-green { background: rgba(34, 197, 94, 0.16); color: #4ADE80; }

.fc-1 { top: 16%; left: -4%; }
.fc-2 { top: 44%; right: -7%; animation-delay: -1.4s; }
.fc-3 { bottom: 30%; left: -8%; animation-delay: -2.6s; }
.fc-4 { bottom: 8%; right: 2%; animation-delay: -4s; }
.fc-5 { top: 6%; right: 10%; animation-delay: -3s; }
.fc-6 { bottom: -2%; left: 10%; animation-delay: -0.8s; }

@keyframes floaty {
  0%, 100% { transform: translateZ(60px) translateY(0); }
  50% { transform: translateZ(60px) translateY(-9px); }
}

.hero-bottom { margin-top: 46px; text-align: center; }

.micro-banner {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding: 10px 22px;
  border: 1px dashed rgba(124, 58, 237, 0.4);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.06);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 26px 0;
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}

.trust-strip-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #CBD5E1;
}

.ts-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: var(--accent-2);
}

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.9), rgba(11, 16, 32, 0.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(124, 58, 237, 0.12);
}

/* ---------- Problem ---------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 26px;
  margin: 34px 0;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15.5px;
  font-weight: 600;
  color: #CBD5E1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.problem-list .x {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #F87171;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
}

.problem-solution {
  margin-top: 36px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 182, 212, 0.25);
  background:
    radial-gradient(400px 200px at 85% 0%, rgba(6, 182, 212, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.02);
}

.problem-solution h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.problem-solution p { color: var(--muted); }

/* ---------- Value ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card { text-align: center; padding: 38px 28px; }

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.4);
}

.value-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 15px; }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 14px 0 6px;
}

.feature-card p { color: var(--muted); font-size: 14px; }

.f-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: var(--accent-2);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.why-card { position: relative; padding-top: 44px; }

.w-num {
  position: absolute;
  top: -14px;
  left: 24px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
}

.why-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.why-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Includes (₹2,999) ---------- */
.includes-box {
  margin-top: 44px;
  padding: 40px;
  border-radius: 22px;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(124, 58, 237, 0.16), transparent 65%),
    radial-gradient(500px 260px at 90% 100%, rgba(6, 182, 212, 0.10), transparent 65%),
    linear-gradient(165deg, rgba(17, 24, 39, 0.95), rgba(11, 16, 32, 0.96));
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12), 0 30px 70px rgba(124, 58, 237, 0.14);
}

.includes-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.includes-head p {
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  margin-left: auto;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #CBD5E1;
}

.check {
  width: 20px;
  height: 20px;
  flex: none;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #052E16;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.includes-cta { margin-top: 32px; }

/* Badges */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.badge-pop {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.45);
}

.badge-value {
  background: rgba(34, 197, 94, 0.12);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

/* ---------- Comparison table ---------- */
.table-scroll {
  margin-top: 44px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(11, 16, 32, 0.6);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table thead th span { color: var(--muted); font-weight: 700; font-size: 13px; }

.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: #CBD5E1;
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

.compare-table .highlight-col {
  background: rgba(124, 58, 237, 0.10);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.25);
  color: var(--white);
}

.compare-table thead .highlight-col {
  background: rgba(124, 58, 237, 0.22);
  color: #fff;
  position: relative;
}

.tick { color: var(--green); font-weight: 800; }
.dash { color: rgba(148, 163, 184, 0.4); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 52px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  position: relative;
}

.price-basic, .price-prem { opacity: 0.96; }

.price-pop {
  transform: translateY(-18px);
  border-color: rgba(124, 58, 237, 0.55);
  background:
    radial-gradient(400px 220px at 50% 0%, rgba(124, 58, 237, 0.22), transparent 70%),
    linear-gradient(170deg, rgba(17, 24, 39, 0.97), rgba(11, 16, 32, 0.97));
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 24px 60px rgba(124, 58, 237, 0.28), 0 10px 40px rgba(6, 182, 212, 0.12);
  z-index: 2;
}

.price-pop:hover {
  transform: translateY(-22px);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.55), 0 30px 74px rgba(124, 58, 237, 0.36), 0 12px 46px rgba(6, 182, 212, 0.16);
}

.pop-badges {
  display: flex;
  gap: 8px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-head { text-align: center; margin-bottom: 22px; }

.price-head h3 { font-size: 22px; font-weight: 900; letter-spacing: 0.02em; }

.price-label {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 14px;
  min-height: 20px;
}

.price {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}

.price .cur { font-size: 22px; font-weight: 800; color: var(--muted); }
.price .per { font-size: 15px; font-weight: 700; color: var(--muted); }

.price-hero {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(124, 58, 237, 0.45));
}

.price-hero .cur, .price-hero .per { -webkit-background-clip: text; background-clip: text; }

.micro {
  margin-top: 12px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 22px;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #CBD5E1;
  line-height: 1.4;
}

.price-list .check { margin-top: 2px; }

.limit-note {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.8);
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  margin-bottom: 18px;
}

.anchor-note {
  margin-top: 44px;
  text-align: center;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 2;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.anchor-note strong { color: var(--white); }

/* ---------- Process ---------- */
.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.5), transparent);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.step-num {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
  margin-bottom: 18px;
}

.process-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.process-step p { color: var(--muted); font-size: 14px; }

.process-cta { margin-top: 48px; text-align: center; }

/* ---------- Audience ---------- */
.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.audience-list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 700;
  color: #CBD5E1;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-list li span { color: var(--accent-2); font-size: 11px; }

.audience-list li:hover {
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.18);
}

/* ---------- Use cases ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.usecase-card { position: relative; padding: 26px; }

.demo-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(6, 182, 212, 0.08);
  z-index: 1;
}

.uc-visual {
  height: 150px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.9), rgba(11, 16, 32, 0.9));
  padding: 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.uc-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(200px 100px at 85% 0%, rgba(124, 58, 237, 0.18), transparent 70%);
}

.uc-bar { width: 34%; height: 9px; border-radius: 4px; background: var(--grad); }
.uc-title { width: 74%; height: 12px; border-radius: 5px; background: rgba(248, 250, 252, 0.7); margin-top: 8px; }
.uc-line { width: 58%; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.16); }
.uc-btn { width: 74px; height: 16px; border-radius: 999px; background: var(--grad); margin-top: 6px; }

.uc-service .uc-bar { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.uc-personal .uc-bar { background: linear-gradient(135deg, #7C3AED, #EC4899); }
.uc-product .uc-bar { background: linear-gradient(135deg, #22C55E, #06B6D4); }
.uc-lead .uc-bar { background: linear-gradient(135deg, #F59E0B, #7C3AED); }

.usecase-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.usecase-card p { color: var(--muted); font-size: 14px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.owners {
  margin: 26px 0 18px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.owners-names { font-size: 16px; font-weight: 800; }
.owners-role { font-size: 13px; color: var(--muted); }

.contact-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.contact-lines li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}

.cl-ico {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: var(--accent-2);
}

.contact-link { color: var(--white); border-bottom: 1px dashed rgba(255, 255, 255, 0.25); }
.contact-link:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

/* ---------- Form ---------- */
.contact-form { padding: 34px; }

.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }

.form-intro {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #CBD5E1;
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  color: var(--white);
  background: rgba(6, 8, 18, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea { resize: vertical; min-height: 96px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: rgba(248, 113, 113, 0.7);
}

.err {
  display: block;
  min-height: 16px;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #F87171;
}

.form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  min-height: 22px;
}

.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item[data-open="true"] { border-color: rgba(124, 58, 237, 0.45); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
}

.faq-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--border);
  color: var(--accent-2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[data-open="true"] .faq-ico { transform: rotate(180deg); background: rgba(124, 58, 237, 0.15); }

.faq-a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}

/* Open by default when JS is unavailable; collapsed only with JS. */
html.js .faq-a { grid-template-rows: 0fr; }

html.js .faq-item[data-open="true"] .faq-a { grid-template-rows: 1fr; }

.faq-a-inner { overflow: hidden; }

.faq-a p {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 110px 0;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(124, 58, 237, 0.18), transparent 70%),
    radial-gradient(500px 260px at 50% 110%, rgba(6, 182, 212, 0.12), transparent 70%);
}

.final-price { margin: 30px 0; }

.fp-start { font-size: 20px; color: var(--muted); margin-bottom: 10px; }
.fp-start strong { color: var(--white); font-size: 26px; }

.fp-pop {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.fp-pop strong {
  font-size: 34px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Still thinking ---------- */
.thinking {
  padding: 80px 0 110px;
}

.thinking-price {
  font-size: 26px;
  margin: 24px 0 28px;
}

.thinking-price strong {
  font-size: 40px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(6, 8, 18, 0.9);
  padding: 64px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: #CBD5E1;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--accent-2); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a { color: var(--accent-2); font-weight: 700; }

/* ---------- Floating contact stack (desktop) ---------- */
.float-stack {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.float-stack.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(2, 4, 12, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.float-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.3);
}

.fb-arattai { color: var(--accent-2); }
.fb-telegram { color: #A78BFA; }

.fb-call {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
}

.fb-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 9px;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid var(--border);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.fb-call:hover .fb-label { opacity: 1; }

/* ---------- Mobile sticky bar ---------- */
.sticky-bar {
  display: none;
}

/* ---------- Reveal animations ---------- */
/* Hidden only when JavaScript is available (html.js) so the
   page stays readable with JS disabled or blocked. */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 0.12s);
  will-change: opacity, transform;
}

html.js .reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js .reveal { opacity: 1; transform: none; }

  .mockup, .float-card, .price-badge { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { min-height: 440px; max-width: 620px; margin-inline: auto; width: 100%; }
  .price-badge { right: 4%; }

  .features-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .process-list::before { display: none; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-pop { transform: none; order: -1; }
  .price-pop:hover { transform: translateY(-4px); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 68px 0; }

  /* Mobile menu */
  .menu-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 24px 40px;
    background: rgba(6, 8, 18, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-link {
    font-size: 18px;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .header-cta { margin-top: 20px; width: 100%; }

  body.menu-open { overflow: hidden; }

  /* Hero */
  .hero { padding-top: calc(var(--header-h) + 34px); }
  .hero-visual { min-height: 400px; }

  .mockup, .mockup-stage { perspective: none; }

  .mockup {
    transform: rotateX(3deg) rotateY(-4deg) rotateZ(0deg);
    animation: none;
  }

  .float-card { transform: translateZ(0); }

  .fc-1 { top: 12%; left: -2%; }
  .fc-2 { top: 40%; right: -3%; }
  .fc-3 { bottom: 34%; left: -4%; }
  .fc-4 { bottom: 10%; right: -2%; }
  .fc-5 { top: 4%; right: 2%; }
  .fc-6 { bottom: -2%; left: 6%; }

  .price-badge { top: -4px; right: 0; }

  .hero-bottom { margin-top: 30px; }
  .micro-banner { font-size: 10.5px; letter-spacing: 0.1em; padding: 9px 14px; }

  /* Grids to single column */
  .problem-list, .checklist, .value-grid,
  .features-grid, .why-grid, .usecase-grid {
    grid-template-columns: 1fr;
  }

  .includes-box { padding: 26px 22px; }
  .includes-head p { margin-left: 0; width: 100%; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .float-stack { display: none; }

  /* Mobile sticky bar */
  .sticky-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(6, 8, 18, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 30px rgba(2, 4, 12, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .sticky-bar.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .sb-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
    flex: 1;
  }

  .sb-text strong { color: var(--white); font-size: 13px; }

  .sb-actions { display: flex; gap: 8px; }

  .sb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 11px;
    white-space: nowrap;
  }

  .sb-call {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--white);
  }

  .sb-arattai {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #22D3EE;
  }

  .sb-get {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
  }

  body { padding-bottom: 0; }
  body.sticky-on { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  .hero-title { font-size: 32px; }
  .float-card { font-size: 12px; padding: 8px 11px; }
  .fc-icon { width: 22px; height: 22px; }
  .sb-text { display: none; }
  .sticky-bar { justify-content: center; }
  .sb-btn { flex: 1; justify-content: center; }
}