:root {
  --paper: #f7f4ed;
  --paper-strong: #ece7db;
  --surface: #ffffff;
  --ink: #17201c;
  --muted: #63716b;
  --line: #ded7ca;
  --green: #0f8f72;
  --green-dark: #0b624f;
  --mint: #dff5ec;
  --blue: #1d6fdd;
  --coral: #f36b4f;
  --gold: #f2b843;
  --shadow: 0 24px 80px rgba(23, 32, 28, 0.14);
  --container: min(1160px, calc(100vw - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100vw - 28px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(222, 215, 202, 0.82);
  border-radius: 8px;
  background: rgba(247, 244, 237, 0.92);
  box-shadow: 0 10px 34px rgba(23, 32, 28, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 35%),
    var(--green);
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.1);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  background: #fff;
}

.brand-mark::before {
  top: 8px;
  left: 9px;
  width: 5px;
  height: 18px;
  border-radius: 5px;
}

.brand-mark::after {
  right: 8px;
  bottom: 8px;
  width: 12px;
  height: 12px;
  border: 4px solid #fff;
  border-left: 0;
  border-bottom: 0;
  border-radius: 2px;
  background: transparent;
}

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

.nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: #32413b;
  font-size: 0.95rem;
}

.nav a:hover {
  background: rgba(15, 143, 114, 0.09);
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 26px rgba(23, 32, 28, 0.18);
}

.header-cta:hover,
.button-primary:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 86vh;
  margin-top: -86px;
  padding: 160px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 244, 237, 0.58), rgba(247, 244, 237, 0.95)),
    repeating-linear-gradient(90deg, rgba(23, 32, 28, 0.04) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(23, 32, 28, 0.035) 0 1px, transparent 1px 84px),
    linear-gradient(135deg, #fff8ed 0%, #edf8f2 48%, #f7f4ed 100%);
}

.hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.phone-scene {
  position: absolute;
  top: 110px;
  left: max(1000px, calc((100vw - 1180px) / 2 + 850px));
  width: 500px;
  height: 650px;
}

.phone-shell {
  position: absolute;
  right: 76px;
  top: 36px;
  width: 285px;
  height: 575px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 28, 0.18);
  border-radius: 38px;
  background: #18221f;
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.phone-notch {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 50%;
  width: 74px;
  height: 21px;
  border-radius: 0 0 16px 16px;
  background: #18221f;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 38px 18px 18px;
  border-radius: 29px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 30%),
    #f5f0e7;
  color: var(--ink);
}

.screen-top,
.metric-row,
.sync-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.screen-top span,
.metric-row span,
.sync-line b,
.panel-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.activity-ring {
  display: grid;
  place-items: center;
  align-content: center;
  width: 176px;
  height: 176px;
  margin: 34px auto 24px;
  border: 16px solid #dfe4dd;
  border-top-color: var(--green);
  border-right-color: var(--coral);
  border-radius: 50%;
}

.activity-ring span {
  font-size: 2.1rem;
  font-weight: 850;
}

.activity-ring small {
  color: var(--muted);
}

.metric-row > div {
  flex: 1;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 28, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.metric-row strong {
  display: block;
  margin-top: 9px;
  font-size: 1.1rem;
}

.chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 110px;
  margin: 22px 0;
  padding: 16px 14px;
  border-radius: 8px;
  background: #17201c;
}

.chart i {
  flex: 1;
  min-width: 0;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.sync-line {
  padding: 13px 14px;
  border-radius: 8px;
  background: var(--mint);
}

.sync-line span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(15, 143, 114, 0.14);
}

.floating-panel {
  position: absolute;
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 18px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(23, 32, 28, 0.12);
  backdrop-filter: blur(14px);
}

.floating-panel strong {
  font-size: 2rem;
}

.floating-panel small {
  color: var(--muted);
}

.panel-left {
  left: 18px;
  top: 290px;
}

.panel-right {
  right: 0;
  top: 184px;
  border-top: 4px solid var(--coral);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-right: min(360px, 32vw);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 880;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 10px;
  color: #26332f;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 760;
  line-height: 1.28;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.button-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(15, 143, 114, 0.24);
}

