:root {
  --ink: #111827;
  --text: #243044;
  --muted: #6b7280;
  --line: #dfe6ee;
  --soft-line: #edf2f6;
  --bg: #f7fafc;
  --surface: #ffffff;
  --teal: #1a7774;
  --teal-dark: #145e5b;
  --teal-soft: #d9fbef;
  --green: #63bd52;
  --orange: #ff8228;
  --warm: #f3eee8;
  --mark-soft: #dcfce7;
  --dash-soft: #f1f5f9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.is-opening-at-top {
  overflow-anchor: none;
  scroll-behavior: auto;
}

body {
  margin: 0;
  padding-top: 0;
  color: var(--text);
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.mobile-copy {
  display: none;
}

.plan-mobile-list,
.mobile-comparison {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem clamp(1rem, 5vw, 5.5rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(11rem, 18vw, 17rem);
  max-height: 3.8rem;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #4b5563;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 0.38rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #eef7f7;
}

.site-nav .nav-portal {
  margin-left: 0.8rem;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
  padding-inline: 1.2rem;
}

.site-nav .nav-portal:hover,
.site-nav .nav-portal:focus-visible {
  color: #ffffff;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #ffffff;
}

.nav-toggle span {
  width: 1.3rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

main {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) 3rem;
}

section[id] {
  scroll-margin-top: 5.5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-right: calc(-1 * clamp(1rem, 4vw, 3rem));
  margin-left: calc(-1 * clamp(1rem, 4vw, 3rem));
  padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
  background: var(--warm);
}

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

.eyebrow {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

.hero-text,
.section-heading p,
.contact-copy > p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}

.hero-text {
  margin: 1.1rem 0 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  background: #ffffff;
}

.hero-proof span {
  position: relative;
  padding-left: 1.4rem;
  color: #2f3744;
  font-weight: 760;
}

.hero-proof span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.08rem;
  border-radius: 0.55rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  background: #ffffff;
}

.button-primary {
  color: #ffffff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
}

.button-secondary {
  color: var(--teal-dark);
  border-color: #9bc9c5;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f0fafa;
}

.hero-list {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1.55rem 0 0;
  list-style: none;
  color: #374151;
  font-weight: 650;
}

.hero-list li {
  position: relative;
  padding-left: 1.25rem;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--teal);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.product-viewer {
  display: grid;
  background: #ffffff;
}

.product-viewer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.product-viewer-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-viewer-top strong {
  color: var(--ink);
  font-weight: 850;
}

.product-frame {
  position: relative;
  background: #f7fafc;
}

.product-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  padding: 0.6rem;
}

.product-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid #d8e4ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.13);
  cursor: pointer;
  transform: translateY(-50%);
}

.product-arrow:hover,
.product-arrow:focus-visible {
  border-color: #99ddd7;
  background: #e9f8f7;
  color: var(--ink);
}

.product-arrow-prev {
  left: 0.85rem;
}

.product-arrow-next {
  right: 0.85rem;
}

.product-viewer-caption {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.section {
  padding: clamp(3.1rem, 5vw, 4.8rem) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.25rem;
}

.section-heading-small {
  margin-top: 3rem;
  margin-bottom: 1.15rem;
}

.section-heading-small h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.feature-showcase {
  display: grid;
  gap: 0.85rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  min-height: 11.5rem;
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #ffffff;
}

.feature-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
}

.feature-row:nth-child(even) .feature-media {
  order: 2;
}

.feature-media {
  margin: 0;
  min-height: 12rem;
  overflow: hidden;
  border: 1px solid #cce5e2;
  border-radius: 0.5rem;
  background: #f5fbfb;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: contain;
  object-position: top center;
  padding: 0.45rem;
}

.feature-row h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.16;
}

.feature-row p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

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

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

.feature-card,
.process-card,
.trust-grid article,
.contact-form,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: var(--surface);
}

.process-card,
.trust-grid article {
  padding: 1.35rem;
}

.process-card h3,
.trust-grid h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.28;
}

.process-card p,
.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.feature-card {
  min-height: 16rem;
  padding: 1.5rem 1.2rem;
  border: 0;
  background: transparent;
  text-align: center;
}

.feature-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.05rem;
  color: var(--orange);
  font-size: 2.45rem;
  font-weight: 300;
  line-height: 1;
}

.feature-card h3 {
  margin: 0 0 0.75rem;
  color: #20242b;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 760;
  line-height: 1.15;
}

