:root {
  --navy-950: #071922;
  --navy-900: #0b2530;
  --navy-800: #123846;
  --navy-700: #195265;
  --aqua-600: #00aeb8;
  --aqua-500: #12c5c9;
  --aqua-400: #5cdddd;
  --aqua-200: #bdf4f1;
  --mint-100: #e8fbf8;
  --sky-100: #edf9ff;
  --white: #ffffff;
  --slate-900: #17242b;
  --slate-700: #42545c;
  --slate-600: #5d6d74;
  --slate-500: #7a898f;
  --slate-300: #cbd5d9;
  --slate-200: #e3eaed;
  --slate-100: #f3f7f8;
  --success: #17865d;
  --danger: #c13d4b;
  --warning: #a56610;
  --shadow-sm: 0 6px 18px rgba(7, 25, 34, 0.08);
  --shadow-md: 0 18px 50px rgba(7, 25, 34, 0.13);
  --shadow-lg: 0 30px 80px rgba(7, 25, 34, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--aqua-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7fcfd 0%, #eff9fa 100%);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 197, 201, 0.2), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(93, 221, 221, 0.12), transparent 25%),
    var(--navy-950);
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.text-center {
  text-align: center;
}

.text-center .section-title,
.text-center .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.muted {
  color: var(--slate-600);
}

.small {
  font-size: 0.88rem;
}

.hidden {
  display: none !important;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(18, 56, 70, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--aqua-500));
  box-shadow: 0 8px 18px rgba(18, 197, 201, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.brand-mark::before {
  width: 25px;
  height: 25px;
  top: 8px;
  left: 7px;
  border: 5px solid white;
  border-top-color: transparent;
  transform: rotate(25deg);
}

.brand-mark::after {
  width: 10px;
  height: 10px;
  top: 6px;
  right: 5px;
  background: var(--aqua-200);
}

.brand-name {
  font-size: 1.18rem;
}

.brand-name span {
  color: var(--aqua-600);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a:not(.btn) {
  position: relative;
  color: var(--slate-700);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--aqua-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:not(.btn):hover::after,
.site-nav a.active:not(.btn)::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--white);
}

.mobile-menu-btn span,
.mobile-menu-btn::before,
.mobile-menu-btn::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  border-radius: 999px;
  background: var(--navy-900);
}

/* Buttons */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--aqua-600), var(--aqua-500));
  box-shadow: 0 10px 24px rgba(0, 174, 184, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(0, 174, 184, 0.34);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  color: var(--navy-900);
  border-color: var(--slate-200);
  background: transparent;
}

.btn-ghost {
  min-height: 42px;
  padding-inline: 12px;
  color: var(--navy-900);
  background: transparent;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 14px;
}

.icon-arrow {
  width: 18px;
  height: 18px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 110px;
  background:
    radial-gradient(circle at 82% 22%, rgba(18, 197, 201, 0.12), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(189, 244, 241, 0.75), transparent 25%),
    linear-gradient(180deg, #f9fefe 0%, #ffffff 82%);
}

.hero::after {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -250px;
  right: -150px;
  content: "";
  border: 75px solid rgba(18, 197, 201, 0.08);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 span {
  position: relative;
  color: var(--aqua-600);
  white-space: nowrap;
}

.hero h1 span::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 5px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: rgba(18, 197, 201, 0.16);
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--slate-600);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  content: "✓";
  color: var(--success);
  border-radius: 50%;
  background: #e5f8ef;
  font-size: 0.72rem;
}

.product-window {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(18, 56, 70, 0.1);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.product-window::before {
  position: absolute;
  z-index: -1;
  width: 160px;
  height: 160px;
  right: -38px;
  bottom: -42px;
  content: "";
  border-radius: 36px;
  background: linear-gradient(135deg, var(--aqua-400), var(--aqua-600));
  opacity: 0.25;
  transform: rotate(18deg);
}

.window-topbar {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--slate-200);
}

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

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--slate-300);
}

.window-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.72rem;
  font-weight: 800;
}

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

