:root {
  --teal: #1a5468;
  --teal-mid: #1f6b85;
  --teal-lt: #ebf5f8;
  --sage: #7ec8c0;
  --sage-lt: #d6f0ee;
  --cream: #f5e6b8;
  --gold: #e8a020;
  --ink: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg: #f9fafb;
  --bg2: #f3f4f6;
  --r: 12px;
  --r-lg: 20px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --nav-h: 68px;
  --ff: "Nunito", sans-serif;
  --fb: "DM Sans", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--fb);
  border: none;
  outline: none;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.nav.sc {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav-i {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-brand {
  font-family: var(--ff);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--teal);
  line-height: 1.1;
}
.nav-brand span {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-cta {
  background: var(--teal);
  color: rgb(82, 27, 27);
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--ff);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 84, 104, 0.3);
}
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.ham span {
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.mob {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 199;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 14px;
}
.mob.open {
  display: flex;
}
.mob a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.mob-cta {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 13px;
  border-radius: 40px;
  font-weight: 700;
  font-family: var(--ff);
  font-size: 1rem;
  margin-top: 6px;
  display: block;
}

/* ── SHARED ── */
.wrap {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}
.sec {
  padding: 80px 24px;
}
.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--ff);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.pill-sage {
  background: var(--sage-lt);
  color: var(--teal);
}
.pill-gold {
  background: #fef3c7;
  color: #92400e;
}
.pill-teal {
  background: var(--teal);
  color: white;
}
h2 {
  font-family: var(--ff);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
h3 {
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: var(--ff);
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-teal {
  background: var(--teal);
  color: white;
}
.btn-teal:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 84, 104, 0.28);
}
.btn-gold {
  background: var(--gold);
  color: white;
}
.btn-gold:hover {
  background: #d4900d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.3);
}
.btn-outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-outline:hover {
  background: var(--teal-lt);
}
.btn-white {
  background: white;
  color: var(--teal);
}
.btn-white:hover {
  background: #f0f9fb;
  transform: translateY(-2px);
}
.btn-ol-lt {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  background: transparent;
}
.btn-ol-lt:hover {
  background: rgba(255, 255, 255, 0.1);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 72px;
  background: var(--teal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 200, 192, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 200, 192, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.h-blob1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 160, 32, 0.1) 0%,
    transparent 70%
  );
  top: -150px;
  right: -120px;
  pointer-events: none;
}
.h-blob2 {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 200, 192, 0.12) 0%,
    transparent 70%
  );
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}
.hero-in {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 160, 32, 0.15);
  border: 1px solid rgba(232, 160, 32, 0.3);
  border-radius: 40px;
  padding: 6px 16px;
  margin-bottom: 18px;
  font-family: var(--ff);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.06em;
}
h1 {
  font-family: var(--ff);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 10px;
}
h1 em {
  font-style: normal;
  color: var(--gold);
}
.h-robots {
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(245, 230, 184, 0.6);
  margin-bottom: 16px;
  font-style: italic;
}
.h-robots em {
  color: var(--sage);
  font-style: normal;
}
.h-sub {
  font-size: 0.97rem;
  color: rgba(245, 230, 184, 0.75);
  max-width: 460px;
  margin-bottom: 16px;
  line-height: 1.72;
}
.h-manifesto {
  background: rgba(126, 200, 192, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  margin-bottom: 26px;
  font-size: 0.88rem;
  color: rgba(245, 230, 184, 0.82);
  line-height: 1.65;
  font-style: italic;
  font-family: var(--ff);
}
.h-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.h-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.ht {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 230, 184, 0.6);
}
.ht-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* Passport card */
.pass-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.pc-top {
  background: linear-gradient(135deg, #2a1505, #3d2010);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pc-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.pc-title {
  font-family: var(--ff);
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(245, 230, 184, 0.9);
  letter-spacing: 0.08em;
}
.pc-sub {
  font-size: 0.64rem;
  color: rgba(245, 230, 184, 0.45);
  margin-top: 2px;
}
.pc-body {
  padding: 18px 20px;
  background: var(--bg);
}
.pf-lbl {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-family: var(--ff);
}
.pf-val {
  font-family: var(--ff);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--teal);
  border-bottom: 2px solid var(--border);
  padding-bottom: 4px;
  min-height: 32px;
}
.pf-val.stamped {
  animation: stamp 0.4s cubic-bezier(0.17, 0.67, 0.24, 1.4) forwards;
}
@keyframes stamp {
  0% {
    opacity: 0;
    transform: scale(1.3);
    color: var(--gold);
  }
  60% {
    opacity: 1;
    transform: scale(0.95);
    color: var(--gold);
  }
  100% {
    transform: scale(1);
    color: var(--teal);
  }
}
.pf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}
.pf-sm .pf-val {
  font-size: 0.9rem;
  min-height: 24px;
}
.pf-badges-lbl {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
  font-family: var(--ff);
}
.pf-badges {
  display: flex;
  gap: 6px;
}
.pb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.pb.earned {
  border-color: var(--sage);
  background: var(--sage-lt);
  animation: bpop 0.3s ease;
}
@keyframes bpop {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.pb.locked {
  filter: grayscale(1);
  opacity: 0.28;
}
.pc-input {
  background: var(--teal-lt);
  border-top: 1.5px dashed rgba(126, 200, 192, 0.35);
  padding: 14px 20px;
}
.pci-lbl {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
  font-family: var(--ff);
}
.pci-row {
  display: flex;
  gap: 8px;
}
.pci {
  flex: 1;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: var(--ff);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.pci:focus {
  border-color: var(--gold);
}
.pci::placeholder {
  font-weight: 400;
  color: var(--muted);
  font-family: var(--fb);
  font-size: 0.8rem;
}
.pci-btn {
  background: var(--teal);
  color: white;
  padding: 9px 13px;
  border-radius: 8px;
  font-family: var(--ff);
  font-weight: 800;
  font-size: 0.78rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pci-btn:hover {
  background: var(--teal-mid);
}

/* ── TRUST BAR ── */
.trust {
  background: var(--gold);
  padding: 13px 24px;
}
.trust-list {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}
.ti {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff);
  font-size: 0.79rem;
  font-weight: 800;
  color: var(--teal);
}

/* ── MISSION STATEMENT ── */
#mission {
  background: var(--teal);
  padding: 80px 24px;
}
.mission-inner {
  max-width: 860px;
  margin: auto;
  text-align: center;
}
#mission h2 {
  color: var(--cream);
}
#mission .pill {
  background: rgba(232, 160, 32, 0.2);
  color: var(--gold);
}
.mission-body {
  font-size: 1rem;
  color: rgba(245, 230, 184, 0.75);
  line-height: 1.82;
  margin: 20px auto 0;
  max-width: 760px;
}
.mission-body strong {
  color: var(--sage);
  font-weight: 700;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.pillar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(126, 200, 192, 0.18);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  text-align: center;
  transition: all 0.22s;
}
.pillar:hover {
  background: rgba(126, 200, 192, 0.12);
  transform: translateY(-4px);
}
.pillar-icon {
  font-size: 2.1rem;
  margin-bottom: 10px;
  display: block;
}
.pillar h3 {
  color: var(--cream);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.pillar p {
  color: rgba(245, 230, 184, 0.48);
  font-size: 0.78rem;
}

/* ── WHY DIFFERENT ── */
#why {
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.why-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  transition: all 0.22s;
}
.why-card:hover {
  border-color: var(--sage);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}