.feature-card p {
  max-width: 25rem;
  margin: 0 auto;
  color: #9b9b9b;
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.58;
}

.process-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.plan-summary article {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 13rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #ffffff;
}

.plan-summary article:last-child {
  border-color: #83c8c2;
  box-shadow: inset 0 0.32rem 0 var(--teal);
}

.plan-summary span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-price {
  display: block;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 850;
  line-height: 1;
}

.plan-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.18;
}

.plan-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.plan-list {
  display: grid;
  gap: 0.72rem;
  padding: 1.2rem 0 0;
  margin: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 1.75rem;
  color: #334155;
  font-weight: 760;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 999px;
  background: var(--mark-soft);
  color: #168248;
  font-size: 0.78rem;
  font-weight: 900;
}

.comparison-card {
  padding: 1.35rem;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  background: #ffffff;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

th,
td {
  padding: 1.05rem 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  background: #f8fafc;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
}

thead th:first-child {
  font-size: 1.1rem;
  font-weight: 500;
}

thead span,
thead small {
  display: block;
}

thead small {
  margin-top: 0.12rem;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 850;
}

tbody th {
  width: 34%;
  color: #253044;
  font-size: 1rem;
  font-weight: 800;
}

tbody th small {
  display: block;
  margin-top: 0.18rem;
  color: var(--teal);
  font-size: 0.82rem;
  line-height: 1.35;
}

tbody td {
  width: 22%;
}

.table-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.table-check {
  background: var(--mark-soft);
  color: #168248;
}

.table-check::before {
  content: "✓";
}

.table-dash {
  background: var(--dash-soft);
  color: #94a3b8;
}

.table-dash::before {
  content: "−";
}

.table-value {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #334155;
  font-weight: 850;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #ffffff;
}

.faq-list summary {
  position: relative;
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contact-details {
  display: none;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.contact-actions {
  display: none;
  margin-top: 1rem;
}

.contact-modal .eyebrow {
  display: none;
}

.contact-form-slot {
  min-width: 0;
}

.contact-points {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 1.15rem;
  color: #344054;
  font-weight: 650;
  line-height: 1.45;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--teal-dark);
}

.contact-method {
  display: grid;
  width: fit-content;
}

.contact-method strong {
  color: var(--ink);
}

.contact-method span {
  color: var(--muted);
}

.contact-form,
.trial-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form {
  padding: 1.25rem;
}

.contact-form label,
.trial-form label,
.package-choice legend {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 760;
}

.contact-form label span {
  color: var(--muted);
  font-weight: 650;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.trial-form input {
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.42rem;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #667085 50%), linear-gradient(135deg, #667085 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.trial-form input:focus {
  border-color: #83c8c2;
  box-shadow: 0 0 0 3px rgba(26, 119, 116, 0.12);
}

.netlify-honeypot {
  display: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  display: flex;
}

.trial-modal,
.info-modal,
.contact-modal {
  position: relative;
  width: min(100%, 540px);
  max-height: min(88vh, 780px);
  overflow-y: auto;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.legal-modal {
  width: min(100%, 700px);
}

.trial-modal h2,
.info-modal h2,
.contact-modal h2 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1.15;
}

.trial-modal p,
.info-modal p,
.contact-modal p {
  margin: 0 0 0.95rem;
  color: var(--muted);
}

.info-modal h3 {
  margin: 1rem 0 0.25rem;
  color: var(--ink);
  font-size: 1rem;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: #ffffff;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.package-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  border: 0;
}

.package-choice legend {
  grid-column: 1 / -1;
}

.package-choice label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.42rem;
  background: #ffffff;
  cursor: pointer;
}

.package-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-choice label:has(input:checked) {
  border-color: #83c8c2;
  background: #eefafa;
}

.form-success {
  display: none;
  padding: 0.85rem 0.95rem;
  border-radius: 0.42rem;
  background: var(--mark-soft);
  color: #166534 !important;
  font-weight: 800;
}

.form-success.show {
  display: block;
}

.site-footer {
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  background: #0f172a;
  color: #dbe5ee;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.2rem;
  text-align: center;
}

.footer-brand {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #dbe5ee;
  font: inherit;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: #ffffff;
}

@media (max-width: 980px) {
  .hero,
  .feature-intake-panel,
  .feature-row,
  .feature-row:nth-child(even),
  .features-preview-grid,
  .feature-grid,
  .process-grid,
  .plan-summary,
  .trust-grid,
  .contact-section,
  .feature-page-cta {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-media {
    order: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.65rem 1rem;
  }

  .brand-logo {
    width: 12rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav .nav-portal {
    margin-left: 0;
  }

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

  .hero {
    padding-top: 2.2rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .product-viewer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .product-arrow {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.65rem;
  }

  .product-arrow-prev {
    left: 0.45rem;
  }

  .product-arrow-next {
    right: 0.45rem;
  }

  .comparison-card {
    padding: 0.75rem;
  }

  th,
  td {
    padding: 0.9rem 0.85rem;
  }

  .package-choice {
    grid-template-columns: 1fr;
  }
}

/* Traditional B2B styling pass */
:root {
  --ink: #172033;
  --text: #2d3748;
  --muted: #667085;
  --line: #d8e0e8;
  --soft-line: #edf1f5;
  --bg: #f5f7f9;
  --surface: #ffffff;
  --teal: #0f6fb8;
  --teal-dark: #075da0;
  --teal-soft: #e8f4ff;
  --green: #1f7a3f;
  --orange: #697586;
  --warm: #f4f6f8;
  --mark-soft: #ffffff;
  --dash-soft: #ffffff;
}

html {
  scroll-behavior: auto;
}

body {
  background: #ffffff;
  color: var(--text);
  font-size: 16px;
  padding-top: 0;
}

.site-header {
  padding: 0.85rem clamp(1rem, 4vw, 4.5rem);
  background: #ffffff;
  border-bottom: 1px solid #d8e0e8;
  backdrop-filter: none;
}

.brand-logo {
  width: clamp(10rem, 15vw, 14rem);
  max-height: 3.2rem;
}

.site-nav {
  gap: 0.1rem;
  color: #3f4a5f;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  border-radius: 0.2rem;
  padding: 0.45rem 0.65rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: #f2f5f7;
}

.site-nav .nav-portal {
  color: #ffffff;
  background: linear-gradient(135deg, #075da0 0%, #0f7fc9 100%);
  border-radius: 0.25rem;
  padding-inline: 0.9rem;
}

main {
  width: min(100%, 1320px);
  padding-bottom: 2rem;
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(3rem, 5vw, 4.6rem);
  padding-bottom: clamp(3rem, 5vw, 4.6rem);
  background: #f4f6f8;
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.contact-copy h2 {
  font-weight: 750;
  line-height: 1.15;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.15rem, 3.4vw, 3.55rem);
}

.hero-text,
.section-heading p,
.contact-copy > p {
  color: #596579;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.65;
}

.hero-proof {
  gap: 0;
  width: 100%;
  margin-top: 1.3rem;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.hero-proof span {
  padding: 0.75rem 1rem 0.75rem 1.35rem;
  color: #394456;
  font-weight: 650;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span::before {
  display: none;
}

.hero-actions {
  margin-top: 1.55rem;
}

.button {
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.24rem;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #075da0 0%, #0f7fc9 100%);
  border-color: #075da0;
}

.button-primary:hover,
.button-primary:focus-visible,
.site-nav .nav-portal:hover,
.site-nav .nav-portal:focus-visible {
  background: linear-gradient(135deg, #044677 0%, #0869ad 100%);
  border-color: #044677;
}

.button-secondary {
  color: var(--teal-dark);
  border-color: #a8cce8;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f0f8ff;
}

.hero-visual {
  border-radius: 0.2rem;
  box-shadow: none;
}

.product-viewer-top {
  padding: 0.75rem 0.9rem;
  background: #ffffff;
}

.product-viewer-top span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-viewer-top strong {
  font-weight: 750;
}

.product-frame {
  background: #f8fafb;
}

.product-frame img {
  padding: 0.5rem;
}

.product-arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-color: #cfd8e3;
  border-radius: 0.2rem;
  background: #ffffff;
  color: #344054;
  font-size: 1.45rem;
  box-shadow: none;
}

.product-arrow:hover,
.product-arrow:focus-visible {
  border-color: var(--teal-dark);
  background: #ffffff;
  color: var(--teal-dark);
}

.product-viewer-caption {
  padding: 0.8rem 0.9rem;
  font-weight: 500;
  text-align: left;
}

.section {
  padding: clamp(2.6rem, 4.2vw, 4rem) 0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 1.35rem;
}

.section-heading-small {
  margin-top: 2.4rem;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.section-heading-small h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.features-preview-section {
  border-bottom: 1px solid var(--line);
}

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

.features-preview-grid article {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 14rem;
  padding: 1.25rem;
  border: 1px solid #cddfeb;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(16, 40, 73, 0.05);
}

.feature-preview-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.3rem;
  background: #e8f4ff;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
}

.features-preview-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  font-weight: 780;
  line-height: 1.18;
}

.features-preview-grid p {
  margin: 0;
  color: #596579;
  font-size: 1rem;
  line-height: 1.55;
}

.section-action {
  margin-top: 1rem;
}

.feature-page-hero {
  display: grid;
  gap: 1.3rem;
  padding: clamp(3.2rem, 5vw, 4.8rem) 0 clamp(2rem, 4vw, 3rem);
}

.feature-page-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  font-weight: 760;
  line-height: 1.1;
}

.feature-page-hero .section-heading {
  margin-bottom: 0;
}

.feature-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid #cfd8e3;
  border-radius: 0.2rem;
  color: #344054;
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 650;
}

.feature-page-nav a:hover,
.feature-page-nav a:focus-visible {
  border-color: var(--teal-dark);
  color: var(--teal-dark);
}

.feature-detail-section {
  padding-top: clamp(2rem, 4vw, 3.4rem);
  padding-bottom: 0;
}

.feature-row h2 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 720;
  line-height: 1.3;
}

.feature-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: #f6fafc;
}

.feature-page-cta h2 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.18;
}

.feature-page-cta p {
  max-width: 660px;
  margin: 0;
  color: #596579;
}

.feature-showcase {
  gap: 0.9rem;
}

.feature-intake-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: 1rem;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: #f6fafc;
}

.feature-intake-panel h3 {
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-size: clamp(1.3rem, 1.75vw, 1.65rem);
  font-weight: 750;
  line-height: 1.2;
}

.feature-intake-panel p {
  margin: 0;
  color: #596579;
  line-height: 1.65;
}

.intake-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intake-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #d7e5ee;
  background: #ffffff;
}

