@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg-page: #07112b;
  --bg-soft: #0b1637;
  --bg-panel: rgba(11, 22, 55, 0.84);
  --bg-dark: #07112b;
  --bg-dark-soft: #0a1740;
  --surface: #0b1637;
  --surface-strong: #101d45;
  --text-heading: #f4f7ff;
  --text-body: #d8e5ff;
  --text-muted: #b7c3e0;
  --text-inverse: #f4f7ff;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --brand: #4f7cff;
  --brand-strong: #3f69e6;
  --accent: #43d3c4;
  --accent-soft: rgba(67, 211, 196, 0.14);
  --gold: #7cc9ff;
  --success: #43d3c4;
  --shadow-soft: 0 12px 30px rgba(7, 17, 43, 0.18);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.28);
  --shadow-hover: 0 26px 64px rgba(0, 0, 0, 0.34);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --container: 1180px;
  --content-narrow: 760px;
  --transition: 220ms ease;
  --display-font: "Fraunces", Georgia, serif;
  --body-font: "Manrope", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text-body);
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(67, 211, 196, 0.1), transparent 20%),
    linear-gradient(180deg, #0a1740 0%, #07112b 14%, #06102a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  filter: blur(12px);
}

body::before {
  top: 88px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.2), transparent 68%);
}

body::after {
  right: -100px;
  top: 320px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 211, 196, 0.16), transparent 70%);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(67, 211, 196, 0.7);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-shell {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.content-narrow {
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
}

.section {
  padding: var(--space-8) 0;
  position: relative;
}

.section::before,
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 240px;
  height: 140px;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.section-sm {
  padding: var(--space-6) 0;
}

.section-dark {
  color: var(--text-inverse);
  background:
    radial-gradient(circle at top left, rgba(67, 211, 196, 0.1), transparent 24%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-soft) 100%);
}

.surface-card,
.metric,
.feature-card,
.comparison-card,
.step-card,
.pricing-card,
.trust-card,
.demo-panel,
.legal-card,
.support-card,
.contact-card,
.summary-card {
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.94), rgba(11, 22, 55, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: #d9e6ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  background: rgba(79, 124, 255, 0.14);
  border-color: rgba(79, 124, 255, 0.22);
  color: var(--text-inverse);
}

.display-title,
.page-title,
.section-title,
.card-title {
  margin: 0;
  color: var(--text-heading);
  font-family: var(--display-font);
}

.display-title {
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.page-title {
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.card-title {
  font-size: 1.25rem;
  line-height: 1.15;
}

.lead,
.section-copy,
.card-copy {
  margin: 0;
  line-height: 1.7;
}

.lead {
  font-size: 1.1rem;
  max-width: 58ch;
}

.section-copy {
  color: var(--text-muted);
}

.card-copy {
  color: var(--text-muted);
}

.text-inverse .section-title,
.text-inverse .page-title,
.text-inverse .card-title,
.text-inverse .display-title,
.section-dark .section-title,
.section-dark .page-title,
.section-dark .card-title,
.section-dark .display-title {
  color: var(--text-inverse);
}

.section-dark .section-copy,
.section-dark .card-copy,
.section-dark .lead {
  color: rgba(216, 229, 255, 0.82);
}

.section-head {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.section-head .section-copy {
  max-width: 66ch;
}

.section-head.centered {
  justify-items: center;
  text-align: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.button,
.ghost-button,
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button {
  border: 1px solid transparent;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #f4f8f8;
  box-shadow: 0 10px 28px rgba(79, 124, 255, 0.28);
}

.button:hover,
.ghost-button:hover,
.link-button:hover {
  transform: translateY(-2px);
}

.button:hover {
  box-shadow: 0 16px 34px rgba(79, 124, 255, 0.34);
}

.ghost-button {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-heading);
  box-shadow: none;
}

.section-dark .ghost-button {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.link-button {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--brand-strong);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 16px;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 42, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-4);
  min-height: 82px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(11, 22, 55, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

body.woocommerce-checkout .site-header {
  position: relative;
  top: auto;
  padding-top: 12px;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fdf7f0;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 28px rgba(79, 124, 255, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--text-heading);
  font-size: 1rem;
}

.brand-copy small {
  color: #9fb2d7;
}

.site-nav ul,
.footer-links,
.mini-list,
.feature-list,
.comparison-list,
.billing-list,
.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav ul {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-weight: 600;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.cart-link:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 124, 255, 0.26);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 30px rgba(3, 10, 28, 0.24);
}

.cart-link__icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(79, 124, 255, 0.16);
  color: #dbe6ff;
}

.cart-link__icon svg {
  width: 18px;
  height: 18px;
}

.cart-link__label {
  line-height: 1;
}

.cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--accent) 0%, #2ebcae 100%);
  color: #06203f;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(67, 211, 196, 0.3);
}

