/* =========================================================
   Optiontics Pro — CodeCanyon Demo Landing Page
   ========================================================= */

:root {
  --bg: #0B0F1C;
  --bg-deep: #07091A;
  --indigo: #4A3BD6;
  --indigo-deep: #3A2CB4;
  --indigo-soft: #6F5FE8;
  --primary: #1A1AFF;
  --primary-light: #8B8BFF;
  --primary-glow: #B7B7FF;
  --accent: #FACC15;
  --accent-dark: #A16207;
  --accent-soft: #FEF3C7;
  --mint: #00E5A0;
  --mint-soft: #D1FAE5;
  --coral: #FF6B6B;
  --woo: #7F54B3;
  --text: #0B0F1C;
  --text-soft: #4B5063;
  --muted: #8A8FA3;
  --line: #E7E8EE;
  --line-strong: #D5D7E0;
  --bg-soft: #F7F8FB;
  --bg-card: #FFFFFF;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,15,28,.06), 0 1px 1px rgba(11,15,28,.04);
  --shadow-md: 0 12px 30px -10px rgba(74,59,214,.18), 0 4px 8px rgba(11,15,28,.05);
  --shadow-lg: 0 30px 60px -15px rgba(74,59,214,.28), 0 10px 20px rgba(11,15,28,.06);
  --container: 1200px;
  --grad: linear-gradient(135deg, #4A3BD6 0%, #6F33EC 50%, #1A1AFF 100%);
  --grad-bright: linear-gradient(135deg, #FACC15 0%, #FF9D4D 50%, #FF6B6B 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5rem;
  color: var(--text);
}
p { margin: 0 0 1rem; color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text--bright {
  background: var(--grad-bright);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 15px 26px; font-size: 16px; border-radius: 12px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px -6px rgba(74,59,214,.55);
}
.btn--primary:hover { box-shadow: 0 14px 32px -8px rgba(74,59,214,.6); }
.btn--accent {
  background: var(--accent);
  color: #1B1B1B;
  box-shadow: 0 8px 22px -6px rgba(250,204,21,.55);
}
.btn--accent:hover { background: #fbd83b; }
.btn--ghost {
  background: rgba(74,59,214,.06);
  color: var(--indigo);
  border-color: rgba(74,59,214,.12);
}
.btn--ghost:hover { background: rgba(74,59,214,.1); }
.btn--ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.14); }

/* ---------- TOP BANNER ---------- */
.top-banner {
  background: linear-gradient(90deg, #1A1AFF, #4A3BD6 50%, #6F33EC);
  color: #fff;
  font-size: 13.5px;
  padding: 9px 0;
}
.top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-banner__pill {
  background: var(--accent);
  color: #1B1B1B;
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .05em;
}
.top-banner__link {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255,255,255,.4);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo img { height: 28px; width: auto; }
.logo__badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 3px 7px;
  border-radius: 6px;
}
.logo--footer img { filter: brightness(0) invert(1); }

.nav {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-soft);
}
.nav a:hover { color: var(--indigo); }

.site-header__cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(74,59,214,.15), transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(250,204,21,.10), transparent 45%),
    linear-gradient(180deg, #FAFAFE 0%, #FFFFFF 100%);
  padding: 80px 0 60px;
}
.hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  z-index: 0;
}
.hero__bg-blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  top: -120px; right: -120px;
}
.hero__bg-blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  bottom: -100px; left: -120px;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,59,214,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,59,214,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__copy { max-width: 560px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,59,214,.08);
  color: var(--indigo);
  border: 1px solid rgba(74,59,214,.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge__dot {
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,229,160,.18);
}
.hero__title {
  font-size: clamp(40px, 5vw, 52px);
  margin-bottom: 18px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  font-size: 14px;
}
.hero__trust strong { color: var(--text); }
.hero__trust-stars { display: flex; gap: 2px; }
.hero__trust-stars svg { width: 18px; height: 18px; }

