:root {
  --ink: #212322;
  --muted: #63666a;
  --paper: #f7f3ee;
  --white: #ffffff;
  --teal: #007b5f;
  --teal-dark: #0e775b;
  --blue: #165c7d;
  --cyan: #0094bc;
  --gold: #ffc600;
  --line: rgba(33, 35, 34, 0.14);
  --shadow: 0 24px 70px rgba(22, 92, 125, 0.18);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

body.support-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 238, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.brand img {
  width: 190px;
}

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

.nav-support-link {
  display: none;
}

.site-nav a,
.footer-links a {
  transition: color 180ms ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 750;
  text-transform: uppercase;
  border: 0;
}

.header-cta {
  color: var(--white);
  background: var(--ink);
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  text-transform: uppercase;
  border: 0;
}

.button.primary.dark {
  background: var(--ink);
  text-transform: uppercase;
  border: 0;
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
  border: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.section-band,
.section-grid,
.split-section,
.systems,
.faq,
.cta-section,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 5vw, 74px);
  padding: clamp(38px, 6vw, 74px) 0 56px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue) !important;
  font-size: 1.25rem !important;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.15vw, 5.2rem);
  line-height: 0.95;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 1;
  font-weight: 820;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.12;
}

.hero-lede,
.split-copy p,
.feature-card p,
.process-list p,
.faq-answer p,
.metrics span {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.4;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
  letter-spacing: -0.25px;
  text-align: center;
  margin-top: 30px !important;
}

.hero-lede {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-proof {
  margin-top: 28px;
}

.hero-proof span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.dante-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.dante-showcase {
  width: min(430px, 100%);
}

.dante-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.dante-showcase-copy {
  margin-top: 22px;
}

.dante-showcase h2 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 3.6vw, 3rem);
  line-height: 0.9;
  font-weight: 900;
}

.dante-showcase sup {
  top: -0.42em;
  position: relative;
  font-size: 0.32em;
  line-height: 0;
}

.macaw-card,
.cart-preview,
.product-shell,
.feature-card,
.process-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.macaw-card {
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 2;
  display: flex;
  width: min(330px, 72%);
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.macaw-card img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: var(--paper);
}

.macaw-card strong,
.cart-line strong,
.cart-top strong,
.cart-total strong,
.metrics strong {
  display: block;
}

.macaw-card span,
.cart-line span,
.cart-total span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cart-preview {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 94%);
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(0, 148, 188, 0.12), rgba(255, 198, 0, 0.14)),
    var(--white);
}

.cart-top,
.cart-total,
.bundle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-top {
  margin-bottom: 26px;
  color: var(--muted);
}

.cart-top strong {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(0, 123, 95, 0.12);
  font-size: 0.82rem;
}

.cart-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cart-line.featured {
  padding: 20px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.line-mark {
  width: 12px;
  height: 50px;
  border-radius: 8px;
}

.line-mark.teal {
  background: var(--teal);
}

.line-mark.gold {
  background: var(--gold);
}

.line-mark.blue {
  background: var(--blue);
}

.cart-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.ecosystem {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 24px 18px;
  border-block: 1px solid var(--line);
  background: var(--blue);
  color: var(--white);
}

.ecosystem span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.section-grid,
.systems,
.faq {
  padding: clamp(70px, 10vw, 124px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.8fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  margin-bottom: 42px;
}

.section-intro.narrow {
  display: block;
  max-width: 780px;
}

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

.feature-card {
  padding: clamp(22px, 3vw, 34px);
  box-shadow: none;
}

.card-index {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.feature-card:nth-child(2) .card-index {
  color: var(--ink);
  background: var(--gold);
}

.feature-card:nth-child(3) .card-index {
  background: var(--teal);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 8vw, 100px) 0;
}

.split-media {
  min-height: 560px;
  display: grid;
  align-items: center;
}

.product-shell {
  overflow: hidden;
  background: var(--ink);
  background: var(--blue);
  background: linear-gradient(45deg, rgba(13, 91, 122, 1) 0%, rgba(222, 255, 156, 1) 100%);
  border: 2px solid var(--paper);
  box-shadow: var(--shadow);
}

.shell-header {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.35);
}

.shell-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.shell-header span:nth-child(2) {
  background: var(--cyan);
}

.shell-header span:nth-child(3) {
  background: var(--teal);
}

.bundle-panel {
  margin: clamp(18px, 4vw, 44px);
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: var(--paper);
}

.bundle-panel p {
  margin-bottom: 10px;
  color: var(--teal);
  font-weight: 800;
}

.bundle-row {
  margin-top: 28px;
  color: var(--muted);
}

.bundle-meter {
  height: 12px;
  overflow: hidden;
  margin: 12px 0 22px;
  border-radius: 8px;
  background: rgba(33, 35, 34, 0.1);
}

.bundle-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.mini-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mini-products span {
  min-height: 68px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--white);
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.certification-lockup {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 15px;
}

.certification-lockup img {
  background: aliceblue;
  padding: 8px 20px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  width: min(220px, 100%);
  height: auto;
  box-shadow: var(--shadow)
}

.certification-lockup span {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink);
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0;
  border-block: 1px solid var(--line);
}

