:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --paper: #ffffff;
  --wash: #f6f8fc;
  --violet: #6d28d9;
  --violet-2: #8b5cf6;
  --cyan: #06b6d4;
  --green: #10b981;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
  width: 100%;
}

body > * {
  max-width: 100%;
}

img { max-width: 100%; }

a { text-decoration: none; }

.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

.lucide * {
  vector-effect: non-scaling-stroke;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  padding-inline: 1.15rem;
}

.btn-lg {
  --bs-btn-padding-y: 0.72rem;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-font-size: 1rem;
}

.btn-primary {
  --bs-btn-bg: var(--violet);
  --bs-btn-border-color: var(--violet);
  --bs-btn-hover-bg: #5b21b6;
  --bs-btn-hover-border-color: #5b21b6;
  box-shadow: 0 14px 38px rgba(109, 40, 217, 0.28);
}

.site-nav {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: padding 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-transform: lowercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #101827;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-link {
  color: #334155;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-link.active,
.nav-link:hover { color: var(--violet); }

.nav-cta { padding: 0.65rem 1rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 104px 0 58px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.42), transparent 28rem),
    radial-gradient(circle at 10% 25%, rgba(139, 92, 246, 0.48), transparent 26rem),
    linear-gradient(135deg, #09090f 0%, #15112a 58%, #071421 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-inner { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #c4b5fd;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.14);
}

.eyebrow.dark { color: var(--violet); }

.hero h1,
.section-heading h2,
.final-cta h2 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 5.8vw, 5rem);
}

.hero-copy {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.55vw, 1.08rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn-outline-light {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.28);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.45);
  --bs-btn-hover-color: #fff;
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-proof .lucide {
  width: 16px;
  height: 16px;
  color: #67e8f9;
}

.hero-risk {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-device {
  position: relative;
  max-width: 560px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.45);
  transform: rotate(1deg);
}

.hero-device img {
  display: block;
  border-radius: 20px;
  filter: saturate(1.08);
}

.section {
  padding: clamp(54px, 7vw, 86px) 0;
  position: relative;
  overflow-x: clip;
}

.section-light { background: var(--wash); }

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3.35vw, 3rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.workflow,
.feature-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pain-grid {
  grid-template-columns: repeat(3, 1fr);
}

.workflow-step,
.feature-card,
.module,
.benefit,
.diff,
.bonus {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.feature-card::before,
.module::before,
.benefit::before,
.diff::before,
.bonus::before {
  content: none;
  display: none;
}

.card-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  padding: 9px;
  border-radius: 14px;
  color: var(--violet);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(109, 40, 217, 0.55), rgba(6, 182, 212, 0.45)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.12);
}

.card-icon.lucide {
  stroke-width: 1.9;
}

.workflow-step span {
  display: block;
  color: var(--violet);
  font-weight: 900;
  margin-bottom: 16px;
}

.pain-grid .workflow-step {
  background: #fff;
}

.pain-grid .workflow-step,
.module-grid .module {
  align-items: center;
  justify-content: flex-start;
  min-height: 188px;
  text-align: center;
}

.pain-grid .workflow-step h3 {
  color: #991b1b;
}

.pain-grid .workflow-step span {
  color: #dc2626;
}

.pain-grid .card-icon {
  color: #dc2626;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(220, 38, 38, 0.42), rgba(249, 115, 22, 0.28)) border-box;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.1);
}

.transformation {
  background:
    radial-gradient(circle at 88% 12%, rgba(6, 182, 212, 0.12), transparent 24rem),
    #fff;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.before-after > div {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.before-after > div:last-child {
  border-color: rgba(16, 185, 129, 0.28);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(6, 182, 212, 0.07)), #fff;
}

.ba-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ba-label.before {
  color: #991b1b;
  background: #fee2e2;
}

.ba-label.after {
  color: #047857;
  background: #d1fae5;
}

.before-after h3 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.before-after ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.before-after li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--violet);
}

.workflow-step h3,
.feature-card h3,
.module h3,
.benefit h3,
.diff strong,
.bonus h3 {
  font-size: 0.96rem;
  font-weight: 900;
}

.workflow-step p,
.feature-card p,
.module p,
.benefit p,
.diff span,
.bonus p {
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.92rem;
  margin: 0;
}

.feature-card p {
  margin-top: 8px;
}

