:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: rgba(255,255,255,0.72);
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --hero-start: #eef4ff;
  --hero-end: #f9fbff;
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --accent: #06b6d4;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.10), transparent 34%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 15%, rgba(79, 70, 229, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.14), transparent 24%),
    linear-gradient(180deg, var(--hero-start), var(--hero-end));
  border-bottom: 1px solid var(--border);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.72));
  pointer-events: none;
}

.app-logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

.eyebrow-badge {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(79, 70, 229, 0.14);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.10);
  color: var(--primary-dark);
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.hero-lead {
  max-width: 40rem;
  color: #334155;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  color: #334155;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.hero-chip i {
  color: var(--primary);
}

.hero .btn-primary {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  border: none;
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.22);
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, var(--primary-dark));
}

.hero .btn-outline-secondary {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.65);
}

.hero-media-card {
  position: relative;
  padding: 0.7rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  max-width: 364px;
  backdrop-filter: blur(14px);
}

.video-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary-dark);
  font-size: 0.64rem;
  font-weight: 600;
}

.promo-video {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.10);
  background: #0f172a;
}

.section-heading {
  max-width: 760px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.feature-card,
.support-card,
.card.shadow-sm {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06) !important;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10) !important;
  border-color: rgba(79, 70, 229, 0.16);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(6, 182, 212, 0.14));
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.screenshot-carousel {
  position: relative;
  padding: 1.5rem 5.5rem 4rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.84));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.screenshot-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(79, 70, 229, 0.08), transparent 34%);
  pointer-events: none;
}

.screenshot-carousel::after {
  content: "";
  position: absolute;
  inset: auto 10% -120px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.16), transparent 68%);
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

.screen-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 690px;
  position: relative;
  z-index: 1;
  touch-action: pan-y;
  text-decoration: none;
}

.screen-frame {
  width: min(100%, 330px);
  height: 620px;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.24);
  border: 1px solid rgba(255,255,255,0.08);
}

.screen {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #e2e8f0;
  border-radius: 24px;
  transition: transform .28s ease, box-shadow .28s ease;
}

.screen-slide:hover .screen {
  transform: scale(1.02);
}

.screen-slide:hover .screen-frame {
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
}

.carousel-indicators {
  margin-bottom: 1rem;
  gap: 0.45rem;
}

.carousel-indicators [data-bs-target] {
  width: 26px;
  height: 6px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(79, 70, 229, 0.22);
  transition: width .25s ease, background-color .25s ease, opacity .25s ease;
}

.carousel-indicators .active {
  width: 42px;
  background-color: rgba(79, 70, 229, 0.88);
}

.carousel-nav {
  width: 72px;
  opacity: 1;
}

.carousel-nav-inner {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.54);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
  color: var(--primary-dark);
  font-size: 2rem;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.carousel-nav:hover .carousel-nav-inner {
  transform: scale(1.06);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.22);
}

.support-list {
  list-style: none;
  padding-left: 0;
}

.support-list li + li {
  margin-top: 0.65rem;
}

footer {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

@media (max-width: 991.98px) {
  .hero-media-card {
    max-width: 322px;
  }

  .screenshot-carousel {
    padding-inline: 3.4rem;
  }

  .screen-slide {
    min-height: 630px;
  }

  .screen-frame {
    height: 560px;
  }
}

@media (max-width: 575.98px) {
  .app-logo {
    width: 64px;
    height: 64px;
  }

  .hero-chip {
    width: 100%;
    justify-content: center;
  }

  .screenshot-carousel {
    padding: 1rem 0.8rem 3.2rem;
  }

  .carousel-nav {
    display: none;
  }

  .screen-slide {
    min-height: 540px;
    padding-inline: 0.4rem;
  }

  .screen-frame {
    width: min(100%, 280px);
    height: 500px;
    border-radius: 28px;
  }

  .screen {
    border-radius: 18px;
  }
}


/* ===== WOW UPGRADE ===== */
body.page-shell {
  position: relative;
  min-height: 100vh;
  background-attachment: fixed;
}

body.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)),
    radial-gradient(circle at center, rgba(255,255,255,0.18) 0, rgba(255,255,255,0) 58%);
  mix-blend-mode: soft-light;
  opacity: .55;
}

.page-glow {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
}

.page-glow-1 {
  top: -12rem;
  left: -12rem;
  background: rgba(79, 70, 229, 0.28);
}

