:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f6f7f4;
  --surface-strong: #e8eee9;
  --text: #17202a;
  --muted: #56616c;
  --line: #d8dedb;
  --accent: #0f6b5c;
  --accent-dark: #0a4c42;
  --accent-soft: #e8f4f1;
  --warning: #d78b2a;
  --ink: #111827;
  --success: #147a52;
  --shadow: 0 20px 50px rgba(23, 32, 42, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.site-header,
.site-footer,
.section,
.problem-section,
.calculator-section,
.product-section,
.call-demo-section,
.trust-section,
.sms-disclosure,
.contact-band,
.page {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.92rem;
}

.brand-stack {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-stack strong {
  color: var(--text);
  font-size: 1.02rem;
}

.brand-stack small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.product-brand-mark {
  background: var(--school-blue, var(--ink));
}

.rebound-brand-mark {
  background: var(--accent);
}

.vocal-brand-mark {
  background: #5b4b8a;
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.menu-nav {
  position: relative;
  justify-content: flex-end;
}

.menu-trigger {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.06);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: transform 160ms ease, visibility 160ms ease;
}

.menu-panel::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.menu-nav:hover .menu-panel,
.menu-nav:focus-within .menu-panel,
.menu-trigger:focus + .menu-panel {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-nav:hover .menu-trigger,
.menu-trigger:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}

.menu-panel a {
  padding: 10px 12px;
  border-radius: 8px;
}

.product-menu {
  position: relative;
}

.product-menu-trigger {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.product-menu-trigger::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.product-menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  display: grid;
  gap: 6px;
  min-width: 265px;
  margin-top: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(23, 32, 42, 0.12);
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: transform 160ms ease, visibility 160ms ease;
}

.product-menu:hover .product-menu-list,
.product-menu:focus-within .product-menu-list {
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.product-menu-item {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
}

.product-menu-item strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.1;
}

.product-menu-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.product-menu-item-muted {
  opacity: 0.72;
  cursor: default;
}

.product-menu:hover .product-menu-trigger,
.product-menu:focus-within .product-menu-trigger {
  color: var(--accent);
  background: var(--accent-soft);
}

.product-menu-item:hover,
.product-menu-item:focus-visible {
  background: var(--accent-soft);
  text-decoration: none;
  outline: none;
}

.menu-panel a:hover,
.menu-panel a:focus-visible,
.menu-panel a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
  outline: none;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a[aria-current="page"],
.nav a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 92px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: 28px;
  margin-top: 0;
  padding: 80px max(20px, calc((100% - var(--max)) / 2)) 38px;
  overflow: hidden;
  color: #ffffff;
  background: #101820;
}

.company-page {
  background: #ffffff;
}

.company-hero {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 44px;
  align-items: center;
  min-height: min(690px, calc(100vh - 92px));
  padding: 78px max(20px, calc((100% - var(--max)) / 2)) 62px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.96), rgba(15, 107, 92, 0.72)),
    linear-gradient(30deg, rgba(36, 87, 166, 0.58), rgba(215, 139, 42, 0.22));
}

.company-hero-copy {
  max-width: 760px;
}

.company-hero .eyebrow {
  color: #9ee7dc;
}

.company-hero .hero-subtitle {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
}

.company-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.company-system {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

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

.system-node {
  display: grid;
  gap: 6px;
  min-height: 130px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.system-node:hover {
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.18);
}

.system-node span,
.system-node small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.system-node span {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.system-node strong {
  font-size: 1.3rem;
  line-height: 1.1;
}

.main-node {
  min-height: 110px;
  background: rgba(255, 255, 255, 0.18);
}

.company-products,
.company-positioning {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 70px 0;
}

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

.company-product-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.05);
}

.company-product-grid p {
  margin: 0;
  color: var(--muted);
}