.wi {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.wi-t {
  background: var(--teal-lt);
}
.wi-s {
  background: var(--sage-lt);
}
.wi-b {
  background: #fef3c7;
}
.why-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.why-card p {
  font-size: 0.86rem;
}
.ps-panel {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.ps-panel .pill {
  background: rgba(232, 160, 32, 0.2);
  color: var(--gold);
}
.ps-row {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(126, 200, 192, 0.15);
  border-radius: var(--r);
  padding: 14px;
  margin-bottom: 12px;
}
.ps-row:last-child {
  margin-bottom: 0;
}
.ps-prob {
  font-size: 0.8rem;
  color: rgba(245, 230, 184, 0.42);
  font-style: italic;
  margin-bottom: 5px;
}
.ps-arr {
  color: var(--gold);
  font-size: 1rem;
  margin: 4px 0;
  display: block;
}
.ps-sol h3 {
  color: var(--cream);
  font-size: 0.88rem;
  margin-bottom: 3px;
}
.ps-sol p {
  color: rgba(245, 230, 184, 0.55);
  font-size: 0.8rem;
}

/* ── HOW IT WORKS ── */
#how {
  background: var(--bg);
}
.steps-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  position: relative;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 74px;
  width: 2px;
  bottom: -28px;
  background: var(--sage-lt);
  z-index: 0;
}
.step-num {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 1.7rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sn1 {
  background: var(--teal);
}
.sn2 {
  background: var(--sage);
}
.sn3 {
  background: var(--gold);
}
.step-body {
  padding: 10px 0 36px;
}
.step-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.stag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--ff);
}
.step-grid {
  background: white;
  border-radius: var(--r);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}
