* {
  box-sizing: border-box;
}

:root {
  --ink: #09111f;
  --muted: #647184;
  --line: #e4e0d8;
  --paper: #fffaf3;
  --navy: #071026;
  --gold: #bb8b4d;
  --teal: #0f766e;
  --coral: #c6533f;
  --mist: #eef6f3;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #f4c98f;
  outline-offset: 3px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(7, 16, 38, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 146px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 800;
}

.mobile-nav-toggle {
  display: none;
}

.nav-actions > a:not(.btn) {
  color: rgba(255, 255, 255, .78);
}

.home-locale {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 8px 0 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 246, 232, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.home-locale span {
  font-size: 12px;
  font-weight: 900;
}

.home-locale select {
  min-height: 34px;
  max-width: 116px;
  padding: 0 24px 0 0;
  border: 0;
  color: #fff6e8;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  outline: none;
  cursor: pointer;
}

.home-locale select option {
  color: var(--ink);
  background: #fff;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary {
  border-color: #fff6e8;
  background: #fff6e8;
  color: #071026;
}

.btn-soft {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-soft-dark {
  border-color: #d9d2c7;
  background: #fff;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #050816;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: saturate(.95) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 22, .92) 0%, rgba(5, 8, 22, .76) 46%, rgba(5, 8, 22, .22) 100%),
    linear-gradient(0deg, rgba(5, 8, 22, .7), rgba(5, 8, 22, .12));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 56px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 246, 232, .34);
  border-radius: 999px;
  background: rgba(255, 246, 232, .1);
  color: #fff6e8;
}

.hero h1 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 246, 232, .9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 940px;
  margin-top: 34px;
}

.hero-proof div {
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(255, 246, 232, .23);
  border-radius: 8px;
  background: rgba(255, 246, 232, .1);
  backdrop-filter: blur(12px);
}

.hero-proof strong {
  display: block;
  color: #fff6e8;
  font-size: 17px;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 246, 232, .72);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: clamp(56px, 7vw, 94px) clamp(16px, 4vw, 52px);
  max-width: 100%;
  overflow-x: clip;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  min-width: 0;
}

.section-head.compact {
  grid-template-columns: minmax(0, .85fr) minmax(240px, .6fr);
}