.media-section { background: #fff; }

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: #050816;
  box-shadow: var(--shadow);
  max-width: 920px;
  margin-inline: auto;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.custom-video iframe {
  pointer-events: none;
}

.video-overlay-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: grid;
  width: clamp(64px, 9vw, 86px);
  height: clamp(64px, 9vw, 86px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  background: rgba(15, 23, 42, 0.54);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.video-overlay-play::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.video-overlay-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
  fill: currentColor;
}

.video-overlay-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.custom-video.is-playing .video-overlay-play {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.96);
  pointer-events: none;
}

.video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto minmax(90px, 1fr) auto minmax(64px, 92px) auto;
  gap: 9px;
  align-items: center;
  padding: 42px clamp(12px, 2vw, 18px) clamp(10px, 1.6vw, 14px);
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.78));
  box-shadow: none;
  opacity: 0.92;
  transition: opacity 160ms ease;
}

.custom-video:hover .video-controls,
.custom-video:focus-within .video-controls {
  opacity: 1;
}

.video-control {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transition: background 160ms ease, transform 160ms ease;
}

.video-control:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.video-control svg {
  width: 17px;
  height: 17px;
}

.video-time {
  min-width: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.video-seek,
.video-volume {
  width: 100%;
  accent-color: var(--cyan);
  cursor: pointer;
}

.video-seek,
.video-volume {
  height: 4px;
}

.product-swiper {
  max-width: 1040px;
  margin-inline: auto;
  padding: 4px 46px 46px;
}

.showcase {
  margin: 0;
  padding: clamp(12px, 2.4vw, 22px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.showcase img {
  width: 100%;
  display: block;
}

.showcase figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
}

.showcase strong { font-size: 1.06rem; }
.showcase span { color: var(--muted); font-size: 0.94rem; }

.swiper-button-prev,
.swiper-button-next {
  color: var(--violet);
}

.swiper-pagination-bullet-active {
  background: var(--violet);
}

.demo-access { background: linear-gradient(180deg, #fff, var(--wash)); }

.access-panel,
.price-panel,
.next-prices {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.access-panel { padding: 18px; }

.access-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  color: var(--ink);
  background: var(--wash);
}

.access-row + .access-row { margin-top: 12px; }

.access-row small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.access-row strong {
  display: block;
  word-break: break-word;
  font-size: 0.98rem;
  line-height: 1.35;
}

.access-icon {
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--violet);
  background: rgba(109, 40, 217, 0.1);
  font-weight: 900;
  font-size: 0.75rem;
}

.access-icon .lucide,
.access-icon.lucide {
  width: 19px;
  height: 19px;
}

.access-row em {
  margin-left: auto;
  color: var(--violet);
  font-style: normal;
  font-weight: 900;
}

.copy-btn {
  margin-left: auto;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--violet);
  background: rgba(109, 40, 217, 0.1);
  font-weight: 900;
}

.copy-btn.copied {
  color: #047857;
  background: rgba(16, 185, 129, 0.14);
}

.panel-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.45;
  margin: 8px 0;
  font-size: 0.92rem;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--violet);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.module { padding: 17px; }

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.benefit,
.diff,
.bonus {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit:hover,
.diff:hover,
.bonus:hover,
.feature-card:hover,
.module:hover,
.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 40, 217, 0.28);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
}

.differentials {
  grid-template-columns: repeat(3, 1fr);
}

.diff {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing {
  background:
    radial-gradient(circle at 15% 15%, rgba(109, 40, 217, 0.12), transparent 28rem),
    var(--wash);
}

.price-panel {
  position: relative;
  padding: clamp(24px, 4vw, 34px);
}

.price-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  font-size: 0.8rem;
  font-weight: 900;
}

.price-panel h3 {
  font-size: clamp(2.8rem, 5.4vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.price-panel p,
.price-panel small { color: var(--muted); }

.spots {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.spots div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
}

.progress-bar {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.included li {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--wash);
  font-weight: 700;
  font-size: 0.92rem;
}

.next-prices {
  height: 100%;
  padding: 24px;
}

.next-prices h3 {
  font-weight: 900;
  margin-bottom: 18px;
}

.next-prices div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.next-prices small {
  display: block;
  color: var(--muted);
}

.bonus-grid {
  grid-template-columns: repeat(4, 1fr);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison-table th {
  padding: 14px;
  color: var(--muted);
  background: var(--wash);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 14px;
  border-color: var(--line);
  font-weight: 700;
}

.comparison-table small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.comparison-table .highlight td {
  color: var(--violet);
  background: rgba(109, 40, 217, 0.08);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.roadmap-item {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--ink);
  text-align: center;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

.roadmap-item .card-icon {
  margin: 0;
}

.roadmap-item small {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-radius: 999px;
  color: #5b21b6;
  background: rgba(109, 40, 217, 0.07);
  box-shadow: none;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 7px;
}

.roadmap-item small::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: none;
}

.roadmap-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 20px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  font-weight: 900;
  box-shadow: none !important;
}

.accordion-button > .lucide {
  width: 19px;
  height: 19px;
  color: var(--violet);
  flex: 0 0 auto;
}

.accordion-button:not(.collapsed) {
  color: var(--violet);
  background: rgba(109, 40, 217, 0.08);
}

.accordion-body {
  color: var(--muted);
  line-height: 1.7;
}

.faq-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.faq-cost-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--wash);
}