.sg-i {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border);
}
.sg-i .emo {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.sg-i p {
  font-size: 0.75rem;
  color: var(--ink);
  font-weight: 600;
  margin: 0;
}

/* ── UNIVERSE ── */
#universe {
  background: white;
}
.univ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.char-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.char-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.22s;
}
.char-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.cc-em {
  font-size: 1.7rem;
  flex-shrink: 0;
}
.cc-name {
  font-family: var(--ff);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 1px;
}
.cc-role {
  font-size: 0.74rem;
  color: var(--muted);
}
.mission-card {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.mc-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: var(--ff);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 40px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.mc-title {
  font-family: var(--ff);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 8px;
}
.mc-desc {
  font-size: 0.85rem;
  color: rgba(245, 230, 184, 0.62);
  margin-bottom: 16px;
  line-height: 1.65;
}
.mc-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mci {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 0.84rem;
  color: var(--cream);
}

/* ── FEATURES ── */
#features {
  background: var(--bg);
}
.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.feat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.fi-t {
  background: var(--teal-lt);
}
.fi-s {
  background: var(--sage-lt);
}
.fi-g {
  background: #fef3c7;
}
.fi-r {
  background: #fee2e2;
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fg-card {
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
}
.fg1 {
  background: #ede9fe;
}
.fg2 {
  background: #fce7f3;
}
.fg3 {
  background: #fef3c7;
}
.fg4 {
  background: var(--sage-lt);
}
.fg-card .emo {
  font-size: 1.8rem;
  margin-bottom: 9px;
  display: block;
}
.fg-card h3 {
  font-size: 0.85rem;
  margin-bottom: 3px;
}
.fg-card p {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ── PRICING ── */
#pricing {
  background: white;
}
.price-hdr {
  text-align: center;
  margin-bottom: 40px;
}
.price-note-top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sage-lt);
  border: 1px solid rgba(126, 200, 192, 0.35);
  border-radius: 40px;
  padding: 6px 16px;
  margin-top: 10px;
  font-family: var(--ff);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}
.pc2 {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: all 0.25s;
}
.pc2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pc2.pop {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(26, 84, 104, 0.14);
}
.pop-bdg {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-family: var(--ff);
  font-size: 0.67rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.save-bdg {
  position: absolute;
  top: -12px;
  right: 16px;
  background: #10b981;
  color: white;
  font-family: var(--ff);
  font-size: 0.67rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 40px;
  white-space: nowrap;
}
.pc2-name {
  font-family: var(--ff);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--sage);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pc2-price {
  font-family: var(--ff);
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.pc2-per {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 3px;
}
.pc2-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
  font-style: italic;
}
.pc2-feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pcf {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink);
}
.pct {
  color: #10b981;
  flex-shrink: 0;
  font-weight: 800;
}
.pc2 .btn {
  width: 100%;
  justify-content: center;
}
.price-family {
  text-align: center;
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--muted);
}
.price-family strong {
  color: var(--teal);
}

