:root {
  --bg: #F8FCFD;
  --bg-alt: #EFF6F8;
  --surface: #FFFFFF;
  --text: #594157;
  --muted: #7D8CC4;
  --brand: #F75590;
  --brand-strong: #594157;
  --accent: #7D8CC4;
  --accent-soft: #A0D2DB;
  --line: #D6E7EC;
  --danger: #F75590;
  --shadow: 0 14px 36px rgba(89, 65, 87, 0.1);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

[data-theme="dark"] {
  --bg: #0C1B2D;
  --bg-alt: #10253D;
  --surface: #173250;
  --text: #EAF4FF;
  --muted: #A8C4E5;
  --brand: #F75590;
  --brand-strong: #FFD3E4;
  --accent: #78A6F5;
  --accent-soft: #89CFE2;
  --line: #2A4A72;
  --danger: #F75590;
  --shadow: 0 18px 42px rgba(2, 10, 22, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 85, 144, 0.06) 0, transparent 40%),
    radial-gradient(circle at 12% 38%, rgba(125, 140, 196, 0.05) 0, transparent 36%),
    var(--bg);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at 78% 0%, rgba(120, 166, 245, 0.2) 0, transparent 42%),
    radial-gradient(circle at 12% 38%, rgba(137, 207, 226, 0.12) 0, transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(247, 85, 144, 0.08) 0, transparent 34%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(160, 210, 219, 0.55);
}

[data-theme="dark"] .top-nav {
  background: rgba(10, 24, 41, 0.88);
  border-bottom-color: rgba(120, 166, 245, 0.24);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

main {
  padding-top: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--accent));
  color: #ffffff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link,
.products-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text);
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 0.98rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0;
  transition: color 0.15s, border-color 0.15s;
}

.nav-link:hover,
.products-trigger:hover,
.nav-link:focus-visible,
.products-trigger:focus-visible {
  color: var(--brand);
  border-bottom-color: rgba(247, 85, 144, 0.5);
  outline: none;
}

.nav-link.is-active,
.products-trigger.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.nav-link[aria-current="page"],
.products-trigger[aria-current="page"] {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: block;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.dropdown-item small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: rgba(247, 85, 144, 0.12);
  color: var(--brand);
  outline: none;
}

.admin-dropdown-menu .admin-dropdown-item {
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.admin-dropdown-menu .admin-dropdown-item:hover,
.admin-dropdown-menu .admin-dropdown-item:focus-visible {
  background: rgba(247, 85, 144, 0.12) !important;
  color: var(--brand) !important;
  outline: none;
  transform: translateX(1px);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  padding: 0.45rem 0.65rem;
  font-weight: 700;
}

.theme-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.32rem 0.55rem;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--brand);
  border-color: var(--brand);
}

main {
  flex: 1;
}

section {
  padding: 4.5rem 0;
}

section.section-band {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74));
  border-top: 1px solid rgba(160, 210, 219, 0.45);
  border-bottom: 1px solid rgba(160, 210, 219, 0.45);
}

section.section-band-soft {
  background: linear-gradient(180deg, rgba(239, 246, 248, 0.9), rgba(255, 255, 255, 0.48));
}

[data-theme="dark"] section.section-band {
  background: linear-gradient(180deg, rgba(19, 42, 68, 0.86), rgba(15, 36, 59, 0.62));
  border-top-color: rgba(120, 166, 245, 0.16);
  border-bottom-color: rgba(120, 166, 245, 0.16);
}

[data-theme="dark"] section.section-band-soft {
  background: linear-gradient(180deg, rgba(14, 31, 51, 0.92), rgba(19, 42, 68, 0.52));
}

.hero {
  padding-top: 5.25rem;
}

.page-intro {
  max-width: 760px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(247, 85, 144, 0.12);
  color: var(--brand);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.83rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  margin-top: 0.8rem;
  margin-bottom: 0.85rem;
}

h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  margin-bottom: 0.9rem;
}

.subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 60ch;
}

