:root {
  --sc-ink: #0f172a;
  --sc-ink-soft: #10243d;
  --sc-primary: #0f4c81;
  --sc-primary-strong: #083b68;
  --sc-cyan: #13a8e8;
  --sc-cyan-bright: #18c8f4;
  --sc-teal: #10b981;
  --sc-warning: #f97316;
  --sc-bg: #f3f8fc;
  --sc-card: #ffffff;
  --sc-border: #c7d8e7;
  --sc-table-head: #e8f6fd;
  --sc-text: #1e293b;
  --sc-muted: #4f6b82;
  --sc-soft: #eef8fe;
  --sc-soft-strong: #dff3fc;
  --sc-line: rgba(15, 76, 129, 0.16);
  --sc-glass: rgba(255, 255, 255, 0.9);
  --sc-gradient-system: linear-gradient(135deg, #0f172a 0%, #0f4c81 56%, #13a8e8 100%);
  --sc-gradient-primary: linear-gradient(135deg, #0f4c81, #13a8e8);
  --sc-gradient-success: linear-gradient(135deg, #10b981, #13a8e8);
  --sc-shadow: 0 18px 40px rgba(15, 76, 129, 0.13);
  --sc-shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.28);
  font-family: Arial, sans-serif;
  color: var(--sc-text);
  background: var(--sc-bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  background: var(--sc-bg);
  color: var(--sc-text);
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1160px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  color: var(--sc-text);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(199, 216, 231, 0.84);
  box-shadow: var(--sc-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  padding: 4px;
  object-fit: contain;
  background: linear-gradient(135deg, var(--sc-soft-strong), #ffffff);
  border: 1px solid rgba(19, 168, 232, 0.42);
  border-radius: 8px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  color: currentColor;
  opacity: 0.88;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.site-header.is-scrolled .main-nav a:hover {
  background: var(--sc-soft);
}

.nav-cta {
  color: #ffffff;
  background: var(--sc-gradient-primary);
  box-shadow: 0 12px 28px rgba(19, 168, 232, 0.24);
}

.hero {
  position: relative;
  min-height: 680px;
  padding: 122px 24px 56px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 76, 129, 0.86) 45%, rgba(19, 168, 232, 0.58) 100%),
    url("./assets/servcontable-logo.png") right 7% center / min(540px, 54vw) auto no-repeat,
    var(--sc-gradient-system);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(243, 248, 252, 0.96));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-top: 18px;
}

.hero-content > * {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sc-primary);
  background: var(--sc-soft);
  border-color: var(--sc-line);
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 16px 38px rgba(15, 23, 42, 0.34);
}

.hero-copy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.button::after {
  content: "\2192";
  font-size: 16px;
}

.button:hover {
  transform: translateY(-1px);
  filter: saturate(1.14) brightness(1.03);
}

.button-primary {
  color: #ffffff;
  background: var(--sc-gradient-primary);
  box-shadow: 0 16px 34px rgba(19, 168, 232, 0.25);
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 84px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero-metrics dt {
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.hero-art {
  position: absolute;
  top: 108px;
  right: max(18px, calc((100vw - 1160px) / 2));
  width: min(570px, 47vw);
  z-index: 1;
  pointer-events: none;
}

.system-window {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--sc-shadow-strong);
  transform: perspective(1200px) rotateY(-12deg) rotateX(5deg);
  transform-origin: right center;
}

.window-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--sc-line);
}

.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sc-cyan);
}

.window-top span:nth-child(2) {
  background: var(--sc-teal);
}

.window-top span:nth-child(3) {
  background: var(--sc-warning);
}

.window-body {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 342px;
  background: var(--sc-bg);
}

.mock-sidebar {
  padding: 18px 14px;
  background: var(--sc-ink);
}

.mock-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  background: url("./assets/servcontable-logo.png") center / contain no-repeat, #ffffff;
  border-radius: 8px;
}

.mock-nav {
  display: block;
  height: 26px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-nav.active {
  background: var(--sc-gradient-primary);
}

.mock-nav.short {
  width: 72%;
}

.mock-content {
  padding: 22px;
}

.mock-hero-line {
  height: 64px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--sc-gradient-primary);
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.mock-kpis span,
.mock-grid span,
.mock-table span {
  display: block;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--sc-line);
}