.product-label {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 8px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-product-grid .button {
  width: fit-content;
  margin-top: 6px;
}

.company-positioning {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.company-positioning p {
  color: var(--muted);
}

.product-page {
  --school-ink: #1b2230;
  --school-blue: #2457a6;
  --school-green: #247a5b;
  --school-gold: #d8a238;
  --school-soft: #eef4fb;
}

.vocal-page {
  --school-blue: #5b4b8a;
  --school-green: #6f8f6a;
  --school-gold: #d7a84b;
  --school-soft: #f1eef8;
}

.vocal-hero {
  background:
    linear-gradient(120deg, rgba(32, 28, 46, 0.96), rgba(91, 75, 138, 0.84)),
    linear-gradient(30deg, rgba(111, 143, 106, 0.54), rgba(215, 168, 75, 0.16));
}

.nav-login-link {
  color: var(--school-blue, var(--accent)) !important;
}

.login-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(238, 244, 251, 0.86), rgba(255, 255, 255, 1) 44%),
    #ffffff;
}

.login-header {
  border-bottom: 0;
}

.login-shell {
  width: min(var(--max), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 190px);
  margin-inline: auto;
  padding: 48px 0 70px;
}

.compact-login-shell {
  grid-template-columns: minmax(320px, 460px);
  justify-content: center;
  min-height: calc(100vh - 220px);
}

.login-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.login-panel-heading {
  margin-bottom: 22px;
}

.login-panel-heading h2 {
  font-size: 1.55rem;
}

.login-form {
  display: grid;
  gap: 10px;
}

.login-form label {
  font-weight: 750;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.login-form input:focus {
  border-color: var(--school-blue);
  outline: 3px solid rgba(36, 87, 166, 0.14);
}

.login-checkbox {
  margin-top: 4px;
}

.login-button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
  font: inherit;
}

.login-links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 28, 0.9), rgba(12, 20, 28, 0.65) 48%, rgba(12, 20, 28, 0.28)),
    linear-gradient(0deg, rgba(12, 20, 28, 0.82), rgba(12, 20, 28, 0.08) 48%),
    url("/assets/hero-missed-call.png") center / cover;
  transform: scale(1.02);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee3d4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.16rem;
}

.hero-subtitle {
  margin: 22px 0 12px;
  color: #ffffff;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  font-weight: 700;
}

.hero-copy p:not(.eyebrow):not(.hero-subtitle),
.section > p,
.page-header p,
.legal-content p,
.contact-card p,
.testing-result pre {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

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

.button.primary {
  color: #ffffff;
  background: var(--accent);
}

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

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-signal {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 18, 26, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.signal-row,
.signal-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.message-bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 750;
}

.message-bubble.inbound {
  justify-self: end;
  color: #ffffff;
  background: var(--accent);
}

.signal-footer {
  display: block;
  color: #8ee3d4;
  font-weight: 750;
}

.section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.problem-section,
.calculator-section,
.product-section,
.call-demo-section,
.trust-section {
  padding: 70px 0;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

.problem-copy p,
.calculator-copy p,
.product-copy p,
.trust-section .section-heading p {
  color: var(--muted);
}

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

.problem-grid article,
.trust-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.05);
}

.problem-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--warning);
  font-size: 0.8rem;
  font-weight: 900;
}

.problem-grid p,
.trust-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.calculator-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 40px;
  align-items: center;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  color: #ffffff;
  background: var(--ink);
}

.calculator-section .eyebrow,
.calculator-copy p {
  color: #8ee3d4;
}