.pos-shell {
  min-height: 480px;
  display: grid;
  grid-template-columns: 82px 1fr;
}

.pos-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 12px;
  border-right: 1px solid var(--slate-200);
  background: var(--navy-950);
  border-radius: 0 0 0 25px;
}

.pos-sidebar .mini-brand {
  width: 34px;
  height: 34px;
  margin-bottom: 4px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--aqua-400), var(--aqua-600));
}

.pos-sidebar span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
}

.pos-sidebar span.active {
  color: var(--navy-950);
  background: var(--aqua-400);
}

.pos-content {
  padding: 22px;
  background: #f8fbfc;
  border-radius: 0 0 25px 0;
}

.pos-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pos-title-row strong {
  color: var(--navy-900);
  font-size: 1.15rem;
}

.pos-title-row span {
  padding: 7px 10px;
  color: var(--aqua-600);
  border: 1px solid var(--aqua-200);
  border-radius: 9px;
  background: var(--mint-100);
  font-size: 0.7rem;
  font-weight: 800;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mini-metric {
  padding: 14px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  background: var(--white);
}

.mini-metric span {
  color: var(--slate-500);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 1rem;
}

.sales-chart {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 11px;
  margin-top: 16px;
  padding: 18px 16px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
}

.sales-chart i {
  flex: 1;
  min-width: 8px;
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--aqua-400), var(--aqua-600));
  opacity: 0.85;
}

.sales-chart i:nth-child(1) { height: 42%; }
.sales-chart i:nth-child(2) { height: 60%; }
.sales-chart i:nth-child(3) { height: 52%; }
.sales-chart i:nth-child(4) { height: 76%; }
.sales-chart i:nth-child(5) { height: 65%; }
.sales-chart i:nth-child(6) { height: 92%; }
.sales-chart i:nth-child(7) { height: 79%; }
.sales-chart i:nth-child(8) { height: 98%; }

.pos-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 14px;
}

.mini-table,
.mini-cart {
  min-height: 108px;
  padding: 13px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
}

.mini-table b,
.mini-cart b {
  display: block;
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.mini-table span {
  display: block;
  height: 7px;
  margin: 8px 0;
  border-radius: 99px;
  background: var(--slate-200);
}

.mini-table span:nth-child(2) { width: 85%; }
.mini-table span:nth-child(3) { width: 68%; }
.mini-table span:nth-child(4) { width: 78%; }

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 900;
}

.cart-pay {
  height: 28px;
  display: grid;
  place-items: center;
  margin-top: 10px;
  color: var(--white);
  border-radius: 8px;
  background: var(--aqua-600);
  font-size: 0.66rem;
  font-weight: 900;
}

/* Trust strip */
.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: auto repeat(5, 1fr);
  align-items: center;
  gap: 24px;
}

.trust-grid > span:first-child {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fake-logo {
  color: var(--slate-400, #98a6ab);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  border-color: var(--aqua-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--navy-900);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint-100), var(--aqua-200));
  font-weight: 900;
}

.feature-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.2rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 0.96rem;
}

/* Product split */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.bullet-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 34px;
  color: var(--slate-700);
}

.bullet-list li::before {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  content: "✓";
  color: var(--success);
  border-radius: 50%;
  background: #e5f8ef;
  font-size: 0.75rem;
  font-weight: 900;
}

.inventory-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-header strong {
  font-size: 1.1rem;
}

.panel-header span {
  color: var(--aqua-400);
  font-size: 0.8rem;
  font-weight: 800;
}

.inventory-list {
  display: grid;
  gap: 10px;
}

.inventory-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.inventory-item small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
}

.stock-pill {
  padding: 6px 9px;
  border-radius: 99px;
  color: #bff7dd;
  background: rgba(23, 134, 93, 0.28);
  font-size: 0.74rem;
  font-weight: 800;
}

.stock-pill.low {
  color: #ffe0ab;
  background: rgba(165, 102, 16, 0.26);
}