/* ── SUBSCRIBE FLOW ── */
#subscribe {
  background: var(--bg);
}
.sub-wrap {
  max-width: 660px;
  margin: 0 auto;
}
.sub-promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(232, 160, 32, 0.08);
}
.sub-hdr {
  text-align: center;
  margin-bottom: 32px;
}
.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.prog-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  min-width: 72px;
}
.prog-step:not(:last-child).done::after {
  background: var(--sage);
}
.prog-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--border);
  color: var(--muted);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.prog-step.active .prog-num {
  background: var(--teal);
  color: white;
}
.prog-step.done .prog-num {
  background: var(--sage);
  color: white;
}
.prog-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  font-family: var(--ff);
  text-align: center;
  white-space: nowrap;
}
.prog-step.active .prog-lbl {
  color: var(--teal);
}
.prog-step.done .prog-lbl {
  color: var(--sage);
}
.prog-gap {
  width: 72px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  align-self: start;
  margin-top: 15px;
  transition: background 0.3s;
}
.prog-gap.done {
  background: var(--sage);
}
.sub-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.sub-step {
  display: none;
}
.sub-step.active {
  display: block;
}
.sub-card h3 {
  font-family: var(--ff);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.f2c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fld {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fld.full {
  grid-column: 1/-1;
}
.fld label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--ff);
}
.fld input,
.fld select {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.91rem;
  font-family: var(--fb);
  color: var(--ink);
  background: var(--bg);
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.fld input:focus,
.fld select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(126, 200, 192, 0.14);
  background: white;
}
.int-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 12px 0 20px;
}
.int-btn {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
}
.int-btn:hover {
  border-color: var(--sage);
  color: var(--teal);
}
.int-btn.sel {
  border-color: var(--teal);
  background: var(--teal-lt);
  color: var(--teal);
  font-weight: 700;
}
.plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 20px;
}
.plan-opt {
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.plan-opt:hover {
  border-color: var(--sage);
}
.plan-opt.sel {
  border-color: var(--teal);
  background: var(--teal-lt);
}
.plan-opt h3 {
  font-size: 0.97rem;
  margin-bottom: 3px;
}
.plan-opt .prc {
  font-family: var(--ff);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--teal);
  margin: 5px 0 3px;
}
.plan-opt .psave {
  background: #10b981;
  color: white;
  font-size: 0.63rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 40px;
  font-family: var(--ff);
}
.plan-opt p {
  font-size: 0.78rem;
}
.step-nav {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.step-nav .btn {
  flex: 1;
  justify-content: center;
}
.back-btn {
  color: var(--muted);
  border-color: var(--border);
  background: transparent;
}
.sub-done {
  text-align: center;
  padding: 16px;
}
.sub-done .big {
  font-size: 3.2rem;
  margin-bottom: 12px;
}
.sub-done h3 {
  font-size: 1.4rem;
  color: var(--teal);
  font-family: var(--ff);
  margin-bottom: 7px;
}

/* ── TESTIMONIALS ── */
#testi {
  background: white;
}
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.t-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.t-q {
  font-size: 3.2rem;
  color: var(--border);
  font-family: Georgia, serif;
  position: absolute;
  top: 8px;
  left: 13px;
  line-height: 1;
}
.t-stars {
  color: var(--gold);
  font-size: 0.86rem;
  margin-bottom: 6px;
}
.t-text {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.7;
  margin: 14px 0 13px;
  flex-grow: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-weight: 800;
  font-size: 0.86rem;
  color: white;
  flex-shrink: 0;
}
.ta1 {
  background: var(--teal);
}
.ta2 {
  background: #7a4f3a;
}
.ta3 {
  background: var(--sage);
}
.t-name {
  font-weight: 700;
  font-size: 0.84rem;
  font-family: var(--ff);
  color: var(--ink);
}
.t-role {
  font-size: 0.72rem;
  color: var(--muted);
}

.reviews-scroll-container {
  position: relative;
  overflow: hidden;
  padding: 10px 4px 20px 4px;
  width: 100%;
}
.reviews-scroll-container .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.reviews-scroll-container .t-card {
  box-sizing: border-box;
}

