/* RestauOS public marketing site — navy / orange brand */
:root {
  --stone: #F4F6F9;
  --stone-2: #E8ECF1;
  --white: #FFFFFF;
  --ink: #0B1F3A;
  --ink-soft: #163A66;
  --muted: #64748B;
  --line: #D7DEE8;
  --teal: #F58220;
  --teal-bright: #D96E10;
  --teal-soft: rgba(245, 130, 32, 0.14);
  --navy: #0B1F3A;
  --orange: #F58220;
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, "Noto Sans", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--ink);
}
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section--tight { padding: 3.5rem 0; }
.section--stone { background: var(--stone); }
.section--white { background: var(--white); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.lead { font-size: 1.125rem; max-width: 40rem; color: var(--muted); }
.section-head { max-width: 38rem; margin-bottom: 2.75rem; }
.section-head h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 245, 247, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.92); }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, var(--navy), #163a66);
  border: 1px solid rgba(245, 130, 32, 0.55);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links > a,
.nav-drop > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  border: 0;
  background: transparent;
}
.nav-links > a:hover,
.nav-drop > summary:hover,
.nav-links > a.is-active {
  color: var(--ink);
  background: var(--teal-soft);
}
.nav-drop { position: relative; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop[open] > summary { color: var(--ink); background: var(--teal-soft); }
.nav-panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 12.5rem;
  padding: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.nav-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.nav-panel a:hover { background: var(--stone); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--teal-bright); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); background: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--ink); color: var(--white); }
.btn-ghost { background: transparent; color: var(--teal); padding-inline: 0.4rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Hero — full-bleed plane */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(15, 118, 110, 0.1), transparent 50%),
    linear-gradient(165deg, #F7FAFB 0%, #EEF3F5 45%, #E3EBEE 100%);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: end;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1rem;
  color: var(--ink);
}
.hero h1 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 560;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}
.hero .lead { margin-bottom: 1.75rem; }
.hero-visual {
  position: relative;
  min-height: 320px;
}
.hero-visual .device-stack {
  animation: float-mock 7s ease-in-out infinite;
}

@keyframes float-mock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fade-up 0.85s var(--ease) both;
}
.fade-up-delay { animation-delay: 0.12s; }
.fade-up-delay-2 { animation-delay: 0.24s; }

/* Device frames / mocks */
.device-stack { position: relative; }
.device {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.device--pos { width: 100%; max-width: 440px; margin-left: auto; }
.device--kds { width: 78%; max-width: 340px; position: absolute; left: 0; bottom: -1.5rem; }
.device-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: var(--stone);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}
.device-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--line);
}
.device-dot:nth-child(1) { background: #F5A89A; }
.device-dot:nth-child(2) { background: #E8D08A; }
.device-dot:nth-child(3) { background: #9ED4B8; }
.device-screen { padding: 0.85rem; background: linear-gradient(180deg, #FAFCFC, #F2F5F7); }
.mock-grid { display: grid; gap: 0.45rem; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.75rem;
}
.mock-pill {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 600;
}
.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--stone-2);
  overflow: hidden;
}
.mock-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 4px;
}
.mock-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.mock-tile {
  padding: 0.65rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.7rem;
}
.mock-tile strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.15rem; }

/* Grids & tiles */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tile {
  display: block;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.tile:hover {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.tile h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.tile p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.tile-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  counter-reset: step;
}
.workflow-step {
  position: relative;
  padding: 1.25rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.workflow-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.workflow-step h3 { font-size: 1rem; }
.workflow-step p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* Feature list rows */
.feature-list { display: grid; gap: 0.85rem; }
.feature-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row h3 { font-size: 1rem; margin: 0; }
.feature-row p { margin: 0; font-size: 0.92rem; color: var(--muted); }

/* Pricing */
.pricing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.pricing-toolbar label { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-right: 0.5rem; }
.pricing-toolbar select {
  font: inherit;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--stone);
  color: var(--ink);
}
.billing-toggle {
  display: inline-flex;
  padding: 0.25rem;
  background: var(--stone);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.billing-toggle button {
  border: 0;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}
.billing-toggle button.is-active {
  background: var(--ink);
  color: white;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.plan-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.plan-card.is-highlight {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow);
}
.plan-card h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.plan-tagline { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; min-height: 2.6em; }
.plan-price {
  font-family: var(--font-display);
  font-size: 2.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}
.plan-price .period { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); font-weight: 500; }
.plan-price[data-billing="annual"] .monthly-only { display: none; }
.plan-price[data-billing="monthly"] .annual-only { display: none; }
body[data-billing="annual"] .monthly-only { display: none !important; }
body[data-billing="monthly"] .annual-only { display: none !important; }
.plan-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.25rem; }
.plan-features { flex: 1; margin-bottom: 1.5rem; }
.plan-features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--stone-2);
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal-bright);
}
.addons-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.addons-table th,
.addons-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.addons-table th {
  background: var(--stone);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.addons-table tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; max-width: 48rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Quotes */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.quote {
  padding: 1.4rem;
  background: var(--white);
  border-top: 3px solid var(--teal);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.quote p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1rem; }
.quote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}
.quote cite strong { display: block; color: var(--ink); font-size: 0.9rem; }