/* Pricing */
.pricing-toolbar {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.billing-toggle button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  color: var(--slate-600);
  background: transparent;
  font-weight: 800;
}

.billing-toggle button.active {
  color: var(--white);
  background: var(--navy-900);
}

.billing-toggle em {
  color: var(--success);
  font-style: normal;
  font-size: 0.72rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 50px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at top right, rgba(18, 197, 201, 0.26), transparent 32%),
    var(--navy-950);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 13px;
  color: var(--navy-950);
  border-radius: 99px;
  background: var(--aqua-400);
  box-shadow: var(--shadow-sm);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.price-card h3 {
  margin: 0;
  font-size: 1.36rem;
}

.plan-desc {
  min-height: 50px;
  margin: 9px 0 0;
  color: var(--slate-600);
  font-size: 0.93rem;
}

.price-card.featured .plan-desc {
  color: rgba(255, 255, 255, 0.68);
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  margin: 24px 0 6px;
}

.price-row strong {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-row span {
  margin-bottom: 5px;
  color: var(--slate-500);
  font-size: 0.84rem;
}

.price-card.featured .price-row span {
  color: rgba(255, 255, 255, 0.56);
}

.price-note {
  min-height: 22px;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.price-card.featured .price-note {
  color: rgba(255, 255, 255, 0.54);
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 25px 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--slate-200);
  list-style: none;
}

.price-card.featured .plan-features {
  border-color: rgba(255, 255, 255, 0.12);
}

.plan-features li {
  position: relative;
  padding-left: 27px;
  color: var(--slate-700);
  font-size: 0.9rem;
}

.price-card.featured .plan-features li {
  color: rgba(255, 255, 255, 0.8);
}

.plan-features li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--aqua-600);
  font-weight: 900;
}

.price-card.featured .plan-features li::before {
  color: var(--aqua-400);
}

.price-card .btn {
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 900px;
  margin: 28px auto 0 !important;
  line-height: 1.7;
}

.pricing-disclaimer a {
  color: var(--aqua-700, #078e92);
  font-weight: 800;
}

.addon-table th,
.addon-table td {
  text-align: left;
}

.addon-price {
  color: var(--navy-950);
  font-weight: 900;
  white-space: nowrap;
}

.compare-wrap {
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.compare-table th,
.compare-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--slate-200);
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table th {
  color: var(--navy-900);
  background: var(--slate-100);
}

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

.check {
  color: var(--success);
  font-weight: 900;
}

.dash {
  color: var(--slate-300);
}

/* Steps and testimonials */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  position: relative;
  padding: 28px;
}

.step-card:not(:last-child)::after {
  position: absolute;
  width: 90px;
  height: 1px;
  top: 48px;
  right: -46px;
  content: "";
  background: linear-gradient(90deg, var(--aqua-500), transparent);
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 14px;
  background: var(--navy-900);
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: var(--slate-600);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.quote-card {
  padding: 26px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
}

.quote-stars {
  color: #e2a225;
  letter-spacing: 0.12em;
}

.quote-card blockquote {
  margin: 16px 0 20px;
  color: var(--slate-700);
  font-size: 1rem;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua-200), var(--sky-100));
  font-size: 0.8rem;
  font-weight: 900;
}

.quote-person b,
.quote-person small {
  display: block;
}