/* ── BOOK ── */
#book {
  background: var(--bg);
}
.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.bk {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.22s;
}
.bk:hover {
  border-color: var(--sage);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bk-icon {
  font-size: 2.3rem;
  margin-bottom: 9px;
}
.bk h3 {
  margin-bottom: 5px;
}
.bk p {
  font-size: 0.84rem;
}
.form-shell {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}
.form-shell h3 {
  font-family: var(--ff);
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fg-f {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fg-f.full {
  grid-column: 1/-1;
}
.fg-f label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--ff);
}
.fg-f input,
.fg-f select,
.fg-f textarea {
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.91rem;
  font-family: var(--fb);
  color: var(--ink);
  background: var(--bg);
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.fg-f input:focus,
.fg-f select:focus,
.fg-f textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(126, 200, 192, 0.14);
  background: white;
}
.fg-f textarea {
  resize: vertical;
  min-height: 76px;
}
.form-ok {
  display: none;
  text-align: center;
  padding: 22px;
  background: var(--sage-lt);
  border-radius: 10px;
  margin-top: 12px;
}
.form-ok h3 {
  color: var(--teal);
}

/* ── FAQ ── */
#faq {
  background: white;
  padding: 60px 0;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto 30px auto;
  padding: 0 16px;
}
.faq-tab {
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--fb);
  font-weight: 500;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  transition: all 0.2s ease;
  user-select: none;
}
.faq-tab:hover {
  background: var(--bg);
  border-color: var(--muted);
}
.faq-tab.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: var(--white);
}
.faq-cat-header {
  font-family: var(--fb);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 12px 0;
  padding: 0 4px;
}
.faq-cat-header:first-of-type {
  margin-top: 0;
}
.faq-w {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}
.fq {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}
.fq:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.fq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  transition: background-color 0.2s;
  user-select: none;
}
.fq-q:hover {
  background: #f8fafc;
}
.fq-ic {
  font-size: 1.2rem;
  font-weight: 500;
  color: #3b82f6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1;
}
.fq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.fq-ai {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.fq.open .fq-a {
  max-height: 500px;
}
.fq.open .fq-ic {
  transform: rotate(45deg);
}
.faq-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.faq-btn-more {
  border-radius: 50px;
  padding: 10px 24px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: #3b82f6;
  transition: all 0.2s ease;
  user-select: none;
}
.faq-btn-more:hover {
  background: var(--bg);
  border-color: #3b82f6;
}

/* ── FINAL CTA ── */
#cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  padding: 76px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 200, 192, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 200, 192, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
#cta .wrap {
  position: relative;
  z-index: 1;
}
#cta h2 {
  color: var(--cream);
  margin-bottom: 10px;
}
#cta > div > p {
  color: rgba(245, 230, 184, 0.7);
  max-width: 460px;
  margin: 0 auto 28px;
}
.cta-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cp {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(245, 230, 184, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--ff);
}