.mock-kpis span {
  height: 78px;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.mock-grid span {
  height: 92px;
}

.mock-table {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.mock-table span {
  height: 16px;
}

.signal-band {
  padding: 0 24px 28px;
  background: var(--sc-bg);
}

.signal-track {
  width: min(1160px, 100%);
  margin: -8px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.signal-track span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--sc-primary-strong);
  background: #ffffff;
  border: 1px solid var(--sc-line);
  border-radius: 8px;
  box-shadow: var(--sc-shadow);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 72px 24px;
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: linear-gradient(180deg, var(--sc-bg), #ffffff);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.contact-copy h2 {
  margin: 0;
  color: var(--sc-primary);
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--sc-muted);
  font-size: 16px;
}

.module-switch {
  width: fit-content;
  margin: 0 auto 22px;
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--sc-soft);
  border: 1px solid var(--sc-line);
  border-radius: 8px;
}

.switch-button {
  min-height: 38px;
  padding: 0 16px;
  color: var(--sc-primary);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.switch-button.active {
  color: #ffffff;
  background: var(--sc-gradient-primary);
  box-shadow: 0 12px 26px rgba(19, 168, 232, 0.2);
}

.module-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.module-panel,
.product-preview,
.benefit-card,
.plan-card,
.contact-form {
  background: var(--sc-card);
  border: 1px solid var(--sc-line);
  border-radius: 8px;
  box-shadow: var(--sc-shadow);
}

.module-panel {
  padding: 26px;
}

.module-panel.is-hidden {
  display: none;
}

.module-panel h3,
.benefit-card h3,
.plan-card h3 {
  margin: 0;
  color: var(--sc-primary);
  font-size: 22px;
  line-height: 1.16;
}

.module-panel p,
.module-panel li,
.benefit-card p,
.plan-card p {
  color: var(--sc-muted);
}

.module-panel ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.module-panel li {
  position: relative;
  padding-left: 24px;
}

.module-panel li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sc-teal);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.product-preview {
  overflow: hidden;
}

.preview-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: #ffffff;
  background: var(--sc-gradient-system);
}

.preview-header span {
  font-size: 20px;
  font-weight: 900;
}

.preview-header strong {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 12px;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  background: var(--sc-bg);
}

.preview-kpis div {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--sc-line);
  border-radius: 8px;
}

.preview-kpis span {
  display: block;
  color: var(--sc-muted);
  font-size: 12px;
}

.preview-kpis strong {
  display: block;
  margin-top: 7px;
  color: var(--sc-primary-strong);
  font-size: 18px;
}

.preview-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 16px 16px;
  background: var(--sc-bg);
  font-size: 13px;
}

.preview-table span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  background: #ffffff;
  border-top: 1px solid var(--sc-line);
  color: var(--sc-text);
}

.preview-table span:nth-child(-n + 3) {
  color: var(--sc-primary-strong);
  background: var(--sc-table-head);
  font-weight: 800;
}

.benefit-grid,
.plan-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 980px;
}

.benefit-card,
.plan-card {
  padding: 22px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--sc-gradient-primary);
  position: relative;
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
}

.icon-ledger::before {
  inset: 11px 12px auto;
  height: 4px;
  border-radius: 999px;
  box-shadow: 0 9px 0 rgba(255, 255, 255, 0.78), 0 18px 0 rgba(255, 255, 255, 0.58);
}

.icon-tax::before {
  left: 12px;
  bottom: 10px;
  width: 7px;
  height: 16px;
  border-radius: 4px;
  box-shadow: 10px -6px 0 rgba(255, 255, 255, 0.78), 20px -14px 0 rgba(255, 255, 255, 0.58);
}

.icon-users::before {
  left: 10px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  box-shadow: 14px 2px 0 rgba(255, 255, 255, 0.72);
}

.icon-users::after {
  left: 7px;
  bottom: 9px;
  width: 28px;
  height: 10px;
  border-radius: 999px 999px 5px 5px;
}

.icon-demo::before {
  left: 11px;
  top: 11px;
  width: 20px;
  height: 15px;
  border-radius: 4px;
}

.icon-demo::after {
  left: 16px;
  bottom: 9px;
  width: 12px;
  height: 4px;
  border-radius: 999px;
}

.plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.plan-card.featured {
  border-color: rgba(19, 168, 232, 0.44);
  box-shadow: 0 22px 54px rgba(19, 168, 232, 0.18);
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--sc-primary);
  background: var(--sc-soft);
  border: 1px solid var(--sc-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 12px;
}

.price-row div {
  padding: 16px;
  background: var(--sc-soft);
  border: 1px solid var(--sc-line);
  border-radius: 8px;
}

.price-row span,
.price-row small {
  display: block;
  color: var(--sc-muted);
  font-size: 12px;
  font-weight: 800;
}

.price-row strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--sc-primary-strong);
  font-size: 31px;
  line-height: 1;
}

.annual-note {
  padding: 12px 14px;
  background: #ecfdf5;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #166534 !important;
  font-size: 13px;
  font-weight: 800;
}

.plan-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 22px;
  color: var(--sc-muted);
}

.plan-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sc-teal);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.plan-card a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--sc-primary);
  font-weight: 900;
}

.plan-card a::after {
  content: "\2192";
  margin-left: 8px;
}

.access-section {
  background:
    linear-gradient(180deg, #ffffff, var(--sc-bg));
}

.access-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.access-card {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--sc-line);
  border-radius: 8px;
  box-shadow: var(--sc-shadow);
}

.access-card-client {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 200, 244, 0.22), transparent 28%),
    var(--sc-gradient-system);
  border-color: rgba(255, 255, 255, 0.2);
}

.access-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--sc-primary);
  background: var(--sc-soft);
  border: 1px solid var(--sc-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.access-card-client .access-badge {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.access-card h3 {
  margin: 0;
  color: var(--sc-primary);
  font-size: 24px;
  line-height: 1.14;
}

.access-card-client h3 {
  color: #ffffff;
}

.access-card p {
  margin: 12px 0 22px;
  color: var(--sc-muted);
}

.access-card-client p {
  color: rgba(255, 255, 255, 0.82);
}

.access-card .button {
  width: fit-content;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.97), rgba(15, 76, 129, 0.93), rgba(19, 168, 232, 0.82)),
    var(--sc-gradient-system);
}

.contact-copy,
.contact-form {
  width: min(560px, 100%);
}

.contact-copy {
  justify-self: end;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-email-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-email-list a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.contact-email-list a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.contact-email-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  color: var(--sc-text);
  background: var(--sc-glass);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--sc-primary-strong);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--sc-text);
  background: #ffffff;
  border: 1px solid var(--sc-border);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--sc-cyan);
  box-shadow: 0 0 0 3px rgba(19, 168, 232, 0.14);
}

.full-field,
.form-status {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--sc-primary);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px max(24px, calc((100vw - 1160px) / 2));
  color: var(--sc-muted);
  background: #ffffff;
  border-top: 1px solid var(--sc-line);
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  color: var(--sc-primary);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 640px;
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 76, 129, 0.86)),
      url("./assets/servcontable-logo.png") right -80px bottom 48px / 420px auto no-repeat,
      var(--sc-gradient-system);
  }

  .hero-art {
    right: -170px;
    width: 520px;
    opacity: 0.24;
  }

  .module-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-form {
    justify-self: center;
  }

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

@media (max-width: 740px) {
  body {
    font-size: 14px;
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
  }

  .site-header .brand span {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 610px;
    padding: 108px 18px 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .hero-metrics,
  .signal-track,
  .preview-kpis,
  .benefit-grid,
  .plan-grid,
  .access-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 68px;
  }

  .section {
    padding: 54px 18px;
  }

  .section-head h2,
  .contact-copy h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 26px;
  }

  .module-switch {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .switch-button {
    flex: 1;
    min-width: 0;
    padding: 0 6px;
    overflow: hidden;
    font-size: 11.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .preview-header,
  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .preview-header strong {
    width: fit-content;
  }
}

@media (max-width: 460px) {
  .hero {
    min-height: 630px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .site-header {
    grid-template-columns: auto;
    justify-content: start;
    gap: 10px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .product-preview,
  .module-panel,
  .benefit-card,
  .plan-card,
  .access-card,
  .contact-form {
    box-shadow: 0 12px 28px rgba(15, 76, 129, 0.1);
  }

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