:root {
  --bg: #050505;
  --surface: #111111;
  --surface-warm: #191405;
  --text: #fff7d6;
  --muted: #c7b77a;
  --soft: #8f7f45;
  --border: rgba(255, 198, 0, 0.24);
  --accent: #ffc400;
  --accent-dark: #e2a900;
  --green: #33d69f;
  --red: #ff6868;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Cal Sans", "Inter", system-ui, sans-serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 196, 0, 0.16), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid rgba(255, 198, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255, 196, 0, 0.2));
}

.brand-logo.ai-logo {
  width: 260px;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-link:hover,
.dropdown.open .dropdown-trigger {
  color: var(--text);
}

.dropdown {
  position: relative;
}

.dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a,
.dropdown-menu strong {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.dropdown-menu strong {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dropdown-menu a:hover {
  background: var(--surface-warm);
  color: var(--text);
}

.mega {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 12px;
}

.wide .dropdown-menu {
  min-width: 580px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.nav-cta {
  padding: 10px 16px;
  color: #050505;
  background: var(--accent);
  font-size: 14px;
}

.nav-cta:hover,
.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 196, 0, 0.24);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 118px 0 70px;
  text-align: center;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-visual {
  width: min(520px, 96vw);
  height: 240px;
  margin: 0 auto 26px;
  position: relative;
}

.brain-card {
  position: absolute;
  inset: 10px 20px;
  background: linear-gradient(135deg, #0b0b0b, #161305);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brain-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  background-image:
    linear-gradient(rgba(255, 198, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 198, 0, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, #000 0 48%, transparent 74%);
}

.brain-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 198, 0, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 230px;
  height: 116px;
}

.orbit-two {
  width: 116px;
  height: 230px;
}

.brain-core {
  position: absolute;
  inset: 50%;
  width: 310px;
  height: 108px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: #050505;
  border: 1px solid rgba(255, 198, 0, 0.42);
  border-radius: 12px;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 44px rgba(255, 196, 0, 0.18), inset 0 0 28px rgba(255, 196, 0, 0.08);
}

.brain-core img {
  width: 260px;
  height: auto;
}

.brain-core.ai-core {
  width: 430px;
  height: 118px;
  border-radius: 18px;
}

.brain-core.ai-core img {
  width: 382px;
}

.node {
  position: absolute;
  padding: 7px 12px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.node-a {
  left: 66px;
  top: 52px;
}

.node-b {
  right: 74px;
  top: 48px;
}

.node-c {
  left: 84px;
  bottom: 48px;
}

.node-d {
  right: 86px;
  bottom: 52px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 6.25rem);
  font-weight: 800;
}

.hero-sub {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  padding: 12px 22px;
}

.btn.primary {
  color: #050505;
  background: var(--accent);
}

.btn.outline {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}

.btn.outline:hover {
  border-color: rgba(255, 198, 0, 0.52);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.provider-panel {
  width: 100%;
  max-width: 980px;
  margin-top: 58px;
  display: grid;
  gap: 22px;
}

.provider-group p {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

.provider-grid-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.provider-card {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 196, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.provider-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.provider-letter span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(255, 196, 0, 0.14);
  color: var(--accent);
  border: 1px solid rgba(255, 198, 0, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 84px 0;
}

.tinted {
  background: #0a0a0a;
  border-block: 1px solid rgba(255, 198, 0, 0.16);
}

.section h2,
.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-lede {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.78;
}

.section-lede.left {
  margin-left: 0;
  text-align: left;
}

.three-grid,
.product-grid,
.agent-grid,
.testimonial-grid,
.steps,
.fit-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.three-grid,
.testimonial-grid,
.steps {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid {
  grid-template-columns: repeat(5, 1fr);
}

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

.card,
.product-card,
.agent-card,
.testimonial,
.step,
.fit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 28px;
}

.card h3,
.product-card h3,
.agent-card h3,
.step h3,
.fit-card h3 {
  font-size: 1.18rem;
  margin-bottom: 14px;
}

ul {
  padding-left: 20px;
  margin: 0;
}

li {
  color: var(--muted);
  margin: 9px 0;
}

.product-card {
  padding: 24px;
}

.product-card .icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.product-card p,
.agent-card p,
.step p,
.three-list p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
  margin-top: 42px;
}

.system-visual {
  min-height: 370px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 196, 0, 0.18), transparent 42%),
    linear-gradient(135deg, #0f0f0f, #191405);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stack-window {
  width: min(370px, 86%);
  background: #050505;
  color: #ffe8a1;
  border-radius: 12px;
  box-shadow: 0 26px 60px rgba(32, 24, 18, 0.22);
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 14px;
  background: #181303;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.window-bar span:nth-child(2) {
  background: #e7ae40;
}

.window-bar span:nth-child(3) {
  background: #43b37b;
}

.command-line {
  margin: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 232, 161, 0.14);
  border-radius: 7px;
  color: rgba(255, 232, 161, 0.74);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.command-line.active {
  background: rgba(255, 196, 0, 0.12);
  color: #fff7d6;
}

.three-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.three-list article {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.agent-card {
  padding: 24px;
}

.testimonial {
  margin: 0;
  padding: 28px;
}

.testimonial blockquote {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.testimonial figcaption {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.step {
  padding: 28px;
  position: relative;
}

.step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #050505;
  background: var(--accent);
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.industry-grid span {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-align: center;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.fit-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fit-card {
  padding: 30px;
}

.fit-card.yes {
  border-top: 4px solid var(--green);
}

.fit-card.no {
  border-top: 4px solid var(--red);
}

.scorecard-section {
  scroll-margin-top: 76px;
}

.scorecard-form,
.scorecard-result {
  max-width: 920px;
  margin: 42px auto 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.07), rgba(255, 196, 0, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

.scorecard-field,
.scorecard-questions label {
  display: grid;
  gap: 8px;
}

.scorecard-field span,
.scorecard-questions span,
.result-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.scorecard-field input,
.scorecard-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #050505;
  color: var(--text);
  font: inherit;
}

.scorecard-questions {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.scorecard-questions input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.scorecard-submit {
  margin-top: 26px;
  width: 100%;
}

.scorecard-result {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.scorecard-result[hidden] {
  display: none;
}

.scorecard-result strong {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.25rem);
  line-height: 1;
}

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

.pricing-section {
  scroll-margin-top: 76px;
}

.pricing-category {
  margin: 46px 0 20px;
  text-align: center;
}

.pricing-category span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-category h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.service-category {
  margin-top: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.07), rgba(255, 196, 0, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
  border-color: rgba(255, 198, 0, 0.55);
  box-shadow: 0 18px 60px rgba(255, 196, 0, 0.12);
}

.pricing-badge {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 198, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.42rem;
}

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

.price-row {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-block: 1px solid var(--border);
}

.price-row strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}

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

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.pricing-card li {
  margin: 0;
}

.pricing-link {
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 11px 14px;
  border-radius: 7px;
  background: var(--accent);
  color: #050505;
  font-weight: 900;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.pricing-notes article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-notes h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pricing-notes p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: 88px 0;
  background: linear-gradient(135deg, #0b0b0b, #191405);
  color: #fff7d6;
  text-align: center;
}

.final-cta h2 {
  color: #fff7d6;
}

.final-cta p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 247, 214, 0.78);
  font-size: 1.1rem;
}

.final-cta .btn.outline {
  background: transparent;
  color: #fff7d6;
  border-color: rgba(255, 198, 0, 0.35);
}

.footer {
  padding: 60px 0 38px;
  background: #050505;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  gap: 36px;
}

.footer-brand {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-brand > a:last-child {
  color: var(--muted);
  font-weight: 800;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer h4 {
  font-family: var(--font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-columns a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.footer-columns a:hover,
.footer-brand > a:last-child:hover {
  color: var(--accent);
}

.copyright {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    right: 0;
    width: min(360px, 100vw);
    height: calc(100vh - 68px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    padding: 24px;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 42px rgba(0, 0, 0, 0.34);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow: auto;
  }

  .nav-open .nav-menu {
    transform: translateX(0);
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-link,
  .dropdown-trigger,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu,
  .wide .dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

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

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

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

  .three-grid,
  .agent-grid,
  .testimonial-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .scorecard-result {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero {
    padding-top: 100px;
  }

  .hero-visual {
    height: 205px;
  }

  .brand-logo {
    width: 156px;
  }

  .brand-logo.ai-logo {
    width: 190px;
  }

  .brain-core {
    width: 236px;
    height: 88px;
  }

  .brain-core img {
    width: 198px;
  }

  .brain-core.ai-core {
    width: 268px;
    height: 84px;
  }

  .brain-core.ai-core img {
    width: 238px;
  }

  .node-a {
    left: 22px;
  }

  .node-b {
    right: 26px;
  }

  .node-c {
    left: 34px;
  }

  .node-d {
    right: 38px;
  }

  .section {
    padding: 62px 0;
  }

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

  .three-grid,
  .product-grid,
  .agent-grid,
  .testimonial-grid,
  .steps,
  .fit-grid,
  .pricing-grid,
  .service-grid,
  .pricing-notes,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .provider-grid,
  .provider-grid-wide {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}