.hero-card {
  background: linear-gradient(155deg, #BEE7E8, #A0D2DB);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

[data-theme="dark"] .hero-card {
  background: linear-gradient(155deg, #1B3C61, #264C7A);
  color: var(--text);
  border-color: rgba(137, 207, 226, 0.24);
  box-shadow: 0 22px 50px rgba(4, 12, 28, 0.45);
}

.hero-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}

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

.actions {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.67rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-strong);
  outline: none;
}

.btn-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--brand);
  color: var(--brand);
  outline: none;
}

.btn-disabled,
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-sent {
  background: #2D8E3E;
  border-color: #2D8E3E;
  color: #FFFFFF;
}

.btn-sent:hover,
.btn-sent:focus-visible {
  background: #257532;
  border-color: #257532;
  color: #FFFFFF;
  outline: none;
}

/* ── Admin Portal ── */
.admin-login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 85, 144, 0.08) 0, transparent 40%),
    radial-gradient(circle at 12% 38%, rgba(125, 140, 196, 0.07) 0, transparent 36%),
    var(--bg);
  padding: 1.5rem;
}

.admin-login-card {
  width: min(420px, 100%);
  padding: 2rem;
}

.admin-page {
  --admin-sidebar-inset: 12px;
  --admin-sidebar-width: 300px;
  --admin-sidebar-content-gap: 28px;
}

.admin-tab-bar {
  border-right: 1px solid var(--line);
  background: var(--surface);
  position: fixed;
  top: var(--admin-sidebar-inset);
  left: var(--admin-sidebar-inset);
  bottom: var(--admin-sidebar-inset);
  width: var(--admin-sidebar-width);
  z-index: 90;
  overflow-y: auto;
  padding: 1rem 0.85rem 1.25rem;
  box-shadow: 12px 0 30px rgba(89, 65, 87, 0.08);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

.admin-page main {
  box-sizing: border-box;
  padding-top: 0;
  padding-left: calc(var(--admin-sidebar-inset) + var(--admin-sidebar-width) + var(--admin-sidebar-content-gap));
  padding-right: clamp(16px, 2vw, 30px);
}

.admin-tabs {
  display: grid;
  gap: 0.18rem;
  flex: 1;
}

.admin-tab {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
  padding: 0.58rem 0.82rem;
  font-weight: 600;
  font-size: 0.93rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: normal;
  border-radius: 12px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.admin-tab:hover {
  color: var(--text);
  background: rgba(247, 85, 144, 0.08);
}

.admin-tab.active {
  color: var(--brand);
  border-color: rgba(247, 85, 144, 0.28);
  background: rgba(247, 85, 144, 0.12);
}

.admin-nav-section {
  margin: 0.15rem 0 0.05rem;
  padding: 0 0.25rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.admin-nav-divider {
  height: 1px;
  background: var(--line);
  margin: 0.55rem 0 0.35rem;
}

.admin-sidebar-footer {
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 0.7rem;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.admin-dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  z-index: 200;
}

.admin-dropdown-item.is-active {
  color: var(--brand) !important;
  background: rgba(247, 85, 144, 0.12) !important;
  font-weight: 700 !important;
}

.admin-btn-danger {
  color: var(--danger) !important;
  border-color: var(--danger) !important;
}

.admin-btn-warning {
  color: var(--brand-strong) !important;
  border-color: var(--accent) !important;
}

.admin-btn-info {
  color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.admin-pill-warning {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.72rem;
  color: var(--brand-strong);
  background: rgba(125, 140, 196, 0.12);
}

.admin-summary-value-warning {
  color: var(--brand-strong);
}

.admin-summary-value-danger {
  color: var(--danger);
}

.admin-type-paid {
  color: #2D8E3E;
}

.admin-type-free {
  color: var(--accent);
}

.admin-status-active {
  color: #2D8E3E;
}

.admin-status-pending {
  color: var(--brand-strong);
}

.admin-status-building {
  color: var(--accent);
}

.admin-status-inactive {
  color: var(--muted);
}

.admin-panel {
  display: block;
}

.surface.product-card {
  position: relative;
  overflow: hidden;
}

.surface.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-soft));
}

.admin-panel.hidden {
  display: none;
}

.admin-page .admin-panel > .container {
  box-sizing: border-box;
  max-width: 1440px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0.35rem, 1vw, 1rem);
  padding-right: clamp(0.35rem, 1vw, 1rem);
}

