:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --surface-soft: #eeebe3;
  --ink: #141412;
  --muted: #6b6961;
  --muted-2: #918e84;
  --line: #ded9cf;
  --accent: #0c7a5a;
  --accent-dark: #075f46;
  --accent-soft: #e7f3ee;
  --danger: #b42318;
  --warning: #946200;
  --focus: rgba(12, 122, 90, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 22px 70px rgba(32, 30, 25, 0.09);
  --shadow-card: 0 16px 40px rgba(32, 30, 25, 0.08);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(12, 122, 90, 0.08), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 48rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

main {
  min-width: 0;
  overflow-x: clip;
}

button,
input {
  font: inherit;
}

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(222, 217, 207, 0.76);
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.action-row,
.footer-links,
.quiz-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 18px;
  font-weight: 820;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 10px 26px rgba(20, 20, 18, 0.14);
}

.nav-links {
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.nav-links a,
.header-action,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.hero {
  width: min(var(--container), calc(100% - 40px));
  min-height: min(720px, calc(100svh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 90px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.quiz-kicker,
.price-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.14;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.action-row {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.16;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.choice:focus-visible,
.field input:focus,
.field textarea:focus,
summary:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 2px;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(12, 122, 90, 0.22);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.final-cta .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
  box-shadow: none;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(222, 217, 207, 0.74);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 20, 18, 0.18), rgba(20, 20, 18, 0.62)),
    url("/assets/hero-moving-camera.png") center / cover;
  box-shadow: var(--shadow-soft);
}

.camera-card,
.status-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  color: #fff;
  background: rgba(20, 20, 18, 0.38);
  backdrop-filter: blur(18px);
}

.camera-card {
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 22px;
}

.camera-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.camera-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.live-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 999px;
  background: #43df94;
  box-shadow: 0 0 0 8px rgba(67, 223, 148, 0.18);
}

.status-card {
  top: 22px;
  right: 22px;
  min-width: 150px;
  padding: 16px 18px;
}

.status-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 720;
}

.status-card strong {
  font-size: 30px;
  line-height: 1;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0;
  scroll-margin-top: 96px;
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto clamp(28px, 5vw, 48px);
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.feature-grid,
.process-grid,
.included-grid,
.privacy-grid,
.service-grid,
.task-grid,
.role-grid {
  display: grid;
  gap: 16px;
}

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

.service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.service-card,
.role-card,
.quiz,
.price-panel,
.task-panel,
.task-summary,
.included-grid div,
.process-grid article,
.privacy-grid article,
.faq-list details {
  border: 1px solid rgba(222, 217, 207, 0.86);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.services-section {
  padding-top: clamp(36px, 6vw, 78px);
}

.service-card {
  grid-column: span 4;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.service-card-large {
  grid-column: span 6;
  min-height: 270px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.17), transparent 18rem),
    #181816;
}

.service-grid .service-card:nth-child(2) {
  grid-column: span 6;
  min-height: 270px;
}

.service-card span,
.role-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card-large span,
.service-card-large p,
.service-card-large a {
  color: rgba(255, 255, 255, 0.82);
}

.service-card h3,
.role-card h3 {
  margin-top: 22px;
}

.service-card p,
.role-card p {
  color: var(--muted);
}

.service-card-large p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card a {
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: none;
}

.service-card-large a {
  color: #fff;
}

.trust-band {
  padding-top: clamp(54px, 8vw, 96px);
}

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

.trust-band .feature-card {
  min-height: 220px;
}

.concierge-section {
  padding-top: 0;
}

.concierge-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(222, 217, 207, 0.86);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(12, 122, 90, 0.12), transparent 24rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.concierge-panel h2 {
  margin-bottom: 0;
}

.concierge-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.tasks-section {
  padding-top: clamp(42px, 6vw, 80px);
}

.task-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 20px;
  align-items: start;
}

.task-panel,
.task-summary {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

.task-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.task-panel-head h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.task-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.task-choice {
  min-width: 0;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
  overflow-wrap: anywhere;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.task-choice:hover {
  transform: translateY(-1px);
  border-color: #c9c2b5;
}

.task-choice.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.task-choice span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.task-choice strong {
  font-size: 18px;
  line-height: 1.1;
}

.task-choice small {
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.28;
}

.task-details-field {
  margin-bottom: 16px;
}

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

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.task-summary {
  position: sticky;
  top: 96px;
}

.task-summary strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
}

.task-summary-lines {
  display: grid;
  gap: 0;
}

.task-summary-lines p {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.feature-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.feature-card span,
.process-grid span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 850;
}

.feature-card h3 {
  margin-top: 34px;
}

.feature-card p,
.process-grid p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.quiz-section {
  width: 100%;
  max-width: none;
  padding: clamp(72px, 9vw, 118px) max(20px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(12, 122, 90, 0.08), rgba(12, 122, 90, 0.03)),
    #eef5f1;
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  gap: 20px;
  align-items: start;
}

.quiz,
.price-panel {
  min-width: 0;
  box-shadow: var(--shadow-soft);
}

.quiz {
  display: grid;
  grid-template-rows: auto auto minmax(280px, 1fr) auto auto;
  min-height: 590px;
  padding: clamp(22px, 4vw, 38px);
}

.quiz-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.quiz-head h3 {
  margin-bottom: 0;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.03;
}

.step-pill {
  flex: 0 0 auto;
  min-width: 74px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--surface-soft);
  font-weight: 850;
  text-align: center;
}

