:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #10b981;
  --primary-dark: #047857;
  --accent: #2563eb;
  --warning: #f59e0b;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
  --radius: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(20px, 5vw, 56px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
  backdrop-filter: blur(16px);
}

.site-header.has-shadow {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #ffffff;
  background: var(--primary-dark);
  border-radius: 12px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button.primary {
  color: #ffffff;
  background: var(--primary);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--primary-dark);
}

.button.secondary {
  color: var(--accent);
  background: #ffffff;
  border-color: var(--border);
}

.section {
  padding: 88px clamp(20px, 5vw, 56px);
}

.section-inner {
  width: min(100%, var(--max));
  min-width: 0;
  margin: 0 auto;
}

.hero {
  padding-top: 54px;
  padding-bottom: 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.24;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  overflow-wrap: anywhere;
}

.hero-proof {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.cta-microcopy {
  margin: -10px 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-row span {
  padding: 8px 12px;
  color: var(--primary-dark);
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-shot {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.hero-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 2560 / 1392;
  object-fit: contain;
  background: #f8fafc;
}

.shot-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.shot-caption strong {
  color: var(--text);
}

.problem {
  background: #ffffff;
}

.trust-strip {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #ffffff;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-strip-grid div {
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.trust-strip-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.trust-strip-grid span {
  color: var(--muted);
  font-size: 13px;
}

.buy-reasons {
  background: var(--bg);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reason-card,
.comparison-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.reason-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.reason-card p,
.comparison-card li {
  color: var(--muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.comparison-card.before {
  border-top: 6px solid var(--warning);
}

.comparison-card.after {
  border-top: 6px solid var(--primary);
}

.comparison-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.section-actions.left {
  justify-content: flex-start;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.card p,
.plan p,
.template-showcase p,
.roadmap p,
.faq p,
.security-copy p,
.footer p,
.roadmap-note,
.pricing-license-note,
.offline p,
.onboarding p {
  color: var(--muted);
}

.grid-4,
.grid-3,
.pricing-grid,
.pricing-support-grid {
  display: grid;
  gap: 18px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.plan,
.workflow-step,
.security-item,
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card,
.plan {
  padding: 24px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.card:hover,
.plan:hover,
.security-item:hover,
.faq details:hover {
  border-color: rgba(16, 185, 129, 0.32);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.workflow {
  background: var(--bg);
}

.workflow-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px;
}

.workflow-step span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 14px;
  font-weight: 900;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: start;
}

.screenshot-panel {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.screenshot-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 2560 / 1392;
  object-fit: contain;
  background: #f8fafc;
}

.screenshot-panel figcaption {
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.screenshot-tabs {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 2px;
}

.screenshot-tabs button {
  min-height: 42px;
  padding: 9px 13px;
  color: var(--muted);
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.screenshot-tabs button.is-active {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.plan {
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.plan.featured {
  border-color: var(--primary);
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.14);
}

.plan.recommended {
  border-color: var(--accent);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.13);
}

.plan.pro {
  border-color: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
}

.plan.subtle {
  background: #fbfdff;
}

.plan.compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: center;
  padding: 20px;
  background: #fbfdff;
}

.plan.compact .plan-label,
.plan.compact .plan-name,
.plan.compact h3,
.plan.compact p {
  grid-column: 1;
}

.plan.compact .plan-cta {
  grid-column: 2;
  grid-row: 1 / span 4;
  width: auto;
  margin-top: 0;
  white-space: nowrap;
}

.plan-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--primary-dark);
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.plan-name {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  margin: 14px 0 4px;
  color: var(--text);
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.05;
  font-weight: 950;
}

.plan-meta {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.plan ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: auto 0 0;
  color: var(--muted);
}

.plan-cta {
  width: 100%;
  margin-top: 22px;
}

.roadmap-note,
.pricing-license-note {
  max-width: 820px;
  margin: 20px auto 8px;
  text-align: center;
}

.pricing-license-note {
  padding: 16px 18px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
}

.pricing-help {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--primary-dark);
  text-align: center;
  font-weight: 800;
}

.upgrade-path {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
}

.upgrade-path h3,
.upgrade-path p {
  margin-bottom: 0;
}

.upgrade-path ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.upgrade-path li {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 8px 10px;
  color: var(--primary-dark);
  background: #ffffff;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
}

.purchase {
  background: #ffffff;
}

.video-demo {
  background: #ffffff;
}

.video-demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.video-demo-card {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(37, 99, 235, 0.08)),
    #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.video-demo-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-demo-card ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

.offline {
  background: #ffffff;
}

.template-showcase {
  background: #ffffff;
}

.template-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.template-shot {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
}

.template-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 2560 / 1392;
  object-fit: contain;
  background: #f8fafc;
}

.template-shot figcaption,
.template-preview-grid figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.template-shot figcaption {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--border);
}

.template-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.template-point {
  padding: 20px;
  background: #fbfdff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.template-point span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.template-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
}

.template-point p {
  margin-bottom: 0;
  font-size: 14px;
}

.template-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.template-preview-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.template-preview-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.template-preview-grid figcaption {
  padding: 10px 12px 12px;
  color: var(--text);
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.trust-list,
.support-grid {
  display: grid;
  gap: 14px;
}

.trust-item,
.support-item {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.trust-item strong,
.support-item strong {
  display: block;
  margin-bottom: 6px;
}

.trust-item span,
.support-item span {
  color: var(--muted);
}

.onboarding {
  background: var(--bg);
}

.roadmap {
  background: var(--bg);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.roadmap-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.roadmap-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.roadmap-card p {
  margin-bottom: 0;
}

.support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.purchase-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.purchase-steps li {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.purchase-steps span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  place-items: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 12px;
  font-weight: 900;
}

.purchase-steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.purchase-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.purchase-note {
  display: flex;
  gap: 10px;
  max-width: 920px;
  margin: 22px auto 0;
  padding: 18px 20px;
  color: #0f172a;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
}

.purchase-note span {
  color: var(--primary-dark);
}

.package-compare {
  background: #ffffff;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.compare-table thead th {
  color: var(--primary-dark);
  background: #ecfdf5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table tbody th {
  color: var(--text);
  font-weight: 900;
}

.compare-table td {
  color: var(--muted);
  font-weight: 750;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.package-fit {
  background: #ffffff;
}

.security {
  background: #ffffff;
}

.fit {
  background: #ffffff;
}

.fit-grid,
.script-grid {
  display: grid;
  gap: 18px;
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.fit-card.positive {
  border-top: 6px solid var(--primary);
}

.fit-card.careful {
  border-top: 6px solid var(--warning);
}

.fit-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
}

.sales-script {
  background: #ffffff;
}

.script-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.security-list {
  display: grid;
  gap: 14px;
}

.security-item {
  padding: 20px;
  border-left: 5px solid var(--primary);
}

.security-item strong {
  display: block;
  margin-bottom: 4px;
}

.security-note {
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq details p {
  padding: 0 22px 20px;
  margin-bottom: 0;
}

.cta {
  background: var(--primary-dark);
  color: #ffffff;
}

.cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.cta p,
.cta .eyebrow {
  color: #d1fae5;
}

.contact-phone {
  margin: 16px 0 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.contact-phone a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.cta-note {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 14px;
}

.cta .button.secondary {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
}

.footer {
  padding: 28px clamp(20px, 5vw, 56px);
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer .section-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.sales-flow {
  background: #ffffff;
}

.sales-flow-layout,
.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 28px;
  align-items: start;
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.flow-cards article,
.status-panel,
.sales-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}

.flow-cards article {
  padding: 16px;
}

.flow-cards strong,
.flow-cards span {
  display: block;
}

.flow-cards span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.sales-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.sales-form label,
.status-checker label,
.fingerprint-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.sales-form input,
.sales-form select,
.sales-form textarea,
.status-checker input,
.fingerprint-form input {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-weight: 500;
}

.sales-form textarea {
  resize: vertical;
}

.sales-form small {
  color: var(--muted);
  font-weight: 600;
}

.span-2 {
  grid-column: 1 / -1;
}

.sales-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-message.is-error {
  color: #b91c1c;
}

.form-message.is-success {
  color: var(--primary-dark);
}

.order-status {
  background: #f1f5f9;
}

.status-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.status-checker,
.fingerprint-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.status-result {
  padding: 16px;
  color: var(--muted);
  background: #f8fafc;
  border: 1px dashed var(--border);
  border-radius: 12px;
}

.status-result p {
  margin: 0 0 8px;
}

.status-result p:last-child {
  margin-bottom: 0;
}

.status-steps {
  margin: 8px 0 12px;
  padding-left: 20px;
}

.status-steps li {
  margin: 0 0 6px;
}

.installer-actions {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.installer-actions .button {
  width: fit-content;
}

.license-key-box {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
}

.admin-page h1 {
  max-width: 760px;
  font-size: clamp(34px, 6vw, 56px);
}

.admin-token-form {
  display: grid;
  grid-template-columns: minmax(280px, 440px) auto;
  gap: 12px;
  align-items: end;
  margin: 24px 0;
}

.admin-token-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.admin-token-form input {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}

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

.admin-table td,
.admin-table th {
  vertical-align: top;
}

.activation-layout {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.activation-hero h1 {
  max-width: 880px;
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.04;
}

.activation-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.activation-card,
.activation-code-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.activation-code-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  max-width: 680px;
  margin: 22px 0 0;
}

.activation-code-card span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 800;
}

.activation-code-card strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 18px;
}

.activation-card h2 {
  margin-top: 0;
  color: var(--text);
}

.activation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.activation-form label,
.operator-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 800;
}

.activation-form input,
.activation-form select,
.activation-form textarea,
.operator-toolbar select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.activation-form textarea {
  resize: vertical;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

.license-ready {
  display: grid;
  gap: 8px;
}

.operator-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin: 18px 0;
}

.operator-toolbar label {
  min-width: 260px;
}

.operator-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.operator-actions .button {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
}

.operator-license {
  display: block;
  max-width: 220px;
  overflow-wrap: anywhere;
  margin-top: 6px;
  font-size: 11px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .security-layout,
  .screenshot-grid,
  .template-layout,
  .split-layout,
  .video-demo-layout,
  .sales-flow-layout,
  .status-layout {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .trust-strip-grid,
  .reason-grid,
  .script-grid,
  .pricing-grid,
  .pricing-support-grid,
  .roadmap-grid,
  .purchase-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-tabs {
    display: flex;
    gap: 10px;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 6px;
  }

  .screenshot-tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .template-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upgrade-path {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .site-header > .button {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .site-nav.is-open a {
    padding: 12px 0;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .lead {
    font-size: 18px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .cta .section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .button,
  .hero-actions {
    width: 100%;
  }

  .grid-4,
  .trust-strip-grid,
  .reason-grid,
  .comparison-grid,
  .script-grid,
  .template-points,
  .template-preview-grid,
  .pricing-grid,
  .pricing-support-grid,
  .roadmap-grid,
  .purchase-steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .upgrade-path ol {
    grid-template-columns: 1fr 1fr;
  }

  .purchase-note {
    display: block;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .plan.compact {
    grid-template-columns: 1fr;
  }

  .plan.compact .plan-cta {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-top: 16px;
    white-space: normal;
  }

  .footer .section-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sales-form,
  .flow-cards,
  .status-checker,
  .fingerprint-form,
  .admin-token-form {
    grid-template-columns: 1fr;
  }

  .sales-form-actions .button,
  .status-checker .button,
  .fingerprint-form .button,
  .admin-token-form .button {
    width: 100%;
  }
}