@media (max-width: 930px) {
  .admin-tab-bar {
    position: static;
    width: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    padding: 0.75rem 0.75rem 1rem;
  }

  .admin-page main {
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
  }

  .admin-page .admin-panel > .container {
    max-width: none !important;
    width: min(1120px, 94vw);
    padding-left: 0;
    padding-right: 0;
  }
}

.inv-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.inv-feature-row:last-child {
  border-bottom: none;
}

.inv-feature-row label {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.inv-feature-prices {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  flex-shrink: 0;
}

.inv-feature-prices input[type="number"] {
  padding: 0.2rem 0.4rem;
  font-size: 0.85rem;
}

#inv-totals-preview p {
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.admin-quick-link {
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.admin-quick-link:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(247, 85, 144, 0.12);
}

.admin-ql-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.5rem;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.feature-card,
.problem-card,
.product-card,
.trust-card {
  padding: 1.2rem;
}

.kicker {
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 700;
}

.section-head {
  margin-bottom: 1.35rem;
}

.social-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}

.home-flow {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1rem;
  align-items: start;
}

.home-flow-intro {
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 85, 144, 0.12), transparent 48%),
    radial-gradient(circle at 0% 100%, rgba(125, 140, 196, 0.12), transparent 52%),
    var(--surface);
}

.home-flow-steps {
  display: grid;
  gap: 0.85rem;
}

.home-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.25rem;
  align-items: start;
}

.home-step-card h3,
.home-step-card p {
  grid-column: 2;
}

.home-step-number {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  background: rgba(247, 85, 144, 0.12);
  border: 1px solid rgba(247, 85, 144, 0.24);
}

.home-offer-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.home-offer-main {
  background:
    linear-gradient(145deg, rgba(160, 210, 219, 0.16), rgba(125, 140, 196, 0.12)),
    var(--surface);
}

.home-offer-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

[data-theme="dark"] .home-flow-intro {
  background:
    radial-gradient(circle at 95% 0%, rgba(247, 85, 144, 0.24), transparent 52%),
    radial-gradient(circle at 10% 100%, rgba(120, 166, 245, 0.2), transparent 56%),
    var(--surface);
}

[data-theme="dark"] .home-offer-main {
  background:
    linear-gradient(145deg, rgba(120, 166, 245, 0.18), rgba(137, 207, 226, 0.15)),
    var(--surface);
}

.quote {
  font-size: 1.08rem;
}

.quote span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mock-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(145deg, #BEE7E8, #A0D2DB);
  border: 1px solid var(--line);
}