.quote-person small {
  color: var(--slate-500);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  display: grid;
  gap: 12px;
  margin: 46px auto 0;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: 15px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.faq-question::after {
  content: "+";
  color: var(--aqua-600);
  font-size: 1.4rem;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--slate-600);
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA */
.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px;
  color: var(--white);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(92, 221, 221, 0.35), transparent 27%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  left: -50px;
  content: "";
  border: 35px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-card h2 {
  position: relative;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-card p {
  position: relative;
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  position: relative;
  display: flex;
  gap: 12px;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  margin: 0 0 16px;
  color: var(--white);
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-col a:hover {
  color: var(--aqua-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Inner page hero */
.page-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 80% 25%, rgba(18, 197, 201, 0.15), transparent 25%),
    linear-gradient(180deg, #f6fdfd, #ffffff);
  text-align: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--navy-950);
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--slate-600);
  font-size: 1.1rem;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-control {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--slate-300);
  border-radius: 11px;
  outline: none;
  color: var(--slate-900);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea.form-control {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--aqua-500);
  box-shadow: 0 0 0 4px rgba(18, 197, 201, 0.12);
}

.form-control.invalid {
  border-color: var(--danger);
}

.field-hint {
  color: var(--slate-500);
  font-size: 0.78rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate-600);
  font-size: 0.88rem;
}

.checkbox-row input {
  margin-top: 4px;
  accent-color: var(--aqua-600);
}

.alert {
  display: none;
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 700;
}

.alert.show {
  display: block;
}

.alert-success {
  color: var(--success);
  border: 1px solid #b7ead5;
  background: #ebfaf4;
}

.alert-error {
  color: var(--danger);
  border: 1px solid #f0c4c8;
  background: #fff1f2;
}

/* Checkout */
.checkout-page {
  min-height: calc(100vh - 78px);
  padding: 56px 0 90px;
  background: var(--slate-100);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 30px;
}

.checkout-card,
.order-card {
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.checkout-card {
  padding: 30px;
}

.checkout-card h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: 2.1rem;
  letter-spacing: -0.045em;
}

.checkout-card h2 {
  margin: 34px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--slate-200);
  color: var(--navy-900);
  font-size: 1.15rem;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 800;
}

.secure-note::before {
  content: "●";
}

.order-card {
  position: sticky;
  top: 104px;
  overflow: hidden;
}

.order-card-header {
  padding: 22px 24px;
  color: var(--white);
  background: var(--navy-950);
}

.order-card-header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.order-card-body {
  padding: 24px;
}

.selected-plan {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--slate-200);
}

.selected-plan strong,
.selected-plan small {
  display: block;
}

.selected-plan small {
  margin-top: 3px;
  color: var(--slate-500);
}

.order-lines {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--slate-200);
}

.order-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  padding-top: 20px;
}

.order-total strong:last-child {
  color: var(--navy-950);
  font-size: 1.65rem;
}

.checkout-badges {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: var(--slate-600);
  font-size: 0.8rem;
}

.checkout-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-badges span::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

/* Login */
.auth-page {
  min-height: calc(100vh - 78px);
  display: grid;
  place-items: center;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(18, 197, 201, 0.18), transparent 25%),
    radial-gradient(circle at 80% 80%, rgba(189, 244, 241, 0.65), transparent 22%),
    var(--slate-100);
}

.auth-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.auth-side {
  position: relative;
  overflow: hidden;
  padding: 46px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(92, 221, 221, 0.26), transparent 27%),
    var(--navy-950);
}

.auth-side::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -110px;
  content: "";
  border: 45px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.auth-side h1 {
  position: relative;
  z-index: 1;
  margin: 52px 0 16px;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.auth-side p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.67);
}

.auth-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.auth-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.auth-benefits span::before {
  content: "✓";
  color: var(--aqua-400);
  font-weight: 900;
}

.auth-main {
  padding: 46px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 28px;
  padding: 5px;
  border-radius: 13px;
  background: var(--slate-100);
}

.auth-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: var(--slate-600);
  background: transparent;
  font-weight: 800;
}

.auth-tabs button.active {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.auth-form h2 {
  margin: 0 0 6px;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
}

.auth-form > p {
  margin: 0 0 24px;
  color: var(--slate-600);
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-helper {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 20px;
  color: var(--slate-600);
  font-size: 0.84rem;
}

.auth-helper a {
  color: var(--aqua-600);
  font-weight: 800;
}

.demo-note {
  margin-top: 18px;
  padding: 12px;
  color: var(--warning);
  border: 1px solid #f1dbb9;
  border-radius: 10px;
  background: #fff8eb;
  font-size: 0.78rem;
}

/* Dashboard */
.dashboard-body {
  min-height: 100vh;
  background: var(--slate-100);
}

.dashboard-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 250px 1fr;
}

.dash-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 26px 20px;
  color: var(--white);
  background: var(--navy-950);
}

