:root {
  color-scheme: light;
  --ink: #181817;
  --canvas: #f7f5ef;
  --canvas-strong: #efede6;
  --paper: #fbfaf7;
  --muted: #747169;
  --muted-strong: #4e4b45;
  --line: rgba(24, 24, 23, 0.15);
  --accent: #d86d37;
  --accent-soft: rgba(216, 109, 55, 0.12);
  --accent-rgb: 216, 109, 55;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow: 0 24px 70px rgba(52, 45, 35, 0.1);
  --shell: min(1220px, calc(100% - 3rem));
}

body[data-product="dhimant"] {
  --accent: #246b8f;
  --accent-soft: rgba(36, 107, 143, 0.11);
  --accent-rgb: 36, 107, 143;
}

body[data-product="mendly"] {
  --accent: #765c9e;
  --accent-soft: rgba(118, 92, 158, 0.11);
  --accent-rgb: 118, 92, 158;
}

body[data-product="bhoomi"] {
  --accent: #287a4e;
  --accent-soft: rgba(40, 122, 78, 0.11);
  --accent-rgb: 40, 122, 78;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(var(--accent-rgb), 0.13), transparent 25rem),
    linear-gradient(180deg, #faf9f5 0%, var(--canvas) 42%, #f4f1e9 100%);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(4.4rem, 8vw, 8.4rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
}

h3,
h4 {
  font-family: var(--sans);
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 96px;
  background: linear-gradient(to bottom, rgba(250, 249, 245, 0.96), rgba(250, 249, 245, 0));
}

.header-inner {
  position: relative;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 14px;
  padding: 0.55rem 0.7rem 0.55rem 1rem;
  border: 1px solid rgba(24, 24, 23, 0.12);
  border-radius: 999px;
  background: rgba(250, 249, 245, 0.88);
  box-shadow: 0 12px 40px rgba(52, 45, 35, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(24, 24, 23, 0.055);
}

.site-nav .nav-cta {
  margin-left: 0.45rem;
  padding-inline: 1.15rem;
  color: #fff;
  background: var(--ink);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: #33322f;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(24, 24, 23, 0.04);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  transform: translateY(-6px);
}

.menu-lines::after {
  transform: translateY(6px);
}

.product-switcher {
  border-bottom: 1px solid var(--line);
}

.product-switcher-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-switcher-inner::-webkit-scrollbar {
  display: none;
}

.product-switcher a {
  position: relative;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.product-switcher a:hover,
.product-switcher a[aria-current="page"] {
  color: var(--ink);
}

.product-switcher a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.product-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 7rem 8rem;
}

.product-hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.hero-summary {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding-inline: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.55);
}

.arrow {
  transition: transform 160ms ease;
}

a:hover .arrow {
  transform: translateX(3px);
}

.hero-product-board {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--accent-rgb), 0.32), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(var(--accent-rgb), 0.06));
  box-shadow: var(--shadow);
}

.hero-product-board::before,
.hero-product-board::after {
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 50%;
  content: "";
}

.hero-product-board::before {
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
}

.hero-product-board::after {
  right: 28px;
  bottom: 28px;
  width: 150px;
  height: 150px;
}