.cart-link.has-items {
  border-color: rgba(67, 211, 196, 0.24);
  background: linear-gradient(180deg, rgba(67, 211, 196, 0.12), rgba(79, 124, 255, 0.08));
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  padding: 10px 16px;
  font-weight: 700;
}

.hero {
  padding: calc(var(--space-8) + 8px) 0 var(--space-8);
}

.hero-grid,
.split-grid,
.comparison-grid,
.demo-grid,
.contact-grid,
.checkout-grid,
.about-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(24px, 4vw, 54px);
}

.split-grid,
.comparison-grid,
.demo-grid,
.contact-grid,
.checkout-grid,
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.hero-copy .display-title {
  max-width: 11ch;
}

.hero-copy .lead {
  max-width: 60ch;
  color: rgba(216, 229, 255, 0.88);
}

.hero-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.82), rgba(11, 22, 55, 0.92));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-note strong {
  color: var(--text-heading);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero .button-row,
.page-hero-card .button-row {
  align-items: center;
}

.pill,
.bot-chip,
.mini-stat,
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-body);
  font-size: 0.92rem;
  font-weight: 700;
}

.mini-stat {
  background: rgba(79, 124, 255, 0.12);
  border-color: rgba(79, 124, 255, 0.22);
  color: #dbe6ff;
}

.hero-visual,
.device-shell,
.mock-screen,
.bot-shell {
  position: relative;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-visual::before,
.page-hero-card::before,
.bot-panel::before {
  content: "";
  position: absolute;
  inset: auto auto 16px -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.24), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.device-shell {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(67, 211, 196, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(16, 29, 69, 0.96), rgba(11, 22, 55, 0.98));
  box-shadow: var(--shadow-card);
}

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

.signal-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.88), rgba(11, 22, 55, 0.92));
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
}

.signal-card-accent {
  background: linear-gradient(160deg, rgba(79, 124, 255, 0.96), rgba(67, 211, 196, 0.88));
  color: var(--text-inverse);
  border-color: transparent;
}

.signal-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  color: var(--text-heading);
  font-family: var(--display-font);
  font-size: 1.2rem;
  line-height: 1.1;
}

.signal-card-accent strong,
.signal-card-accent p {
  color: var(--text-inverse);
}

.signal-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.device-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.device-tag {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-body);
  font-size: 0.84rem;
  font-weight: 700;
}

.mock-screen {
  display: grid;
  gap: var(--space-3);
}

.mock-panel {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.mock-panel h3,
.mini-headline {
  margin: 0 0 10px;
  color: var(--text-heading);
  font-size: 1rem;
}

.mini-line {
  height: 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(79, 124, 255, 0.24), rgba(255, 255, 255, 0.08));
}

.mini-line.short {
  width: 62%;
}

.mini-line.medium {
  width: 78%;
}

.mini-line.long {
  width: 94%;
}

.chat-bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.6;
}

.chat-bubble.user {
  margin-left: auto;
  border-bottom-right-radius: 6px;
  background: rgba(79, 124, 255, 0.16);
  color: var(--text-inverse);
}