.intake-list strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.intake-list span {
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.45;
}

.feature-row,
.feature-row:nth-child(even) {
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 0.25rem;
  background: #ffffff;
}

.feature-row:nth-child(even) .feature-media {
  order: 0;
}

.feature-media {
  min-height: 13rem;
  border-color: #d8e0e8;
  border-radius: 0.2rem;
  background: #f8fafb;
}

.feature-media img {
  min-height: 13rem;
  padding: 0.35rem;
}

.feature-kicker {
  margin: 0 0 0.35rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-row h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 720;
}

.feature-row p {
  color: #596579;
  font-size: 0.96rem;
}

.feature-points {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0.9rem 0 0;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 1.1rem;
  color: #344054;
  font-size: 0.94rem;
  line-height: 1.45;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--teal-dark);
}

.feature-grid,
.process-grid,
.trust-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card,
.process-card,
.trust-grid article {
  min-height: 0;
  padding: 1.2rem;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  text-align: left;
}

.feature-symbol {
  display: none;
}

.feature-card h3,
.process-card h3,
.trust-grid h3 {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.3;
}

.feature-card p,
.process-card p,
.trust-grid p {
  max-width: none;
  margin: 0;
  color: #667085;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

.feature-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.7rem;
  padding: 0.22rem 0.45rem;
  border: 1px solid #d7e5ee;
  color: var(--teal-dark);
  background: #f6fafc;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-section,
.faq-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.plan-summary article {
  align-content: stretch;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 0.8rem;
  min-height: 17rem;
  padding: 1.2rem;
  border-radius: 0.25rem;
}

.plan-summary article .button {
  align-self: end;
  margin-top: auto;
}

.plan-summary article:last-child {
  border-color: var(--line);
  box-shadow: inset 0 3px 0 var(--teal-dark);
}

.plan-summary span,
thead small,
tbody th small {
  color: var(--teal-dark);
}

.plan-price {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 750;
}

.plan-summary h3 {
  font-size: 1.12rem;
  font-weight: 720;
}

.plan-summary p {
  font-weight: 400;
}

.comparison-card,
.contact-form {
  border-radius: 0.25rem;
  background: #ffffff;
}

.comparison-card {
  padding: 0;
}

table {
  min-width: 980px;
  border: 0;
  border-radius: 0;
}

tbody th {
  width: 34%;
}

tbody td {
  width: 22%;
}

th,
td {
  padding: 0.86rem 1rem;
}

thead th {
  background: #f4f6f8;
  font-size: 1rem;
  font-weight: 720;
}

thead th:first-child {
  font-size: 1rem;
}

tbody th {
  font-size: 0.96rem;
  font-weight: 650;
}

.table-mark {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 800;
}

.table-check {
  color: #1f7a3f;
}

.table-dash {
  color: #98a2b3;
}

.table-value {
  font-weight: 650;
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq-list summary {
  padding: 1rem 2.5rem 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list summary::after {
  right: 0.35rem;
  color: #475467;
  font-size: 1.2rem;
}

.faq-list p {
  padding: 0 0 1rem;
}

.contact-form,
.trial-form {
  gap: 0.8rem;
}

.contact-form {
  padding: 1.2rem;
}

.contact-form label,
.trial-form label,
.package-choice legend {
  font-weight: 650;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.trial-form input,
.package-choice label {
  border-radius: 0.2rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.trial-form input:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 2px rgba(31, 111, 115, 0.12);
}

.modal-overlay {
  background: rgba(23, 32, 51, 0.54);
  backdrop-filter: none;
}

.trial-modal,
.info-modal,
.contact-modal {
  border-radius: 0.25rem;
  box-shadow: 0 12px 34px rgba(23, 32, 51, 0.18);
}

.modal-close,
.package-choice label,
.form-success,
.nav-toggle {
  border-radius: 0.2rem;
}

.package-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-choice label:has(input:checked) {
  border-color: var(--teal-dark);
  background: #f2f7f7;
}

.form-success {
  background: #eef7f0;
  color: #1f6b3a !important;
  font-weight: 650;
}

.site-footer {
  background: #102849;
}

.footer-portal {
  color: #ffffff;
  font-weight: 400;
}

@media (max-width: 980px) {
  .hero,
  .feature-row,
  .feature-row:nth-child(even),
  .feature-grid,
  .process-grid,
  .plan-summary,
  .trust-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .features-preview-grid,
  .process-grid,
  .trust-grid {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.65rem 1rem;
  }

  .site-nav {
    background: #ffffff;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .feature-page-hero {
    padding-top: 2.2rem;
  }

  .feature-page-hero h1 {
    font-size: 2.2rem;
  }

  .feature-page-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .feature-intake-panel {
    padding: 1rem;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-media,
  .feature-media img {
    min-height: 10.5rem;
  }

  .feature-page-cta .hero-actions {
    margin-top: 0;
  }

  .hero-proof {
    display: grid;
  }

  .hero-proof span,
  .hero-proof span:first-child {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--soft-line);
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .comparison-card {
    padding: 0;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    padding-top: 0;
  }

  main {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .site-header {
    gap: 0.75rem;
    padding: 0.55rem 0.85rem;
  }

  .brand-logo {
    width: 9.8rem;
    max-height: 2.7rem;
  }

  .nav-toggle {
    width: 2.55rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .site-nav {
    gap: 0.35rem;
    padding: 0.65rem 0.85rem 0.85rem;
  }

  .site-nav a {
    min-height: 2.65rem;
    padding: 0.62rem 0.7rem;
  }

  .site-nav .nav-portal {
    margin-left: 0;
    color: #3f4a5f;
    background: transparent;
    border-radius: 0.2rem;
    padding-inline: 0.7rem;
  }

  .site-nav .nav-portal:hover,
  .site-nav .nav-portal:focus-visible {
    color: var(--teal-dark);
    background: #f2f5f7;
  }

  .hero {
    gap: 1.35rem;
    grid-template-columns: minmax(0, 1fr);
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 1.65rem 1rem 1.25rem;
  }

  .hero > *,
  .product-viewer,
  .product-frame {
    min-width: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 21rem;
    font-size: clamp(2rem, 10vw, 2.42rem);
    line-height: 1.08;
  }

  .hero-text {
    max-width: 24rem;
    margin-top: 0.8rem;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-proof span,
  .hero-proof span:first-child {
    padding: 0.48rem 0;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 1.15rem;
  }

  .button {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.68rem 0.75rem;
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-visual {
    width: 100%;
    overflow: hidden;
  }

  .product-viewer-top {
    display: grid;
    gap: 0.15rem;
    padding: 0.62rem 0.7rem;
  }

  .product-viewer-top span {
    font-size: 0.68rem;
  }

  .product-viewer-top strong {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .product-frame img {
    height: clamp(12.25rem, 58vw, 17rem);
    aspect-ratio: auto;
    padding: 0.35rem;
    object-fit: contain;
  }

  .product-arrow {
    top: auto;
    bottom: 0.55rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
    transform: none;
  }

  .product-arrow-prev {
    left: 0.55rem;
  }

  .product-arrow-next {
    right: 0.55rem;
  }

  .product-viewer-caption {
    padding: 0.68rem 0.75rem;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .section {
    padding: 2.2rem 0;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 1.72rem;
    line-height: 1.15;
  }

  .section-heading p,
  .contact-copy > p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .features-preview-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .features-preview-grid article {
    min-height: 0;
    padding: 1rem;
  }

  .plan-summary-home {
    gap: 0.75rem;
  }

  .plan-summary article {
    min-height: 0;
    padding: 1rem;
  }

  #gratis {
    padding-top: 1.85rem;
    padding-bottom: 1.85rem;
  }

  #gratis .section-heading {
    margin-bottom: 0.85rem;
  }

  #gratis .section-heading h2 {
    font-size: 1.58rem;
  }

  #gratis .section-heading p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  #gratis .desktop-copy {
    display: none;
  }

  #gratis .mobile-copy {
    display: block;
  }

  #gratis .plan-summary-home {
    gap: 0.6rem;
  }

  #gratis .plan-summary-home article {
    gap: 0.45rem;
    padding: 0.85rem;
  }

  #gratis .plan-summary-home .plan-price {
    font-size: 1.3rem;
  }

  #gratis .plan-summary-home h3 {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  #gratis .plan-summary-home p {
    display: none;
  }

  #gratis .plan-summary-home .button {
    margin-top: 0.2rem;
    min-height: 2.45rem;
  }

  #kontakt {
    display: block;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }

  #kontakt .contact-copy h2 {
    max-width: 22rem;
    font-size: 1.58rem;
  }

  #kontakt .contact-copy > p {
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  #kontakt .contact-points {
    display: none;
    gap: 0.3rem;
    margin-top: 0.8rem;
  }

  #kontakt .contact-points li {
    padding-left: 0.9rem;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  #kontakt .contact-actions {
    display: block;
  }

  #kontakt .contact-details {
    display: none;
  }

  #kontakt .contact-form-slot {
    display: none;
  }

  .contact-modal {
    max-height: min(90vh, 760px);
    padding: 0.9rem;
  }

  .contact-modal h2 {
    margin-bottom: 0.45rem;
    font-size: 1.35rem;
  }

  .contact-modal .contact-form {
    gap: 0.58rem;
    padding: 0;
    border: 0;
  }

  .contact-modal .contact-form label {
    gap: 0.24rem;
    font-size: 0.94rem;
  }

  .contact-modal .contact-form input,
  .contact-modal .contact-form select {
    padding: 0.64rem 0.72rem;
  }

  .contact-modal .contact-form select {
    min-height: 2.6rem;
  }

  .contact-modal .contact-form textarea {
    height: 5.2rem;
    min-height: 4.8rem;
    padding: 0.64rem 0.72rem;
  }

  .contact-modal .contact-form .button {
    min-height: 2.55rem;
  }

  .contact-modal .eyebrow {
    margin-bottom: 0.25rem;
    font-size: 0.68rem;
  }

  .contact-form {
    padding: 1rem;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    max-width: 18.5rem;
  }

  .product-frame img {
    height: 12.5rem;
  }
}