.section h2 {
  max-width: 100%;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.section-head p {
  min-width: 0;
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.trust-strip {
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-grid div {
  min-height: 104px;
  padding: 18px;
  background: #fff;
}

.trust-grid b,
.trust-grid span {
  display: block;
}

.trust-grid b {
  color: var(--navy);
  font-size: 18px;
}

.trust-grid span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.trial-section {
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.trial-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, .58fr);
  gap: 18px;
  align-items: start;
}

.trial-layout .section-head {
  grid-column: 1 / -1;
}

.trial-form,
.trial-result {
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(9, 17, 31, .07);
}

.trial-form {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.trial-upload {
  position: relative;
  grid-row: span 3;
  min-height: 204px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed #9bb6aa;
  border-radius: 8px;
  background: #f7fbf8;
  color: var(--teal);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.trial-upload input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trial-upload img {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trial-upload img.show {
  display: block;
}

.trial-upload span {
  position: relative;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
}

.trial-upload-note {
  grid-column: 2;
  margin: 0;
  color: #5f6c7b;
  font-size: 12px;
  line-height: 1.55;
}

.trial-fields {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 11px;
}

.trial-fields label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.trial-fields label > span {
  color: #425064;
  letter-spacing: 0;
}

.trial-fields input,
.trial-fields select {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #dce4df;
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #fbfdfb 100%);
  font-size: 13px;
  line-height: 44px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.trial-fields input:focus,
.trial-fields select:focus {
  border-color: rgba(15, 118, 110, .55);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .1);
  outline: none;
}

.trial-form .btn {
  grid-column: 2;
  width: fit-content;
  min-height: 44px;
  margin-top: 0;
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.trial-result {
  min-height: 250px;
  padding: 14px;
}

.result-empty {
  min-height: 182px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px dashed #d3ded8;
  border-radius: 8px;
  color: var(--muted);
}

.result-empty strong {
  color: var(--navy);
  font-size: 20px;
}

.trial-output h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 18px;
}

.trial-summary {
  margin: 0 0 8px;
  color: var(--teal);
  line-height: 1.6;
  font-weight: 800;
  font-size: 13px;
}

.trial-output {
  overflow: visible;
}

.trial-output ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-output li {
  display: grid;
  gap: 5px;
  padding: 8px 9px;
  border: 1px solid #e6ebe7;
  border-radius: 8px;
  background: #fff;
}

.trial-output b {
  color: var(--coral);
  font-size: 14px;
}

.trial-output span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.prompt-preview {
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #f7f1e9;
}

.prompt-preview strong,
.prompt-preview span {
  display: block;
}

.prompt-preview strong {
  color: var(--navy);
}

.prompt-preview span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trial-login {
  margin-top: 12px;
  width: 100%;
}

.workflow-section {
  background: #071026;
  color: #fff7ea;
}

.workflow-section h2 {
  color: #fff7ea;
}

.workflow-section .section-head p {
  color: rgba(255, 247, 234, .72);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: #ddd5c9;
}

.workflow-grid div {
  min-height: 176px;
  padding: 20px;
  background: #fff;
}

.workflow-grid b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #ead9c1;
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
}

.workflow-grid strong,
.workflow-grid span {
  display: block;
}

.workflow-grid strong {
  margin-top: 18px;
  color: var(--navy);
  font-size: 18px;
}

.workflow-grid span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-section .workflow-grid {
  border-color: rgba(255, 247, 234, .14);
  background: rgba(255, 247, 234, .15);
}

.workflow-section .workflow-grid div {
  background: rgba(255, 247, 234, .06);
}

.workflow-section .workflow-grid b {
  border-color: rgba(255, 247, 234, .3);
  color: #f4c98f;
}

.workflow-section .workflow-grid strong {
  color: #fff;
}

.workflow-section .workflow-grid span {
  color: rgba(255, 247, 234, .72);
}

.cases-section,
.pricing-section {
  background: #fff;
}

.case-head {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.case-head > div,
.case-head h2,
.case-head p {
  min-width: 0;
}

.case-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 18px;
}

.case-tabs button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd5c9;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.case-tabs button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 38, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 17, 31, .09);
}

.case-media {
  display: grid;
  grid-template-columns: 43% 57%;
  height: 342px;
  min-width: 0;
  background: #f4f0ea;
}

.case-media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #efe9e1;
}

.case-media img,
.case-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-media figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  max-width: calc(100% - 24px);
  white-space: normal;
  overflow-wrap: anywhere;
}

.case-copy {
  padding: 16px;
  border-top: 1px solid rgba(7, 16, 38, .08);
}

.case-copy strong,
.case-copy span {
  display: block;
}

.case-copy strong {
  color: var(--navy);
  font-size: 17px;
}

.case-copy span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.product-ui-section,
.seo-links-section,
.faq-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.flow-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: #ddd5c9;
}

.flow-showcase article {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.flow-showcase b {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f3eee5;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.flow-showcase strong {
  color: var(--navy);
  font-size: 18px;
}

.flow-showcase span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: #fff;
}

.price-card.featured {
  border-color: var(--teal);
  background: #f2fbf7;
}

.price-card strong {
  color: var(--navy);
  font-size: 18px;
}

.price-card b {
  color: var(--coral);
  font-size: 30px;
  line-height: 1.1;
}

.price-card span {
  color: var(--muted);
  line-height: 1.6;
}

.price-card .btn {
  width: fit-content;
  margin-top: 10px;
}

.credit-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: #ddd5c9;
}

.contact-strip {
  scroll-margin-top: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 118, 110, .22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .1), rgba(187, 139, 77, .12)),
    #fbfdfb;
}

.contact-strip strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.contact-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 280px;
}

.contact-phone,
.contact-email {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff6e8;
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(7, 16, 38, .16);
}

.contact-email {
  border: 1px solid rgba(15, 118, 110, .28);
  background: #fff;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
}

.contact-strip a:not(.contact-phone):not(.contact-email) {
  color: var(--teal);
  font-weight: 900;
}

.credit-table div {
  min-height: 92px;
  padding: 16px;
  background: #fff;
}

.credit-table b,
.credit-table span {
  display: block;
}

.credit-table b {
  color: var(--navy);
}

.credit-table span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.seo-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.seo-entry-grid a {
  min-height: 118px;
  padding: 16px;
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.seo-entry-grid a:hover {
  border-color: rgba(15, 118, 110, .36);
  box-shadow: 0 10px 24px rgba(9, 17, 31, .07);
  transform: translateY(-1px);
}

.seo-entry-grid b,
.seo-entry-grid strong,
.seo-entry-grid span {
  display: block;
}

.seo-entry-grid b {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4eee5;
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
}

.seo-entry-grid strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 17px;
}