.chat-bubble.bot {
  border-bottom-left-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-body);
}

.metrics-grid,
.feature-grid,
.steps-grid,
.use-grid,
.pricing-grid,
.trust-grid,
.support-grid,
.legal-grid {
  display: grid;
  gap: var(--space-4);
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.82), rgba(11, 22, 55, 0.9));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.support-grid,
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric,
.feature-card,
.comparison-card,
.step-card,
.pricing-card,
.trust-card,
.support-card,
.contact-card,
.summary-card,
.legal-card {
  padding: var(--space-5);
}

.metric:hover,
.feature-card:hover,
.comparison-card:hover,
.step-card:hover,
.pricing-card:hover,
.trust-card:hover,
.support-card:hover,
.contact-card:hover,
.summary-card:hover,
.legal-card:hover,
.deep-dive-row:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(79, 124, 255, 0.24);
}

.metric strong,
.feature-icon,
.step-number,
.trust-icon,
.support-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(79, 124, 255, 0.14);
  color: #dbe6ff;
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.feature-grid .feature-card:nth-child(4n + 1) .feature-icon,
.use-grid .feature-card:nth-child(3n + 1) .feature-icon,
.support-grid .support-card:nth-child(2n + 1) .support-icon {
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.22), rgba(79, 124, 255, 0.08));
}

.feature-grid .feature-card:nth-child(4n + 2) .feature-icon,
.use-grid .feature-card:nth-child(3n + 2) .feature-icon {
  background: linear-gradient(135deg, rgba(67, 211, 196, 0.22), rgba(67, 211, 196, 0.08));
  color: #c2fffb;
}

.feature-grid .feature-card:nth-child(4n + 3) .feature-icon,
.use-grid .feature-card:nth-child(3n) .feature-icon {
  background: linear-gradient(135deg, rgba(79, 124, 255, 0.16), rgba(67, 211, 196, 0.12));
  color: #dbe6ff;
}

.metric strong {
  width: auto;
  height: auto;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
}

.feature-card,
.comparison-card,
.step-card,
.pricing-card,
.trust-card,
.support-card,
.contact-card,
.summary-card,
.legal-card {
  display: grid;
  gap: var(--space-3);
  align-content: start;
  min-height: 100%;
}

.comparison-card.negative {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(11, 22, 55, 0.96));
}

.comparison-card.positive {
  background: linear-gradient(180deg, rgba(67, 211, 196, 0.08), rgba(11, 22, 55, 0.96));
}

.feature-list,
.comparison-list,
.billing-list,
.support-list,
.footer-links {
  display: grid;
  gap: 10px;
}

.feature-list li,
.comparison-list li,
.billing-list li,
.support-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.65;
}

.feature-list li::before,
.comparison-list li::before,
.billing-list li::before,
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.step-number {
  width: 60px;
  height: 60px;
  font-size: 1.05rem;
}

.deep-dive-stack {
  display: grid;
  gap: var(--space-5);
}

.deep-dive-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.88), rgba(11, 22, 55, 0.94));
  box-shadow: var(--shadow-soft);
}

.deep-dive-row:nth-child(even) .deep-dive-media {
  order: -1;
}

.deep-dive-copy {
  display: grid;
  gap: var(--space-3);
}

.deep-dive-media {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(67, 211, 196, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(16, 29, 69, 0.84), rgba(11, 22, 55, 0.92));
}

.demo-grid {
  align-items: stretch;
}

.demo-copy {
  display: grid;
  gap: var(--space-3);
}

.demo-panel,
.bot-panel {
  padding: var(--space-4);
  min-height: 100%;
}

.bot-panel {
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.94), rgba(11, 22, 55, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.bot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.bot-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bot-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.bot-log {
  display: grid;
  gap: 12px;
  min-height: 280px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}

.bot-message {
  display: grid;
  gap: 6px;
}

.bot-message .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bot-message .bubble {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.65;
}

.bot-message.user {
  justify-items: end;
}

.bot-message.user .bubble {
  border-bottom-right-radius: 8px;
  background: rgba(79, 124, 255, 0.18);
  color: var(--text-inverse);
}

.bot-message.bot .bubble {
  border-bottom-left-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-body);
}