.button-secondary {
  border-color: rgba(23, 32, 28, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 690px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-stats dt {
  font-size: 1.45rem;
  font-weight: 880;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

.intro-band {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.intro-grid p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.intro-grid a {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  font-weight: 750;
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow) {
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.case-card,
.price-card,
.legal-card,
.contact-form,
.contact-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-card {
  min-height: 250px;
  padding: 24px;
}

.feature-card.wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(15, 143, 114, 0.12), rgba(242, 184, 67, 0.12)),
    rgba(255, 255, 255, 0.8);
}

.feature-icon {
  display: inline-block;
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--ink);
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.feature-icon.workout::before {
  inset: 18px 7px;
  border-radius: 8px;
  background: #fff;
}

.feature-icon.workout::after {
  top: 10px;
  left: 18px;
  width: 6px;
  height: 22px;
  border-radius: 4px;
  background: var(--gold);
}

.feature-icon.calories {
  background: var(--coral);
}

.feature-icon.calories::before {
  left: 13px;
  bottom: 9px;
  width: 16px;
  height: 22px;
  border-radius: 16px 16px 12px 12px;
  background: #fff;
}

.feature-icon.calories::after {
  top: 7px;
  left: 18px;
  width: 8px;
  height: 12px;
  border-radius: 8px 8px 0 8px;
  background: var(--gold);
}

.feature-icon.sync {
  background: var(--blue);
}

.feature-icon.sync::before {
  inset: 10px;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-radius: 999px;
}

.feature-icon.sync::after {
  right: 8px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.feature-icon.analytics {
  background: var(--green);
}

.feature-icon.analytics::before {
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 20px;
  background:
    linear-gradient(90deg, #fff 0 4px, transparent 4px 9px, #fff 9px 13px, transparent 13px 18px, #fff 18px 22px);
}

.feature-icon.cloud {
  background: var(--gold);
}

.feature-icon.cloud::before {
  left: 9px;
  top: 17px;
  width: 25px;
  height: 14px;
  border-radius: 14px;
  background: #fff;
}

.feature-icon.cloud::after {
  left: 14px;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 8px 4px 0 #fff;
}

.cloud-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(223, 245, 236, 0.76)),
    var(--paper-strong);
}

.cloud-layout,
.split-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

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

.cloud-checks div {
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 8px;
  background: #fff;
}

.cloud-checks strong,
.cloud-checks span,
.footer strong,
.footer span,
.footer a {
  display: block;
}

.cloud-checks strong {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.cloud-checks span {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  background: var(--surface);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.store-row span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 760;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}

.timeline p {
  margin: 0;
}

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

.case-card {
  min-height: 260px;
  padding: 30px;
}

.case-card span {
  color: var(--green-dark);
  font-weight: 850;
}

.case-card h3 {
  max-width: 520px;
  margin: 26px 0 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.case-card.accent {
  background: var(--ink);
  color: #fff;
}

.case-card.accent p,
.case-card.accent span {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(236, 231, 219, 0.7)),
    var(--paper);
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(15, 143, 114, 0.42);
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 143, 114, 0.16);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.price {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.price-card li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
}

.price-card.featured a {
  border-color: transparent;
  background: var(--green);
  color: #fff;
}

.about-section {
  background: var(--surface);
}

.legal-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  background: var(--line);
}

.legal-card div {
  min-height: 110px;
  padding: 22px;
  background: #fff;
}

.legal-card dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.legal-card dd {
  margin: 0;
  font-weight: 820;
  line-height: 1.4;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(15, 143, 114, 0.11), rgba(242, 184, 67, 0.12)),
    var(--paper);
}

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

.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-note span {
  color: var(--muted);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

label span {
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8d0c2;
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
  outline: none;
}

input,
select {
  min-height: 50px;
  padding: 0 13px;
}

textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 143, 114, 0.12);
}

.consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
}

.consent a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-submit {
  width: fit-content;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.form-status {
  min-height: 25px;
  margin: 0;
  font-weight: 720;
}

.form-status[data-type="success"] {
  color: var(--green-dark);
}

.form-status[data-type="error"] {
  color: #b83b24;
}

.footer {
  padding: 54px 0 28px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
}

.footer p,
.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer strong {
  margin-bottom: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: var(--container);
  margin: 54px auto 90px;
}

.legal-document {
  max-width: 900px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-document h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.legal-document h2 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-date {
  color: var(--green-dark);
  font-weight: 780;
}

@media (max-width: 1300px) {
  h1 {
    max-width: 800px;
    font-size: 5.25rem;
  }
}

@media (max-width: 1040px) {
  h1 {
    max-width: 760px;
    font-size: 4.25rem;
  }

  .hero-content {
    padding-right: 0;
  }

  .phone-scene {
    left: auto;
    opacity: 0.22;
    right: -40px;
    width: 520px;
  }

  .floating-panel {
    display: none;
  }

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

  .price-card.featured {
    grid-row: span 1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 680px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(23, 32, 28, 0.14);
  }

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

  .menu-button {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 142px 0 56px;
  }

  h1 {
    font-size: 3.55rem;
    line-height: 0.98;
  }

  .hero-actions,
  .store-row,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .form-submit {
    width: 100%;
  }

  .hero-stats,
  .intro-grid,
  .cloud-layout,
  .split-layout,
  .about-layout,
  .contact-layout,
  .cases-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .cloud-checks,
  .legal-card,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    grid-column: span 1;
  }

  .section {
    padding: 68px 0;
  }

  .intro-grid a {
    width: fit-content;
  }

  .phone-scene {
    display: none;
  }

  .legal-document {
    padding: 28px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100vw - 20px);
    margin-top: 10px;
    padding-left: 12px;
  }

  .brand {
    font-size: 1rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.95rem;
  }

  .hero-stats div,
  .feature-card,
  .case-card,
  .price-card,
  .contact-form {
    padding: 20px;
  }

  .case-card h3 {
    font-size: 2rem;
  }

  .legal-main {
    margin-top: 32px;
  }

  .legal-document {
    padding: 22px;
  }
}