.calculator-panel {
  display: grid;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.slider-field {
  display: grid;
  gap: 10px;
}

.slider-field label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.slider-field strong {
  color: #ffffff;
  white-space: nowrap;
}

.slider-field input {
  width: 100%;
  accent-color: #8ee3d4;
}

.calculator-result {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.calculator-result span {
  color: var(--muted);
  font-weight: 750;
}

.calculator-result strong {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.calculator-comparison {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.calculator-comparison > span {
  color: #8ee3d4;
  font-weight: 850;
}

.calculator-comparison p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

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

.comparison-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
}

.comparison-grid small {
  color: var(--muted);
  font-weight: 750;
}

.comparison-grid strong {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.1;
}

.calculator-disclaimer {
  font-size: 0.9rem;
}

.calculator-cta {
  width: fit-content;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--surface);
  font-weight: 750;
}

.demo-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.demo-topbar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.demo-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #9aa6b2;
}

.rebound-demo-stage {
  --demo-cycle: 10s;
  --demo-phone-body: #17191d;
  --demo-phone-edge: #2a2d33;
  --demo-screen: #000000;
  --demo-header: #1c1c1e;
  --demo-green: #34c759;
  --demo-grey: #26252a;
  --demo-ink: #f2f2f7;
  --demo-muted: #8e8e93;
  position: relative;
  display: grid;
  min-height: clamp(600px, 72vw, 710px);
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 8%, rgba(52, 199, 89, 0.16), transparent 34%),
    #0b0e12;
}

.rebound-demo-phone {
  position: absolute;
  width: clamp(250px, 33vw, 330px);
  aspect-ratio: 340 / 694;
  padding: clamp(10px, 1.4vw, 14px);
  border-radius: clamp(38px, 5vw, 52px);
  opacity: 0;
  background: var(--demo-phone-body);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px var(--demo-phone-edge);
}

.rebound-demo-screen {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 38px);
  background: var(--demo-screen);
}

.rebound-demo-notch {
  position: absolute;
  top: clamp(10px, 1.4vw, 14px);
  left: 50%;
  z-index: 5;
  width: 36%;
  height: clamp(18px, 2.8vw, 26px);
  border-radius: 99px;
  background: var(--demo-phone-body);
  transform: translateX(-50%);
}

.rebound-demo-header {
  display: grid;
  gap: 5px;
  flex-shrink: 0;
  padding: clamp(44px, 6vw, 56px) 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--demo-muted);
  background: var(--demo-header);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  line-height: 1.2;
  text-align: center;
}

.rebound-demo-header strong {
  color: var(--demo-ink);
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
}

.rebound-demo-thread {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 16px 13px;
}

.rebound-demo-bubble {
  max-width: 80%;
  margin: 0;
  padding: 9px 13px;
  border-radius: 20px;
  color: var(--demo-ink);
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  line-height: 1.32;
  opacity: 0;
  transform: translateY(8px) scale(0.94);
}

.rebound-demo-bubble.in {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  background: var(--demo-grey);
}

.rebound-demo-bubble.out {
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  color: #ffffff;
  background: var(--demo-green);
}

.rebound-demo-customer {
  animation: reboundCustomerPhone var(--demo-cycle) infinite;
}

.rebound-demo-contractor {
  animation: reboundContractorPhone var(--demo-cycle) infinite;
}