.bot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--space-4) 0;
}

.bot-chip {
  min-height: 36px;
  background: rgba(255, 255, 255, 0.04);
}

.bot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: var(--space-3);
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(6, 16, 42, 0.72);
  color: var(--text-heading);
  padding: 14px 16px;
}

.input::placeholder,
.textarea::placeholder,
.select::placeholder {
  color: rgba(183, 195, 224, 0.68);
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: rgba(79, 124, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, 0.12);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.bot-submit {
  min-width: 120px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: var(--text-inverse);
  font-weight: 700;
}

.plan-badge {
  justify-self: start;
  background: rgba(79, 124, 255, 0.14);
  border-color: rgba(79, 124, 255, 0.26);
  color: var(--text-inverse);
}

.pricing-card.featured {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.16), transparent 36%),
    radial-gradient(circle at bottom left, rgba(67, 211, 196, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(16, 29, 69, 0.96), rgba(11, 22, 55, 1));
  border-color: rgba(79, 124, 255, 0.24);
  box-shadow: var(--shadow-card);
}

.pricing-card .card-copy {
  max-width: 30ch;
}

.pricing-card .billing-list {
  margin-top: 4px;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--text-heading);
}

.price strong {
  font-size: 2.6rem;
  line-height: 0.92;
  font-family: var(--display-font);
}

.pricing-card .button-row {
  margin-top: auto;
}

.pricing-card .button,
.pricing-card .ghost-button {
  flex: 1 1 180px;
  width: auto;
  margin-top: 0;
}

.plan-stack,
.cart-stack {
  display: grid;
  gap: var(--space-4);
}

.sticky-panel {
  position: sticky;
  top: 116px;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: plan-step;
}

.step-list li {
  position: relative;
  padding: 14px 16px 14px 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-body);
  line-height: 1.7;
}

.step-list li::before {
  counter-increment: plan-step;
  content: counter(plan-step);
  position: absolute;
  left: 16px;
  top: 14px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(79, 124, 255, 0.18);
  color: var(--text-inverse);
  font-size: 0.84rem;
  font-weight: 800;
}

.cart-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.cart-empty {
  display: grid;
  gap: var(--space-3);
}

.cart-empty .button-row {
  align-items: center;
}

.plan-actions {
  align-items: stretch;
}

.comparison-table {
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(11, 22, 55, 0.9);
  box-shadow: var(--shadow-soft);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table tbody tr:hover {
  background: rgba(79, 124, 255, 0.06);
}

.comparison-table th {
  color: var(--text-heading);
  background: rgba(255, 255, 255, 0.04);
}

.page-hero {
  padding: var(--space-7) 0 var(--space-6);
}

.page-hero-card {
  position: relative;
  display: grid;
  gap: var(--space-4);
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.16), transparent 20%),
    radial-gradient(circle at bottom left, rgba(67, 211, 196, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(16, 29, 69, 0.94), rgba(11, 22, 55, 0.98));
  box-shadow: var(--shadow-card);
}

.page-hero-card .section-copy,
.page-hero-card .lead {
  max-width: 720px;
}