[data-theme="dark"] .mock-shot {
  background: linear-gradient(145deg, #173250, #23466D);
  border-color: rgba(137, 207, 226, 0.22);
}

[data-theme="dark"] .surface,
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .mobile-toggle,
[data-theme="dark"] .dropdown-menu {
  background: linear-gradient(180deg, rgba(23, 50, 80, 0.96), rgba(19, 42, 68, 0.96));
  border-color: rgba(137, 207, 226, 0.2);
  box-shadow: 0 18px 40px rgba(4, 12, 28, 0.32);
}

[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .btn-secondary:focus-visible,
[data-theme="dark"] .mobile-toggle:hover,
[data-theme="dark"] .mobile-toggle:focus-visible {
  border-color: rgba(247, 85, 144, 0.7);
  color: #FFFFFF;
}

.mock-ui {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.mock-ui .mock-note {
  color: var(--text);
  margin: 0.35rem 0 0.6rem;
  line-height: 1.5;
}

.mock-ui .btn {
  justify-self: start;
}

.mock-ui .row {
  height: 10px;
  border-radius: 4px;
  background: #A0D2DB;
}

.mock-ui .row:nth-child(2) {
  width: 75%;
  background: #7D8CC4;
}

.mock-ui .row:nth-child(3) {
  width: 86%;
  background: #F75590;
}

.cta-banner {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #FFFFFF;
  padding: 1.5rem;
  border: none;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 84px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.95rem;
  color: var(--muted);
}

.products-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pill {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
}

.pill:hover,
.pill:focus-visible {
  border-color: var(--brand);
  color: var(--brand-strong);
  outline: none;
}

.flow {
  margin: 1rem 0;
  padding-left: 1rem;
}

.flow li {
  margin: 0.4rem 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-stack {
  display: grid;
  gap: 1rem;
}

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

.info-card {
  padding: 1.2rem;
}

.content-narrow {
  max-width: 860px;
  margin: 0 auto;
}

.legal-card {
  padding: 1.5rem;
}

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

.plan-card {
  padding: 1.2rem;
}

.plan-card h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0;
}

.plan-popular {
  border-color: var(--brand);
  box-shadow: 0 18px 45px rgba(247, 85, 144, 0.2);
  position: relative;
}

.setup-monthly {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  margin: 0.55rem 0;
}

.setup-monthly span {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.compare-wrap {
  overflow-x: auto;
  margin: 0.9rem 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.compare-table th,
.compare-table td {
  border: 1px solid var(--line);
  padding: 0.65rem;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--bg-alt);
  color: var(--text);
}

.price {
  font-size: 2rem;
  line-height: 1.05;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.price small {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.price-was-inline {
  margin-left: 0.35rem;
  font-size: 0.84em;
  color: var(--muted);
  text-decoration: line-through;
}

.badge {
  display: inline-block;
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--brand);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea,
select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  padding: 0.62rem 0.7rem;
  font-family: inherit;
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: rgba(190, 231, 232, 0.08);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(125, 140, 196, 0.18);
}

.note,
.muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.success {
  color: var(--brand-strong);
  background: rgba(160, 210, 219, 0.35);
  border: 1px solid rgba(125, 140, 196, 0.45);
  border-radius: var(--radius-sm);
  padding: 0.62rem;
}

.error {
  color: var(--danger);
  background: rgba(247, 85, 144, 0.15);
  border: 1px solid rgba(247, 85, 144, 0.45);
  border-radius: var(--radius-sm);
  padding: 0.62rem;
}

.hidden {
  display: none;
}

/* ── PPO Section Enhancements ── */
#ppo .ppo-primary-card {
  position: relative;
  overflow: hidden;
}

#ppo .ppo-primary-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--accent-soft));
}

#ppo .ppo-version-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 85, 144, 0.12), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(125, 140, 196, 0.12), transparent 50%),
    var(--surface);
}

#ppo .ppo-screenshot-card {
  background:
    linear-gradient(145deg, rgba(160, 210, 219, 0.12), rgba(125, 140, 196, 0.1)),
    var(--surface);
}

#ppo .ppo-basic-card {
  border-color: rgba(125, 140, 196, 0.45);
  background:
    linear-gradient(180deg, rgba(125, 140, 196, 0.08), transparent 30%),
    var(--surface);
}

#ppo .ppo-expert-card {
  border-color: rgba(247, 85, 144, 0.45);
  background:
    linear-gradient(180deg, rgba(247, 85, 144, 0.1), transparent 30%),
    var(--surface);
}

.site-accordion,
.ppo-detail-card {
  border-color: rgba(125, 140, 196, 0.35);
}

.site-accordion summary,
.ppo-detail-card summary {
  color: var(--brand-strong);
  list-style: none;
}

.site-accordion summary::-webkit-details-marker,
.ppo-detail-card summary::-webkit-details-marker {
  display: none;
}

.site-accordion summary::after,
.ppo-detail-card summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-size: 1.1rem;
  line-height: 1;
}

.site-accordion[open] > summary::after,
.ppo-detail-card[open] > summary::after {
  content: "−";
}

