:root {
  --bg: #020617;
  --bg-alt: #020617;
  --card: rgba(15, 23, 42, 0.97);
  --card-alt: rgba(15, 23, 42, 0.9);
  --border-subtle: rgba(148, 163, 184, 0.18);
  --text-main: #e2e8f0;
  --text-soft: #94a3b8;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.12);
  --gradient: linear-gradient(135deg, #6366f1, #22c55e);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.9);
}

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

/* BACKGROUND GRADIENT */

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(52, 211, 153, 0.18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(129, 140, 248, 0.22), transparent 55%);
  opacity: 0.9;
  z-index: -2;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
    rgba(2, 6, 23, 0.86);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between; /* 👈 add this */
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: #f9fafb;
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
}

.nav-link:hover {
  color: #e5e7eb;
}

.nav-cta {
  margin-left: 4px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 500;
}

.nav-cta:hover {
  background: rgba(148, 163, 184, 0.2);
}

/* BURGER – base */
.nav-burger {
  margin-left: auto;
  margin-right: 4px;
  width: 28px;
  height: 22px;
  display: none; /* shown on mobile via media query */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  border: none;
  background: transparent; /* no circle */
  position: relative;
  z-index: 999;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  transition:
    transform 0.25s ease,
    opacity 0.18s ease,
    width 0.18s ease;
}

/* top line -> / */
.nav-burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 20px;
}

/* middle line fades out */
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

/* bottom line -> \ */
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 20px;
}


/* MOBILE NAV */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 75%;
  max-width: 320px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: -24px 0 60px rgba(15, 23, 42, 0.9);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 95;
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

.drawer-cta {
  margin-top: 8px;
  padding: 8px 16px;
  align-self: flex-start;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 500;
}

.drawer-cta:hover {
  background: rgba(148, 163, 184, 0.2);
}

/* LAYOUT */

.section { 
  padding: 80px 16px;
}

.section-alt {
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.08), transparent 55%),
    rgba(2, 6, 23, 0.98);
}

.shell {
  max-width: 1080px;
  margin: 0 auto;
}

/* LEGAL PAGES */

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 26px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 12px;
  color: #e2e8f0;
}

.legal-pill-soft {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

.legal-summary {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.legal-summary-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.86));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.55);
}

.legal-summary-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.legal-summary-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.legal-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.legal-list li {
  padding-left: 0;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 14px 46px rgba(2, 6, 23, 0.5);
}

.legal-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.legal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #a7f3d0;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.legal-block h2 {
  margin: 0;
  font-size: 18px;
}

.legal-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 14px;
}

.legal-block a {
  color: #a7f3d0;
}

.legal-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-soft);
  max-width: 720px;
  line-height: 1.6;
}

/* HERO */

.hero {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  gap: 30px;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    align-items: center;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: #bbf7d0;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.06;
  font-weight: 800;
  margin: 0 0 16px;
}

.hero-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 22px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-trial-note {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 20px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 6px;
  max-width: 520px;
  font-size: 14px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
}

.hero-socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social svg {
  width: 22px;
  height: 22px;
  fill: #e5e7eb;
}

.social:hover {
  border-color: #6366f1;
}

/* HERO SIDE CARD */

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  padding: 20px 20px 18px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(34, 197, 94, 0.16), transparent 55%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(129, 140, 248, 0.5);
  box-shadow: var(--shadow-soft);
}

.hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(191, 219, 254, 0.9);
  margin-bottom: 10px;
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hero-card p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--text-soft);
}

.hero-panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-panel-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding-top: 10px;
}

.hero-panel-note {
  font-size: 12px;
  color: rgba(191, 219, 254, 0.85);
}

/* DOTS – slow breathing animation */

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  animation: dot-breath 3.8s ease-in-out infinite;
}

.dot-small {
  width: 9px;
  height: 9px;
}

@keyframes dot-breath {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  }
  50% {
    transform: scale(1.13);
    box-shadow: 0 0 10px 5px rgba(34, 197, 94, 0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.35);
  }
}

/* BUTTONS – animated gradient */

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-image: linear-gradient(135deg, #6366f1, #22c55e, #06b6d4);
  background-size: 200% 200%;
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.5);
  animation: gradientShift 6s ease-in-out infinite;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.btn-ghost:hover {
  border-color: #6366f1;
}

.btn-wide {
  width: 100%;
}

/* SECTION TITLES */

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(22px, 4vw, 30px);
  margin: 0 0 28px;
}

/* ABOUT PAGE */

.about-hero {
  padding-top: 90px;
  padding-bottom: 60px;
}

.about-hero-grid {
  display: grid;
  gap: 26px;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

@media (max-width: 960px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }
}