.rebound-demo-bubble.t1 { animation: reboundBubble1 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t2 { animation: reboundBubble2 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t3 { animation: reboundBubble3 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t4 { animation: reboundBubble4 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t5 { animation: reboundBubble5 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t6 { animation: reboundBubble6 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t7 { animation: reboundBubble7 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t8 { animation: reboundBubble8 var(--demo-cycle) infinite; }
.rebound-demo-bubble.t9 { animation: reboundBubble9 var(--demo-cycle) infinite; }

.rebound-demo-lead {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 14px;
}

.rebound-demo-meta {
  margin: 0 0 16px;
  color: var(--demo-muted);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  line-height: 1.5;
  text-align: center;
}

.rebound-demo-lead-card {
  max-width: 90%;
  padding: 15px 16px;
  border-radius: 20px;
  border-bottom-left-radius: 6px;
  color: var(--demo-ink);
  background: var(--demo-grey);
  font-size: clamp(0.7rem, 1.35vw, 0.86rem);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: reboundLeadCard var(--demo-cycle) infinite;
}

.rebound-demo-lead-card strong {
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

.rebound-demo-lead-card p {
  margin: 0 0 5px;
}

.rebound-demo-lead-card span {
  color: var(--demo-muted);
}

.rebound-demo-caption {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  display: grid;
  gap: 4px;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  animation: reboundCaption var(--demo-cycle) infinite;
}

.rebound-demo-caption span {
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(0.62rem, 1.1vw, 0.74rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rebound-demo-caption strong {
  color: #ffffff;
  font-size: clamp(0.95rem, 2vw, 1.18rem);
}

@keyframes reboundCustomerPhone {
  0% { opacity: 0; transform: scale(0.97) translateY(8px); }
  4%, 58% { opacity: 1; transform: scale(1) translateY(0); }
  64%, 100% { opacity: 0; transform: scale(0.97) translateY(-8px); }
}

@keyframes reboundContractorPhone {
  0%, 62% { opacity: 0; transform: scale(0.97) translateY(8px); }
  68%, 97% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.99); }
}

@keyframes reboundBubble1 { 0%, 5%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 8%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble2 { 0%, 10%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 13%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble3 { 0%, 16%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 19%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble4 { 0%, 21%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 24%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble5 { 0%, 27%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 30%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble6 { 0%, 32%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 35%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble7 { 0%, 38%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 41%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble8 { 0%, 43%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 46%, 60% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reboundBubble9 { 0%, 49%, 64%, 100% { opacity: 0; transform: translateY(8px) scale(0.94); } 52%, 60% { opacity: 1; transform: translateY(0) scale(1); } }

@keyframes reboundLeadCard {
  0%, 68% { opacity: 0; transform: translateY(10px) scale(0.96); }
  72%, 96% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(0) scale(1); }
}

@keyframes reboundCaption {
  0%, 76% { opacity: 0; transform: translateY(10px); }
  81%, 96% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .rebound-demo-phone,
  .rebound-demo-bubble,
  .rebound-demo-lead-card,
  .rebound-demo-caption {
    animation: none;
  }

  .rebound-demo-customer,
  .rebound-demo-bubble,
  .rebound-demo-lead-card {
    opacity: 1;
    transform: none;
  }

  .rebound-demo-contractor,
  .rebound-demo-caption {
    display: none;
  }
}

.call-demo-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.pricing-section,
.offer-summary-section,
.rebound-workflow {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: center;
}

.pricing-copy p,
.offer-summary-section p,
.rebound-workflow p {
  color: var(--muted);
}

.pricing-card,
.onboarding-offer-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.offer-badge {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--text);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-card ul,
.onboarding-offer-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.workflow-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.workflow-grid article,
.offer-grid span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.05);
}

.workflow-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--warning);
  font-size: 0.8rem;
  font-weight: 900;
}

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

.offer-grid span {
  font-weight: 750;
}

.early-note,
.demo-disclosure,
.demo-support {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.dark-secondary {
  color: var(--accent);
  border-color: var(--accent);
  background: #ffffff;
}

.call-demo-copy {
  max-width: 720px;
}

.call-demo-copy p {
  color: var(--muted);
}

.call-demo-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.08);
}

.call-demo-card span {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.call-demo-card strong {
  color: var(--text);
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1;
  white-space: nowrap;
}

.demo-phone-number {
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.demo-phone-number:hover {
  color: var(--accent-dark);
}

.call-demo-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.trust-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.trust-grid strong {
  font-size: 1.08rem;
}

.section.alt {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.steps {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0;
  padding-left: 1.5rem;
}

.steps li {
  padding-left: 6px;
  color: var(--text);
  font-weight: 650;
}

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

.card,
.contact-card,
.contact-form,
.testing-form,
.testing-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 32, 51, 0.05);
}

.card {
  padding: 24px;
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
  font-weight: 700;
}

.sms-disclosure {
  margin-top: 56px;
  margin-bottom: 56px;
  padding: 28px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
}

.sms-disclosure h2 {
  font-size: 1.35rem;
}

.sms-disclosure p {
  margin: 12px 0 0;
  color: var(--text);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 64px;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
}

.contact-band .eyebrow,
.contact-band a,
.contact-band p {
  color: #ffffff;
}

.contact-band p {
  margin: 10px 0 0;
}

.contact-links {
  display: grid;
  gap: 8px;
  min-width: min(330px, 100%);
}

.light-button {
  width: fit-content;
  border-color: #ffffff;
  color: var(--ink) !important;
  background: #ffffff !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-hero {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 40px;
  align-items: center;
  min-height: min(690px, calc(100vh - 92px));
  padding: 74px max(20px, calc((100% - var(--max)) / 2)) 58px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(27, 34, 48, 0.96), rgba(36, 87, 166, 0.84)),
    linear-gradient(30deg, rgba(36, 122, 91, 0.62), rgba(216, 162, 56, 0.14));
}

.product-hero-copy {
  max-width: 720px;
}

.product-kicker {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 750;
}

.product-hero .hero-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
}

.product-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.08);
}

.school-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  color: var(--school-ink);
  background: #f4f7fb;
  border-bottom: 1px solid #d9e3ee;
}

.console-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 99px;
  background: #aeb9c7;
}

.console-body {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(36, 87, 166, 0.09), rgba(36, 122, 91, 0.08)),
    #ffffff;
}

.query-card,
.answer-card,
.source-row,
.confidence-row {
  border: 1px solid #d9e3ee;
  border-radius: 8px;
  background: #ffffff;
}

.query-card,
.answer-card {
  padding: 16px;
}

.query-card span,
.answer-card span,
.source-row span,
.confidence-row span {
  display: block;
  margin-bottom: 6px;
  color: #5d6876;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.query-card p,
.answer-card p {
  margin: 0;
  font-weight: 750;
}

.answer-card {
  border-left: 5px solid var(--school-green);
}

.source-row,
.confidence-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
}

.source-row strong,
.confidence-row strong {
  color: var(--school-blue);
  text-align: right;
}

.product-band,
.workflow-section,
.use-case-section,
.school-proof-section {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 70px 0;
}

.product-card-grid,
.use-case-grid {
  display: grid;
  gap: 16px;
}

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

.product-card-grid article,
.workflow-steps article,
.use-case-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 32, 42, 0.05);
}

.card-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--school-gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-card-grid p,
.workflow-copy p,
.workflow-steps p,
.use-case-grid p,
.school-proof-section p {
  color: var(--muted);
}

.workflow-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: var(--school-soft);
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.workflow-steps strong {
  color: var(--school-blue);
  font-size: 1.08rem;
}

.workflow-steps p,
.use-case-grid p {
  margin: 10px 0 0;
}

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

.school-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-list span {
  padding: 10px 12px;
  border: 1px solid #cfdcea;
  border-radius: 8px;
  color: var(--school-ink);
  background: var(--school-soft);
  font-weight: 800;
}

.product-contact-band {
  margin-top: 10px;
}

.page {
  padding: 58px 0 72px;
}

.page-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.page-header p:last-child {
  font-size: 1.12rem;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  color: var(--muted);
}

.message-example {
  margin: 18px 0 0;
  padding: 20px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  color: var(--text);
  background: var(--accent-soft);
}

.message-example p {
  margin: 0;
  color: var(--text);
  font-weight: 650;
}

address {
  color: var(--muted);
  font-style: normal;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

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

.contact-card,
.contact-form,
.testing-form,
.testing-result {
  padding: 26px;
}

.contact-card h2,
.contact-form h2,
.testing-form h2,
.testing-result h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.contact-card p {
  margin: 9px 0;
}

.contact-form,
.testing-form {
  display: grid;
  gap: 10px;
}

.contact-form label,
.testing-form label {
  font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.testing-form input,
.testing-form select,
.testing-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea,
.testing-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.testing-form input:focus,
.testing-form select:focus,
.testing-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(18, 100, 200, 0.15);
}

.testing-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.testing-result {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.testing-result pre {
  min-height: 180px;
  max-height: 420px;
  margin: 0;
  overflow: auto;
  padding: 16px;
  border-radius: 8px;
  background: var(--surface);
  white-space: pre-wrap;
}

.checkbox-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.checkbox-line input {
  min-height: auto;
  margin-top: 4px;
}

.form-button {
  width: fit-content;
  margin-top: 10px;
  cursor: pointer;
  font: inherit;
}

.hero-offer-card {
  display: grid;
  width: fit-content;
  max-width: 100%;
  gap: 5px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(142, 227, 212, 0.34);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(10, 18, 26, 0.58);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-offer-card strong {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.hero-offer-card span:first-child {
  width: fit-content;
  padding: 4px 7px;
  border-radius: 8px;
  color: var(--ink);
  background: #8ee3d4;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.onboarding-page {
  padding-bottom: 70px;
}

.onboarding-header {
  max-width: 820px;
}

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

.onboarding-price {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 900;
}

.optional-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.form-alert {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.form-alert.success {
  color: var(--accent-dark);
  border-color: rgba(20, 122, 82, 0.28);
  background: var(--accent-soft);
}

.form-alert.error {
  color: #8a3b16;
  border-color: rgba(215, 139, 42, 0.34);
  background: #fff4e8;
}

.form-button:disabled {
  opacity: 0.68;
  cursor: wait;
}

.onboarding-confirmation-copy {
  margin-top: 34px;
}

@media (max-width: 820px) {
  .site-footer,
  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .company-hero,
  .login-shell,
  .problem-section,
  .calculator-section,
  .product-section,
  .call-demo-section,
  .pricing-section,
  .product-hero,
  .workflow-section,
  .school-proof-section,
  .company-positioning,
  .onboarding-layout,
  .contact-layout,
  .testing-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 32px;
    min-height: auto;
    padding-top: 70px;
  }

  .problem-grid,
  .trust-grid,
  .card-grid,
  .product-card-grid,
  .use-case-grid,
  .company-product-grid,
  .workflow-grid,
  .offer-grid,
  .system-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-signal {
    padding-bottom: 0;
  }

  .hero-signal {
    margin-bottom: 0;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  .company-hero,
  .login-shell,
  .section,
  .problem-section,
  .product-section,
  .call-demo-section,
  .pricing-section,
  .offer-summary-section,
  .rebound-workflow,
  .company-products,
  .company-positioning,
  .product-band,
  .use-case-section,
  .school-proof-section,
  .sms-disclosure,
  .contact-band,
  .page {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    gap: 14px;
  }

  .hero {
    width: 100%;
  }

  .site-footer nav {
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .menu-panel {
    min-width: min(250px, calc(100vw - 28px));
  }

  .product-menu-list {
    right: 0;
    left: auto;
    min-width: min(265px, calc(100vw - 42px));
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero-media {
    transform: none;
  }

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

  .section.alt {
    padding-inline: 14px;
  }

  .calculator-section,
  .trust-section,
  .workflow-section,
  .product-hero,
  .company-hero {
    padding-inline: 14px;
  }

  .product-hero,
  .company-hero {
    padding-top: 58px;
  }

  .source-row,
  .confidence-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .source-row strong,
  .confidence-row strong {
    text-align: left;
  }

  .slider-field label {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .rebound-demo-stage {
    min-height: 620px;
    padding: 16px;
  }

  .call-demo-card strong {
    font-size: 1.55rem;
  }

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

  .pricing-card,
  .onboarding-offer-card {
    padding: 20px;
  }

  .demo-phone-number {
    font-size: 1.8rem;
  }

  .sms-disclosure,
  .contact-band,
  .contact-card,
  .contact-form,
  .login-panel,
  .testing-form,
  .testing-result {
    padding: 20px;
  }

  .login-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