.dash-sidebar .brand {
  color: var(--white);
}

.dash-nav {
  display: grid;
  gap: 8px;
  margin-top: 40px;
}

.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 11px;
  font-weight: 700;
}

.dash-nav a.active,
.dash-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.dash-nav i {
  width: 20px;
  text-align: center;
  font-style: normal;
}

.dash-sidebar-bottom {
  margin-top: auto;
}

.user-mini {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.user-mini .avatar {
  flex: 0 0 auto;
}

.user-mini strong,
.user-mini small {
  max-width: 135px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-mini small {
  color: rgba(255, 255, 255, 0.46);
}

.dash-main {
  min-width: 0;
  padding: 28px 36px 60px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.dash-topbar h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.dash-topbar p {
  margin: 4px 0 0;
  color: var(--slate-600);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 22px;
  border: 1px solid var(--slate-200);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stat-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-label i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--aqua-600);
  border-radius: 10px;
  background: var(--mint-100);
  font-style: normal;
}

.stat-card strong {
  display: block;
  margin-top: 14px;
  color: var(--navy-950);
  font-size: 1.65rem;
}

.dash-content-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  margin-top: 20px;
}

.panel {
  padding: 24px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.15rem;
}

.panel-subtitle {
  margin: 4px 0 22px;
  color: var(--slate-500);
  font-size: 0.86rem;
}

.subscription-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  border-radius: 17px;
  background:
    radial-gradient(circle at 90% 15%, rgba(92, 221, 221, 0.35), transparent 28%),
    var(--navy-900);
}

.subscription-card small {
  color: rgba(255, 255, 255, 0.55);
}

.subscription-card h3 {
  margin: 8px 0 2px;
  font-size: 1.55rem;
}

.subscription-card .sub-price {
  margin-top: 22px;
  font-size: 1.8rem;
  font-weight: 900;
}

.subscription-card .sub-price span {
  font-size: 0.86rem;
  font-weight: 600;
  opacity: 0.6;
}

.sub-meta {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  font-size: 0.88rem;
}

.data-table th {
  color: var(--slate-500);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--success);
  border-radius: 99px;
  background: #e8f8f0;
  font-size: 0.73rem;
  font-weight: 900;
}

.profile-form {
  margin-top: 20px;
}

/* Success modal */
.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(7, 25, 34, 0.64);
  backdrop-filter: blur(8px);
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(500px, 100%);
  padding: 34px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--success);
  border-radius: 50%;
  background: #e8f8f0;
  font-size: 1.8rem;
  font-weight: 900;
}

.modal h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.8rem;
}

.modal p {
  margin: 12px 0 24px;
  color: var(--slate-600);
}


/* Detailed plan comparison and support coverage */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-hero-actions {
  margin-top: 28px;
}

.plan-compare-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 15px;
  color: var(--aqua-600);
  font-size: 0.83rem;
  font-weight: 800;
}

.price-card.featured .plan-compare-link {
  color: var(--aqua-400);
}

.feature-compare-wrap {
  overflow: auto;
}

.feature-matrix {
  min-width: 980px;
  table-layout: fixed;
}

.feature-matrix th:first-child,
.feature-matrix td:first-child {
  width: 40%;
}

.feature-matrix thead th {
  position: sticky;
  z-index: 3;
  top: 0;
  vertical-align: bottom;
}

.feature-matrix thead th:first-child {
  z-index: 4;
}

.feature-matrix thead small {
  display: block;
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 700;
}

.matrix-plan {
  display: block;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 900;
}

.feature-matrix tbody th[scope="row"] {
  color: var(--slate-700);
  background: var(--white);
  font-weight: 750;
}

.feature-matrix tbody tr:nth-child(even):not(.feature-group-row) th,
.feature-matrix tbody tr:nth-child(even):not(.feature-group-row) td {
  background: #fbfdfd;
}