.board-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.board-wordmark {
  position: relative;
  z-index: 2;
  margin: auto 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.board-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.board-foot span {
  max-width: 240px;
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.board-number {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 2rem;
}

.signal-strip {
  color: #f7f5ef;
  background: var(--ink);
}

.signal-strip-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: #d7d3ca;
  font-size: 0.9rem;
  font-weight: 600;
}

.signal + .signal {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.signal::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.section {
  padding-block: 9rem;
}

.section.compact {
  padding-block: 7rem;
}

.section-head {
  max-width: 860px;
  margin-bottom: 4rem;
}

.section-head > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-grid .section-head {
  position: sticky;
  top: 130px;
}

.step-flow {
  border-top: 1px solid var(--line);
}

.flow-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.flow-step span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-step strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.flow-step p {
  margin: 0;
  font-size: 0.94rem;
}

.mode-grid,
.role-grid,
.outcome-grid,
.timeline-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mode-card,
.role-card,
.outcome-card,
.timeline-card,
.product-card {
  position: relative;
  min-height: 240px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mode-card:hover,
.role-card:hover,
.product-card:hover {
  border-color: rgba(var(--accent-rgb), 0.42);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-4px);
}

.mode-card span,
.role-card span,
.timeline-card span,
.product-card span {
  display: block;
  margin-bottom: 3rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-card h3,
.role-card h3,
.outcome-card h3,
.timeline-card h3,
.product-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.mode-card p,
.role-card p,
.outcome-card p,
.timeline-card p,
.product-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.role-card {
  min-height: 300px;
}

.role-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.1rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.role-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.outcome-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.outcome-card {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  background: #f1eee6;
}

.outcome-card::before {
  width: 34px;
  height: 2px;
  display: block;
  margin-bottom: 4rem;
  background: var(--accent);
  content: "";
}

.dark-band {
  color: #f5f2ea;
  background:
    radial-gradient(circle at 84% 42%, rgba(var(--accent-rgb), 0.19), transparent 30rem),
    var(--ink);
}

.dark-band .eyebrow {
  color: color-mix(in srgb, var(--accent) 65%, #fff);
}

.dark-band h2 em {
  color: color-mix(in srgb, var(--accent) 65%, #fff);
  font-weight: 400;
}

.dark-band .section-head > p:last-child {
  color: #c6c1b8;
}

.safety-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
}

.safety-item {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.035);
}

.safety-item strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: color-mix(in srgb, var(--accent) 65%, #fff);
  font-size: 0.75rem;
}

.safety-item p {
  margin: 0;
  color: #c6c1b8;
}

.timeline-card {
  min-height: 270px;
}

.timeline-card span {
  margin-bottom: 4rem;
}

.demo-link {
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(var(--accent-rgb), 0.22), transparent 20rem),
    var(--canvas-strong);
  text-align: center;
}

.demo-link strong {
  display: block;
  margin-bottom: 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.demo-link span {
  color: var(--accent);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  content: "+";
}

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

.faq-list details p {
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.page-hero {
  max-width: 950px;
  padding-block: 7.5rem 6rem;
}

.page-hero h1 {
  font-size: clamp(4.5rem, 10vw, 9rem);
}

.page-hero > p:last-child {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 1.18rem;
}

.product-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 500;
}

.product-card .card-link {
  margin-top: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-bottom: 9rem;
}

.contact-intro {
  padding-top: 1rem;
}

.contact-intro h2 {
  font-size: 2.8rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-details p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.48);
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

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

.form-note {
  margin: 0;
  font-size: 0.82rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  padding-bottom: 9rem;
}

.legal-toc {
  position: sticky;
  top: 126px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.legal-toc strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-toc a:hover {
  color: var(--ink);
}

.legal-copy {
  max-width: 780px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  padding-bottom: 1.4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-copy > p:first-of-type {
  color: var(--muted-strong);
  font-size: 1.1rem;
  line-height: 1.75;
}

.legal-copy section {
  padding-top: 2.8rem;
  scroll-margin-top: 110px;
}

.legal-copy h2 {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.legal-copy h3 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.1rem;
}

.legal-copy p,
.legal-copy li {
  font-size: 0.96rem;
  line-height: 1.75;
}

.legal-copy ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.2rem;
}

.site-footer {
  color: #f5f2ea;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 0.7fr) 1fr;
  gap: 3rem;
  padding-block: 4.5rem;
}

.footer-brand p {
  max-width: 340px;
  margin: 1.1rem 0 0;
  color: #aaa59c;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: #d5d0c6;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column p,
.footer-column address {
  color: #aaa59c;
  font-size: 0.87rem;
  font-style: normal;
}

.footer-column a:hover {
  color: #fff;
}

.footer-column p {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #aaa59c;
  font-size: 0.8rem;
}

@media (max-width: 1000px) {
  .product-hero,
  .story-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-grid .section-head {
    position: static;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 2rem, 1220px);
  }

  .site-header {
    min-height: 86px;
  }

  .header-inner {
    min-height: 60px;
    gap: 1rem;
    margin-top: 10px;
    padding: 0.45rem 0.5rem 0.45rem 0.75rem;
    border-radius: 18px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #faf9f5;
    box-shadow: var(--shadow);
  }

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

  .site-nav .nav-cta {
    margin: 0.4rem 0 0;
    text-align: center;
  }

  .product-hero {
    min-height: auto;
    padding-block: 5rem 6rem;
  }

  .hero-product-board {
    min-height: 420px;
  }

  .signal-strip-inner {
    grid-template-columns: 1fr;
    padding-block: 0.6rem;
  }

  .signal {
    min-height: 52px;
  }

  .signal + .signal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .section,
  .section.compact {
    padding-block: 6.5rem;
  }

  .outcome-grid,
  .timeline-grid,
  .safety-list {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-toc {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.2rem;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.8rem, 18vw, 5.2rem);
  }

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

  .hero-product-board {
    min-height: 360px;
    padding: 1.4rem;
    border-radius: 24px;
  }

  .mode-grid,
  .role-grid,
  .product-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .contact-form {
    padding: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
