:root {
  --ink: #05275a;
  --navy: #063052;
  --teal: #005a67;
  --teal-dark: #003f4f;
  --orange: #ff7900;
  --green: #317456;
  --soft: #f6f8f9;
  --line: #dfe7ea;
  --shadow: 0 14px 38px rgba(5, 39, 90, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site {
  overflow: hidden;
}

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

.header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
}

.nav-wrap {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo {
  width: 190px;
  flex: 0 0 auto;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.nav a {
  position: relative;
  padding: 12px 0;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--teal-dark);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 63, 79, 0.18);
  white-space: nowrap;
}

.btn::after {
  content: ">";
  margin-left: 16px;
  font-size: 18px;
  line-height: 1;
}

.btn.alt {
  background: #fff;
  color: var(--teal-dark);
}

.btn.orange {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 121, 0, 0.2);
}

.btn.green {
  border-color: #0b6b61;
  background: #0b6b61;
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 107, 97, 0.18);
}

.hero {
  position: relative;
}

.home-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 30px;
  padding: 20px 0 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

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

h1 {
  font-size: clamp(42px, 5.4vw, 66px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  max-width: 560px;
  font-size: 22px;
  line-height: 1.45;
}

.accent {
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 24px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.demo-play {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.demo-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--teal);
}

.demo-video-panel {
  width: min(100%, 520px);
  margin: 6px 0 54px;
  border: 1px solid #d9e5e8;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(5, 39, 90, 0.14);
  overflow: hidden;
}

.demo-video-panel[hidden] {
  display: none;
}

.demo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--teal-dark);
  display: block;
}

.home-hero-media {
  align-self: end;
  overflow: hidden;
}

.home-hero-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.challenge {
  background: linear-gradient(100deg, #003f4f, #00616d);
  color: #fff;
  padding: 34px 0;
  border-top-right-radius: 110px;
  position: relative;
}

.challenge .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 40px;
  align-items: center;
}