.page-hero--checkout {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.page-hero-card--checkout {
  gap: var(--space-3);
  padding: clamp(28px, 4vw, 42px);
}

.page-hero-card--checkout .page-title {
  max-width: none;
  white-space: nowrap;
}

.page-hero-card--checkout .lead {
  max-width: 58ch;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.contact-grid,
.checkout-grid,
.about-grid {
  align-items: start;
}

.form-stack,
.field-grid {
  display: grid;
  gap: var(--space-3);
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-label {
  display: grid;
  gap: 8px;
  color: var(--text-heading);
  font-weight: 700;
}

.form-note,
.micro-note,
.success-note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.success-note {
  color: var(--success);
  font-weight: 700;
}

.checkout-box {
  display: grid;
  gap: var(--space-4);
}

.checkout-box--spacious {
  gap: var(--space-5);
}

.checkout-surface {
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(16, 29, 69, 0.96), rgba(11, 22, 55, 0.98));
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-card);
}

.summary-stack {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.invoice-row,
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

.summary-row {
  align-items: baseline;
}

.summary-row span {
  color: var(--text-muted);
}

.summary-row strong {
  color: var(--text-heading);
  text-align: right;
}

.summary-total {
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  color: var(--text-heading);
  font-weight: 800;
}

.cart-quantity-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 42, 0.72);
}

.quantity-stepper button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-heading);
  font-size: 1.25rem;
  line-height: 1;
}

.quantity-stepper button:hover:not(:disabled) {
  background: rgba(79, 124, 255, 0.18);
}

.quantity-stepper button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-stepper__value {
  min-width: 32px;
  text-align: center;
  color: var(--text-heading);
  font-weight: 800;
}

.checkout-summary-head,
.form-section-copy {
  display: grid;
  gap: 10px;
}

.form-section {
  display: grid;
  gap: var(--space-3);
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.form-section-title {
  margin: 0;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 800;
}

.checkout-form {
  gap: var(--space-4);
}

.checkout-submit {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

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

.order-trust .pill {
  min-height: 36px;
  font-size: 0.84rem;
  color: #dce7ff;
  background: rgba(255, 255, 255, 0.04);
}

.checkout-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 3vw, 40px);
}

.contact-card .form-note,
.summary-card .form-note {
  max-width: 54ch;
}

.elitebot-commerce-grid {
  align-items: start;
}

.elitebot-woocommerce .woocommerce {
  display: grid;
  gap: var(--space-4);
}

.elitebot-woocommerce .woocommerce-notices-wrapper {
  display: grid;
  gap: 12px;
}

.elitebot-woocommerce .woocommerce-message,
.elitebot-woocommerce .woocommerce-info,
.elitebot-woocommerce .woocommerce-error {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 20, 52, 0.72);
  color: var(--text-body);
  list-style: none;
}

.elitebot-woocommerce .woocommerce-message {
  border-color: rgba(67, 211, 196, 0.24);
}

.elitebot-woocommerce .woocommerce-error {
  border-color: rgba(255, 107, 132, 0.28);
}

.elitebot-woocommerce a {
  color: #a9c7ff;
}

.elitebot-woocommerce table.shop_table,
.elitebot-woocommerce .cart_totals,
.elitebot-woocommerce #payment,
.elitebot-woocommerce .woocommerce-checkout-review-order-table {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(7, 17, 44, 0.72);
  border-collapse: separate;
  border-spacing: 0;
}

.elitebot-woocommerce table.shop_table th,
.elitebot-woocommerce table.shop_table td,
.elitebot-woocommerce .woocommerce-checkout-review-order-table th,
.elitebot-woocommerce .woocommerce-checkout-review-order-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-body);
  background: transparent;
}

.elitebot-woocommerce table.shop_table th,
.elitebot-woocommerce .woocommerce-checkout-review-order-table th {
  color: var(--text-heading);
  font-weight: 700;
}

.elitebot-woocommerce table.shop_table tr:last-child td,
.elitebot-woocommerce table.shop_table tr:last-child th,
.elitebot-woocommerce .woocommerce-checkout-review-order-table tr:last-child td,
.elitebot-woocommerce .woocommerce-checkout-review-order-table tr:last-child th {
  border-bottom: 0;
}

.elitebot-woocommerce .product-name a,
.elitebot-woocommerce .product-name {
  color: var(--text-heading);
  font-weight: 700;
}

.elitebot-woocommerce .product-remove a {
  color: #ff9fb4;
  font-size: 1.1rem;
}

.elitebot-woocommerce .product-thumbnail {
  width: 92px;
}

