:root {
  --bg: #050916;
  --bg-2: #0a1124;
  --panel: rgba(12, 20, 40, 0.82);
  --panel-2: rgba(17, 27, 50, 0.84);
  --text: #f3f7ff;
  --muted: #a7b4d6;
  --line: rgba(117, 151, 255, 0.24);
  --c1: #28d7ff;
  --c2: #3e83ff;
  --c3: #8f5bff;
  --content-max: 1240px;
  --content-pad: 40px;
  --section-space: clamp(56px, 7vw, 84px);
}

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

body {
  font-family: "Manrope", "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(64rem 36rem at 18% 28%, rgba(33, 194, 255, 0.30), transparent 64%),
    radial-gradient(60rem 32rem at 86% 16%, rgba(140, 73, 255, 0.25), transparent 66%),
    radial-gradient(60rem 34rem at 80% 78%, rgba(78, 98, 255, 0.24), transparent 68%),
    linear-gradient(rgba(114, 140, 225, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 140, 225, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg), #060b1a 36%, #060b18 100%);
  background-size: auto, auto, auto, 44px 44px, 44px 44px, auto;
  background-attachment: fixed;
}

a { color: var(--c1); text-decoration: none; }
a:hover { color: #7de8ff; }

main { padding-bottom: 48px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(4, 10, 24, 0.78);
  border-bottom: 1px solid rgba(118, 142, 214, 0.2);
}

.site-header > div {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--text);
  font-size: clamp(22px, 1.8vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 34px); }

.site-nav a {
  color: #d3def8;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a:hover { color: var(--text); }

.header-actions {
  min-width: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.link-btn {
  color: #d3def8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.link-btn:hover { color: var(--text); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(16, 26, 50, 0.85);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
}

section { padding: var(--section-space) 24px; }

.hero {
  width: min(var(--content-max), calc(100% - var(--content-pad)));
  margin: 0 auto;
  text-align: center;
  padding-top: clamp(3rem, 7vh, 6rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(131, 163, 255, 0.3);
  background: rgba(18, 34, 72, 0.65);
  border-radius: 999px;
  padding: 8px 14px;
  color: #d3e9ff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 auto 18px;
  max-width: 980px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(92deg, var(--c1), var(--c2) 45%, var(--c3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.45;
  color: var(--muted);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1536px) {
  .hero h1 {
    font-size: clamp(2.9rem, 4.6vw, 5rem);
    line-height: 1;
  }
}

@media (max-width: 1440px) {
  .hero {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .pricing-page .pricing-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1366px) {
  .hero h1 {
    font-size: clamp(2.7rem, 4.2vw, 4.4rem);
    line-height: 1;
  }
}

@media (max-width: 1200px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 2.25rem;
  }
}

.cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid transparent;
}

.btn-primary {
  color: white;
  background: linear-gradient(96deg, #2ca4ff, #7058ff 58%, #a54dff);
  box-shadow: 0 10px 30px rgba(76, 116, 255, 0.38);
}

.btn-primary:hover { color: white; }

.btn-ghost {
  color: #e6eeff;
  background: rgba(15, 28, 58, 0.72);
  border-color: rgba(135, 165, 255, 0.35);
}

.hero-visual {
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
  border-radius: 24px;
  border: 1px solid rgba(134, 157, 255, 0.45);
  background: linear-gradient(180deg, rgba(16, 28, 56, 0.92), rgba(9, 17, 34, 0.96));
  box-shadow:
    0 0 0 1px rgba(34, 201, 255, 0.14) inset,
    0 18px 45px rgba(0, 7, 28, 0.52),
    0 0 60px rgba(95, 82, 255, 0.30);
  padding: 10px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18% 20% auto 20%;
  height: 180px;
  background: radial-gradient(circle, rgba(54, 176, 255, 0.34), transparent 70%);
  pointer-events: none;
}

.visual-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(117, 150, 245, 0.28);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(11, 20, 40, 0.76);
}

.visual-topbar p {
  margin: 0;
  font-size: 13px;
  color: #d9e8ff;
  font-weight: 600;
}

.dots { display: inline-flex; gap: 6px; }
.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(167, 180, 214, 0.7);
}
.dots span:nth-child(1) { background: #6aa2ff; }
.dots span:nth-child(2) { background: #49d8ff; }
.dots span:nth-child(3) { background: #9a70ff; }

.live-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(95, 243, 207, 0.45);
  color: #87f8dd;
  font-size: 11px;
  font-weight: 700;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.kpi-strip div {
  border: 1px solid rgba(117, 150, 245, 0.26);
  border-radius: 10px;
  background: rgba(15, 27, 54, 0.76);
  padding: 8px;
  text-align: left;
}

.kpi-strip strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.kpi-strip span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(127, 154, 226, 0.22);
}

.visual-chips {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.visual-chips span {
  border: 1px solid rgba(124, 157, 240, 0.35);
  background: rgba(20, 33, 65, 0.74);
  color: #d8e7ff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.mockup-shell {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 12px;
  padding: 14px;
}

#hero-mockup {
  position: relative;
  pointer-events: auto;
}

.cursor-preview-label {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(-9999px, -9999px, 0);
  border: 1px solid rgba(115, 224, 255, 0.5);
  background: rgba(8, 25, 49, 0.9);
  color: #d8f3ff;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease;
  z-index: 12;
}

#hero-mockup.preview-on .cursor-preview-label.cursor-follow-label,
.cursor-preview-label.cursor-follow-label.is-visible {
  opacity: 1;
  visibility: visible;
}

button.hotspot.demo-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #7ee8ff;
  box-shadow: 0 0 0 5px rgba(126, 232, 255, 0.15), 0 0 16px rgba(78, 198, 255, 0.95);
  z-index: 30;
  pointer-events: auto;
  cursor: pointer;
  animation: hotspot-pulse 2.2s ease-in-out infinite;
}

button.hotspot.demo-hotspot span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  min-width: 180px;
  max-width: 220px;
  border: 1px solid rgba(126, 219, 255, 0.45);
  border-radius: 10px;
  background: rgba(8, 21, 43, 0.95);
  color: #d7ebff;
  font-size: 11px;
  line-height: 1.45;
  padding: 7px 9px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

button.hotspot.demo-hotspot:hover span,
button.hotspot.demo-hotspot:focus span,
button.hotspot.demo-hotspot:focus-visible span,
button.hotspot.demo-hotspot.is-active span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.hotspot:focus-visible {
  outline: 2px solid #8beeff;
  outline-offset: 2px;
}

@keyframes hotspot-pulse {
  0%,
  100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

.mockup-sidebar {
  border: 1px solid rgba(117, 150, 245, 0.32);
  border-radius: 14px;
  background: rgba(12, 22, 44, 0.86);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #d7e5ff;
  font-size: 13px;
  font-weight: 600;
}

.mockup-logo {
  color: #ffffff;
  font-size: 16px;
  border-bottom: 1px solid rgba(117, 150, 245, 0.3);
  padding-bottom: 10px;
  margin-bottom: 2px;
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 5;
}

.mockup-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mockup-badge {
  border: 1px solid rgba(117, 150, 245, 0.3);
  border-radius: 10px;
  background: rgba(15, 27, 54, 0.76);
  color: #d9e8ff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
  text-align: left;
}

.mockup-badge strong {
  display: block;
  color: #f2f7ff;
  font-size: 12px;
}

.mockup-badge span {
  display: block;
  color: #b5c8ee;
  font-size: 11px;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mockup-card {
  border: 1px solid rgba(117, 150, 245, 0.28);
  border-radius: 12px;
  background: rgba(12, 22, 44, 0.8);
  padding: 12px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mockup-card:hover {
  transform: translateY(-2px);
  border-color: rgba(121, 205, 255, 0.5);
  box-shadow: 0 14px 30px rgba(7, 15, 34, 0.45);
}

.mockup-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
}

.mockup-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.mockup-chat-card {
  grid-column: span 2;
}

.mockup-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.mockup-pill,
.mockup-mini-pill {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(107, 255, 196, 0.45);
  color: #9affda;
  background: rgba(32, 87, 72, 0.28);
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
}

.mockup-mini-pill {
  border-color: rgba(93, 216, 255, 0.46);
  color: #9fe8ff;
  background: rgba(38, 77, 116, 0.32);
}

.mockup-bubbles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bubble-seq-1,
.bubble-seq-2,
.bubble-seq-3 {
  opacity: 0;
  transform: translateY(7px);
  animation: bubble-in 0.24s ease forwards;
}

.bubble-seq-2 { animation-delay: 0.18s; }
.bubble-seq-3 { animation-delay: 0.34s; }

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bubble {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(122, 155, 240, 0.3);
}

.bubble.user {
  align-self: flex-start;
  background: rgba(20, 39, 72, 0.78);
  color: #deebff;
}

.bubble.ai {
  align-self: flex-end;
  background: rgba(18, 52, 67, 0.8);
  color: #cbf3ff;
}

.bubble.meta {
  align-self: flex-start;
  background: rgba(31, 29, 64, 0.8);
  color: #c9d6fb;
}

.outcomes-section {
  margin-top: 2px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.outcome-item {
  border: 1px solid rgba(125, 157, 238, 0.32);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(19, 32, 60, 0.84), rgba(13, 23, 45, 0.82));
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(191, 211, 255, 0.08);
}

.outcome-item h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.outcome-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-price {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.plan-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.plan-list {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.plan-list li + li {
  margin-top: 6px;
}

.trust-strip {
  width: min(var(--content-max), calc(100% - var(--content-pad)));
  margin: 4px auto 0;
  border-radius: 16px;
  border: 1px solid rgba(128, 162, 255, 0.28);
  background: rgba(14, 24, 46, 0.7);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: -30% 10% auto 10%;
  height: 120px;
  background: radial-gradient(circle, rgba(67, 144, 255, 0.28), transparent 70%);
  pointer-events: none;
}

.trust-strip > span {
  font-size: 15px;
  color: #c8d8ff;
}

.trust-items {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-items span {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 200px;
  min-height: 88px;
  padding: 12px 14px 12px 44px;
  border-radius: 14px;
  border: 1px solid rgba(123, 152, 230, 0.4);
  background: linear-gradient(170deg, rgba(22, 37, 72, 0.88), rgba(15, 26, 52, 0.82));
  box-shadow: inset 0 1px 0 rgba(205, 224, 255, 0.08), 0 10px 28px rgba(5, 10, 25, 0.38);
  color: #dbe7ff;
  font-size: 13px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-items span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 0 14px rgba(41, 199, 255, 0.55);
}

.trust-items span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(40, 215, 255, 0.9), rgba(143, 91, 255, 0.75));
  opacity: 0.85;
}

.trust-items span:nth-child(2)::before {
  background: linear-gradient(135deg, #4de4cc, #28d7ff);
}

.trust-items span:nth-child(3)::before {
  background: linear-gradient(135deg, #8ec5ff, #7d6dff);
}

.trust-items span:nth-child(4)::before {
  background: linear-gradient(135deg, #7e9eff, #b06bff);
}

.trust-items span:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 201, 255, 0.6);
  box-shadow: 0 14px 30px rgba(8, 18, 42, 0.5), 0 0 26px rgba(72, 127, 255, 0.25);
}

.trust-items span b {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-items span small {
  color: #9fb2da;
  font-size: 11px;
}

h2 {
  font-size: clamp(32px, 4.7vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  margin-bottom: 14px;
}

.section {
  width: min(var(--content-max), calc(100% - var(--content-pad)));
  margin: 0 auto;
}


.section .lead {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 24px);
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: linear-gradient(178deg, var(--panel), var(--panel-2));
  border-radius: 14px;
  border: 1px solid rgba(117, 150, 245, 0.28);
  box-shadow: inset 0 1px 0 rgba(191, 211, 255, 0.06);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(114, 204, 255, 0.5);
  box-shadow: 0 14px 30px rgba(8, 16, 36, 0.46);
}

.feature-card {
  position: relative;
}

.feature-tip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  border: 1px solid rgba(116, 215, 255, 0.44);
  border-radius: 10px;
  background: rgba(8, 21, 42, 0.95);
  color: #d3e7ff;
  font-size: 12px;
  line-height: 1.45;
  padding: 8px 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

article.card.feature-card:hover,
article.card.feature-card:focus-within,
article.card.feature-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(114, 204, 255, 0.72);
  box-shadow: 0 16px 34px rgba(8, 16, 36, 0.52);
}

article.card.feature-card:hover .feature-tooltip,
article.card.feature-card:focus-within .feature-tooltip,
article.card.feature-card.is-active .feature-tooltip,
article.card.feature-card:hover .feature-tip,
article.card.feature-card:focus-within .feature-tip,
article.card.feature-card.is-active .feature-tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.feature-card:focus-visible,
button.hotspot.demo-hotspot:focus-visible {
  outline: 2px solid #84e9ff;
  outline-offset: 3px;
}

.pricing-premium-grid {
  align-items: stretch;
}

.pricing-card-premium {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(178deg, rgba(17, 29, 56, 0.92), rgba(10, 20, 38, 0.92));
}

.pricing-card-popular {
  border-color: rgba(107, 205, 255, 0.62);
  box-shadow: 0 18px 40px rgba(47, 132, 255, 0.24), inset 0 1px 0 rgba(222, 238, 255, 0.1);
}

.pricing-card-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 219, 255, 0.66);
  background: linear-gradient(178deg, rgba(20, 37, 71, 0.95), rgba(12, 24, 45, 0.95));
}

.pricing-card-premium:hover,
.pricing-card-premium:focus-within {
  transform: translateY(-6px);
  border-color: rgba(124, 219, 255, 0.72);
  box-shadow: 0 20px 40px rgba(14, 42, 89, 0.4);
}

.pricing-card-popular:hover {
  border-color: rgba(114, 231, 255, 0.85);
  box-shadow: 0 22px 44px rgba(59, 158, 255, 0.34), inset 0 1px 0 rgba(222, 238, 255, 0.14);
}

.pricing-card-popular:hover,
.pricing-card-popular:focus-within {
  transform: translateY(-7px);
}

.pricing-card-disabled:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 170, 214, 0.44);
  background: linear-gradient(178deg, rgba(17, 29, 56, 0.9), rgba(10, 20, 38, 0.9));
}

.pricing-card-disabled {
  cursor: not-allowed;
}

.pricing-card-premium.pricing-card-disabled:hover,
.pricing-card-premium.pricing-card-disabled:focus-within {
  transform: none;
  box-shadow: inset 0 1px 0 rgba(191, 211, 255, 0.06);
}

.pricing-card-premium {
  display: flex;
  flex-direction: column;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 1.25rem 0 0.35rem;
}

.text-orange {
  color: #FF7A1A;
}

.text-orange-gradient {
  background: linear-gradient(90deg, #FF7A1A, #D94D0E);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight-orange {
  color: #FF7A1A;
  font-weight: 800;
}

.price-currency {
  font-size: 1.4rem;
  opacity: 0.85;
  color: #FF7A1A;
}

.price-number {
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.price-period {
  font-size: 1rem;
  opacity: 0.78;
}

.custom-price {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.coming-soon-price {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
}

.pricing-card-cta {
  margin-top: 12px;
  width: 100%;
  text-align: center;
}

.pricing-card-divider {
  margin: 16px 0 12px;
  border: none;
  border-top: 1px solid rgba(120, 154, 240, 0.2);
}

.pricing-cta-popular {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.35);
  color: #1a1202;
}
.pricing-cta-popular:hover {
  background: linear-gradient(135deg, #fde047, #f59e0b);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.4);
}

.pricing-compare-section {
  margin-top: 4px;
}

.pricing-compare-lead-mobile {
  display: none;
}

.pricing-page {
  overflow-x: hidden;
}

.pricing-table-wrap {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(120, 154, 240, 0.3);
  border-radius: 14px;
  background: linear-gradient(176deg, rgba(16, 27, 52, 0.92), rgba(10, 19, 38, 0.92));
  box-shadow: inset 0 1px 0 rgba(190, 211, 255, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-feature-compare {
  display: none;
  gap: 12px;
}

.mobile-compare-group {
  border: 1px solid rgba(120, 154, 240, 0.32);
  border-radius: 14px;
  background: linear-gradient(176deg, rgba(16, 27, 52, 0.92), rgba(10, 19, 38, 0.92));
  box-shadow: inset 0 1px 0 rgba(190, 211, 255, 0.08);
  overflow: hidden;
}

.mobile-compare-group summary {
  cursor: pointer;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #eff6ff;
  list-style: none;
}

.mobile-compare-group summary::-webkit-details-marker {
  display: none;
}

.mobile-compare-group summary::after {
  content: "+";
  float: right;
  color: #9fd9ff;
  font-size: 18px;
  line-height: 1;
}

.mobile-compare-group[open] summary::after {
  content: "-";
}

.mobile-compare-body {
  padding: 0 12px 12px;
  display: grid;
  gap: 10px;
}

.mobile-feature-row {
  border: 1px solid rgba(104, 132, 204, 0.28);
  border-radius: 12px;
  background: rgba(14, 24, 47, 0.82);
  padding: 10px;
}

.mobile-feature-row h4 {
  margin: 0 0 6px;
  color: #ecf4ff;
  font-size: 14px;
}

.mobile-feature-row p {
  margin: 3px 0;
  color: #b8cbed;
  font-size: 13px;
  line-height: 1.4;
}

.mobile-feature-row p strong {
  color: #dbe9ff;
}

.mobile-feature-row p.growth strong,
.mobile-feature-row p.growth {
  color: #9fe8ff;
}

.mobile-feature-row p.scale {
  color: #b7bfd8;
}

.pricing-faq-section {
  margin-top: 4px;
}

.pricing-faq-list {
  display: grid;
  gap: 10px;
}

.pricing-faq-item {
  border: 1px solid rgba(120, 154, 240, 0.28);
  border-radius: 12px;
  background: linear-gradient(176deg, rgba(16, 27, 52, 0.9), rgba(10, 19, 38, 0.9));
  box-shadow: inset 0 1px 0 rgba(190, 211, 255, 0.07);
  overflow: hidden;
}

.pricing-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  color: #eef5ff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-item summary::after {
  content: "+";
  float: right;
  color: #9fd9ff;
  font-size: 18px;
  line-height: 1;
}

.pricing-faq-item[open] summary::after {
  content: "-";
}

.pricing-faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: #bfd1f1;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-compare-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--text);
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(120, 154, 240, 0.18);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.pricing-compare-table thead th {
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #d6e5ff;
  background: rgba(19, 33, 62, 0.95);
  position: sticky;
  top: 0;
  z-index: 1;
}

.pricing-compare-table td:first-child,
.pricing-compare-table th:first-child {
  min-width: 230px;
  color: #f1f6ff;
  font-weight: 700;
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgba(16, 27, 52, 0.98);
}

.pricing-compare-table thead th:first-child {
  z-index: 3;
  background: rgba(19, 33, 62, 0.98);
}

.pricing-compare-table .col-growth {
  background: rgba(27, 65, 112, 0.34);
}

.pricing-compare-table .col-scale {
  color: #b2bfd9;
  background: rgba(54, 60, 87, 0.3);
}

.pricing-compare-table tbody tr:hover td {
  background: rgba(28, 47, 84, 0.3);
}

.pricing-swipe-hint {
  display: none;
  margin: 0 0 10px;
  color: #bcd0f4;
  font-size: 13px;
}

@media (min-width: 769px) {
  .pricing-table-wrap {
    display: block;
  }

  .mobile-feature-compare {
    display: none;
  }

  .pricing-compare-lead-desktop {
    display: block;
  }

  .pricing-compare-lead-mobile {
    display: none;
  }
}

.pricing-card-disabled {
  opacity: 0.72;
  border-style: dashed;
}

.pricing-tag {
  position: absolute;
  right: 14px;
  top: 12px;
  border-radius: 999px;
  border: 1px solid rgba(89, 222, 255, 0.56);
  color: #a6ebff;
  background: rgba(27, 72, 98, 0.55);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 700;
}

.pricing-tag.muted {
  border-color: rgba(157, 170, 214, 0.42);
  color: #cad5ef;
  background: rgba(49, 58, 88, 0.55);
}

.card h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.15;
}

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

.feature-list {
  list-style: none;
  border: 1px solid rgba(122, 153, 241, 0.26);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 23, 47, 0.84), rgba(10, 18, 37, 0.88));
  padding: 8px 16px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(114, 144, 228, 0.2);
}

.feature-list li:last-child { border-bottom: 0; }

.feature-list h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  margin-bottom: 4px;
}

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

.section-cta {
  border: 1px solid rgba(136, 166, 255, 0.3);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(13, 28, 61, 0.88), rgba(34, 23, 67, 0.82));
  box-shadow: 0 0 50px rgba(104, 85, 255, 0.25);
  text-align: center;
  padding: 56px 26px;
  margin-bottom: 40px;
}

.section-cta .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
}

.site-footer {
  border-top: 1px solid rgba(120, 149, 233, 0.26);
  background: rgba(5, 9, 22, 0.75);
  backdrop-filter: blur(8px);
}

.site-footer > div:first-child {
  width: min(var(--content-max), calc(100% - var(--content-pad)));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.site-footer h3 {
  font-size: clamp(24px, 2vw, 34px);
  margin-bottom: 5px;
}

.site-footer p { color: var(--muted); font-size: 15px; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(120, 149, 233, 0.2);
}

.footer-top .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.footer-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-grid h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4e2ff;
  margin-bottom: 10px;
}

.footer-grid a {
  display: block;
  color: #9ab0de;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-grid a:hover { color: var(--text); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 16px;
}

.contact-form {
  background: linear-gradient(176deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(117, 150, 245, 0.28);
  border-radius: 14px;
  padding: 22px;
}

.contact-form label {
  color: #cddafb;
  font-size: 14px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 14px;
  border: 1px solid rgba(120, 148, 233, 0.3);
  border-radius: 10px;
  background: rgba(8, 15, 34, 0.9);
  color: var(--text);
  padding: 11px 12px;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c1);
  box-shadow: 0 0 0 2px rgba(40, 215, 255, 0.2);
}

.form-status { color: #b9c8f2; }

@media (max-width: 1024px) {
  .grid.four,
  .grid.three,
  .grid.two,
  .footer-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .kpi-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mockup-shell { grid-template-columns: 1fr; }
  .mockup-top,
  .mockup-grid { grid-template-columns: 1fr; }
  .mockup-chat-card { grid-column: span 1; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .grid { gap: 14px; }

  .pricing-page .pricing-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-page .pricing-swipe-hint {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .pricing-table-wrap {
    display: none;
  }

  .mobile-feature-compare {
    display: grid;
  }

  .pricing-compare-lead-desktop {
    display: none;
  }

  .pricing-compare-lead-mobile {
    display: block;
  }

  .pricing-page .pricing-premium-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page .pricing-card-premium {
    transform: none;
  }

  .pricing-page .pricing-card-popular {
    border-color: rgba(107, 205, 255, 0.72);
    box-shadow: 0 14px 30px rgba(43, 116, 236, 0.22), inset 0 1px 0 rgba(222, 238, 255, 0.08);
  }

  .pricing-page .pricing-card-disabled {
    opacity: 0.68;
  }

  .pricing-page .pricing-swipe-hint {
    display: none;
  }

  .pricing-page .site-header > div {
    gap: 10px;
  }

  .pricing-page .header-actions .btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .pricing-page .pricing-faq-item summary {
    padding: 14px;
    font-size: 15px;
  }

  .pricing-page .pricing-faq-item p {
    padding: 0 14px 14px;
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .hotspot,
  .cursor-preview-label {
    display: none;
  }

  .feature-tip {
    position: static;
    margin-top: 10px;
    opacity: 1;
    transform: none;
    background: rgba(14, 26, 50, 0.86);
  }

  .pricing-page .hero h1 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .pricing-page h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .pricing-page .card {
    padding: 18px;
  }

  .pricing-page .pricing-compare-table th,
  .pricing-page .pricing-compare-table td {
    font-size: 13px;
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 820px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(114, 140, 220, 0.28);
  }
  .site-nav.open { display: flex; }
  .site-header > div {
    min-height: 64px;
    flex-wrap: wrap;
  }
  .header-actions {
    margin-left: auto;
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  :root {
    --content-pad: 24px;
    --section-space: 52px;
  }
  section { padding: var(--section-space) 16px; }
  .site-header > div,
  .hero,
  .trust-strip,
  .section,
  .site-footer > div:first-child { width: min(var(--content-max), calc(100% - var(--content-pad))); }
  .btn { width: 100%; }
  .kpi-strip { grid-template-columns: 1fr; }
  .header-actions {
    width: 100%;
    justify-content: stretch;
    flex-wrap: wrap;
  }
  .header-actions .link-btn {
    width: 100%;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top .btn {
    width: 100%;
  }


}