.seo-entry-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.seo-chip-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px 18px;
  align-items: start;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
}

.seo-chip-panel > strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 32px;
  white-space: nowrap;
}

.seo-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-chip-list a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #e5ded4;
  border-radius: 999px;
  background: #fff;
  color: #425064;
  font-size: 13px;
  font-weight: 800;
}

.seo-chip-list a:hover {
  border-color: rgba(15, 118, 110, .34);
  color: var(--teal);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.case-copy small {
  display: block;
  margin-top: 10px;
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
}

.case-evidence-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid #ded7cc;
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq-list details {
  border: 1px solid #ddd5c9;
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding: 28px clamp(16px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1060px) {
  .section-head,
  .section-head.compact,
  .trial-layout,
  .case-grid,
  .pricing-grid,
  .seo-entry-grid,
  .credit-table,
  .flow-showcase {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .workflow-grid,
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1061px) and (max-width: 1180px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 64px;
    align-items: center;
    gap: 8px;
    padding: max(10px, env(safe-area-inset-top)) 14px 10px;
  }

  .brand img {
    width: clamp(108px, 32vw, 126px);
    height: 36px;
  }

  .brand {
    min-height: 44px;
  }

  .brand span {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    min-width: 48px;
    min-height: 44px;
    margin-left: auto;
    padding: 7px 10px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
  }

  .mobile-nav-toggle > span,
  .mobile-nav-toggle > span::before,
  .mobile-nav-toggle > span::after {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .mobile-nav-toggle > span {
    position: relative;
  }

  .mobile-nav-toggle > span::before,
  .mobile-nav-toggle > span::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .mobile-nav-toggle > span::before {
    top: -5px;
  }

  .mobile-nav-toggle > span::after {
    top: 5px;
  }

  .mobile-nav-toggle > b {
    font-size: 12px;
  }

  .nav-actions {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0 0 12px 12px;
    background: rgba(7, 16, 38, .98);
    box-shadow: 0 20px 34px rgba(0, 0, 0, .25);
  }

  .nav-actions.is-open {
    display: grid;
  }

  .site-nav .nav-actions > a,
  .site-nav .nav-actions [data-action="trial_top"],
  .site-nav .nav-actions [data-action="login_top"] {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: #fff6e8;
    background: rgba(255, 255, 255, .08);
  }

  .site-nav .nav-actions [data-action="login_top"],
  .site-nav .nav-actions [data-action="trial_top"] {
    border-color: #fff6e8;
    background: #fff6e8;
    color: #071026;
  }

  .home-locale {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 44px;
    padding-right: 7px;
    padding-left: 9px;
  }

  .home-locale select {
    max-width: 160px;
    min-height: 44px;
    padding-left: 0;
    font-size: 12px;
  }

  .btn {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 96px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 45px);
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .trust-grid,
  .workflow-grid,
  .case-grid,
  .trial-form,
  .trial-fields {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-proof div {
    min-height: 100px;
    padding: 12px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .seo-entry-grid {
    gap: 8px;
  }

  .seo-entry-grid a {
    min-height: 96px;
    padding: 13px 14px;
  }

  .seo-entry-grid strong {
    margin-top: 9px;
    font-size: 16px;
  }

  .seo-entry-grid span {
    font-size: 12px;
  }

  .trial-form .btn {
    grid-column: 1;
    width: 100%;
  }

  .trial-upload-note,
  .trial-fields {
    grid-column: 1;
  }

  .trial-upload {
    grid-row: auto;
    min-height: 230px;
  }

  .case-media {
    grid-template-columns: 40% 60%;
    height: 260px;
  }

  .contact-strip {
    display: grid;
  }

  .contact-actions {
    display: grid;
    min-width: 0;
  }

  .seo-chip-panel {
    grid-template-columns: 1fr;
  }

  .seo-chip-panel > strong {
    line-height: 1.3;
  }

  .seo-chip-list a {
    min-height: 44px;
  }

  .contact-phone,
  .contact-email {
    width: 100%;
  }

  .footer a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 350px) {
  .site-nav {
    padding-right: 10px;
    padding-left: 10px;
  }

  .brand img {
    width: 104px;
  }

  .mobile-nav-toggle > b {
    display: none;
  }
}