.feature-group-row th {
  padding: 14px 20px;
  color: var(--white) !important;
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
  background: var(--navy-900) !important;
  font-size: 0.78rem;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-align: left !important;
  text-transform: uppercase;
}

.addon-cell {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--aqua-700, #078e92);
  border-radius: 999px;
  background: var(--mint-100);
  font-size: 0.77rem;
  font-weight: 900;
  white-space: nowrap;
}

.comparison-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.comparison-notes p {
  margin: 0;
  padding: 17px 18px;
  color: var(--slate-600);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.support-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 34px;
}

.support-plan-copy {
  padding-right: 20px;
}

.support-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--slate-100);
}

.support-kicker {
  display: block;
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-price {
  margin: 10px 0 5px;
}

.support-price strong {
  font-size: 2.65rem;
}

.support-included-pill,
.support-badge,
.support-account-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  color: var(--navy-900);
  border: 1px solid #a9e4df;
  border-radius: 999px;
  background: var(--mint-100);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.support-badge {
  margin-left: 7px;
  padding: 4px 8px;
  color: var(--aqua-700, #078e92);
  font-size: 0.67rem;
  vertical-align: 2px;
}

.support-badge.included {
  color: var(--success);
  border-color: #b7ead5;
  background: #ebfaf4;
}

.support-actions {
  margin-top: 24px;
}

.support-coverage-card {
  padding: 30px;
  color: var(--white);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(92, 221, 221, 0.28), transparent 30%),
    var(--navy-950);
  box-shadow: var(--shadow-lg);
}

.support-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-card-head .feature-icon {
  flex: 0 0 auto;
  margin: 0;
  color: var(--navy-950);
  background: var(--aqua-400);
}

.support-card-head small {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  text-transform: uppercase;
}

.support-card-head h3 {
  margin: 3px 0 0;
  font-size: 1.35rem;
}

.support-feature-list {
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.support-feature-list li {
  display: grid;
  gap: 4px;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, var(--aqua-400), var(--aqua-400)) 0 23px / 12px 2px no-repeat;
}

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

.support-feature-list strong {
  color: var(--white);
}

.support-feature-list span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
}

.support-boundaries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.support-boundaries > div {
  display: grid;
  gap: 5px;
  padding: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
}

.support-boundaries strong {
  color: var(--navy-950);
}

.support-boundaries span {
  color: var(--slate-600);
  font-size: 0.84rem;
}

.custom-deployment-card {
  padding: 36px;
}

.support-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 24px;
  text-align: left;
  border: 1px solid #b9e9e5;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--white), var(--mint-100));
  box-shadow: var(--shadow-sm);
}

.support-callout-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
  background: var(--navy-900);
  font-size: 1.55rem;
  font-weight: 900;
}

.support-callout-copy h3 {
  margin: 3px 0 5px;
  color: var(--navy-950);
  font-size: 1.28rem;
}

.support-callout-copy h3 > span:last-child {
  color: var(--slate-500);
  font-size: 0.86rem;
  font-weight: 700;
}

.support-callout-copy p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.support-callout-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 190px;
}

.checkout-addon {
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--slate-100);
}

.addon-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  cursor: pointer;
}

.addon-choice input {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  accent-color: var(--aqua-600);
}

.addon-choice input:disabled {
  cursor: not-allowed;
}

.addon-choice-copy,
.addon-choice-title,
.addon-choice-copy small,
.addon-choice-price strong,
.addon-choice-price small {
  display: block;
}

.addon-choice-title {
  color: var(--navy-950);
  font-weight: 900;
}

.addon-choice-copy small {
  margin-top: 5px;
  color: var(--slate-600);
  line-height: 1.55;
}

.addon-choice-price {
  text-align: right;
  white-space: nowrap;
}

.addon-choice-price strong {
  color: var(--navy-950);
  font-size: 1.2rem;
}

.addon-choice-price small {
  color: var(--slate-500);
}

.addon-choice-note {
  margin: 13px 0 0 33px;
  color: var(--slate-600);
  font-size: 0.8rem;
}

