:root {
  --bg: #f4f8f7;
  --surface: #ffffff;
  --surface-alt: #eff6f3;
  --text: #10261d;
  --text-muted: #426056;
  --border: #d2e2dc;
  --primary: #0f766e;
  --primary-600: #0d665f;
  --ok: #17b26a;
  --warn: #f79009;
  --danger: #f04438;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(7, 35, 28, 0.1);
  --container: min(1120px, 92vw);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(900px circle at 100% -10%, #cbe9e2 0%, transparent 55%),
    radial-gradient(700px circle at -5% 110%, #f3e7d1 0%, transparent 52%),
    linear-gradient(120deg, rgba(123, 228, 187, 0.2) 0%, rgba(111, 214, 171, 0.14) 42%, rgba(255, 255, 255, 0) 70%),
    var(--bg);
  background-size: auto, auto, 240% 240%, auto;
  animation: ubSiteShimmer 18s ease-in-out infinite;
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

@keyframes ubSiteShimmer {
  0% { background-position: 0 0, 0 0, 0% 40%, 0 0; }
  50% { background-position: 0 0, 0 0, 100% 60%, 0 0; }
  100% { background-position: 0 0, 0 0, 0% 40%, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

body.auth-login-page {
  background:
    radial-gradient(900px circle at 100% -10%, #cbe9e2 0%, transparent 55%),
    radial-gradient(700px circle at -5% 110%, #f3e7d1 0%, transparent 52%),
    linear-gradient(120deg, rgba(123, 228, 187, 0.1) 0%, rgba(111, 214, 171, 0.06) 42%, rgba(255, 255, 255, 0) 70%),
    var(--bg);
  background-size: auto, auto, 260% 260%, auto;
  animation-duration: 24s;
}

.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #2bbf97, #179f7d 65%, #0f7a64);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  box-shadow: 0 8px 16px rgba(15, 134, 103, 0.30);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--text-muted);
  font-weight: 550;
}
.nav-links a {
  padding: 10px 10px;
  border-radius: 10px;
}
.nav-links a:hover {
  background: rgba(15, 118, 110, 0.1);
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 134, 103, 0.25);
}
.btn-primary:hover { background: var(--primary-600); }

.btn-ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: #c7ddd5; background: #f8fcfa; }

.btn-link {
  color: var(--text-muted);
  font-weight: 600;
}
.site-header .btn-link {
  color: var(--text-muted);
}
.site-header .btn-link:hover {
  background: rgba(15, 118, 110, 0.1);
  color: var(--text);
}

.hero { padding: 72px 0 42px; }
.hero-grid {
  display: grid;
  gap: 36px;
}

.kicker {
  display: inline-flex;
  border: 1px solid #d3e8e1;
  color: #1f6b5c;
  background: #f2faf7;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.8rem;
  font-weight: 650;
}

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; margin: 0; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 14px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); }

.lead { margin-top: 14px; color: var(--text-muted); max-width: 62ch; }

.stack { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.mockup {
  background: var(--surface);
  border: 1px solid #dceee8;
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.mockup-hero {
  max-width: 520px;
  width: 100%;
}
.mockup-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
.mockup-top-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
}
.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0d5d35;
  background: #e9fbf2;
}
.mockup-status-note {
  display: inline-block;
  max-width: 220px;
  text-align: right;
  font-size: 0.63rem;
  line-height: 1.25;
  color: #5f756f;
}
.mockup-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17b26a;
}
.mockup-theme-toggle {
  margin-top: 10px;
  display: inline-flex;
  gap: 6px;
  background: #ecf7f3;
  border-radius: 999px;
  padding: 4px;
}
.mockup-theme-toggle button {
  border: none;
  background: transparent;
  color: #365d53;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}
.mockup-theme-toggle button.is-active {
  background: #fff;
  color: #145749;
  box-shadow: 0 1px 0 #c4ded3 inset;
}
.mockup-grid {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}
.metric-accent {
  background: linear-gradient(160deg, #f5faf8, #ffffff 70%);
  border-color: #cfe8df;
}
.metric small { color: var(--text-muted); }
.metric strong { display: block; margin-top: 4px; font-size: 1.05rem; }
.delta {
  display: inline-flex;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}
.delta.positive { color: #157347; }
.delta.warning { color: #b54708; }
.delta.danger { color: #b42318; }
.delta.neutral { color: var(--text-muted); }

.mockup-chart {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}
.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.chart-head strong { font-size: 0.84rem; }
.chart-range {
  display: inline-flex;
  gap: 4px;
  background: #ecf7f3;
  border-radius: 999px;
  padding: 3px;
}
.chart-range button {
  border: none;
  background: transparent;
  color: #355d52;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}
.chart-range button.is-active {
  background: #fff;
  color: #145749;
  box-shadow: 0 1px 0 #c4ded3 inset;
}
.chart-legend {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 600;
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.dot-revenue { background: #16996f; }
.dot-expense { background: #0f9f7a; }

.chart-canvas-wrap {
  position: relative;
  border: 1px solid #e4efe9;
  border-radius: 10px;
  background:
    linear-gradient(to top, rgba(15, 134, 103, 0.05), rgba(15, 134, 103, 0.02)),
    repeating-linear-gradient(to top, #f1faf6 0, #f1faf6 1px, transparent 1px, transparent 14px);
  overflow: hidden;
  padding: 4px;
}
.chart-canvas {
  width: 100%;
  height: 90px;
  display: block;
}
.chart-area {
  fill: rgba(22, 153, 111, 0.14);
}
.chart-line {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chart-line-revenue { stroke: #16996f; }
.chart-line-expense { stroke: #0f9f7a; }
.chart-hover-line {
  stroke: #9bc7bb;
  stroke-width: 0.7;
  opacity: 0;
}
.chart-point {
  r: 1.55;
  opacity: 0.9;
}
.chart-point-revenue { fill: #16996f; }
.chart-point-expense { fill: #0f9f7a; }
.chart-point.is-active {
  r: 2.35;
  opacity: 1;
}
.chart-tooltip {
  position: absolute;
  top: 8px;
  left: 8px;
  transform: translateX(-50%);
  background: #102c27;
  color: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.7rem;
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(7, 14, 28, 0.28);
  pointer-events: none;
}
.chart-xlabels {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.6rem;
}
.chart-xlabels span {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-activity {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.activity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
}
.activity-item:last-child { border-bottom: none; }
.activity-item span { font-size: 0.83rem; color: #324c46; }

.mockup[data-theme="operations"] {
  border-color: #cdeae3;
  background: linear-gradient(180deg, #fcfffd, #f4fbf8);
}
.mockup[data-theme="operations"] .mockup-theme-toggle {
  background: #e8f6f1;
}
.mockup[data-theme="operations"] .mockup-theme-toggle button {
  color: #2e5d51;
}
.mockup[data-theme="operations"] .mockup-theme-toggle button.is-active {
  color: #18493d;
  box-shadow: 0 1px 0 #b7dfd0 inset;
}
.mockup[data-theme="operations"] .metric-accent {
  background: linear-gradient(160deg, #f1fbf7, #ffffff 70%);
  border-color: #bfe8da;
}
.mockup[data-theme="operations"] .chart-range {
  background: #e8f6f1;
}
.mockup[data-theme="operations"] .chart-range button {
  color: #2e5d51;
}
.mockup[data-theme="operations"] .chart-range button.is-active {
  color: #18493d;
  box-shadow: 0 1px 0 #b7dfd0 inset;
}
.mockup[data-theme="operations"] .chart-canvas-wrap {
  background:
    linear-gradient(to top, rgba(25, 165, 125, 0.05), rgba(25, 165, 125, 0.02)),
    repeating-linear-gradient(to top, #ecf9f4 0, #ecf9f4 1px, transparent 1px, transparent 14px);
}
.mockup[data-theme="operations"] .chart-area {
  fill: rgba(25, 165, 125, 0.14);
}
.mockup[data-theme="operations"] .chart-line-revenue { stroke: #19a57d; }
.mockup[data-theme="operations"] .chart-line-expense { stroke: #1b7a63; }
.mockup[data-theme="operations"] .chart-point-revenue { fill: #19a57d; }
.mockup[data-theme="operations"] .chart-point-expense { fill: #1b7a63; }

@media (max-width: 520px) {
  .mockup-top {
    display: grid;
    gap: 8px;
  }
  .mockup-top-meta {
    justify-items: start;
  }
  .mockup-status-note {
    text-align: left;
    max-width: none;
  }
  .chart-xlabels {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .chart-xlabels span:nth-child(odd) {
    display: none;
  }
}

.section { padding: 60px 0; }
.section-alt { background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.grid-3 { display: grid; gap: 14px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(8, 44, 36, 0.05);
}

.showcase-scroller {
  margin-top: 16px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 6px;
}
.showcase-scroller::-webkit-scrollbar {
  height: 8px;
}
.showcase-scroller::-webkit-scrollbar-thumb {
  background: #d1e2db;
  border-radius: 999px;
}
.showcase-item {
  scroll-snap-align: start;
}
.showcase-trigger {
  width: auto;
  border: 1px solid #d7e8e2;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
  padding: 7px 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(8, 44, 36, 0.05);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.showcase-trigger span {
  font-size: 0.77rem;
  font-weight: 700;
  color: #223d36;
  white-space: nowrap;
}
.showcase-trigger small {
  color: #4a7266;
  background: #edf8f3;
  border: 1px solid #d4e9e1;
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 0.62rem;
  font-weight: 600;
  white-space: nowrap;
}
.showcase-item.is-open .showcase-trigger {
  border-color: #a8cfbf;
  background: #f4fbf8;
  box-shadow: 0 4px 12px rgba(15, 134, 103, 0.12);
}

.showcase-detail-card {
  margin-top: 12px;
  border: 1px solid #d8ece4;
  border-radius: 14px;
  background: linear-gradient(180deg, #fcfefc, #f7fcfa);
  padding: 14px;
  box-shadow: 0 8px 20px rgba(8, 44, 36, 0.06);
}
.showcase-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.showcase-detail-meta h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f3d34;
}
.showcase-detail-meta span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #216f60;
  background: #e9f6f1;
  border: 1px solid #cde6dc;
  padding: 3px 8px;
  border-radius: 999px;
}
.showcase-detail-card p {
  margin: 8px 0 0;
  color: #44635a;
  font-size: 0.86rem;
  line-height: 1.55;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 0.76rem;
  font-weight: 700;
}
.tag-ok { background: #e9fbf2; border-color: #bfe5d1; color: #157347; }
.tag-warn { background: #fff5e7; border-color: #f0d1a3; color: #b54708; }
.tag-danger { background: #ffe8e8; border-color: #efc1c1; color: #b42318; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}
.tab-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 600;
}
.tab-btn.is-active { border-color: #bddfcf; color: #176a5b; background: #f1faf6; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.steps { counter-reset: step; display: grid; gap: 10px; }
.step {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}
.step h3::before {
  counter-increment: step;
  content: counter(step);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 8px;
  color: #fff;
  background: var(--primary);
  font-size: 0.82rem;
}

.toggle {
  background: #ecf7f3;
  border-radius: 999px;
  padding: 4px;
  display: inline-flex;
  gap: 4px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.toggle-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 0 #c4ded3 inset, 0 2px 8px rgba(15, 134, 103, 0.18);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.toggle.is-yearly .toggle-indicator {
  transform: translateX(100%);
}
.toggle button {
  border: none;
  background: transparent;
  color: #365d53;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: color 220ms ease;
}
.toggle button.active { color: #145749; }

.price-grid.is-switching-left .price-card {
  animation: priceSwipeLeft 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
.price-grid.is-switching-right .price-card {
  animation: priceSwipeRight 340ms cubic-bezier(0.22, 1, 0.36, 1);
}
.price-grid.is-switching-left .price-card:nth-child(2),
.price-grid.is-switching-right .price-card:nth-child(2) {
  animation-delay: 26ms;
}
.price-grid.is-switching-left .price-card:nth-child(3),
.price-grid.is-switching-right .price-card:nth-child(3) {
  animation-delay: 44ms;
}
.price-grid.is-switching-left .price-card:nth-child(4),
.price-grid.is-switching-right .price-card:nth-child(4) {
  animation-delay: 62ms;
}

.price.price-pulse {
  animation: pricePulse 300ms ease;
}

.price-grid { display: grid; gap: 14px; margin-top: 18px; }
.price-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}
.price-card.featured {
  border-color: #8bc8b3;
  box-shadow: 0 16px 34px rgba(15, 134, 103, 0.20);
  position: relative;
}
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ebf8f3;
  color: #1a6d5d;
  border: 1px solid #bddfce;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
}
.price { font-size: 2.05rem; font-weight: 800; margin: 8px 0 6px; }
.price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

.list-clean { margin: 0; padding: 0; list-style: none; color: var(--text-muted); }
.list-clean li { padding: 5px 0; }

.plan-min-table-wrap {
  border: 1px solid #e1ebe5;
  border-radius: 14px;
  background: #fff;
  overflow: auto;
}

.plan-min-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}

.plan-min-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fcfa;
  color: #3b5f56;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-bottom: 1px solid #e2ece7;
}

.plan-min-table th,
.plan-min-table td {
  padding: 10px 12px;
  text-align: left;
  font-size: 0.84rem;
  border-bottom: 1px solid #edf4f0;
}

.plan-min-table th:first-child,
.plan-min-table td:first-child {
  min-width: 240px;
}

.plan-min-table tbody tr:last-child td {
  border-bottom: none;
}

.plan-min-table tbody tr:nth-child(even) {
  background: #fcfefc;
}

.plan-min-table tbody tr:hover {
  background: #f4faf7;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.faq-item button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer { display: none; color: var(--text-muted); margin-top: 8px; }
.faq-item.open .faq-answer { display: block; }

.cta-banner {
  border: 1px solid #d4e8e1;
  border-radius: 16px;
  background: linear-gradient(135deg, #edf8f3, #f8fcfa);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner {
  display: grid;
  gap: 20px;
  padding: 24px 0;
  color: var(--text-muted);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }

.mobile-quicknav {
  display: none;
}

.page-title { padding: 46px 0 16px; }

.legal-shell {
  max-width: 920px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b6e60;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, #22b892, #0f7a64);
  box-shadow: 0 0 0 6px rgba(15, 122, 100, 0.08);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d0e4dc;
  background: rgba(255, 255, 255, 0.72);
  color: #395b52;
  font-size: 0.82rem;
  font-weight: 600;
}

.legal-document {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.legal-document section {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(210, 226, 220, 0.9);
}

.legal-document section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.legal-document h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 10px;
}

.legal-document h3 {
  font-size: 1rem;
  margin: 18px 0 8px;
}

.legal-document p,
.legal-document li {
  color: #324d45;
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 12px;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul,
.legal-document ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.legal-document li + li {
  margin-top: 6px;
}

.legal-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e7d09a;
  border-left: 4px solid #d38f1f;
  border-radius: 14px;
  background: rgba(255, 250, 239, 0.88);
  box-shadow: 0 10px 26px rgba(114, 87, 26, 0.06);
}

.legal-callout p,
.legal-callout li {
  color: #714c16;
}

.legal-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: #295e52;
  font-weight: 600;
}

.legal-inline-links a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-definition {
  display: grid;
  gap: 4px;
}

.legal-definition strong {
  color: #183932;
}

.pricing-hero {
  padding: 56px 0 24px;
}

.pricing-hero-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.pricing-proof-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #36574d;
  display: grid;
  gap: 6px;
}

.pricing-proof-list strong {
  color: #0e6259;
}

.pricing-hero-panel {
  border: 1px solid #cbe4da;
  border-radius: 20px;
  background: linear-gradient(150deg, #eff9f4 0%, #f8fcfb 58%, #ffffff 100%);
  box-shadow: 0 16px 32px rgba(8, 55, 45, 0.1);
  padding: 20px;
}

.pricing-hero-panel h2 {
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
}

.pricing-stat-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.pricing-stat-card {
  border: 1px solid #d8e9e3;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.pricing-stat-card span {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4d6d63;
}

.pricing-stat-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
  color: #15372d;
}

.pricing-stat-card p {
  margin: 6px 0 0;
  font-size: 0.84rem;
  color: #4d665f;
}

.pricing-strategy-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-strategy-card {
  border: 1px solid #d1e4dc;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 52, 42, 0.07);
  padding: 16px;
}

.pricing-strategy-card h3 {
  font-size: 1rem;
  color: #14382e;
}

.pricing-strategy-card p {
  margin-top: 8px;
  color: #4c6760;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-shell {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.booking-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  border-color: #cde3da;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
}

.booking-shell-head .lead {
  margin-top: 8px;
}

.booking-plan-grid {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-plan-card {
  border: 1px solid #cfe2da;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.booking-plan-card strong {
  display: block;
  font-size: 1rem;
  color: #1a372f;
}

.booking-plan-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #506961;
  line-height: 1.45;
}

.booking-plan-price {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f655d;
}

.booking-plan-badge {
  display: inline-flex;
  margin-bottom: 8px;
  border: 1px solid #b7d8cb;
  border-radius: 999px;
  background: #ecf7f2;
  color: #0d655d;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
}

.booking-plan-card:hover {
  border-color: #93c2b0;
  box-shadow: 0 10px 24px rgba(11, 60, 49, 0.11);
  transform: translateY(-1px);
}

.booking-plan-card.is-active {
  border-color: #1d8a78;
  background: #ecf7f3;
  box-shadow: 0 12px 24px rgba(11, 70, 56, 0.16);
}

.booking-plan-controls {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
}

.booking-tax-note {
  margin: 0;
  font-size: 0.83rem;
  color: #557068;
}

.pricing-cycle-incentive {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f625a;
  border: 1px solid #b8d9cd;
  border-radius: 999px;
  background: #edf8f3;
  padding: 6px 10px;
}

.booking-cycle-wrap {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.booking-cycle-label {
  font-size: 0.83rem;
  color: #4f6d62;
  font-weight: 700;
}

.booking-cycle-switch {
  margin: 0;
  display: inline-flex;
  gap: 8px;
}

.booking-cycle-switch .btn.is-active {
  border-color: #87c6b2;
  background: #e8f6f0;
  color: #0d635b;
}

.booking-plan-details {
  margin-top: 16px;
  border: 1px solid #d6e7e1;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.booking-plan-details.is-refreshing {
  opacity: 0.85;
  transform: translateY(1px);
}

.booking-plan-details-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.booking-plan-selected {
  border: 1px solid #bcdacc;
  border-radius: 999px;
  background: #ecf7f2;
  color: #125f57;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-plan-details-layout {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.booking-plan-intro {
  margin: 0;
  font-size: 0.86rem;
  color: #4e6a62;
}

.booking-includes-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.booking-includes-list li {
  position: relative;
  padding-left: 18px;
  color: #204138;
}

.booking-includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16996f;
}

.booking-plan-side {
  border: 1px solid #d4e8df;
  border-radius: 12px;
  background: #f4faf7;
  padding: 12px;
}

.booking-plan-side h4 {
  font-size: 0.9rem;
  color: #24473d;
}

.booking-plan-fit {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #4d6960;
  line-height: 1.45;
}

.booking-plan-meta {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.booking-plan-meta span {
  border: 1px solid #cfe3da;
  border-radius: 10px;
  background: #fff;
  padding: 6px 8px;
  font-size: 0.8rem;
  color: #355850;
}

.booking-addon-catalog {
  margin-top: 14px;
  border-top: 1px solid #deede7;
  padding-top: 12px;
}

.booking-addon-catalog h4 {
  font-size: 0.95rem;
  color: #203d34;
}

.booking-addon-note {
  margin: 8px 0 0;
  font-size: 0.83rem;
  color: #557068;
}

.booking-addon-chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-addon-chips .tag {
  border-color: #cfe3da;
  background: #f4fbf8;
  color: #285247;
}

.booking-addon-chip-button {
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-addon-chip-button.is-active {
  border-color: #7ebca6;
  background: #e7f4ee;
  color: #0d635b;
}

.booking-actions-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.booking-inline-hint {
  font-size: 0.82rem;
  color: #547067;
}

.booking-summary {
  max-width: 960px;
  margin: 16px auto 0;
  border-color: #d1e4db;
}

.booking-summary-grid {
  margin-top: 10px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-addon-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #24473d;
  font-size: 0.9rem;
}

.booking-totals {
  margin-top: 14px;
  border: 1px solid #d8e8e2;
  border-radius: 12px;
  padding: 12px;
  background: #f8fcfa;
}

.booking-totals p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: #1f3e35;
}

.booking-total-divider {
  border-top: 1px solid #c7ded5;
  margin-top: 4px;
  padding-top: 10px;
}

.booking-grand-total {
  border-top: 1px solid #c7ded5;
  margin-top: 4px;
  padding-top: 10px;
  font-weight: 800;
}

.booking-legal-note {
  margin-top: 12px;
  font-size: 0.86rem;
  color: #35544a;
}

.booking-legal-links {
  margin-top: 8px;
  font-size: 0.84rem;
}

.booking-legal-links a {
  color: #0e675e;
  text-decoration: underline;
}

.roi-shell {
  border: 1px solid #caded6;
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #f6fbf9 100%);
  box-shadow: 0 14px 28px rgba(8, 53, 43, 0.08);
  padding: 20px;
  display: grid;
  gap: 16px;
}

.roi-controls {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.roi-slider-row {
  display: grid;
  gap: 8px;
  color: #2f5046;
  font-size: 0.88rem;
}

.roi-slider-row strong {
  color: #0e675e;
}

.roi-results {
  display: grid;
  gap: 10px;
}

.roi-result-card {
  border: 1px solid #d2e4dd;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.roi-result-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #5a766d;
}

.roi-result-card strong {
  margin-top: 6px;
  display: block;
  font-size: 1.4rem;
  color: #114e44;
  line-height: 1.2;
}

.pricing-proof-section h2 {
  margin-bottom: 14px;
}

.pricing-proof-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-proof-card {
  border: 1px solid #d3e5de;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(7, 44, 36, 0.07);
  padding: 16px;
}

.pricing-proof-card h3 {
  font-size: 1rem;
  color: #173b31;
}

.pricing-proof-card .lead {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #4f6a62;
}

.pricing-faq-section .faq-list {
  margin-top: 14px;
}

.pricing-faq-section .faq-item {
  border: 1px solid #d1e4db;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  margin-top: 10px;
}

.pricing-faq-section .faq-item button {
  font-size: 0.95rem;
  color: #1f3d34;
}

.pricing-faq-section .faq-item button::after {
  content: "+";
  font-weight: 800;
}

.pricing-faq-section .faq-item.open button::after {
  content: "-";
}

.pricing-faq-section .faq-answer {
  margin-top: 9px;
  color: #4d6960;
}
.addon-modal {
  width: min(680px, 100%);
  animation: addonModalIn .28s ease;
}
.addon-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.addon-close-btn {
  padding: 0;
}
.addon-progress-bar {
  margin-top: 10px;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e1eee8;
  overflow: hidden;
}
.addon-progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #12846d, #22a986);
  transition: width .3s ease;
}
.addon-eyebrow {
  margin: 12px 0 4px;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #587269;
}
.addon-cost-note {
  margin-top: 8px;
  font-size: .9rem;
  color: #27453c;
}
.addon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.addon-info-btn {
  min-width: 36px;
  border-radius: 999px;
  border: 1px solid #c3dbd1;
  background: #fff;
}
.addon-info-text {
  margin-top: 8px;
  font-size: .85rem;
  color: #4f6961;
}
.addon-feedback {
  min-height: 20px;
  margin-top: 8px;
  color: #0c7a45;
  font-size: .85rem;
}
@keyframes addonModalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.995);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.form-grid { display: grid; gap: 12px; }
label { font-size: 0.85rem; color: #3a534d; font-weight: 600; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfddd8;
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
textarea { min-height: 80px; resize: vertical; }

label small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-weight: 700;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #d4ebe2;
  border-color: #79bba5;
}

.demo-banner {
  position: sticky;
  top: 74px;
  z-index: 110;
  background: #fff7e8;
  border-top: 1px solid #ffd39b;
  border-bottom: 1px solid #ffd39b;
  color: #7a4c00;
  font-size: 0.88rem;
}
.demo-banner .container { padding: 8px 0; }

.demo-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.demo-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preview-shell {
  border: 1px dashed #c1e0d5;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}

.invoice-preview {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.preview-head {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.preview-body { padding: 14px; }
.preview-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.preview-table th, .preview-table td { border-bottom: 1px solid var(--border); text-align: left; padding: 8px 6px; }
.preview-total { margin-top: 12px; display: grid; gap: 4px; justify-content: end; }

.demo-kpis { display: grid; gap: 10px; }
.demo-dashboard-shell {
  background: linear-gradient(180deg, #ffffff, #f9fcfb);
}
.demo-dashboard-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}

.demo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.demo-table th, .demo-table td {
  padding: 8px;
  border-bottom: 1px solid var(--border);
}
.demo-table th { color: var(--text-muted); font-size: 0.8rem; font-weight: 700; }

.feature-compare-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-compare-card {
  border: 1px solid #d4e8e1;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f8fcfa);
  box-shadow: 0 10px 24px rgba(8, 44, 36, 0.08);
  padding: 14px;
}

.feature-compare-card h3 {
  font-size: 1rem;
  color: #1f3d34;
}

.feature-compare-card .lead {
  margin: 8px 0 10px;
  font-size: 0.86rem;
  color: #4f6b63;
}

.feature-compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.feature-compare-list li {
  border: 1px solid #dfe9e4;
  border-radius: 12px;
  background: #ffffff;
  padding: 8px 10px;
  font-size: 0.82rem;
  color: #2d4f45;
  line-height: 1.45;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 20, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 300;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: 0 16px 34px rgba(8, 28, 22, 0.28);
}
.modal p { color: var(--text-muted); }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

.noindex-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@keyframes priceSwipeLeft {
  0% {
    opacity: 0.62;
    transform: translateX(18px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes priceSwipeRight {
  0% {
    opacity: 0.62;
    transform: translateX(-18px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pricePulse {
  0% {
    transform: translateY(2px);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 980px) {
  .pricing-hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
  }

  .booking-plan-details-layout {
    grid-template-columns: 1.22fr 0.78fr;
  }

  .roi-shell {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .nav-links { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .mockup-hero { margin-left: auto; }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .demo-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 1440px) {
  .demo-grid { grid-template-columns: 1.15fr 0.85fr; }
}

@media (max-width: 1279px) {
  :root {
    --container: min(1120px, 94vw);
  }

  .site-header {
    backdrop-filter: blur(8px);
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.74rem;
  }

  .header-actions {
    margin-left: 0;
    gap: 8px;
    width: 100%;
    justify-content: flex-end;
  }

  .header-actions .btn-link {
    padding: 8px 11px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
  }

  .header-actions .btn-primary {
    padding: 8px 11px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .mobile-quicknav {
    display: block;
    position: sticky;
    top: 64px;
    z-index: 115;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
  }

  .mobile-quicknav-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    gap: 8px;
    padding: 9px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-quicknav-inner::-webkit-scrollbar {
    display: none;
  }

  .mobile-quicknav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 1px solid #d5e4dd;
    background: #fff;
    color: #2b4d44;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .mobile-quicknav-link.is-active {
    border-color: #b5d9cb;
    background: #edf8f3;
    color: #176a5b;
  }

  .page-title {
    padding: 34px 0 8px;
  }

  .pricing-hero {
    padding: 34px 0 12px;
  }

  .booking-shell {
    padding: 16px;
  }

  .booking-plan-grid,
  .booking-summary-grid {
    grid-template-columns: 1fr;
  }

  .booking-plan-controls {
    align-items: flex-start;
  }

  .booking-cycle-wrap {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

  .booking-cycle-switch {
    width: 100%;
  }

  .booking-cycle-switch .btn {
    flex: 1 1 calc(50% - 4px);
  }

  .booking-plan-details-layout {
    grid-template-columns: 1fr;
  }

  .pricing-cycle-incentive {
    width: 100%;
    border-radius: 10px;
    text-align: center;
  }

  .hero {
    padding: 34px 0 24px;
  }

  .hero-grid {
    gap: 16px;
  }

  .lead {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .stack {
    margin-top: 12px;
    gap: 10px;
  }

  .hero .stack .btn,
  .cta-banner .stack .btn,
  .pricing-hero .stack .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 130px;
    justify-content: center;
  }

  .mockup {
    border-radius: 16px;
    padding: 11px;
  }

  .mockup-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .metric {
    padding: 9px;
  }

  .metric strong {
    font-size: 0.98rem;
  }

  .chart-canvas {
    height: 80px;
  }

  .chart-tooltip {
    font-size: 0.66rem;
    padding: 5px 7px;
  }

  .section {
    padding: 34px 0;
  }

  .card,
  .price-card,
  .cta-banner,
  .form-shell {
    border-radius: 14px;
    padding: 14px;
  }

  .grid-3,
  .price-grid,
  .steps,
  .demo-grid {
    gap: 10px;
  }

  .showcase-trigger {
    padding: 6px 9px;
  }

  .showcase-trigger span {
    font-size: 0.73rem;
  }

  .showcase-trigger small {
    font-size: 0.58rem;
    padding: 2px 5px;
  }

  .showcase-detail-card {
    margin-top: 10px;
    padding: 12px;
  }

  .showcase-detail-meta h3 {
    font-size: 0.95rem;
  }

  .showcase-detail-card p {
    font-size: 0.82rem;
  }

  .toggle button {
    padding: 7px 10px;
    font-size: 0.84rem;
  }

  .price {
    font-size: 1.7rem;
  }

  .feature-compare-grid {
    grid-template-columns: 1fr;
  }

  .plan-min-table th,
  .plan-min-table td {
    font-size: 0.8rem;
    padding: 9px 10px;
  }

  .demo-banner {
    top: 106px;
    font-size: 0.82rem;
  }

  .preview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .demo-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .preview-table {
    font-size: 0.84rem;
  }

  .demo-table {
    font-size: 0.84rem;
  }

  .footer-inner {
    gap: 12px;
    padding: 18px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 56px;
  }

  .header-actions {
    gap: 6px;
    justify-content: stretch;
  }

  .header-actions .btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }

  .header-actions .btn-link {
    padding: 7px 8px;
    font-size: 0.8rem;
  }

  .header-actions .btn-primary {
    padding: 7px 8px;
    font-size: 0.8rem;
  }

  .btn {
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .mobile-quicknav {
    top: 56px;
  }

  .mobile-quicknav-link {
    font-size: 0.72rem;
    padding: 6px 10px;
  }

  .kicker {
    font-size: 0.74rem;
  }

  .hero .stack .btn,
  .cta-banner .stack .btn,
  .pricing-hero .stack .btn {
    flex: 1 1 100%;
  }

  .pricing-cycle-incentive {
    font-size: 0.79rem;
    padding: 6px 8px;
  }

  .demo-actions {
    grid-template-columns: 1fr;
  }

  .demo-banner {
    top: 98px;
  }

  .price {
    font-size: 1.5rem;
  }

  .showcase-scroller {
    gap: 6px;
  }
}