.elitebot-woocommerce .product-thumbnail img {
  width: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.elitebot-woocommerce .quantity .qty,
.elitebot-woocommerce input.input-text,
.elitebot-woocommerce input[type="text"],
.elitebot-woocommerce input[type="email"],
.elitebot-woocommerce input[type="tel"],
.elitebot-woocommerce input[type="number"],
.elitebot-woocommerce select,
.elitebot-woocommerce textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(5, 14, 38, 0.88);
  color: var(--text-heading);
  box-shadow: none;
}

.elitebot-woocommerce textarea {
  min-height: 138px;
  padding: 16px;
}

.elitebot-woocommerce input::placeholder,
.elitebot-woocommerce textarea::placeholder {
  color: rgba(183, 195, 224, 0.68);
}

.elitebot-woocommerce .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.elitebot-woocommerce .coupon {
  display: flex;
  flex: 1 1 320px;
  flex-wrap: wrap;
  gap: 12px;
}

.elitebot-woocommerce .coupon label {
  width: 100%;
  color: var(--text-muted);
}

.elitebot-woocommerce .coupon .input-text {
  flex: 1 1 220px;
}

.elitebot-woocommerce .button,
.elitebot-woocommerce button.button,
.elitebot-woocommerce input.button,
.elitebot-woocommerce .wc-proceed-to-checkout a.checkout-button,
.elitebot-woocommerce #payment #place_order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #f4f7ff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(79, 124, 255, 0.28);
}

.elitebot-woocommerce button[name="update_cart"],
.elitebot-woocommerce button[name="apply_coupon"] {
  box-shadow: none;
}

.elitebot-woocommerce .cart_totals {
  padding: 24px;
}

.elitebot-woocommerce .cart_totals h2,
.elitebot-woocommerce #order_review_heading,
.elitebot-woocommerce .woocommerce-billing-fields > h3,
.elitebot-woocommerce .woocommerce-additional-fields > h3 {
  margin: 0 0 18px;
  color: var(--text-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.elitebot-woocommerce .cart_totals table {
  margin-bottom: 18px;
}

.elitebot-woocommerce .wc-proceed-to-checkout {
  margin: 0;
}

.elitebot-woocommerce .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
}

.elitebot-woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.82fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 3vw, 56px);
  align-items: start;
}

.elitebot-woocommerce-checkout .woocommerce-form-coupon-toggle,
.elitebot-woocommerce-checkout form.checkout_coupon {
  grid-column: 1 / -1;
}

.elitebot-woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 16px 20px 16px 52px;
  line-height: 1.55;
  font-size: 0.98rem;
}

.elitebot-woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.elitebot-woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 124, 255, 0.12);
  color: #d9e6ff;
  text-decoration: none;
  white-space: nowrap;
}

.elitebot-woocommerce-checkout #customer_details,
.elitebot-woocommerce-checkout #order_review,
.elitebot-woocommerce-checkout #order_review_heading {
  width: 100%;
}

.elitebot-woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  gap: var(--space-4);
  align-content: start;
  justify-items: stretch;
  width: 100% !important;
  max-width: none !important;
}

.elitebot-woocommerce-checkout .col2-set,
.elitebot-woocommerce-checkout .woocommerce .col2-set {
  width: 100% !important;
  max-width: none !important;
}

.elitebot-woocommerce-checkout .col-1,
.elitebot-woocommerce-checkout .col-2 {
  width: 100% !important;
  max-width: none !important;
  float: none;
  justify-self: stretch;
}

.elitebot-woocommerce-checkout .col2-set .col-1,
.elitebot-woocommerce-checkout .col2-set .col-2,
.elitebot-woocommerce-checkout .woocommerce .col2-set .col-1,
.elitebot-woocommerce-checkout .woocommerce .col2-set .col-2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}

.elitebot-woocommerce-checkout .col-1,
.elitebot-woocommerce-checkout .col-2,
.elitebot-woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  gap: 14px;
}