.support-details-link {
  display: inline-flex;
  margin: 8px 0 0 33px;
  color: var(--aqua-700, #078e92);
  font-weight: 800;
}

/* POS hardware kit block on checkout */
.hardware-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.hardware-head strong {
  display: block;
  color: var(--navy-950);
  font-weight: 900;
}

.hardware-head small {
  display: block;
  margin-top: 5px;
  color: var(--slate-600);
  line-height: 1.55;
}

.hardware-list {
  list-style: none;
  margin: 15px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid var(--slate-200);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
}

.hardware-list li {
  position: relative;
  padding-left: 20px;
  color: var(--slate-700, #334155);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hardware-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua-600);
  font-weight: 900;
}

.hardware-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.hardware-qty label {
  font-weight: 800;
  color: var(--navy-950);
}

.hardware-qty input {
  width: 90px;
}

.hardware-block .addon-choice-note {
  margin-left: 0;
}

/* Hardware callout on the plans page */
.hardware-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 940px;
  margin: 0 auto 34px;
  padding: 28px 32px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white, #fff);
  box-shadow: 0 12px 30px rgba(9, 30, 41, 0.06);
}

.hardware-callout-main {
  flex: 1 1 340px;
}

.hardware-callout-main h3 {
  margin: 8px 0 6px;
  color: var(--navy-950);
  font-size: 1.35rem;
  font-weight: 900;
}

.hardware-callout-main p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.55;
}

.hardware-callout-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
}

.hardware-callout-list li {
  position: relative;
  padding-left: 19px;
  color: var(--slate-700, #334155);
  font-size: 0.85rem;
}

.hardware-callout-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua-600);
  font-weight: 900;
}

.hardware-callout-price {
  flex: 0 0 auto;
  text-align: center;
  min-width: 190px;
}

.hardware-callout-price strong {
  display: block;
  color: var(--navy-950);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.hardware-callout-price small {
  display: block;
  margin: 6px 0 16px;
  color: var(--slate-500);
}

.hardware-callout-price .btn {
  width: 100%;
}

@media (max-width: 640px) {
  .hardware-list,
  .hardware-callout-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .hardware-callout {
    padding: 22px;
  }
  .hardware-callout-price {
    width: 100%;
    text-align: left;
  }
}

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

.stat-card-support {
  font-size: 1.2rem !important;
  line-height: 1.25;
}

.support-account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.support-account-head .panel-subtitle {
  margin-bottom: 0;
}

.support-account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.support-account-grid > div {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--slate-100);
}

.support-account-grid strong {
  color: var(--navy-950);
}

.support-account-grid span {
  color: var(--slate-600);
  font-size: 0.82rem;
}