.page-glow-2 {
  right: -12rem;
  top: 12rem;
  background: rgba(6, 182, 212, 0.25);
}

.hero-shell,
main,
footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: clamp(680px, 88vh, 980px);
}

.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,70,229,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 80%);
  opacity: .5;
}

.hero-orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(8px);
  animation: floatY 9s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(99,102,241,0.34), rgba(99,102,241,0));
  top: -4rem;
  left: -2rem;
}

.orb-2 {
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(6,182,212,0.30), rgba(6,182,212,0));
  right: -6rem;
  top: 3rem;
  animation-delay: -2s;
}

.orb-3 {
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255,255,255,0.28), rgba(255,255,255,0));
  right: 30%;
  bottom: -5rem;
  animation-delay: -4s;
}

.topbar-glass {
  width: fit-content;
  margin-left: auto;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

#lang {
  border-radius: 999px;
  border-color: rgba(79, 70, 229, 0.12);
  box-shadow: none !important;
}

.brand-lockup {
  position: relative;
}

.hero-title {
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #b365d5 28%, #3281b5 58%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 40px rgba(99,102,241,0.18);
}

.hero-title-sm {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.hero .display-4 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-lead strong {
  color: var(--primary-dark);
  position: relative;
}

.hero-lead strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.14rem;
  height: 0.7rem;
  background: linear-gradient(90deg, rgba(99,102,241,.22), rgba(34,211,238,.24));
  border-radius: 999px;
  z-index: -1;
}

.hero-actions .btn,
.cta-band .btn {
  border-radius: 16px;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.hero-actions .btn:hover,
.cta-band .btn:hover {
  transform: translateY(-2px);
}

.hero .btn-outline-secondary:hover {
  border-color: rgba(79, 70, 229, 0.18);
  background: rgba(255,255,255,0.92);
}

.hero-media-card {
  overflow: visible;
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,255,255,0.12));
  z-index: -1;
}

.promo-video {
  transition: transform .35s ease, box-shadow .35s ease;
}

.hero-media-card:hover .promo-video {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.24);
}

.floating-ui {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.56rem;
  min-width: 154px;
  padding: 0.63rem 0.7rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.82);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
  will-change: transform;
  transition: transform .35s ease;
  animation: floatY 7s ease-in-out infinite;
}

.floating-ui small {
  display: block;
  color: var(--muted);
  font-size: 0.5rem;
  line-height: 1.2;
}

.floating-ui strong {
  display: block;
  color: var(--text);
  font-size: 0.63rem;
  line-height: 1.3;
}

.ui-card-icon {
  width: 29px;
  height: 29px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79,70,229,0.14), rgba(6,182,212,0.16));
  color: var(--primary-dark);
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.ui-card-subtitles {
  left: -2.5rem;
  top: 2.4rem;
}

.ui-card-voice {
  right: -2.5rem;
  bottom: 1.5rem;
  animation-delay: -2s;
}

.hero-ring {
  position: absolute;
  width: 112px;
  height: 112px;
  right: -1.4rem;
  top: -1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(99,102,241,0.24);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.1);
  opacity: 0.6;
  animation: pulseGlow 4.8s ease-in-out infinite;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 22%, rgba(255,255,255,0.44) 48%, transparent 74%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}

.feature-card:hover::before {
  transform: translateX(130%);
}

.feature-icon {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px rgba(79,70,229,0.10);
}

.section-heading .text-muted,
.card-body p,
.support-list {
  color: #516074 !important;
}

.experience-panel {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(79,70,229,0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(6,182,212,0.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82));
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}

.experience-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99,102,241,0.18), transparent 65%);
  filter: blur(10px);
}

.experience-title {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.experience-plus {
  color: #7c3aed;
}

.experience-copy {
  max-width: 42rem;
  line-height: 1.85;
}

.orbital-demo {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.demo-core {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(99,102,241,0.94), rgba(49,46,129,0.98));
  box-shadow: 0 35px 80px rgba(79,70,229,0.28);
  z-index: 2;
}

.demo-core-ring {
  position: absolute;
  inset: -22px;
  border-radius: inherit;
  border: 1px solid rgba(99,102,241,0.22);
  animation: spinSlow 18s linear infinite;
}

.demo-core-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.demo-core-content i {
  font-size: 2rem;
}

.demo-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(14px);
  font-weight: 600;
  color: var(--text);
  animation: floatY 7s ease-in-out infinite;
}