.progress {
  height: 8px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbe8e2;
}

.progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 180ms ease;
}

.step-body {
  min-width: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

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

.choice {
  min-width: 0;
  min-height: 92px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  text-align: left;
  overflow-wrap: anywhere;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.choice:hover {
  transform: translateY(-1px);
  border-color: #c9c2b5;
}

.choice.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.area-grid > .choice {
  grid-column: span 2;
}

.choice span,
.choice-main {
  display: block;
  font-weight: 850;
}

.choice-main {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.03;
}

.choice .unit-inline {
  display: inline;
  font-size: 0.72em;
}

.choice small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.step-note,
.condition-note,
.quiz-error {
  color: var(--muted);
  font-size: 15px;
}

.step-note {
  margin-bottom: 16px;
}

.segment-group {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.segment-group legend,
.field span {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 820;
}

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

.segments .choice {
  min-height: 58px;
  align-content: center;
  justify-items: center;
  padding: 14px 16px;
  text-align: center;
}

.condition-note {
  margin: 4px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(148, 98, 0, 0.22);
  border-radius: var(--radius-md);
  color: #684600;
  background: #fff7df;
  font-weight: 680;
}

.fields {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  background: #fff;
}

.field input {
  min-height: 56px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.consent {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.quiz-error {
  margin: 16px 0 0;
  color: var(--danger);
  font-weight: 760;
}

.quiz-actions {
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.quiz-actions .button {
  min-width: min(190px, 48%);
}

.price-panel {
  position: sticky;
  top: 96px;
  padding: clamp(24px, 3vw, 34px);
}

.price-panel strong {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.price-lines {
  display: grid;
  gap: 0;
  margin-bottom: 20px;
}

.price-lines p {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-note {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 780;
}

.success-state {
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.success-state h3 {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
}

.success-state p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.success-price {
  color: var(--accent-dark) !important;
  font-weight: 850;
}

.split-section,
.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.team-section {
  padding-bottom: clamp(48px, 7vw, 86px);
}

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

.role-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
}

.role-card h3 {
  font-size: clamp(27px, 3vw, 38px);
}

.role-card p {
  margin-bottom: 0;
}

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

.included-grid div {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 22px;
  font-weight: 800;
}

.process-section {
  width: 100%;
  max-width: none;
  padding: clamp(76px, 10vw, 124px) max(20px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: #181816;
}

.process-section .eyebrow,
.final-cta .eyebrow {
  color: #9ee7c8;
}

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

.process-grid-compact article {
  min-height: 160px;
}

.process-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 28px);
  color: var(--ink);
  background: #fbfaf7;
}

.process-grid h3 {
  margin-bottom: 0;
}

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

.privacy-grid article {
  padding: clamp(22px, 3vw, 30px);
}

.privacy-grid li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 650;
}

.privacy-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.faq-list {
  width: min(900px, 100%);
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

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

.faq-list p {
  padding: 0 24px 22px;
}

.final-cta {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto clamp(42px, 7vw, 80px);
  padding: clamp(42px, 6vw, 72px);
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.16), transparent 28rem),
    var(--accent-dark);
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  max-width: 860px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(20px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 84px) max(20px, 5vw);
}

.legal-page h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
}

.legal-page h2 {
  font-size: clamp(24px, 4vw, 34px);
}

.legal-page section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-page li {
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .quiz-layout,
  .task-layout,
  .split-section,
  .video-section,
  .trust-band,
  .concierge-panel {
    grid-template-columns: 1fr;
  }

  .price-panel {
    position: static;
  }

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

  .service-card,
  .service-card-large,
  .service-grid .service-card:nth-child(2) {
    grid-column: auto;
    min-height: 220px;
  }
}

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

  .nav-links {
    display: none;
  }

  .feature-grid,
  .trust-band .feature-grid,
  .process-grid,
  .privacy-grid,
  .task-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .process-grid article,
  .service-card,
  .service-card-large,
  .role-card {
    min-height: 0;
  }

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

  .area-grid > .choice {
    grid-column: auto;
  }

  .choice {
    min-height: 76px;
  }

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

  .task-summary {
    position: static;
  }

  .service-card-large {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-action {
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero,
  .section,
  .final-cta {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .lead {
    font-size: 18px;
  }

  .action-row,
  .quiz-actions,
  .task-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .quiz-actions .button,
  .task-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 340px;
    border-radius: 24px;
  }

  .camera-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .status-card {
    top: 14px;
    right: 14px;
  }

  .quiz-section,
  .process-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quiz {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
    border-radius: 24px;
  }

  .quiz-head {
    align-items: flex-start;
  }

  .step-pill {
    min-width: 64px;
    padding: 8px 10px;
    font-size: 14px;
  }

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

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

  .privacy-grid article,
  .price-panel,
  .task-panel,
  .task-summary,
  .feature-card,
  .service-card,
  .role-card,
  .included-grid div,
  .process-grid article,
  .faq-list summary,
  .faq-list p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .task-panel-head {
    align-items: flex-start;
  }

  .task-fields {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .hero,
  .section,
  .final-cta {
    width: calc(100% - 24px);
  }

  .quiz-section,
  .process-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quiz-head {
    flex-direction: column;
  }
}