.faq-cost-card .lucide {
  width: 24px;
  height: 24px;
  color: var(--violet);
  margin-bottom: 10px;
}

.faq-cost-card strong,
.faq-cost-card span {
  display: block;
}

.faq-cost-card strong {
  color: var(--ink);
  line-height: 1.2;
}

.faq-cost-card span {
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.faq-cost-card.highlight {
  border-color: rgba(109, 40, 217, 0.24);
  background: rgba(109, 40, 217, 0.08);
}

.hosting-example {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.hosting-example .lucide {
  width: 24px;
  height: 24px;
  color: var(--cyan);
  flex: 0 0 auto;
  margin-top: 2px;
}

.hosting-example p {
  margin: 0;
}

.hosting-price {
  display: inline-flex;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--wash);
  margin: 8px 0 14px;
}

.final-cta {
  padding: clamp(68px, 9vw, 112px) 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 10%, rgba(6, 182, 212, 0.38), transparent 30rem),
    linear-gradient(135deg, #0b0f19, #221143);
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
}

.final-cta p {
  margin: 22px auto 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 120ms; }

@media (max-width: 1199px) {
  .workflow,
  .benefit-list,
  .bonus-grid,
  .roadmap-list { grid-template-columns: repeat(2, 1fr); }

  .module-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
  }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
    line-height: 1.02;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-device {
    max-width: 100%;
    margin-left: 0;
    transform: none;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-device img {
    border-radius: 14px;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .section {
    padding: 46px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
    line-height: 1.05;
  }

  .workflow-step,
  .feature-card,
  .module,
  .benefit,
  .diff,
  .bonus {
    padding: 16px;
    min-height: auto;
  }

  .feature-card::before,
  .module::before,
  .benefit::before,
  .diff::before,
  .bonus::before {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .hero-actions .btn,
  .final-cta .btn { width: 100%; }

  .workflow,
  .before-after,
  .feature-grid,
  .module-grid,
  .benefit-list,
  .differentials,
  .bonus-grid,
  .roadmap-list,
  .included {
    grid-template-columns: 1fr;
  }

  .product-swiper {
    width: 100%;
    max-width: 100%;
    padding: 0 0 46px;
    overflow: hidden;
  }

  .swiper {
    max-width: 100%;
  }

  .swiper-slide {
    max-width: 100%;
  }

  .video-shell {
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  }

  .video-controls {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: auto auto minmax(70px, 1fr) auto auto;
    gap: 6px;
    padding: 32px 8px 8px;
  }

  .video-overlay-play {
    width: 58px;
    height: 58px;
  }

  .video-overlay-play svg {
    width: 24px;
    height: 24px;
  }

  .video-control {
    width: 34px;
    height: 34px;
  }

  .video-volume {
    display: none;
  }

  .video-time {
    min-width: 34px;
    font-size: 0.76rem;
  }

  .media-section .row {
    --bs-gutter-y: 1.5rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }

  .demo-access .section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .demo-access .section-heading p {
    font-size: 0.92rem;
  }

  .access-panel {
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .access-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 15px;
  }

  .access-row + .access-row {
    margin-top: 8px;
  }

  .access-icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.62rem;
  }

  .access-row small {
    font-size: 0.64rem;
  }

  .access-row strong {
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .access-row em,
  .copy-btn {
    grid-column: 2;
    justify-self: start;
    margin-left: 0;
  }

  .copy-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .panel-note {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .accordion-button {
    align-items: flex-start;
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-cost-grid {
    grid-template-columns: 1fr;
  }

  .faq-cost-card {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    align-items: start;
    padding: 12px;
  }

  .faq-cost-card .lucide {
    grid-row: span 2;
    width: 22px;
    height: 22px;
    margin-bottom: 0;
  }

  .hosting-example {
    padding: 12px;
  }

  .spots div:first-child {
    flex-direction: column;
  }
}
