@font-face {
  font-family: "Gellix";
  src: url("/fonts/Gellix-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gellix";
  src: url("/fonts/Gellix-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gellix";
  src: url("/fonts/Gellix-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gellix";
  src: url("/fonts/Gellix-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F8FAFC;
  --panel: #ffffff;
  --text: #0F172A;
  --muted: #475569;
  --line: #E2E8F0;
  --brand: #1E3A8A;
  --button-text: #FFFFFF;
  --brand-deep: #1E40AF;
  --brand-soft: #E0E7FF;
  --warn: #92400E;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.06);
  --radius-xl: 12px;
  --radius-lg: 12px;
  --radius-md: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Gellix", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: "Gellix", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 0;
}

p,
li,
label,
input,
textarea {
  font-weight: 400;
  line-height: 1.6;
}

button,
.btn,
[role="tab"] {
  font-family: "Gellix", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}


/* =========================
   Shared layout
========================= */

.container,
.site-shell,
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.site-shell {
  padding-bottom: 60px;
}

.page-shell {
  min-height: calc(100vh - 160px);
  padding-bottom: 30px;
}

.section {
  padding: 64px 0;
}

.section.muted {
  background: rgba(255, 255, 255, 0.72);
}

.section-alt {
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), rgba(255,255,255,0.2));
  border-top: 1px solid rgba(223,229,234,0.5);
  border-bottom: 1px solid rgba(223,229,234,0.5);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head.center,
.center {
  text-align: center;
}

.section-head.center {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .page-intro,
.page-intro.centered,
.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h1,
.section-head h2 {
  margin: 0 0 12px;
}

.section-head h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-intro {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.eyebrow.light {
  background: rgba(255,255,255,0.12);
  color: var(--button-text);
}

/* =========================
   Header / nav
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.nav,
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.brand-with-icon {
  gap: 12px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-with-logo {
  gap: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.legal-brand {
  gap: 12px;
}

.brand-context {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links,
.top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 15px;
}

.nav-links a,
.top-nav a {
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-links a.active,
.top-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--button-text) !important;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--brand-deep);
  color: var(--button-text) !important;
}

.btn-ghost {
  background: var(--panel);
  color: var(--text) !important;
  border-color: var(--line);
}

.btn-ghost:hover {
  background: #EEF2FF;
}

.light-ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: var(--button-text) !important;
}

.full {
  width: 100%;
}

/* =========================
   Hero / actions
========================= */

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 56px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
  padding-top: 6px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.hero .eyebrow {
  color: var(--brand);
  font-size: 13px;
  max-width: none;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

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

.center-actions {
  justify-content: center;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.hero-shot-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero-shot {
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 22px 52px rgba(15, 35, 28, 0.14);
}

.meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Grids / cards
========================= */

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card ul,
.card ol {
  margin: 14px 0 16px;
  padding-left: 20px;
}

.card li {
  margin: 8px 0;
  color: var(--muted);
}

.cta-card {
  text-align: center;
  padding: 52px 36px;
  max-width: 1120px;
  margin: 0 auto;
}

.cta-card h2 {
  max-width: 900px;
  margin: 0 auto 16px;
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cta-card p {
  max-width: 940px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.cta-card .hero-actions {
  justify-content: center;
}

/* =========================
   Homepage screenshots / panels
========================= */

.screenshots-section {
  background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0.6));
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.shot-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shot-card.tall {
  min-height: 100%;
}

.app-shot {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  background: #f2f5f9;
}

.shot-copy {
  padding: 18px 20px 20px;
}

.shot-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.shot-copy p {
  margin: 0;
  color: var(--muted);
}

.inspection-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.report-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
}

.report-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.report-row:last-child {
  border-bottom: none;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #ffffff;
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-copy {
  margin: 0 auto 18px;
  max-width: 640px;
  color: rgba(255,255,255,0.88);
}

/* =========================
   Pricing
========================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 28px;
}

.price-card.featured {
  border-color: #cfd9e4;
}

.price-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-line {
  margin: 12px 0 18px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.price-line span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}

.price-line.alt {
  font-size: 28px;
}

.price-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

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

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

/* =========================
   FAQ
========================= */

.faq-shell {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   Contact
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-note {
  margin-top: 18px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
}

label {
  display: block;
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  border: 1px solid #ced7dd;
  background: #ffffff;
  color: var(--text);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 0 0 16px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

/* =========================
   How it works
========================= */

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

.step-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

/* =========================
   Comparison table
========================= */

.table-card {
  padding: 0;
  overflow: hidden;
}

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

.comparison-table,
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--panel);
}

.comparison-table th,
.comparison-table td,
th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table thead th,
th {
  color: var(--muted);
  font-weight: 600;
  background: #f8fafc;
}

.comparison-table tbody tr:hover {
  background: #f8fbfd;
}

/* =========================
   Legacy / content layouts
========================= */

.layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 88px;
  padding: 18px;
}

.side-nav h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

.side-nav ol,
.side-nav ul {
  margin: 0;
  padding-left: 18px;
}

.side-nav li {
  margin: 8px 0;
}

.content {
  padding: 26px;
}

.content section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.content h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.content h3 {
  margin: 18px 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul,
.content ol {
  padding-left: 20px;
}

.note,
.warning,
.contact-box {
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 18px;
}

.note {
  background: #f5f8fc;
  border: 1px solid #d7e2ee;
}

.warning {
  background: #fff8ef;
  border: 1px solid #f1d4a8;
}

.contact-box {
  background: #f8fafc;
  border: 1px solid var(--line);
}

/* =========================
   Legal pages
========================= */

.legal-shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 20px 70px;
}

.legal-hero,
.legal-intro {
  margin-bottom: 28px;
}

.legal-kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

.legal-shell h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.legal-shell > p,
.legal-intro p,
.legal-updated,
.legal-meta {
  color: var(--muted);
  font-size: 17px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-aside,
.toc-card {
  position: sticky;
  top: 96px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px;
}

.legal-aside h2,
.toc-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-aside ol,
.legal-aside ul,
.toc-card ol,
.toc-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-aside li,
.toc-card li {
  margin: 8px 0;
}

.legal-content,
.legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 30px;
}

.legal-content section + section,
.legal-card section + section,
.legal-content article + article {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2,
.legal-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.legal-content h3,
.legal-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-content ul,
.legal-content ol,
.legal-card ul,
.legal-card ol {
  padding-left: 22px;
}

.legal-content table,
.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  background: var(--panel);
}

.legal-content th,
.legal-content td,
.legal-card th,
.legal-card td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.legal-content th,
.legal-card th {
  color: var(--muted);
  font-weight: 600;
  background: #f8fafc;
}

/* fallback styling if legal pages use generic main/article/aside classes */
main.legal-page,
main.legal,
body.legal-page main,
body.legal main {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 20px 70px;
}

main.legal-page article,
main.legal article,
body.legal-page main article,
body.legal main article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 30px;
}

main.legal-page h1,
main.legal h1,
body.legal-page main h1,
body.legal main h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

main.legal-page h2,
main.legal h2,
body.legal-page main h2,
body.legal main h2 {
  margin: 28px 0 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

main.legal-page h3,
main.legal h3,
body.legal-page main h3,
body.legal main h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

main.legal-page p,
main.legal p,
main.legal-page li,
main.legal li,
body.legal-page main p,
body.legal-page main li,
body.legal main p,
body.legal main li {
  color: var(--muted);
}

/* =========================
   Footer
========================= */

.site-footer,
.footer {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-content: flex-start;
}

.footer-links a {
  color: var(--text);
  font-size: 15px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1080px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 940px) {
  .grid.three,
  .grid.two,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .layout,
  .hero-grid,
  .inspection-panel,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .side-nav,
  .legal-aside,
  .toc-card {
    position: static;
  }

  .footer-row {
    flex-direction: column;
  }

  .hero-shot-wrap {
    justify-content: center;
  }

  .hero-shot {
    max-width: 380px;
  }

  .section-head.center {
    max-width: 760px;
  }

  .cta-card h2 {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding-top: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

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

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .page-intro {
    font-size: 17px;
  }

  .card,
  .step-card,
  .price-card,
  .form-card,
  .faq-item,
  .legal-content,
  .legal-card,
  main.legal-page article,
  main.legal article,
  body.legal-page main article,
  body.legal main article {
    padding: 20px;
    border-radius: 20px;
  }

  .cta-card {
    padding: 34px 22px;
  }

  .cta-card h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-shot {
    max-width: 340px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 13px;
  }

  .shot-grid {
    grid-template-columns: 1fr;
  }

  .app-shot {
    height: auto;
    object-fit: contain;
  }

  .legal-shell,
  main.legal-page,
  main.legal,
  body.legal-page main,
  body.legal main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .content {
    padding: 20px;
  }

  .site-shell,
  .container,
  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .grid.four {
    grid-template-columns: 1fr;
  }

  .comparison-table,
  table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td,
  th,
  td {
    padding: 12px 12px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .brand-logo {
    height: 30px;
  }

  .brand-context {
    min-height: 24px;
    padding: 0 8px;
    font-size: 11px;
  }

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    font-size: 13px;
  }

  .btn {
    width: 100%;
  }

  .hero-shot {
    width: 100%;
    max-width: 100%;
  }

  .legal-shell,
  main.legal-page,
  main.legal,
  body.legal-page main,
  body.legal main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .legal-content h2,
  .legal-card h2,
  main.legal-page h2,
  main.legal h2,
  body.legal-page main h2,
  body.legal main h2 {
    font-size: 24px;
  }
}