.metrics div {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
}

.metrics strong {
  margin-bottom: 8px;
  font-size: 1.32rem;
}

.standards-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin-top: clamp(54px, 8vw, 96px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 198, 0, 0.38);
  border-radius: 8px;
  background: radial-gradient(circle at 70% 18%, rgba(0, 148, 188, 0.32), transparent 34%), var(--ink);
  box-shadow: var(--shadow);
}

.standards-badge {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
}

.standards-badge img {
  width: 100%;
  height: auto;
  max-width: 220px;
  margin: auto;
}

.standards-badge span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.standards-badge strong {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.standards-section .eyebrow {
  color: var(--gold);
}

.standards-copy h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--white);
}

.standards-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.75;
}

.standards-points {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.standards-points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 750;
}

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

.process-list article {
  min-height: 280px;
  padding: 26px;
  box-shadow: none;
}

.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 850;
}

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

.suite-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.suite-card.active-product {
  color: var(--white);
  background: var(--ink);
}

.suite-card.suite-note {
  background: rgba(255, 198, 0, 0.18);
}

.bird-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.active-product .bird-tag {
  color: var(--gold);
}

.suite-card h3 {
  margin-bottom: 10px;
}

.suite-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.active-product p {
  color: rgba(255, 255, 255, 0.76);
}

.suite-disclaimer {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}

.quote-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: clamp(42px, 7vw, 76px);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.quote-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-size: 2.5rem;
  font-weight: 850;
}

blockquote {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 780;
}

.quote-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

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

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 780;
  cursor: pointer;
}

.faq-item b {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.faq-item b::before,
.faq-item b::after {
  position: absolute;
  inset: 13px 7px auto;
  height: 3px;
  background: var(--ink);
  content: "";
}

.faq-item b::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.active b::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  overflow: hidden;
  max-width: 780px;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 26px;
}

.support-modal[hidden] {
  display: none;
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.support-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 35, 34, 0.62);
  backdrop-filter: blur(10px);
}

.support-dialog {
  position: relative;
  width: min(880px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 120px rgba(33, 35, 34, 0.32);
}

.support-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.support-modal.support-sent .support-head {
  justify-content: flex-end;
  margin-bottom: 0;
}

.support-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.support-heading[hidden] {
  display: none;
}

.support-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.support-close span {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.support-close span:first-child {
  transform: rotate(45deg);
}

.support-close span:last-child {
  transform: rotate(-45deg);
}

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

.support-form[hidden] {
  display: none;
}

.support-form label {
  display: grid;
  gap: 8px;
}

.support-form label span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support-form small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
}

.support-form textarea {
  min-height: 112px;
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  outline: 3px solid rgba(0, 148, 188, 0.24);
  border-color: var(--cyan);
}

.field-full {
  grid-column: 1 / -1;
}

.support-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
}

.support-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.support-success[hidden] {
  display: none;
}

.support-success {
  display: grid;
  justify-items: center;
  padding: clamp(16px, 4vw, 36px) 0 12px;
  text-align: center;
}

.support-success img {
  width: min(260px, 72vw);
  height: auto;
  margin-bottom: 18px;
}

.support-success h2 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.support-success p {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.cta-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--gold);
}

.cta-section img {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  background: var(--paper);
}

.cta-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.25rem);
}

.cta-section .eyebrow {
  color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-logo img {
  width: min(250px, 72vw);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    position: fixed;
    inset: 74px 18px auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open a:last-child {
    border-bottom: 0;
  }

  .site-nav.open .nav-support-link {
    display: block;
    color: var(--teal);
    font-weight: 850;
  }

  .hero,
  .split-section,
  .section-intro,
  .standards-section,
  .site-footer,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

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

  .dante-feature {
    min-height: auto;
  }

  .feature-grid,
  .metrics,
  .process-list,
  .suite-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .standards-points {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .section-band,
  .section-grid,
  .split-section,
  .systems,
  .faq,
  .cta-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-visual,
  .split-media {
    min-height: auto;
  }

  .dante-showcase-copy {
    margin-top: 22px;
  }

  .macaw-card,
  .cart-preview {
    position: relative;
    width: 100%;
  }

  .cart-preview {
    margin-top: 14px;
  }

  .feature-grid,
  .metrics,
  .process-list,
  .suite-grid,
  .mini-products {
    grid-template-columns: 1fr;
  }

  .card-index {
    margin-bottom: 32px;
  }

  .quote-section {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .cta-section {
    text-align: left;
  }

  .support-form,
  .support-actions {
    grid-template-columns: 1fr;
  }

  .support-form {
    display: grid;
  }

  .support-actions {
    display: grid;
  }
}