.about-intro {
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.about-lead,
.about-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(129, 140, 248, 0.5);
  color: #c7d2fe;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.about-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-list li {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e5e7eb;
  font-size: 14px;
}

.about-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), transparent 45%),
    radial-gradient(circle at 100% 20%, rgba(34, 197, 94, 0.14), transparent 50%),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(99, 102, 241, 0.45);
  box-shadow: var(--shadow-soft);
}

.about-card-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.about-card-title {
  margin: 0 0 16px;
  font-size: 20px;
}

.about-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}

.about-card-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22c55e);
  box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.15);
}

.about-note {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #d1fae5;
  font-size: 14px;
}

.about-note-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bbf7d0;
  margin-bottom: 6px;
}

.about-panels {
  padding-top: 40px;
  padding-bottom: 80px;
}

.about-panel-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .about-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-panel {
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.about-panel-secondary {
  border-color: rgba(99, 102, 241, 0.5);
}

.about-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: rgba(148, 163, 184, 0.9);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.about-panel h2,
.about-panel h3 {
  margin: 0 0 12px;
}

.about-panel p,
.about-panel ul {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
}

.about-panel ul {
  list-style: disc;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

/* PRIVACY */

.policy-shell {
  max-width: 980px;
}

.policy-intro {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

.policy-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.08), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(34, 197, 94, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.policy-intro > * {
  position: relative;
  z-index: 1;
}

.policy-title {
  margin: 6px 0 10px;
  font-size: clamp(24px, 4vw, 28px);
}

.policy-lead {
  margin: 0 0 12px;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

.policy-meta {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin: 0;
}

.policy-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 880px) {
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.policy-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 17px;
}

.policy-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
}

.policy-card a {
  color: #a7f3d0;
}

.policy-card + .policy-card p {
  margin-top: 4px;
}

.policy-list {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.policy-list li {
  padding-left: 0;
}

.policy-contact {
  grid-column: 1 / -1;
  border-color: rgba(99, 102, 241, 0.4);
}

/* STEPS */

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

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 20px 18px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.step h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

.step-badge {
  width: 26px;
  height: 26px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #bbf7d0;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* RESULTS */

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

@media (min-width: 800px) {
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.result-card {
  background: var(--card-alt);
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.result-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.result-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
}

/* PRICING */

.pricing-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1.3fr);
  }
}

.price-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
}

.price-card-main {
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(45, 212, 191, 0.18), transparent 55%),
    rgba(15, 23, 42, 0.98);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(129, 140, 248, 0.65);
  color: #c7d2fe;
  margin-bottom: 12px;
}

.plan-name {
  margin: 0 0 6px;
  font-size: 18px;
}

.plan-tagline {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--text-soft);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.price-amount {
  font-size: 28px;
  font-weight: 800;
}

.price-copy {
  font-size: 13px;
  color: var(--text-soft);
}

.price-sub {
  font-size: 11px;
}

.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.price-feats li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-footnote {
  font-size: 12px;
  color: var(--text-soft);
  margin: 10px 0 0;
}

/* BOOK / CALENDLY */

.book-sub {
  max-width: 600px;
  font-size: 14px;
  color: var(--text-soft);
  margin: 0 0 24px;
}

.book-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 920px) {
  .book-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
}

.book-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 20px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.book-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.book-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.book-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-calendly {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  overflow: hidden;
}

/* FAQ */

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

.faq-item {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid rgba(30, 64, 175, 0.5);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-q {
  font-size: 15px;
  font-weight: 500;
}

.faq-toggle {
  font-size: 18px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.faq-a {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 6px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* FINAL CTA */

.final-cta-wrap {
  text-align: center;
}

.final-cta {
  max-width: 640px;
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.final-cta p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-soft);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(30, 64, 175, 0.4);
  background: rgba(2, 6, 23, 0.98);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 20px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.footer a {
  color: #e5e7eb;
  text-decoration: none;
}

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

.footer-dot {
  opacity: 0.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .hero {
    padding-top: 80px;
  }

  .price-card {
    border-radius: 22px;
  }
}
/* move burger icon to the far right + make it fully visible */
/* Hamburger to X animation */
#navToggle {
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
}

#navToggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e5e7eb;
  transition: transform 0.25s ease, opacity 0.18s ease;
  border-radius: 999px;
  transform-origin: center;
}

#navToggle span:nth-child(1) {
  top: 2px;
}

#navToggle span:nth-child(2) {
  top: 10px;
}

#navToggle span:nth-child(3) {
  top: 18px;
}

#navToggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

#navToggle.open span:nth-child(2) {
  opacity: 0;
}

#navToggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}