/* Forms */
.form-card {
  max-width: 36rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 0.95rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--stone);
  color: var(--ink);
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(20, 184, 166, 0.35);
  border-color: var(--teal);
  background: var(--white);
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.flash {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.flash-ok { background: rgba(20, 184, 166, 0.15); color: var(--teal); }
.flash-err { background: #FDECEC; color: #9B2C2C; }
.contact-aside p { margin-bottom: 0.5rem; }
.contact-aside a { font-weight: 600; }

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(20, 184, 166, 0.12), transparent 55%),
    linear-gradient(180deg, #F7FAFB, var(--stone));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 16ch; }
.page-hero .lead { margin-bottom: 0; }

/* CTA band */
.cta-band {
  padding: 4rem 0;
  background: var(--ink);
  color: white;
}
.cta-band h2 { color: white; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-band p { color: rgba(255,255,255,0.72); max-width: 34rem; }
.cta-band .btn-primary { background: var(--orange); color: #fff; }
.cta-band .btn-primary:hover { background: white; color: var(--navy); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.25); color: white; }

/* Footer */
.site-footer {
  background: #071326;
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.site-footer .brand { color: white; margin-bottom: 0.85rem; }
.site-footer p { color: rgba(255,255,255,0.62); font-size: 0.9rem; }
.site-footer h4 {
  color: white;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 0.25rem 0;
}
.site-footer a:hover { color: var(--teal-bright); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
}
.legal-copy {
  max-width: 44rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.legal-copy h2 { font-size: 1.25rem; margin-top: 2rem; }
.legal-copy ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.legal-copy li { margin-bottom: 0.4rem; }

.host-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 100%;
}
.host-card h3 { font-size: 1.25rem; }
.host-card dl { margin: 1rem 0 0; }
.host-card dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal);
  margin-top: 0.85rem;
}
.host-card dd { margin: 0.25rem 0 0; font-size: 0.9rem; color: var(--muted); }

.integ-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero-inner, .split, .grid-3, .plan-grid, .quote-grid, .workflow, .grid-4, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .workflow { grid-template-columns: 1fr 1fr; }
  .device--kds { position: relative; left: auto; bottom: auto; width: 100%; max-width: none; margin-top: 1rem; }
  .hero-visual { min-height: 0; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 4.25rem;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.15rem;
    box-shadow: var(--shadow);
  }
  .nav-drop .nav-panel {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.75rem;
  }
  .hero-inner, .split, .grid-3, .plan-grid, .quote-grid, .grid-2, .grid-4, .footer-grid, .form-grid.two, .feature-row {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; align-items: start; }
  .hero-inner { padding-top: 3rem; }
  .pricing-toolbar { flex-direction: column; align-items: stretch; }
}