.challenge h2 {
  color: var(--orange);
  font-size: 26px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.challenge p {
  max-width: 760px;
  font-size: 17px;
}

.maze-icon,
.round-icon {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: inherit;
}

.maze-icon svg,
.round-icon svg,
.card-icon svg {
  width: 62%;
  height: 62%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 58px 0;
}

.section-title {
  text-align: center;
  color: var(--teal-dark);
  letter-spacing: 1px;
}

.section-intro {
  max-width: 590px;
  margin: -6px auto 38px;
  text-align: center;
  font-size: 18px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.difference-item {
  text-align: center;
  font-weight: 800;
}

.difference-item .round-icon {
  width: 94px;
  height: 94px;
  margin-bottom: 14px;
  border: 0;
  background: #eaf2f0;
  color: var(--teal);
}

.difference-item:nth-child(2n) .round-icon {
  background: #fff0e7;
  color: var(--orange);
}

.solutions {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.solution-card,
.service-card,
.contact-card,
.feature-card {
  background: #fff;
  border: 1px solid #edf1f2;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(5, 39, 90, 0.09);
}

.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.solution-card h3 {
  min-height: 90px;
  padding: 18px 46px 22px 18px;
  color: var(--teal-dark);
}

.arrow {
  position: absolute;
  right: 18px;
  bottom: 20px;
  font-size: 30px;
  line-height: 1;
  color: var(--teal-dark);
}

.ai-enable-section {
  background: #fff;
  padding-top: 48px;
  padding-bottom: 46px;
}

.ai-enable-intro {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.55;
}

.ai-enable-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ai-enable-card {
  min-height: 250px;
  padding: 24px 16px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid #edf1f2;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(5, 39, 90, 0.09);
}

.ai-enable-card .card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: var(--teal);
}

.ai-enable-card .orange-icon {
  color: var(--orange);
}

.ai-enable-card h3 {
  color: var(--teal-dark);
  font-size: 17px;
  line-height: 1.2;
}

.ai-enable-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.ai-enable-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
}

.ai-enable-actions .btn {
  min-width: 270px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ai-enable-actions .btn:hover {
  transform: translateY(-1px);
}

.values-band {
  margin-top: 32px;
  background: transparent;
  color: #fff;
  border-top-left-radius: 42px;
  border-top-right-radius: 42px;
  overflow: hidden;
}

.footer-band-art {
  width: 100%;
  display: block;
}

.values-inner {
  display: grid;
  grid-template-columns: 150px 160px repeat(3, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 118px;
  padding: 0 44px;
}

.compact-values .values-inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.values-inner > img {
  width: 135px;
  justify-self: end;
}

.values-label {
  color: var(--orange);
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
}

.value {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.value.with-icon {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.compact-values .value:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-value-icon {
  width: 72px;
  height: 72px;
  color: var(--orange);
  display: grid;
  place-items: center;
}

.footer-value-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-mark {
  width: 92px;
  justify-self: center;
}

.value h3 {
  margin-bottom: 4px;
  color: #fff;
}

.cta-strip {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 0 30px;
}

.cta-strip .round-icon {
  width: 66px;
  height: 66px;
  color: var(--teal-dark);
}

.cta-strip h2 {
  margin-bottom: 0;
  font-size: 26px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cta-actions .btn {
  min-width: 270px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta-actions .btn:hover {
  transform: translateY(-1px);
}

.platform-hero {
  min-height: 485px;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(0, 54, 65, 0.96), rgba(0, 54, 65, 0.68)), url("assets/platform-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.platform-hero h1 {
  max-width: 560px;
  color: #fff;
}

.platform-hero .lead {
  max-width: 650px;
}

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

.pillar {
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.pillar:last-child {
  border-right: 0;
}

.pillar .round-icon {
  width: 100px;
  height: 100px;
  color: #fff;
  background: var(--teal);
  border: 0;
  margin: 0 0 30px;
}

.pillar:nth-child(2) .round-icon {
  background: var(--orange);
}

.pillar:nth-child(4) .round-icon {
  background: var(--navy);
}

.pillar ul {
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 17px;
}

.pillar li {
  margin: 16px 0;
  padding-left: 8px;
}

.pillar li::marker {
  color: var(--orange);
}

.soft-cta {
  margin: 22px auto 70px;
  padding: 42px 52px;
  border-radius: 18px;
  background: #f6f8f9;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 38px;
  box-shadow: inset 0 0 0 1px #eef2f3;
}

.soft-cta .round-icon {
  border: 0;
  color: var(--teal);
}

.soft-cta p {
  margin: 0;
  font-size: 20px;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(420px, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 560px;
  padding-bottom: 56px;
}

.ai-hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

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

.service-card {
  min-height: 230px;
  padding: 34px 22px;
  display: grid;
  place-items: center;
  text-align: center;
}

.ai-services-section {
  padding-top: 18px;
}

.ai-services-section h2 {
  margin-bottom: 24px;
}

.flip-card {
  min-height: 246px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  perspective: 1100px;
  outline: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  min-height: 246px;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(.2, .75, .2, 1);
}

.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card:focus-within .flip-card-inner,
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.service-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border: 1px solid #edf1f2;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(5, 39, 90, 0.09);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.service-front {
  padding: 30px 20px 22px;
  background: #fff;
}

.service-front h3 {
  margin-bottom: 24px;
}

.flip-hint {
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.flip-hint::after {
  content: " >";
  color: var(--orange);
}

.service-back {
  align-content: start;
  justify-items: stretch;
  padding: 20px 18px;
  background: linear-gradient(145deg, #003f4f, #00616d);
  color: #fff;
  transform: rotateY(180deg);
  text-align: left;
}

.service-back h4 {
  margin-bottom: 10px;
  color: var(--orange);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.1;
}

.service-back ul {
  margin: 0;
  padding-left: 18px;
}

.service-back li {
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1.28;
}

.card-icon {
  width: 86px;
  height: 86px;
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.service-card:nth-child(5) .card-icon,
.proof-item:nth-child(2) .card-icon,
.proof-item:nth-child(3) .card-icon {
  color: var(--orange);
}

.partner-section {
  padding-top: 20px;
  padding-bottom: 10px;
}

.partner-card {
  padding: 28px 46px 34px;
  background: linear-gradient(180deg, #f8fbfb, #eef7f8);
  border: 1px solid #e6eff1;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(5, 39, 90, 0.1);
  text-align: center;
}

.partner-card h2 {
  margin-bottom: 8px;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.15;
}

.partner-card > p {
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 18px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 34px;
  text-align: left;
}

.partner-grid div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}

.check-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 14px;
  line-height: 1;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 42px;
  padding: 26px 30px;
  background: linear-gradient(100deg, #003f4f, #00616d);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 63, 79, 0.24);
}

.impact-metrics article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.impact-metrics article:first-child {
  border-left: 0;
}

.metric-icon {
  grid-row: span 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--orange);
}

.metric-icon svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-metrics strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.impact-metrics span {
  font-size: 14px;
  line-height: 1.25;
}

.proof-band {
  background: linear-gradient(100deg, #003f4f, #00616d);
  color: #fff;
  padding: 34px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 360px repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.proof-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-item {
  min-height: 220px;
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
}

.proof-item .card-icon {
  color: var(--orange);
  margin: 0 auto 18px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 38px;
  align-items: start;
  padding: 0 0 24px;
}

.about-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-hero .scenery {
  border-bottom-right-radius: 80px;
}

.about-hero .portrait {
  object-position: top center;
}

.story-subtitle {
  font-size: 26px;
  line-height: 1.2;
  margin: -10px 0 24px;
  color: var(--teal-dark);
}

.story-copy {
  max-height: 500px;
  overflow: auto;
  padding-right: 12px;
}

.story-copy h3 {
  margin: 22px 0 8px;
  color: var(--teal-dark);
  font-size: 21px;
}

.story-copy p {
  margin-bottom: 14px;
}

.orange-emphasis {
  color: var(--orange);
}

.credential-strip {
  position: relative;
  z-index: 5;
  margin: -20px auto 42px;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.credential {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-right: 1px solid var(--line);
  padding-right: 16px;
}

.credential:last-child {
  border-right: 0;
}

.credential .card-icon {
  width: 52px;
  height: 52px;
  margin: 0;
}

.contact-section {
  background: linear-gradient(90deg, #fff 0 54%, #f7f9fa 54% 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
  gap: 70px;
  align-items: start;
}

.contact-image {
  width: 100%;
  height: 490px;
  object-fit: cover;
  border-radius: var(--radius);
  object-position: center;
  margin-top: 30px;
}

.form-card {
  padding: 36px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: 28px;
}

input,
textarea {
  width: 100%;
  min-height: 56px;
  margin-bottom: 20px;
  padding: 0 18px;
  border: 1px solid #d9e1e4;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 138px;
  padding-top: 16px;
  resize: vertical;
}

.form-card .btn {
  width: 100%;
  border-color: var(--orange);
  background: var(--orange);
}

.form-card .btn::after {
  content: "";
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 54px;
}

.contact-card {
  min-height: 250px;
  padding: 34px 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.contact-card .card-icon {
  margin-bottom: 22px;
}

.contact-card p {
  margin-bottom: 0;
}

.footer-space {
  padding-bottom: 34px;
}

@media (max-width: 1060px) {
  .nav-wrap {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 22px;
    justify-content: flex-end;
  }

  .difference-grid,
  .solution-grid,
  .services-grid,
  .ai-enable-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar-grid,
  .credential-strip,
  .contact-grid,
  .partner-grid,
  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-metrics article:nth-child(odd) {
    border-left: 0;
  }

  .impact-metrics article {
    padding: 18px 20px;
  }

  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  }

  .about-hero .portrait {
    height: 420px;
    object-position: top center;
  }

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

  .proof-grid img {
    height: 320px;
  }
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    display: block;
  }

  .logo {
    width: 150px;
    margin-bottom: 12px;
  }

  .nav {
    margin-left: 0;
    justify-content: flex-start;
    font-size: 12px;
  }

  .nav .btn {
    min-height: 42px;
    padding: 0 16px;
    width: 100%;
  }

  .home-hero,
  .split-hero,
  .about-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-media img,
  .ai-hero-media img,
  .about-hero img,
  .contact-image {
    height: auto;
    max-height: 440px;
  }

  .challenge {
    border-top-right-radius: 48px;
  }

  .challenge .container,
  .soft-cta,
  .cta-strip,
  .values-inner {
    grid-template-columns: 1fr;
  }

  .compact-values .values-inner {
    grid-template-columns: 1fr;
  }

  .difference-grid,
  .solution-grid,
  .services-grid,
  .pillar-grid,
  .credential-strip,
  .contact-grid,
  .partner-grid,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .split-hero {
    padding-bottom: 38px;
  }

  .flip-card,
  .flip-card-inner {
    min-height: 262px;
  }

  .service-back {
    padding: 22px 18px;
  }

  .partner-card {
    padding: 24px 20px 28px;
  }

  .partner-card h2 {
    font-size: 24px;
  }

  .partner-card > p {
    font-size: 16px;
  }

  .impact-metrics {
    padding: 18px 20px;
  }

  .impact-metrics article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .impact-metrics article:first-child {
    border-top: 0;
  }

  .ai-enable-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .ai-enable-section .container {
    width: min(100% - 28px, 760px);
  }

  .ai-enable-section .section-title {
    font-size: clamp(22px, 4.4vw, 30px);
  }

  .ai-enable-intro {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.45;
  }

  .ai-enable-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .ai-enable-card {
    min-height: 214px;
    padding: 16px 9px 14px;
  }

  .ai-enable-card .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .ai-enable-card h3 {
    font-size: 12px;
  }

  .ai-enable-card p {
    font-size: 11px;
    line-height: 1.45;
  }

  .pillar,
  .credential {
    border-right: 0;
  }

  .values-inner {
    padding: 24px 0;
  }

.values-inner > img {
    justify-self: center;
  }

  .value {
    border-left: 0;
    padding-left: 0;
  }

  .value.with-icon {
    grid-template-columns: 82px minmax(0, 1fr);
    justify-self: center;
    width: min(100%, 310px);
  }

  .footer-mark {
    width: 82px;
  }

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

  .cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .ai-enable-actions {
    flex-direction: row;
    gap: 14px;
  }

  .ai-enable-actions .btn {
    min-width: 0;
    width: min(270px, calc((100% - 14px) / 2));
    padding-inline: 14px;
    font-size: 13px;
  }

  .contact-section {
    background: #fff;
  }
}

@media (max-width: 560px) {
  .ai-enable-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ai-enable-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .ai-enable-card .card-icon {
    width: 58px;
    height: 58px;
  }

  .ai-enable-card h3 {
    font-size: 17px;
  }

  .ai-enable-card p {
    font-size: 14px;
  }

  .ai-enable-actions .btn {
    width: 100%;
    font-size: 14px;
  }
}