.demo-card i {
  color: var(--primary-dark);
  font-size: 1.15rem;
}

.demo-card-a { top: 0; left: 8%; }
.demo-card-b { top: 14%; right: 0; animation-delay: -1s; }
.demo-card-c { bottom: 16%; left: 0; animation-delay: -2.4s; }
.demo-card-d { bottom: 0; right: 10%; animation-delay: -3.3s; }

.cta-band {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(49,46,129,0.24);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.14), transparent 25%),
    radial-gradient(circle at 90% 50%, rgba(34,211,238,0.16), transparent 28%),
    linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4f46e5 75%, #06b6d4 100%);
}

.cta-band .section-kicker {
  color: rgba(255,255,255,0.72);
}

.cta-band .btn-light {
  color: #1e1b4b;
  box-shadow: 0 16px 34px rgba(255,255,255,0.18);
}

.card.shadow-sm,
.support-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
}

.support-list a,
footer a {
  color: var(--primary-dark);
  text-decoration: none;
}

.support-list a:hover,
footer a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

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

@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1199.98px) {
  .ui-card-subtitles { left: -1rem; }
  .ui-card-voice { right: -1rem; }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
  }

  .topbar-glass {
    margin-inline: auto 0;
  }

  .floating-ui {
    position: static;
    margin-top: 1rem;
    animation: none;
  }

  .hero-ring {
    display: none;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .orbital-demo {
    min-height: 360px;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero .display-4 {
    font-size: clamp(2.6rem, 14vw, 3.8rem);
  }

  .demo-card {
    position: static;
    width: 100%;
    justify-content: center;
  }

  .orbital-demo {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .demo-core {
    width: 190px;
    height: 190px;
    margin-bottom: 0.8rem;
  }
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== added polish ===== */
.hero-title-sm {
  max-width: 18ch;
  font-weight: 800;
  line-height: 1.08;
  color: #0f172a;
}

.info-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(99,102,241,0.10), transparent 34%);
  pointer-events: none;
}

.info-card .card-body {
  position: relative;
  z-index: 1;
}

.cta-band .btn-outline-light {
  border-width: 1px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.cta-band .btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

.demo-core-content small {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.86;
}

@media (max-width: 991.98px) {
  .hero-title-sm {
    max-width: none;
  }
}


.screens-side-by-side .screenshot-carousel {
  height: 100%;
}

.faq-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(255,255,255,0.88));
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow) !important;
}

.faq-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq-preview-shell {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.faq-card:not(.is-expanded) .faq-preview-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.94) 56%, rgba(255,255,255,0.99));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.faq-card:not(.is-expanded) .faq-preview-shell.has-overflow::after {
  opacity: 1;
}

.faq-card.is-expanded .faq-preview-shell {
  overflow: visible;
}

.faq-expand-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.faq-expand-btn {
  min-width: 220px;
}

.faq-expand-wrap[hidden] {
  display: none;
}

.faq-accordion {
  --bs-accordion-border-color: rgba(15, 23, 42, 0.08);
  --bs-accordion-border-radius: 18px;
  --bs-accordion-inner-border-radius: 18px;
  --bs-accordion-btn-bg: rgba(255,255,255,0.92);
  --bs-accordion-active-bg: rgba(79, 70, 229, 0.06);
  --bs-accordion-active-color: var(--text);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.12);
  display: grid;
  gap: 0.8rem;
}

.faq-accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.85);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--text);
  padding: 1rem 1.15rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: #475569;
  line-height: 1.7;
}

.faq-accordion .accordion-body a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.faq-accordion .accordion-body a:hover {
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .faq-card {
    height: auto !important;
  }

  .faq-card .card-body {
    height: auto;
  }

  .faq-preview-shell {
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .screens-side-by-side .screenshot-carousel {
    position: sticky;
    top: 1.5rem;
  }
}


.faq-page .hero {
  min-height: auto;
}

.faq-hero {
  padding-bottom: 1rem;
}

.faq-hero-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.82));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.faq-page .hero-title-sm {
  max-width: 16ch;
}

.faq-page .topbar-glass .btn {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.7);
}

.faq-page .topbar-glass .btn:hover {
  border-color: rgba(79, 70, 229, 0.18);
  background: rgba(255,255,255,0.92);
}

.faq-support-card {
  border-radius: 24px;
}