@media (max-width: 760px) {
  .feature-detail-section {
    padding-top: 1.4rem;
  }

  .feature-intake-panel {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    padding: 1rem;
  }

  .feature-intake-panel h2 {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .feature-intake-panel p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .intake-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .intake-list li {
    gap: 0.08rem;
    padding: 0.7rem 0.8rem;
  }

  .intake-list span {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .feature-showcase {
    gap: 0.75rem;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    gap: 0.85rem;
    padding: 0.9rem;
  }

  .feature-media {
    min-height: 0;
  }

  .feature-media img {
    height: 10.5rem;
    min-height: 0;
    object-fit: contain;
  }

  .feature-kicker {
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
  }

  .feature-row h2 {
    margin-bottom: 0.45rem;
    font-size: 1.28rem;
    line-height: 1.16;
  }

  .feature-row p {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .feature-points {
    display: none;
  }

  #moduler {
    padding-top: 1.8rem;
  }

  #moduler .section-heading {
    margin-bottom: 0.85rem;
  }

  #moduler .section-heading h2 {
    max-width: 21rem;
    font-size: 1.58rem;
    line-height: 1.12;
  }

  #moduler .section-heading p {
    max-width: 22rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .feature-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    border: 0;
  }

  .feature-module-grid .feature-card {
    display: grid;
    align-content: start;
    gap: 0.45rem;
    min-height: 7.4rem;
    padding: 0.78rem;
    border: 1px solid #c9dce9;
    border-radius: 0.3rem;
    background: #f8fbff;
  }

  .feature-module-grid .feature-label {
    margin-bottom: 0;
    padding: 0.18rem 0.35rem;
    font-size: 0.62rem;
    line-height: 1.1;
  }

  .feature-module-grid .feature-card h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.16;
  }

  .feature-module-grid .feature-card p {
    display: none;
  }

  .feature-page-hero {
    padding-top: 1.65rem;
    padding-bottom: 1.45rem;
  }

  .feature-page-hero h1 {
    max-width: 20rem;
    font-size: 1.95rem;
    line-height: 1.08;
  }

  .feature-page-hero .section-heading p {
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .pricing-section {
    padding-top: 1.7rem;
  }

  .pricing-section > .section-heading {
    margin-bottom: 0.85rem;
  }

  .pricing-section > .section-heading h2 {
    max-width: 19rem;
    font-size: 1.72rem;
    line-height: 1.08;
  }

  .pricing-section > .section-heading p {
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) {
    gap: 0.75rem;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) article {
    gap: 0.65rem;
    min-height: 0;
    padding: 1rem;
    border-color: #c9dce9;
    background: #f8fbff;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) article:nth-child(2) {
    background: #eef7ff;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) article:nth-child(3) {
    border-color: #075da0;
    background: #e8f4ff;
    box-shadow: inset 0 4px 0 #075da0;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) .plan-price {
    font-size: 1.6rem;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) h3 {
    font-size: 1rem;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) p {
    display: none;
  }

  .plan-mobile-list {
    display: grid;
    gap: 0.38rem;
    padding: 0.6rem 0 0;
    margin: 0;
    border-top: 1px solid rgba(7, 93, 160, 0.16);
    list-style: none;
  }

  .plan-mobile-list li {
    position: relative;
    padding-left: 1rem;
    color: #344054;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .plan-mobile-list li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: #075da0;
  }

  .pricing-section .plan-summary:not(.plan-summary-home) .button {
    margin-top: 0.15rem;
    min-height: 2.45rem;
  }

  .comparison-card {
    display: none;
  }

  .mobile-comparison {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .mobile-comparison h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .mobile-comparison details {
    border: 1px solid #c9dce9;
    border-radius: 0.3rem;
    background: #ffffff;
  }

  .mobile-comparison summary {
    position: relative;
    padding: 0.9rem 2.4rem 0.9rem 0.95rem;
    color: var(--ink);
    font-weight: 760;
    list-style: none;
    cursor: pointer;
  }

  .mobile-comparison summary::-webkit-details-marker {
    display: none;
  }

  .mobile-comparison summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0.95rem;
    color: var(--teal-dark);
    font-size: 1.2rem;
    transform: translateY(-50%);
  }

  .mobile-comparison details[open] summary::after {
    content: "-";
  }

  .mobile-comparison ul {
    display: grid;
    gap: 0.45rem;
    padding: 0 0.95rem 0.95rem;
    margin: 0;
    list-style: none;
  }

  .mobile-comparison li {
    position: relative;
    padding-left: 1rem;
    color: #596579;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .mobile-comparison li::before {
    content: "";
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: #075da0;
  }

  .feature-page-cta {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .feature-page-cta h2 {
    font-size: 1.5rem;
  }

  .feature-page-cta .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-header-height: 5.25rem;
  }

  body {
    padding-top: 0;
  }

  .site-header {
    height: var(--mobile-header-height);
    min-height: var(--mobile-header-height);
    padding: 0.65rem 0.85rem;
  }

  .brand,
  .nav-toggle {
    flex: 0 0 auto;
  }

  .brand-logo {
    width: auto;
    height: 3rem;
    max-width: 12rem;
    max-height: 3rem;
    object-fit: contain;
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
  }

  .site-nav {
    top: 100%;
  }
}