/* ── FOOTER ── */
footer {
  background: #0e1b22;
  padding: 42px 24px 20px;
}
.foot-g {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 32px;
}
.foot-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.7;
  margin-top: 10px;
  max-width: 220px;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.foot-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.foot-logo-t {
  font-family: var(--ff);
  font-weight: 900;
  font-size: 1rem;
  color: white;
  line-height: 1.1;
}
.foot-logo-t span {
  display: block;
  font-size: 0.58rem;
  color: var(--sage);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.foot-col h4 {
  font-size: 0.67rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--ff);
  margin-bottom: 11px;
}
.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-col ul a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.36);
  transition: color 0.2s;
}
.foot-col ul a:hover {
  color: var(--sage);
}
.foot-bot {
  max-width: 1100px;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bot p {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
}
.fsocs {
  display: flex;
  gap: 8px;
}
.fsoc {
  width: 31px;
  height: 31px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.fsoc:hover {
  background: var(--sage);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero-in {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding: 0 20px;
  }
  .h-sub {
    margin: 0 auto 14px;
  }
  .h-btns,
  .h-trust {
    justify-content: center;
  }
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid,
  .univ-grid,
  .feat-split {
    grid-template-columns: 1fr;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .book-grid,
  .tg {
    grid-template-columns: 1fr;
  }
  .foot-g {
    grid-template-columns: 1fr 1fr;
  }
  .f2c,
  .f2 {
    grid-template-columns: 1fr;
  }
  .plan-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .sec {
    padding: 56px 20px;
  }
  .step {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }
  .step-num {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
  .step:not(:last-child)::after {
    left: 28px;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .char-grid,
  .int-grid {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: 1fr 1fr;
  }
  .foot-g {
    grid-template-columns: 1fr;
  }
  .sub-card {
    padding: 22px 16px;
  }
  .form-shell {
    padding: 22px 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════
LIGHT THEME OVERRIDES
Converts all dark-teal sections to
clean white / light backgrounds
═══════════════════════════════════ */

/* HERO — light gradient instead of dark teal */
#hero {
  background: linear-gradient(
    150deg,
    #ebf5f8 0%,
    #f9fafb 55%,
    #fffbeb 100%
  ) !important;
}
#hero h1 {
  color: var(--ink) !important;
}
#hero h1 em {
  color: var(--teal) !important;
}
.h-robots {
  color: var(--muted) !important;
}
.h-robots em {
  color: var(--teal) !important;
}
.h-sub {
  color: var(--muted) !important;
}
.h-manifesto {
  background: rgba(26, 84, 104, 0.06) !important;
  border-left: 3px solid var(--gold) !important;
  color: var(--teal) !important;
}
.h-eyebrow {
  color: var(--teal) !important;
  background: var(--sage-lt) !important;
  border-color: rgba(126, 200, 192, 0.4) !important;
}
.ht {
  color: var(--muted) !important;
}
.h-blob1,
.h-blob2 {
  opacity: 0.5 !important;
}

/* MISSION SECTION — light teal background */
#mission {
  background: var(--teal-lt) !important;
}
#mission h2 {
  color: var(--teal) !important;
}
.mission-body {
  color: var(--ink) !important;
}
.mission-body strong {
  color: var(--teal) !important;
}
.pillar {
  background: white !important;
  border: 1.5px solid var(--border) !important;
}
.pillar:hover {
  background: var(--sage-lt) !important;
}
.pillar h3 {
  color: var(--teal) !important;
}
.pillar p {
  color: var(--muted) !important;
}

/* PS PANEL (Solving Real Worries) — light */
.ps-panel {
  background: var(--teal-lt) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
}
.ps-row {
  background: white !important;
  border: 1.5px solid var(--border) !important;
}
.ps-prob {
  color: var(--muted) !important;
}
.ps-arr {
  color: var(--teal) !important;
}
.ps-sol h3 {
  color: var(--teal) !important;
}
.ps-sol p {
  color: var(--muted) !important;
}

/* UNIVERSE / MISSION CARD — light */
.mission-card {
  background: var(--teal-lt) !important;
  border: 1.5px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
}
.mc-title {
  color: var(--teal) !important;
}
.mc-desc {
  color: var(--muted) !important;
}
.mci {
  background: white !important;
  border: 1px solid var(--border) !important;
  color: var(--ink) !important;
}

/* PASSPORT CARD TOP — keep dark (it's a passport) */
.pc-top {
  /* keep dark brown — intentional */
}

/* ── CONTACT MODAL & NAV PHONE BUTTON ── */
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  background: var(--teal-lt);
  color: var(--teal);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  outline: none;
}
.nav-phone-btn:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 84, 104, 0.2);
}
.mob-phone-btn {
  display: none;
  margin-left: auto;
}
@media (max-width: 900px) {
  .mob-phone-btn {
    display: inline-flex;
  }
}
@media (width>900px) {
  .mob {
    display: none;
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: rgba(26, 84, 104, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-card {
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  width: 100%;
  max-width: 580px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--teal-lt);
}
.modal-header h3 {
  font-family: var(--ff);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--teal);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: var(--sage-lt);
  color: var(--teal);
}
.modal-body {
  padding: 24px;
}

/* ── CAROUSEL SECTION ── */
/* ── CAROUSEL SECTION (infinite auto-scroll, no scrollbar, no dots) ── */
.carousel-section {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  display: block;
}

#imageCarouselSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.1rem;
  font-weight: 700;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  /* animation: marquee-scroll 35s linear infinite; */
}

.carousel-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-slide {
  flex: 0 0 auto;
  height: 50vh;
  min-height: 280px;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  padding-left: 30px;
  padding-right: 30px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  display: block;
  margin-right: 0;
  max-width: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .carousel-slide {
    width: 100%;
    flex: 1 1 auto;
    aspect-ratio: auto;
  }
}

a.carousel-slide {
  cursor: pointer;
}

a.carousel-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.carousel-redirect-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.carousel-redirect-icon svg {
  width: 18px;
  height: 18px;
}

a.carousel-slide:hover .carousel-redirect-icon {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: var(--teal);
  transform: scale(1.25);
}

/* Stripe Payment Loader Spinner */
.spinner-loader {
  font-size: 3.2rem;
  margin-bottom: 12px;
  display: inline-block;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