.support-account-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1020px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--slate-200);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 14px 6px;
  }

  .site-nav a:not(.btn)::after {
    display: none;
  }

  .nav-actions {
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-menu-btn {
    display: block;
  }

  .desktop-only {
    display: none !important;
  }

  .hero-grid,
  .split-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .product-window {
    max-width: 680px;
    margin: 0 auto;
  }

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

  .trust-grid > span:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.featured {
    transform: none;
  }

  .price-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .auth-side {
    display: none;
  }

  .dashboard-layout {
    grid-template-columns: 88px 1fr;
  }

  .dash-sidebar {
    padding-inline: 12px;
    align-items: center;
  }

  .dash-sidebar .brand-name,
  .dash-nav span,
  .user-mini > div:not(.avatar) {
    display: none;
  }

  .dash-nav a {
    justify-content: center;
  }

  .user-mini {
    padding: 8px;
  }

  .dash-content-grid {
    grid-template-columns: 1fr;
  }
}

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

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 64px 0 82px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .feature-grid,
  .pricing-grid,
  .testimonial-grid,
  .steps-grid,
  .footer-grid,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .price-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

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

  .pos-shell {
    grid-template-columns: 62px 1fr;
  }

  .pos-sidebar {
    padding-inline: 8px;
  }

  .pos-sidebar span {
    width: 36px;
    height: 36px;
  }

  .pos-content {
    padding: 14px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .mini-metric:nth-child(3) {
    display: none;
  }

  .pos-bottom {
    grid-template-columns: 1fr;
  }

  .mini-table {
    display: none;
  }

  .cta-card {
    padding: 34px 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .compare-wrap {
    overflow-x: auto;
  }

  .compare-table {
    min-width: 700px;
  }

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

  .form-group.full {
    grid-column: auto;
  }

  .checkout-card,
  .auth-main {
    padding: 24px;
  }

  .order-card {
    position: static;
  }

  .dashboard-layout {
    display: block;
  }

  .dash-sidebar {
    position: static;
    width: 100%;
    height: auto;
    display: block;
    padding: 14px;
  }

  .dash-sidebar .brand {
    justify-content: center;
  }

  .dash-nav {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 14px;
  }

  .dash-nav a {
    padding: 10px 4px;
  }

  .dash-sidebar-bottom {
    display: none;
  }

  .dash-main {
    padding: 24px 14px 50px;
  }

  .dash-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav-wrap {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-proof {
    display: grid;
  }

  .product-window {
    transform: none;
  }

  .window-topbar {
    min-height: 46px;
  }

  .pos-shell {
    min-height: 390px;
  }

  .sales-chart {
    height: 125px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auth-helper {
    flex-direction: column;
  }

  .dash-nav {
    gap: 4px;
  }

  .dash-topbar .btn {
    width: 100%;
  }
}


@media (max-width: 1180px) {
  .dash-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .support-plan-grid {
    grid-template-columns: 1fr;
  }

  .support-plan-copy {
    padding-right: 0;
  }

  .support-callout {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .support-callout-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    min-width: 0;
  }

  .support-account-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .comparison-notes,
  .support-boundaries,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .support-price-row,
  .support-account-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-callout {
    grid-template-columns: 1fr;
  }

  .support-callout-mark {
    width: 46px;
    height: 46px;
  }

  .support-callout-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .support-callout-actions .btn,
  .support-actions .btn {
    width: 100%;
  }

  .addon-choice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .addon-choice-price {
    grid-column: 2;
    text-align: left;
  }

  .addon-choice-note,
  .support-details-link {
    margin-left: 0;
  }

  .feature-matrix {
    min-width: 920px;
  }
}

/* ===== Launch additions: preview banner, payment note, trust tags, 404 ===== */
.preview-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--navy-900);
  color: var(--aqua-200);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
}

.preview-banner strong {
  color: var(--white);
  font-weight: 800;
}

.payment-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--aqua-200);
  border-radius: var(--radius-sm);
  background: var(--mint-100);
}

.payment-note .payment-note-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--aqua-600);
  color: var(--white);
  font-weight: 800;
}

.payment-note strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.payment-note p {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.92rem;
}

.trust-tag {
  color: var(--slate-500);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.why-kicker {
  color: var(--aqua-600);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}

.error-page h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 10px;
  color: var(--navy-900);
}

.error-page p {
  color: var(--slate-600);
  margin: 0 0 26px;
}

/* Legal footer + cookie-settings link (privacy/cookie pages + injected footers) */
.legal-footer{border-top:1px solid var(--slate-200,#e2e8f0);padding:22px 0;margin-top:40px}
.legal-footer .container{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;color:var(--slate-500,#64748b);font-size:.85rem}
.legal-footer nav{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.legal-footer a,.legal-linkbtn{color:var(--slate-500,#64748b);text-decoration:none;font-size:.85rem}
.legal-footer a:hover,.legal-linkbtn:hover{color:var(--aqua-700,#0f766e);text-decoration:underline}
.legal-linkbtn{background:none;border:0;cursor:pointer;padding:0;font:inherit;line-height:inherit}
.footer-legal{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
.footer-legal a,.footer-legal .legal-linkbtn{color:inherit;font-size:.85rem;text-decoration:none}
.footer-legal a:hover,.footer-legal .legal-linkbtn:hover{text-decoration:underline}