.elitebot-woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.elitebot-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-first,
.elitebot-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-last {
  grid-column: span 1;
}

.elitebot-woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}

.elitebot-woocommerce-checkout .woocommerce-billing-fields,
.elitebot-woocommerce-checkout .woocommerce-additional-fields,
.elitebot-woocommerce-checkout #order_review,
.elitebot-woocommerce-checkout #payment {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(7, 17, 44, 0.72);
}

.elitebot-woocommerce-checkout .woocommerce-billing-fields,
.elitebot-woocommerce-checkout .woocommerce-additional-fields {
  width: 100% !important;
  max-width: none !important;
}

.elitebot-woocommerce-checkout #order_review_heading {
  margin: 0 0 6px;
  padding: 0;
}

.elitebot-woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.elitebot-woocommerce-checkout .form-row {
  margin: 0 0 14px;
  width: 100% !important;
}

.elitebot-woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-heading);
  font-weight: 700;
  white-space: normal;
}

.elitebot-woocommerce-checkout .input-text,
.elitebot-woocommerce-checkout select,
.elitebot-woocommerce-checkout textarea,
.elitebot-woocommerce-checkout .select2-container {
  width: 100% !important;
  max-width: none !important;
}

.elitebot-woocommerce-checkout .woocommerce-checkout-payment ul.payment_methods {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.elitebot-woocommerce-checkout .woocommerce-checkout-payment li {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.elitebot-woocommerce-checkout .woocommerce-checkout-payment li:first-child {
  border-top: 0;
}

.elitebot-woocommerce-checkout .payment_box {
  margin: 12px 0 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-body);
}

.elitebot-woocommerce-checkout #payment .woocommerce-info {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.elitebot-woocommerce-checkout #payment.checkout-no-payment #place_order,
.elitebot-woocommerce-checkout #ppc-button-ppcp-applepay:empty,
.elitebot-woocommerce-checkout #ppc-button-ppcp-googlepay:empty {
  display: none;
}

.elitebot-woocommerce-checkout .place-order {
  margin: 0;
}

.elitebot-woocommerce-checkout #place_order {
  width: 100%;
}

.elitebot-woocommerce-checkout #place_order:disabled,
.elitebot-woocommerce-checkout #place_order[disabled] {
  opacity: 0.88;
  cursor: not-allowed;
  box-shadow: none;
  color: rgba(244, 247, 255, 0.96);
  background: linear-gradient(180deg, rgba(79, 124, 255, 0.9) 0%, rgba(50, 86, 214, 0.9) 100%);
}

.demo-grid {
  gap: clamp(24px, 4vw, 54px);
}

.demo-copy,
.bot-panel {
  min-height: 100%;
}

.section-head.centered .section-title {
  max-width: 16ch;
}

.section-head.centered .section-copy {
  max-width: 62ch;
}

.faq-stack {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(16, 29, 69, 0.88), rgba(11, 22, 55, 0.94));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--text-heading);
  font-weight: 700;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-heading);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] {
  border-color: rgba(79, 124, 255, 0.24);
  box-shadow: var(--shadow-card);
}

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

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

.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer {
  padding: var(--space-7) 0 var(--space-5);
  color: var(--text-inverse);
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(79, 124, 255, 0.18), transparent 22%),
    radial-gradient(circle at left center, rgba(67, 211, 196, 0.08), transparent 24%),
    linear-gradient(180deg, #0a1740 0%, #07112b 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left center, rgba(79, 124, 255, 0.12), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  opacity: 0.35;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.footer-brand {
  display: grid;
  gap: var(--space-3);
}

.footer-links a,
.footer-links button {
  color: rgba(183, 195, 224, 0.82);
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--text-inverse);
  transform: translateX(2px);
}

.footer-title {
  margin: 0 0 12px;
  color: var(--text-inverse);
  font-size: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(183, 195, 224, 0.72);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.floating-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: var(--text-inverse);
  font-weight: 800;
  box-shadow: 0 24px 48px rgba(4, 10, 28, 0.36);
}