[data-theme="dark"] #ppo .ppo-version-card {
  background:
    radial-gradient(circle at 95% 0%, rgba(247, 85, 144, 0.22), transparent 46%),
    radial-gradient(circle at 5% 100%, rgba(120, 166, 245, 0.18), transparent 54%),
    var(--surface);
}

[data-theme="dark"] #ppo .ppo-screenshot-card {
  background:
    linear-gradient(145deg, rgba(120, 166, 245, 0.16), rgba(137, 207, 226, 0.14)),
    var(--surface);
}

[data-theme="dark"] #ppo .ppo-basic-card {
  border-color: rgba(120, 166, 245, 0.42);
  background:
    linear-gradient(180deg, rgba(120, 166, 245, 0.18), transparent 35%),
    var(--surface);
}

[data-theme="dark"] #ppo .ppo-expert-card {
  border-color: rgba(247, 85, 144, 0.5);
  background:
    linear-gradient(180deg, rgba(247, 85, 144, 0.2), transparent 35%),
    var(--surface);
}

/* ── PPO Slideshow ── */
.ppo-slideshow {
  margin-top: 1.75rem;
}

.ppo-edition-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ppo-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.ppo-tab:hover:not(.active) {
  border-color: var(--brand);
  color: var(--brand);
}

.ppo-tab.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.ppo-tab-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  color: inherit;
}

.ppo-tab-badge--paid {
  background: rgba(255,255,255,0.22);
}