.hero__media {
  position: relative;
}
.hero__device {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform .4s ease;
}
.hero__media:hover .hero__device { transform: rotate(0deg); }
.hero__device-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F4F5F9;
  border-bottom: 1px solid var(--line);
}
.hero__device-toolbar > span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #DCDFE6;
}
.hero__device-toolbar > span:nth-child(1) { background: #FF6058; }
.hero__device-toolbar > span:nth-child(2) { background: #FFC130; }
.hero__device-toolbar > span:nth-child(3) { background: #28C941; }
.hero__device-url {
  margin-left: 12px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-soft);
  flex: 1;
  border: 1px solid var(--line);
}
.hero__device img {
  width: 100%;
  display: block;
}
.hero__floater {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.hero__floater--1 {
  bottom: -20px; left: -30px;
  animation: bob 5s ease-in-out infinite;
}
.hero__floater--2 {
  top: 30px; right: -40px;
  animation: bob 5s ease-in-out infinite reverse;
}
.hero__floater-ico {
  width: 34px; height: 34px;
  background: var(--grad);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.hero__floater-label { font-weight: 600; color: var(--text); }
.hero__floater-meta { font-size: 12px; color: var(--text-soft); }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- TRUST STRIP ---------- */
.trust {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust__label {
  text-align: center;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .15em;
  color: #B5BAC9;
  opacity: .9;
}
.trust__logos > div {
  filter: grayscale(1);
  transition: opacity .2s, color .2s;
}
.trust__logos > div:hover { color: var(--indigo); }

/* ---------- STATS ---------- */
.stats {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 16px;
  box-shadow: var(--shadow-sm);
}
.stats__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -.03em;
}
.stats__label {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}

/* ---------- SECTION SCAFFOLD ---------- */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--bg-soft);
}
.section--dark {
  background: linear-gradient(135deg, #0B0F1C 0%, #1A1740 100%);
  color: #fff;
}
.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__title {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 14px;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: 17px;
  color: var(--text-soft);
}
.section__sub--light { color: rgba(255,255,255,.75); }
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(74,59,214,.08);
  border-radius: 999px;
}
.eyebrow--light {
  background: rgba(255,255,255,.08);
  color: var(--accent);
}

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74,59,214,.25);
}
.feature-card__ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ico-bg, #EEF0FF);
  color: var(--ico-fg, #4A3BD6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 14.5px;
  margin: 0;
  color: var(--text-soft);
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.step__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .25;
  position: absolute;
  top: 16px;
  right: 22px;
}
.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  margin-bottom: 20px;
}
.step__media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 16/10;
}
.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ---------- FIELD TYPES ---------- */
.field-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}
.field-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all .2s ease;
}
.field-chip:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.field-chip span {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74,59,214,.1);
  color: var(--indigo);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.field-chip--accent {
  background: linear-gradient(135deg, #FEF3C7, #FFE4B5);
  border-color: #FACC15;
}
.field-chip--accent span {
  background: var(--accent);
  color: #1B1B1B;
}

/* ---------- SPLIT (dark conditional / light pricing) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255,255,255,.85);
}
.checklist--dark li {
  color: var(--text-soft);
}
.check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,229,160,.15);
  color: var(--mint);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}
.check--ok {
  background: rgba(0,229,160,.18);
  color: #0E9F6E;
}

/* ---------- RULE BUILDER ---------- */
.rule-builder {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(20px);
}
.rule-builder__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rule-builder__dot {
  width: 8px; height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
}
.rule-builder__body { display: flex; flex-direction: column; gap: 10px; }
.rule-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
}
.rule-tag {
  background: rgba(74,59,214,.4);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.rule-tag--and { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.rule-tag--then { background: rgba(0,229,160,.25); color: var(--mint); }
.rule-field {
  background: rgba(255,255,255,.06);
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
}
.rule-op { color: rgba(255,255,255,.5); font-size: 13px; }
.rule-action { color: rgba(255,255,255,.65); font-style: italic; font-size: 13px; }
.rule-val {
  background: rgba(74,59,214,.5);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}
.rule-val--accent {
  background: rgba(250,204,21,.18);
  color: var(--accent);
}
.rule-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  margin: 4px 0;
}

/* ---------- PRICING MOCK ---------- */
.pricing-mock {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 28px;
}
.pricing-mock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.pricing-mock__row em {
  color: var(--muted);
  font-style: normal;
  font-size: 12.5px;
}
.pricing-mock__row--total {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  border-bottom: 0;
  padding-top: 18px;
  border-top: 2px solid var(--text);
  margin-top: 8px;
}
.pricing-mock__cta {
  width: 100%;
  margin-top: 16px;
  background: var(--woo);
  color: #fff;
  border: 0;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
}
.pricing-mock__cta:hover { background: #6e459e; }

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.mini-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mini-card strong {
  color: var(--indigo);
  font-size: 14px;
}
.mini-card span {
  font-size: 13.5px;
  color: var(--text-soft);
}

/* ---------- TEMPLATES ---------- */
.template-showcase {
  margin: 0 auto 32px;
  max-width: 1100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.template-showcase img { width: 100%; }
.template-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.template-tags span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--text-soft);
  transition: all .2s ease;
}
.template-tags span:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

/* ---------- DEVICE LARGE ---------- */
.device {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.device--lg { max-width: 1100px; margin: 0 auto; }
.device__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F4F5F9;
  border-bottom: 1px solid var(--line);
}
.device__bar > span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.device__bar > span:nth-child(1) { background: #FF6058; }
.device__bar > span:nth-child(2) { background: #FFC130; }
.device__bar > span:nth-child(3) { background: #28C941; }
.device__url {
  margin-left: 10px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-soft);
  flex: 1;
  border: 1px solid var(--line);
}
.device img { width: 100%; }
.device__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.device__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- COMPARE ---------- */
.compare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text-soft);
  font-size: 13.5px;
}
.compare th:first-child, .compare td:first-child {
  font-weight: 600;
  color: var(--text);
}
.compare__pro {
  background: linear-gradient(135deg, rgba(74,59,214,.08), rgba(111,51,236,.08));
  color: var(--indigo) !important;
}
.compare tr:last-child td { border-bottom: 0; }
.compare td:last-child {
  font-weight: 600;
  color: var(--indigo);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial__stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial p {
  font-size: 15.5px;
  color: var(--text);
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.testimonial__author strong {
  display: block;
  font-size: 14.5px;
}
.testimonial__author span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.price-card__amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-card__cur {
  font-size: 22px;
  vertical-align: top;
  font-weight: 600;
  color: var(--muted);
  margin-right: 4px;
}
.price-card__sub {
  font-size: 13.5px;
  color: var(--text-soft);
  min-height: 60px;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}
.price-card__list li {
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  padding-left: 22px;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 800;
}
.price-card__list li:last-child { border-bottom: 0; }
.price-card--featured {
  border: 2px solid var(--indigo);
  box-shadow: 0 22px 50px -10px rgba(74,59,214,.25);
  transform: scale(1.03);
}
.price-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1B1B1B;
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: .08em;
}
.pricing-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- AI SECTION ---------- */
.ai-section {
  position: relative;
  background: linear-gradient(180deg, #FAFBFF 0%, #F1ECFF 50%, #FAFBFF 100%);
  color: var(--text);
  overflow: hidden;
}
.ai-section__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,59,214,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,59,214,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .6;
  pointer-events: none;
}
.ai-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .22;
  pointer-events: none;
}
.ai-section__glow--1 {
  width: 520px; height: 520px;
  background: #8B7BFF;
  top: 10%; left: -160px;
}
.ai-section__glow--2 {
  width: 420px; height: 420px;
  background: #FFB7B7;
  bottom: 5%; right: -120px;
  opacity: .18;
}
.ai-section .container { position: relative; z-index: 1; }
.ai-section .section__title--light { color: var(--text); }
.ai-section .section__sub--light { color: var(--text-soft); }
.ai-section .eyebrow--ai {
  background: linear-gradient(135deg, rgba(74,59,214,.12), rgba(250,204,21,.18));
  color: var(--accent-dark);
  border: 1px solid rgba(250,204,21,.45);
}
.ai-section .ai-mock {
  background: linear-gradient(180deg, #14122E 0%, #0B0F1C 100%);
  border: 1px solid rgba(74,59,214,.35);
  box-shadow: 0 30px 80px -20px rgba(74,59,214,.35);
}
.ai-footnote { color: var(--text-soft); }
.ai-video-wrap__caption { color: var(--text-soft); }
.ai-video-wrap__label {
  background: rgba(250,204,21,.18);
  border-color: rgba(250,204,21,.5);
  color: var(--accent-dark);
}

.eyebrow--ai {
  background: linear-gradient(135deg, rgba(74,59,214,.4), rgba(250,204,21,.25));
  color: #FACC15;
  border: 1px solid rgba(250,204,21,.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ai-spark {
  display: inline-block;
  font-size: 14px;
  background: linear-gradient(135deg, #FACC15, #FF6B6B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sparkle 2.4s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0); opacity: 1; }
  50% { transform: scale(1.25) rotate(180deg); opacity: .7; }
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: stretch;
}

.ai-mock {
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 30px 80px -20px rgba(74,59,214,.4);
  display: flex;
  flex-direction: column;
}
.ai-mock__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ai-mock__avatar {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4A3BD6, #6F33EC);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(74,59,214,.2);
}
.ai-mock__title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.ai-mock__sub {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-mock__dot {
  width: 7px; height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.ai-mock__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.ai-bubble {
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 92%;
}
.ai-bubble--user {
  align-self: flex-end;
  background: rgba(74,59,214,.4);
  border: 1px solid rgba(139,139,255,.3);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ai-bubble--ai {
  align-self: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom-left-radius: 4px;
  width: 100%;
  max-width: 100%;
}
.ai-bubble__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ai-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ai-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
  animation: slideIn .5s ease both;
}
.ai-field:nth-child(1) { animation-delay: .1s; }
.ai-field:nth-child(2) { animation-delay: .2s; }
.ai-field:nth-child(3) { animation-delay: .3s; }
.ai-field:nth-child(4) { animation-delay: .4s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.ai-field__type {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(74,59,214,.45);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
}
.ai-field__type--rule {
  background: rgba(0,229,160,.2);
  color: var(--mint);
}
.ai-field__name {
  font-weight: 600;
  color: #fff;
}
.ai-field__meta {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.ai-field--rule .ai-field__name { color: rgba(255,255,255,.85); }
.ai-bubble__actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.ai-chip-btn {
  background: var(--accent);
  color: #1B1B1B;
  border: 0;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12.5px;
  font-family: inherit;
}
.ai-chip-btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.ai-mock__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin: 4px;
  border-radius: 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.06);
}
.ai-mock__input-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.ai-mock__input-text {
  color: rgba(255,255,255,.45);
  font-size: 13.5px;
  flex: 1;
}
.ai-mock__send {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ai-video-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.ai-video-wrap__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  align-self: flex-start;
  background: rgba(250,204,21,.1);
  border: 1px solid rgba(250,204,21,.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.ai-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px -20px rgba(74,59,214,.55);
  aspect-ratio: 16 / 9;
}
.ai-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}
.ai-video__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(250,204,21,.4), rgba(74,59,214,.4) 50%, rgba(255,107,107,.3));
  filter: blur(28px);
  opacity: .45;
  z-index: 0;
  pointer-events: none;
}
.ai-video-wrap__caption {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0;
  text-align: center;
}

.ai-caps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.ai-caps--row {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.ai-cap {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.ai-cap:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(250,204,21,.25);
  transform: translateX(4px);
}
.ai-cap__ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74,59,214,.5), rgba(111,51,236,.4));
  color: #FACC15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.ai-cap__ico--mint { background: rgba(0,229,160,.18); color: var(--mint); }
.ai-cap__ico--coral { background: rgba(255,107,107,.2); color: #FF8E8E; }
.ai-cap__ico--accent { background: rgba(250,204,21,.18); color: var(--accent); }
.ai-cap__ico--purple { background: rgba(127,84,179,.25); color: #C4A4F0; }
.ai-cap__ico--blue { background: rgba(2,132,199,.2); color: #7DD3FC; }
.ai-cap h3 {
  font-size: 16.5px;
  color: #fff;
  margin-bottom: 4px;
}
.ai-cap p {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
}

.ai-footnote {
  text-align: center;
  margin-top: 56px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}

/* ---------- CODECANYON STRIP ---------- */
.codecanyon-strip {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff 0%, #F4F0FF 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.codecanyon-strip__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
}
.codecanyon-strip__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4A3BD6, #6F33EC);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.codecanyon-strip__text { flex: 1; min-width: 0; }
.codecanyon-strip__text h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.codecanyon-strip__text p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-soft);
}

/* ---------- DEMO BAND ---------- */
.demo-band {
  background: linear-gradient(135deg, #4A3BD6 0%, #6F33EC 60%, #1A1AFF 100%);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.demo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 100%, rgba(250,204,21,.2), transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(0,229,160,.15), transparent 60%);
  pointer-events: none;
}
.demo-band > * { position: relative; z-index: 1; }
.demo-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.demo-band__creds {
  margin-top: 8px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 24px;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--indigo); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--indigo);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background:
    radial-gradient(ellipse at top, rgba(74,59,214,.4), transparent 60%),
    linear-gradient(180deg, #07091A 0%, #0B0F1C 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.final-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 18px;
}
.final-cta p {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  margin-bottom: 32px;
}
.final-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #07091A;
  color: rgba(255,255,255,.6);
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__copy {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  max-width: 280px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.6);
  transition: color .15s ease;
}
.footer a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__copy { max-width: 100%; }
  .hero__floater--1 { left: 10px; }
  .hero__floater--2 { right: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .split, .demo-band, .footer__grid, .ai-grid { grid-template-columns: 1fr; gap: 36px; }
  .ai-caps--row { grid-template-columns: repeat(2, 1fr); }
  .split--reverse > *:first-child { order: 0; }
  .compare { overflow-x: auto; }
  .compare table { min-width: 700px; }
  .codecanyon-strip__inner { flex-direction: column; text-align: center; gap: 18px; }
}

@media (max-width: 720px) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .logo img { height: 24px; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 80px; }
  .features-grid { grid-template-columns: 1fr; }
  .ai-caps--row { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .demo-band { padding: 36px 24px; }
  .top-banner__inner { font-size: 12px; padding: 0 12px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__floater { display: none; }
}