.floating-bot {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 39;
  width: min(380px, calc(100vw - 32px));
  transform: translateY(24px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

.floating-bot.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .header-shell {
    grid-template-columns: auto auto auto;
    border-radius: 32px;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav.is-open {
    display: block;
    grid-column: 1 / -1;
    padding: 4px 0 var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 6px;
  }

  .site-nav.is-open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .header-cta.is-open {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    align-items: stretch;
    padding-bottom: var(--space-3);
  }

  .header-cta.is-open .cart-link,
  .header-cta.is-open .ghost-button,
  .header-cta.is-open .button {
    flex: 1 1 180px;
  }

  .hero-grid,
  .split-grid,
  .comparison-grid,
  .demo-grid,
  .contact-grid,
  .checkout-grid,
  .about-grid,
  .deep-dive-row,
  .footer-grid,
  .support-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .trust-grid,
  .hero-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid,
  .steps-grid,
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-panel {
    position: static;
    top: auto;
  }

  .elitebot-woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .elitebot-woocommerce-checkout .woocommerce-form-coupon-toggle,
  .elitebot-woocommerce-checkout form.checkout_coupon,
  .elitebot-woocommerce-checkout #customer_details,
  .elitebot-woocommerce-checkout #order_review_heading,
  .elitebot-woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }

  .elitebot-woocommerce-checkout #order_review {
    position: static;
    top: auto;
  }

  .elitebot-woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .page-hero-card--checkout .page-title {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section,
  .hero,
  .page-hero {
    padding: var(--space-7) 0;
  }

  .page-hero-card,
  .metric,
  .feature-card,
  .comparison-card,
  .step-card,
  .pricing-card,
  .trust-card,
  .support-card,
  .contact-card,
  .summary-card,
  .deep-dive-row,
  .legal-card {
    padding: var(--space-4);
  }

  .metrics-grid,
  .feature-grid,
  .steps-grid,
  .use-grid,
  .pricing-grid,
  .trust-grid,
  .field-grid.two {
    grid-template-columns: 1fr;
  }

  .button-row,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .header-shell {
    padding: 0 16px;
  }

  .page-hero-card {
    gap: var(--space-3);
  }

  .cart-quantity-row {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-stepper {
    justify-content: space-between;
    width: 100%;
  }

  .elitebot-woocommerce table.shop_table,
  .elitebot-woocommerce .woocommerce-checkout-review-order-table,
  .elitebot-woocommerce table.shop_table tbody,
  .elitebot-woocommerce table.shop_table tr,
  .elitebot-woocommerce table.shop_table td,
  .elitebot-woocommerce table.shop_table th {
    display: block;
    width: 100%;
  }

  .elitebot-woocommerce table.shop_table thead {
    display: none;
  }

  .elitebot-woocommerce table.shop_table td,
  .elitebot-woocommerce .woocommerce-checkout-review-order-table td,
  .elitebot-woocommerce .woocommerce-checkout-review-order-table th {
    padding: 14px 16px;
  }

  .elitebot-woocommerce .coupon,
  .elitebot-woocommerce .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .elitebot-woocommerce .button,
  .elitebot-woocommerce button.button,
  .elitebot-woocommerce input.button,
  .elitebot-woocommerce .wc-proceed-to-checkout a.checkout-button,
  .elitebot-woocommerce #payment #place_order {
    width: 100%;
  }

  .header-cta.is-open {
    flex-direction: column;
  }

  .header-cta.is-open .cart-link,
  .header-cta.is-open .ghost-button,
  .header-cta.is-open .button {
    width: 100%;
  }

  .hero-signal-grid {
    grid-template-columns: 1fr;
  }

  .floating-toggle {
    right: 14px;
    bottom: 14px;
  }

  .floating-bot {
    right: 14px;
    bottom: 82px;
  }
}