.ppo-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ppo-viewport {
  flex: 1;
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: 0 4px 28px rgba(0,0,0,0.10);
  background: var(--bg-alt);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

[data-theme="dark"] .ppo-viewport {
  border-color: rgba(59, 158, 255, 0.2);
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}

.ppo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ppo-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.ppo-nav {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ppo-nav:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.ppo-slideshow-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.ppo-thumbs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ppo-thumb {
  width: 3rem;
  height: 1.9rem;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
}

.ppo-thumb.active {
  border-color: var(--brand);
  opacity: 1;
}

.ppo-thumb:hover {
  opacity: 0.85;
}

.ppo-counter {
  font-size: 0.83rem;
  color: var(--text-muted);
  min-width: 3rem;
  text-align: center;
}

/* Expand button (bottom-right of viewport) */
.ppo-expand {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s;
  z-index: 2;
}

.ppo-viewport:hover .ppo-expand {
  opacity: 1;
}

.ppo-expand:hover {
  background: rgba(247, 85, 144, 0.8);
  border-color: transparent;
}

/* Lightbox overlay */
.ppo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ppo-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.ppo-lightbox-img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.ppo-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.ppo-lightbox-nav:hover {
  background: rgba(247, 85, 144, 0.75);
  border-color: transparent;
}

.ppo-lightbox-prev {
  left: 1rem;
}

.ppo-lightbox-next {
  right: 1rem;
}

.ppo-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.ppo-lightbox-close:hover {
  background: rgba(247, 85, 144, 0.75);
  border-color: transparent;
}

@media (max-width: 540px) {
  .ppo-nav {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
  .ppo-thumb {
    width: 2.2rem;
    height: 1.4rem;
  }
  .ppo-lightbox-nav {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 1.4rem;
  }
  .ppo-lightbox-prev {
    left: 0.5rem;
  }
  .ppo-lightbox-next {
    right: 0.5rem;
  }
}

.cal-embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0.5rem;
}

[data-theme="dark"] .cal-embed-wrap {
  border-color: rgba(59, 158, 255, 0.3);
  box-shadow: 0 0 0 1px rgba(59, 158, 255, 0.15);
}

.cal-embed {
  width: 100%;
  min-height: 560px;
  border: none;
  border-radius: var(--radius-md);
  display: block;
}

@media (max-width: 930px) {
  .hero-grid,
  .home-flow,
  .home-offer-layout,
  .social-proof,
  .two-col,
  .grid-3,
  .pricing-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 1rem 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(89, 65, 87, 0.18);
  }

  .nav-links.is-open {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin-top: 0.3rem;
  }

  .nav-dropdown .dropdown-item {
    padding-left: 0;
  }

  .home-offer-side {
    grid-template-rows: unset;
  }
}

/* ── Pricing Comparison Table ── */
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow:
    0 26px 56px rgba(89, 65, 87, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

[data-theme="dark"] .price-table-wrap {
  background: var(--surface);
  border-color: rgba(137, 207, 226, 0.22);
  box-shadow:
    0 28px 60px rgba(3, 10, 24, 0.44),
    0 0 0 1px rgba(137, 207, 226, 0.08) inset;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  background: transparent;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 0.95rem;
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.pt-feature-col {
  width: 20%;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.88rem;
}

.pt-plan-col {
  width: 20%;
  text-align: center;
  border-left: 1px solid var(--line);
  padding: 1.4rem 1rem;
  vertical-align: top;
  background: var(--surface);
}

[data-theme="dark"] .pt-plan-col {
  background: rgba(23, 50, 80, 0.92);
}

.pt-flex {
  background: rgba(160, 210, 219, 0.18);
}

.pt-flex-col {
  background: rgba(160, 210, 219, 0.14);
  text-align: center;
}

.pt-popular {
  background: rgba(247, 85, 144, 0.08) !important;
  border-left: 2px solid var(--brand) !important;
  border-right: 2px solid var(--brand) !important;
  border-top: 2px solid var(--brand) !important;
}

.pt-popular-col {
  background: rgba(247, 85, 144, 0.06);
  border-left: 2px solid var(--brand) !important;
  border-right: 2px solid var(--brand) !important;
  text-align: center;
  font-weight: 600;
  color: var(--brand);
}

.price-table tbody tr:last-child .pt-popular-col {
  border-bottom: 2px solid var(--brand) !important;
}

.price-table tbody tr td:first-child {
  font-weight: 600;
  color: var(--text);
}

.price-table tbody tr:not(:last-child):hover td {
  background: rgba(160, 210, 219, 0.2);
}

.price-table tbody tr:not(:last-child):hover .pt-popular-col {
  background: rgba(247, 85, 144, 0.14);
}

.pt-plan-name {
  margin: 0.5rem 0 0.4rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pt-setup {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0.3rem 0 0.15rem;
}

.pt-setup span {
  font-size: 0.78rem;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
}

.pt-monthly {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
}

.pt-monthly small {
  font-weight: 400;
  color: var(--muted);
}

.pt-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.25rem;
}

.price-table-note {
  padding: 0.9rem 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

[data-theme="dark"] .price-table-note {
  background: rgba(16, 37, 61, 0.95);
}

.price-table-v3 {
  min-width: 1040px;
}

.price-table-v3 .pt-plan-col {
  width: 23%;
}

.price-table-v3 thead th:nth-child(2) {
  position: relative;
  border-top: 2px solid rgba(247, 85, 144, 0.45);
  border-left: 2px solid rgba(247, 85, 144, 0.45);
  border-right: 2px solid rgba(247, 85, 144, 0.45);
  background: linear-gradient(180deg, rgba(247, 85, 144, 0.07), rgba(255, 255, 255, 0.96));
  box-shadow:
    0 0 0 1px rgba(247, 85, 144, 0.08),
    0 14px 28px rgba(247, 85, 144, 0.08);
}

.price-table-v3 tbody td:nth-child(2) {
  border-left: 2px solid rgba(247, 85, 144, 0.45);
  border-right: 2px solid rgba(247, 85, 144, 0.45);
  background: rgba(247, 85, 144, 0.035);
}

.price-table-v3 tbody tr:last-child td:nth-child(2) {
  border-bottom: 2px solid rgba(247, 85, 144, 0.45);
}

.price-table-v3 tbody tr:not(:last-child):hover td:nth-child(2) {
  background: rgba(247, 85, 144, 0.08);
}

[data-theme="dark"] .price-table-v3 thead th:nth-child(2) {
  border-top-color: rgba(247, 85, 144, 0.72);
  border-left-color: rgba(247, 85, 144, 0.72);
  border-right-color: rgba(247, 85, 144, 0.72);
  background: linear-gradient(180deg, rgba(247, 85, 144, 0.08), rgba(23, 50, 80, 0.96));
  box-shadow:
    0 0 0 1px rgba(247, 85, 144, 0.14),
    0 0 24px rgba(247, 85, 144, 0.12);
}

[data-theme="dark"] .price-table-v3 tbody td:nth-child(2) {
  border-left-color: rgba(247, 85, 144, 0.72);
  border-right-color: rgba(247, 85, 144, 0.72);
  background: rgba(247, 85, 144, 0.05);
}

[data-theme="dark"] .price-table-v3 tbody tr:last-child td:nth-child(2) {
  border-bottom-color: rgba(247, 85, 144, 0.72);
}

[data-theme="dark"] .price-table-v3 tbody tr:not(:last-child):hover td:nth-child(2) {
  background: rgba(247, 85, 144, 0.1);
}

.price-table-v3 .pt-plan-col small {
  color: var(--muted);
  font-weight: 500;
}

.price-table-v3 .pt-popular-lite {
  background: rgba(247, 85, 144, 0.05);
  border-top: 3px solid #F75590;
}

.price-table-v3 .pt-popular-lite .badge {
  margin-bottom: 0.45rem;
}

.price-table-v3 .pt-spacer-col {
  width: 32px;
  border: 0;
  background: transparent;
  padding: 0;
}

.price-table-v3 .pt-popular-v3 {
  border-top: 4px solid #F75590;
  border-left: 2px solid #7D8CC4;
  border-right: 2px solid #7D8CC4;
  background: rgba(190, 231, 232, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.price-table-v3 .pt-popular-col-v3 {
  border-left: 2px solid #7D8CC4;
  border-right: 2px solid #7D8CC4;
  text-align: center;
  font-weight: 600;
  background: rgba(190, 231, 232, 0.18);
}

[data-theme="dark"] .price-table-v3 .pt-popular-v3 {
  background: rgba(120, 166, 245, 0.16);
  border-left-color: rgba(137, 207, 226, 0.55);
  border-right-color: rgba(137, 207, 226, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(120, 166, 245, 0.08);
}

[data-theme="dark"] .price-table-v3 .pt-popular-col-v3 {
  background: rgba(120, 166, 245, 0.12);
  border-left-color: rgba(137, 207, 226, 0.55);
  border-right-color: rgba(137, 207, 226, 0.55);
}

.price-table-v3 tbody tr:last-child .pt-popular-col-v3 {
  border-bottom: 2px solid #7D8CC4;
}

.price-table-v3 tbody tr:not(:last-child):hover td:not(.pt-spacer-col) {
  background: rgba(160, 210, 219, 0.15);
}

.price-table-v3 tbody tr:not(:last-child):hover .pt-popular-col-v3 {
  background: rgba(160, 210, 219, 0.28);
}

.quote-panel {
  position: fixed;
  inset: 0;
  background: rgba(89, 65, 87, 0.36);
  display: grid;
  place-items: center;
  z-index: 120;
  padding: 1rem;
  overscroll-behavior: contain;
}

.quote-panel.hidden,
.quote-panel[aria-hidden="true"] {
  display: none;
}

body.quote-panel-open {
  overflow: hidden;
}

.quote-panel-inner {
  width: min(820px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 1rem;
  padding: 1.5rem;
}

.quote-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.quote-live {
  border-left: 4px solid #F75590;
  background: rgba(190, 231, 232, 0.16);
}

.flow.compact {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
}

.flow.compact li {
  margin: 0.25rem 0;
}

.addon-row.disabled {
  opacity: 0.55;
}

.addon-row.disabled label {
  cursor: not-allowed;
}

@media (max-width: 930px) {
  .price-table-v3 {
    min-width: 900px;
  }

  .quote-panel-inner {
    width: 100%;
    border-radius: 0.75rem;
  }
}
