/* ==========================================================================
   FRONT PAGE SECTIONS
   ========================================================================== */

/* ── Hero ── */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 0;
  text-align: center;
  background: #fff;
  color: rgb(23, 23, 25);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 24px;
}

.hero__subtitle {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: rgb(123, 126, 133);
  max-width: 850px;
  margin: 0 auto 56px;
}

.hero__graphic {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 8px 0;
  background-image: url('../images/sections/hero-bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 16px 16px 0 0;
}

.hero__graphic-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 40px 80px -20px rgba(15, 15, 15, 0.18);
}

@media (max-width: 1023px) {
  .hero {
    padding-top: 120px;
  }
  .hero__title {
    font-size: 48px;
    line-height: 60px;
  }
  .hero__subtitle {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
    width: 750px;
  }
  .hero__graphic {
    padding: 32px 16px 0;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 100px;
  }
  .hero__title {
    font-size: 32px;
    line-height: 1.25;
  }
  .hero__title-br {
    display: none;
  }
  .hero__subtitle {
    font-size: 16px;
    line-height: 1.5;
    width: 85%;
    margin-bottom: 32px;
  }
  .hero__graphic {
    padding: 20px 12px 0;
    border-radius: 16px 16px 0 0;
  }
  .hero__graphic-img {
    border-radius: 10px 10px 0 0;
  }
}

/* ── SynTitan Intro ── */
.syntitan-intro__inner {
  max-width: 1200px;
  text-align: center;
  flex: auto;
}

.syntitan-intro__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--gap-sm);
}

.syntitan-intro__title strong {
  color: var(--c-accent-purple);
}

.syntitan-intro__body {
  font-size: var(--fs-body-lg);
  color: var(--c-text-muted);
  margin-bottom: var(--gap-md);
  line-height: var(--lh-body);
}

.syntitan-intro__body p {
  margin: 0;
}

.syntitan-intro__actions {
  display: flex;
  gap: var(--gap-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.syntitan-intro__btn-pill {
  border-radius: 100px;
  padding: 14px 28px;
}

.syntitan-intro {
  text-align: center;
}

/* ── Client Logos ── */
.client-logos {
  padding: var(--gap-md) 0;
  overflow: hidden;
}

.client-logos__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 25%,
    rgb(0, 0, 0) 75%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 25%,
    rgb(0, 0, 0) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

.client-logos__track {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: max-content;
  animation: scroll-logos 60s linear infinite;
}

.client-logos__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.client-logos__logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logos__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.client-logos__label {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: rgb(23, 23, 25);
  text-align: center;
  white-space: nowrap;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .client-logos__track {
    gap: 48px;
  }
  .client-logos__logo {
    width: 56px;
    height: 56px;
  }
  .client-logos__label {
    font-size: 16px;
    line-height: 22px;
  }
}

/* ── AI Models (consolidated section) ── */
.ai-models {
  background-color: #fff;
  color: rgb(23, 23, 25);
}

.ai-models .container {
  max-width: 1200px;
}

.ai-models__header {
  text-align: center;
  margin: 0 auto 64px;
}

.ai-models__title {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 500;
  line-height: 80px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 20px;
}

.ai-models__title-accent {
  color: rgb(118, 90, 242);
}

.ai-models__subtitle {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: rgb(123, 126, 133);
  margin: 0;
}

.ai-models__block {
  margin-bottom: 80px;
}

.ai-models__block:last-child {
  margin-bottom: 0;
}

.ai-models__block-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 32px;
}

/* Enterprise AI Is Still Failing — stats card with background image */
.ai-models__stats-card {
  position: relative;
  width: 100%;
  border-radius: 40px;
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-models__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.ai-models__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.ai-models__stat-source {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 34px;
  letter-spacing: 0;
  color: var(--source-color, rgb(25, 17, 184));
  background: #fff;
  border: 1px solid var(--source-color, rgb(25, 17, 184));
  border-radius: 999px;
  padding: 0 20px;
  opacity: 0.88;
}

.ai-models__stat-number {
  font-family: var(--font-display);
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -0.5px;
  color: rgb(84, 84, 84);
  margin: 0;
}

.ai-models__stat-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 130%;
  letter-spacing: -0.5px;
  color: rgb(69, 49, 49);
  margin: 0;
  max-width: 320px;
}

/* Barriers to Reliable AI */
.ai-models__barriers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ai-models__barrier {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 32px;
  border-top: 1px solid rgba(23, 23, 25, 0.08);
}

.ai-models__barrier:first-child {
  border-top: none;
  padding-top: 0;
}

.ai-models__barrier-num {
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 34px;
  color: rgb(23, 23, 25);
}

.ai-models__barrier-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 12px;
}

.ai-models__barrier-desc {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: rgb(123, 126, 133);
  margin: 0;
}

/* AI Needs More Than Models — banner + blocks + cards */
.ai-models__banner {
  position: relative;
  width: 100%;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ai-models__banner-quote {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 48px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0;
  font-weight: 400;
}

.ai-models__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 48px 0;
}

.ai-models__text-block {
  text-align: center;
}

.ai-models__text-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ai-models__text-num {
  font-family: var(--font-mono);
  font-size: 24px;
  line-height: 34px;
  color: rgb(23, 23, 25);
}

.ai-models__text-label {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 140%;
  color: rgb(23, 23, 25);
  margin: 0;
}

.ai-models__text-body {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 140%;
  letter-spacing: -0.5px;
  color: rgb(125, 125, 125);
  margin: 0;
}

.ai-models__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ai-models__card {
  background: #fff;
  border: 1px solid rgba(23, 23, 25, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.ai-models__card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-models__card-icon svg {
  width: 100%;
  height: 100%;
}

.ai-models__card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: rgb(138, 119, 224);
  background: #fff;
  border: 1px solid rgb(138, 119, 224);
  border-radius: 100px;
  padding: 4px 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-models__card-desc {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: rgb(34, 34, 34);
  margin: 0;
}

@media (max-width: 1023px) {
  .ai-models__title {
    font-size: 40px;
    line-height: 52px;
  }
  .ai-models__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  .ai-models__block-title {
    font-size: 28px;
    line-height: 36px;
  }
  .ai-models__stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ai-models__stats-card {
    padding: 48px 24px;
    min-height: 0;
  }
  .ai-models__blocks {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ai-models__cards {
    grid-template-columns: 1fr;
  }
  .ai-models__banner-quote {
    font-size: 22px;
    line-height: 36px;
  }
}

@media (max-width: 767px) {
  .ai-models__title {
    font-size: 30px;
    line-height: 40px;
  }
  .ai-models__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .ai-models__block {
    margin-bottom: 56px;
  }
  .ai-models__block-title {
    font-size: 24px;
    line-height: 32px;
  }
  .ai-models__stat-number {
    font-size: 56px;
    line-height: 64px;
  }
  .ai-models__barrier {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ai-models__banner {
    padding: 40px 20px;
  }
  .ai-models__banner-quote {
    font-size: 18px;
    line-height: 28px;
  }
}

/* ── AI-Ready Data Infrastructure (replaces Core Values) ── */
.ai-ready {
  background: #fff;
}

.ai-ready .container {
  max-width: 1280px;
}

.ai-ready__header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 48px;
}

.ai-ready__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 20px;
}

.ai-ready__title-accent {
  background: linear-gradient(90deg, rgb(118, 90, 242) 0%, rgb(169, 139, 255) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgb(118, 90, 242);
}

.ai-ready__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: rgb(123, 126, 133);
  margin: 0;
}

/* Board */
.ai-ready__board {
  background: #f5f6f8;
  border-radius: 32px;
  padding: 56px 40px 40px;
  margin-bottom: 32px;
}

.ai-ready__board-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: rgb(23, 23, 25);
  margin: 0 0 12px;
  text-align: center;
}

.ai-ready__board::before {
  content: '';
  display: block;
  border-top: 1px dashed rgba(23, 23, 25, 0.15);
  margin: 0 -40px 32px;
}

/* Grid: Data Source | arrow | Platform | arrow | Apps */
.ai-ready__grid {
  display: grid;
  grid-template-columns: 220px 28px 1fr 28px 320px;
  gap: 8px;
  align-items: stretch;
}

.ai-ready__col {
  background: #fff;
  border: 1px solid rgba(23, 23, 25, 0.06);
  border-radius: 20px;
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
}

.ai-ready__col-head {
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: rgb(23, 23, 25);
  background: #f5f6f8;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.ai-ready__col-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(180, 180, 190);
}

.ai-ready__arrow {
  width: 20px;
  height: 20px;
}

.ai-ready__col-caption {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgb(150, 150, 158);
  text-align: center;
  margin: 12px 0 0;
}

/* Data Source items */
.ai-ready__sources {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ai-ready__source {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fafbfc;
  border: 1px solid rgba(23, 23, 25, 0.05);
  border-radius: 12px;
}

.ai-ready__source-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: rgb(80, 82, 90);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-ready__source-icon svg {
  width: 20px;
  height: 20px;
}

.ai-ready__source-text {
  display: flex;
  flex-direction: column;
}

.ai-ready__source-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgb(23, 23, 25);
  line-height: 18px;
}

.ai-ready__source-sub {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgb(150, 150, 158);
  line-height: 16px;
}

/* Platform products */
.ai-ready__products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-ready__product {
  border: 1px solid;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  position: relative;
}

.ai-ready__product--green {
  border-color: rgba(34, 178, 116, 0.35);
  background: linear-gradient(180deg, rgba(34, 178, 116, 0.04) 0%, rgba(34, 178, 116, 0) 60%);
}
.ai-ready__product--blue {
  border-color: rgba(60, 130, 246, 0.35);
  background: linear-gradient(180deg, rgba(60, 130, 246, 0.04) 0%, rgba(60, 130, 246, 0) 60%);
}
.ai-ready__product--purple {
  border-color: rgba(138, 92, 246, 0.35);
  background: linear-gradient(180deg, rgba(138, 92, 246, 0.04) 0%, rgba(138, 92, 246, 0) 60%);
}

.ai-ready__product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ai-ready__product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.ai-ready__product--green .ai-ready__product-name { color: rgb(26, 150, 95); }
.ai-ready__product--blue .ai-ready__product-name { color: rgb(52, 117, 223); }
.ai-ready__product--purple .ai-ready__product-name { color: rgb(122, 80, 223); }

.ai-ready__product-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgb(120, 120, 128);
}

.ai-ready__product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.ai-ready__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 18px;
  background: #fff;
}

.ai-ready__product--green .ai-ready__tag {
  color: rgb(26, 150, 95);
  border-color: rgba(34, 178, 116, 0.5);
}
.ai-ready__product--blue .ai-ready__tag {
  color: rgb(52, 117, 223);
  border-color: rgba(60, 130, 246, 0.5);
}
.ai-ready__product--purple .ai-ready__tag {
  color: rgb(122, 80, 223);
  border-color: rgba(138, 92, 246, 0.5);
}

.ai-ready__product-fix {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgb(100, 100, 108);
  margin: 0 0 12px;
}

.ai-ready__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.ai-ready__flow-step {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 18px;
  background: #fff;
}

.ai-ready__product--green .ai-ready__flow-step {
  color: rgb(26, 150, 95);
  border-color: rgba(34, 178, 116, 0.4);
}
.ai-ready__product--blue .ai-ready__flow-step {
  color: rgb(52, 117, 223);
  border-color: rgba(60, 130, 246, 0.4);
}
.ai-ready__product--purple .ai-ready__flow-step {
  color: rgb(122, 80, 223);
  border-color: rgba(138, 92, 246, 0.4);
}

.ai-ready__flow-arrow {
  color: rgba(23, 23, 25, 0.3);
  font-size: 14px;
}

.ai-ready__flow-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  color: rgb(150, 150, 158);
}

/* Applications */
.ai-ready__apps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-ready__app {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(23, 23, 25, 0.05);
  border-radius: 14px;
}

.ai-ready__app-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #f5f6f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(80, 82, 90);
}

.ai-ready__app-icon svg {
  width: 18px;
  height: 18px;
}

.ai-ready__app-body {
  flex: 1;
  min-width: 0;
}

.ai-ready__app-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgb(23, 23, 25);
  margin: 0 0 2px;
  line-height: 20px;
}

.ai-ready__app-desc {
  font-family: var(--font-display);
  font-size: 12px;
  color: rgb(130, 130, 138);
  margin: 0 0 8px;
  line-height: 16px;
}

.ai-ready__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ai-ready__badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  background: #fff;
  border: 1px solid;
}

.ai-ready__badge--green {
  color: rgb(26, 150, 95);
  border-color: rgba(34, 178, 116, 0.5);
  background: rgba(34, 178, 116, 0.06);
}
.ai-ready__badge--blue {
  color: rgb(52, 117, 223);
  border-color: rgba(60, 130, 246, 0.5);
  background: rgba(60, 130, 246, 0.06);
}
.ai-ready__badge--purple {
  color: rgb(122, 80, 223);
  border-color: rgba(138, 92, 246, 0.5);
  background: rgba(138, 92, 246, 0.06);
}

.ai-ready__certs {
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgb(150, 150, 158);
  margin: 32px 0 0;
}

.ai-ready__footer-note {
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  color: rgb(130, 130, 138);
  margin: 0;
  padding: 0 16px;
}

@media (max-width: 1023px) {
  .ai-ready__title {
    font-size: 34px;
    line-height: 44px;
  }
  .ai-ready__board {
    padding: 40px 24px 32px;
  }
  .ai-ready__board::before {
    margin: 0 -24px 24px;
  }
  .ai-ready__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ai-ready__col-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 767px) {
  .ai-ready__title {
    font-size: 26px;
    line-height: 34px;
  }
  .ai-ready__subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .ai-ready__board {
    border-radius: 20px;
    padding: 32px 16px 24px;
  }
  .ai-ready__board::before {
    margin: 0 -16px 20px;
  }
  .ai-ready__col {
    padding: 16px;
  }
  .ai-ready__product {
    padding: 16px;
  }
  .ai-ready__product-name {
    font-size: 18px;
  }
}

/* ── Problem Match (replaces Infra Diagram) ── */
.problem-match {
  background: #fff;
}

.problem-match .container {
  max-width: 1280px;
}

.problem-match__header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
}

.problem-match__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 20px;
}

.problem-match__subtitle {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 28px;
  color: rgb(123, 126, 133);
  margin: 0;
}

.problem-match__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-match__card {
  background: #f7f8fa;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.problem-match__label {
  align-self: center;
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgb(59, 130, 246);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgb(59, 130, 246);
  background: #fff;
}

.problem-match__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.3px;
  color: rgb(23, 23, 25);
  margin: 0;
}

.problem-match__detail {
  background: #eef0f3;
  border-radius: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 24px;
  color: rgb(100, 102, 110);
}

.problem-match__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.problem-match__tag {
  display: inline-block;
  padding: 8px 18px;
  background: #eef0f3;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgb(80, 82, 90);
  white-space: nowrap;
}

.problem-match__solution {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.problem-match__solution-label {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(168, 120, 255, 0.12);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgb(138, 92, 246);
  margin-bottom: 8px;
}

.problem-match__solution-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0;
}

.problem-match__solution-effect {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgb(100, 102, 110);
  margin: 0;
}

.problem-match__solution-note {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgb(150, 150, 158);
  margin: 4px 0 20px;
}

.problem-match__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.problem-match__cta--outline {
  background: #fff;
  color: rgb(23, 23, 25);
  border: 1px solid rgba(23, 23, 25, 0.15);
}

.problem-match__cta--outline:hover {
  background: rgb(23, 23, 25);
  color: #fff;
  border-color: rgb(23, 23, 25);
}

.problem-match__cta--gradient {
  background: linear-gradient(135deg, rgb(122, 80, 223) 0%, rgb(220, 70, 155) 50%, rgb(255, 90, 120) 100%);
  color: #fff;
  border: none;
}

.problem-match__cta--gradient:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.problem-match__cta-arrow {
  font-size: 18px;
  line-height: 1;
}

.problem-match__footer {
  text-align: center;
  padding-top: 16px;
}

.problem-match__footer-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgb(150, 150, 158);
  margin: 0 0 4px;
}

.problem-match__footer-body {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgb(150, 150, 158);
  margin: 0;
}

@media (max-width: 1023px) {
  .problem-match__title {
    font-size: 34px;
    line-height: 44px;
  }
  .problem-match__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .problem-match__title {
    font-size: 26px;
    line-height: 34px;
  }
  .problem-match__subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .problem-match__card {
    padding: 28px 20px;
  }
  .problem-match__quote {
    font-size: 18px;
    line-height: 26px;
  }
  .problem-match__solution-name {
    font-size: 30px;
  }
}

/* ── Solutions ── */
.solutions__section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--gap-lg);
}

.solutions__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-lg);
}

.solutions__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  padding: var(--gap-lg);
  background: var(--c-bg-light);
  border-radius: var(--r-xl);
  align-items: center;
}

.solutions__problem-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--gap-xs);
}

.solutions__problem-desc {
  color: var(--c-text-muted);
  margin-bottom: var(--gap-sm);
  line-height: var(--lh-body);
}

.solutions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xxs);
}

.solutions__product-name {
  display: block;
  font-size: var(--fs-h2);
  font-weight: 900;
  margin-bottom: 4px;
}

.solutions__product-sub {
  display: block;
  font-size: var(--fs-body);
  color: var(--c-text-muted);
  margin-bottom: var(--gap-sm);
}

.solutions__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xxs);
  margin-top: var(--gap-xs);
}

.solutions__badge {
  font-size: var(--fs-caption);
  color: var(--c-text-subtle);
  padding: 4px 10px;
  border: 1px solid var(--c-border-light);
  border-radius: 100px;
}

@media (max-width: 768px) {
  .solutions__item {
    grid-template-columns: 1fr;
    padding: var(--gap-md);
  }
}

/* ── Comparison (Databricks stores — CUBIG makes usable) ── */
.comparison {
  background: #fff;
}

.comparison .container {
  max-width: 1280px;
}

.comparison__header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
}

.comparison__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison__title-line {
  display: block;
}

.comparison__title-line--accent {
  color: rgb(118, 90, 242);
}

.comparison__subtitle {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 28px;
  color: rgb(123, 126, 133);
  margin: 0;
}

.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
  align-items: stretch;
}

.comparison__col {
  background: #f7f8fa;
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.comparison__col--accent {
  background: linear-gradient(180deg, #fff 0%, rgba(245, 243, 255, 0.6) 100%);
  border-color: rgba(118, 90, 242, 0.3);
  box-shadow:
    0 0 0 1px rgba(118, 90, 242, 0.15),
    0 24px 56px -16px rgba(118, 90, 242, 0.22),
    0 8px 24px -8px rgba(118, 90, 242, 0.18);
  position: relative;
}

.comparison__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
}

.comparison__col--accent .comparison__col-head {
  border-bottom-color: rgba(118, 90, 242, 0.18);
}

.comparison__col-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: rgb(140, 140, 148);
  margin: 0;
}

.comparison__col--accent .comparison__col-name {
  color: rgb(118, 90, 242);
}

.comparison__col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison__list {
  list-style: none;
  margin: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.comparison__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comparison__bullet {
  flex-shrink: 0;
  color: rgb(150, 150, 158);
  line-height: 24px;
}

.comparison__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.comparison__text {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 24px;
  color: rgb(100, 102, 110);
  letter-spacing: -0.2px;
}

.comparison__col--accent .comparison__text {
  color: rgb(23, 23, 25);
  font-weight: 500;
}

.comparison__footer {
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 26px;
  color: rgb(130, 130, 138);
  max-width: 900px;
  margin: 0 auto;
  font-style: normal;
}

@media (max-width: 1023px) {
  .comparison__title {
    font-size: 34px;
    line-height: 46px;
  }
  .comparison__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .comparison__title {
    font-size: 26px;
    line-height: 36px;
  }
  .comparison__subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .comparison__col-head {
    padding: 20px 22px 16px;
  }
  .comparison__col-name {
    font-size: 18px;
  }
  .comparison__list {
    padding: 22px;
  }
  .comparison__text {
    font-size: 15px;
    line-height: 22px;
  }
}

/* ── Entry Point ── */
.entry-point {
  background: #fff;
}

.entry-point .container {
  max-width: 1280px;
}

.entry-point__header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
}

.entry-point__title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 20px;
}

.entry-point__title-accent {
  color: rgb(118, 90, 242);
}

.entry-point__subtitle {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 28px;
  color: rgb(123, 126, 133);
  margin: 0;
}

.entry-point__list {
  display: flex;
  flex-direction: column;
}

.entry-point__row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
}

.entry-point__row:last-child {
  border-bottom: none;
}

.entry-point__row:nth-child(even) {
  grid-template-columns: 1fr 380px;
}

.entry-point__row:nth-child(even) .entry-point__visual {
  order: 2;
}

.entry-point__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  aspect-ratio: 380 / 320;
}

.entry-point__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}

.entry-point__logo {
  height: 22px;
  width: auto;
  display: block;
}

.entry-point__screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.25);
  margin-top: auto;
}

.entry-point__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.entry-point__row-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.4px;
  color: rgb(23, 23, 25);
  margin: 0;
}

.entry-point__row-body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 26px;
  color: rgb(100, 102, 110);
  margin: 0;
}

.entry-point__row-lead {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 24px;
  color: rgb(150, 150, 158);
  margin: 0;
}

.entry-point__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.entry-point__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: rgb(23, 23, 25);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s ease;
}

.entry-point__cta:hover {
  background: rgb(50, 50, 55);
}

.entry-point__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(23, 23, 25, 0.1);
  font-family: var(--font-display);
  font-size: 14px;
  color: rgb(80, 82, 90);
}

.entry-point__badge-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .entry-point__title {
    font-size: 34px;
    line-height: 46px;
  }
  .entry-point__row,
  .entry-point__row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .entry-point__row:nth-child(even) .entry-point__visual {
    order: 0;
  }
  .entry-point__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .entry-point__row-title {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 767px) {
  .entry-point__title {
    font-size: 26px;
    line-height: 36px;
  }
  .entry-point__subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .entry-point__row {
    padding: 40px 0;
  }
  .entry-point__row-title {
    font-size: 22px;
    line-height: 30px;
  }
  .entry-point__visual {
    padding: 20px 20px 0;
  }
}

/* ── Industry Cases ── */
.industry-cases__section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--gap-lg);
}

.industry-cases__card {
  background: var(--c-bg-light);
  border-radius: var(--r-xl);
  padding: var(--gap-md);
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
}

.industry-cases__industry {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent-purple);
  margin-bottom: 4px;
}

.industry-cases__title {
  font-size: var(--fs-h4);
}

.industry-cases__label {
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-subtle);
  margin-bottom: var(--gap-xxs);
}

.industry-cases__list {
  list-style: disc;
  padding-left: 20px;
}

.industry-cases__list li {
  color: var(--c-text-muted);
  line-height: var(--lh-body);
  margin-bottom: 4px;
}

.industry-cases__section p {
  color: var(--c-text-muted);
  line-height: var(--lh-body);
}

.industry-cases__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xxs);
  margin-top: auto;
}

/* ── Evaluation CTA ── */
.eval-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  color: var(--c-text-heading);
  isolation: isolate;
}

.eval-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 55% 70% at 20% 30%,
      rgba(169, 226, 240, 0.9) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 65% 70% at 80% 70%,
      rgba(146, 230, 198, 0.85) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 60% at 50% 20%,
      rgba(210, 236, 255, 0.85) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #c5e7ee 0%, #b8e0d8 50%, #c6e9d7 100%);
}

.eval-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.eval-cta__title {
  font-size: var(--fs-h2);
  color: var(--c-text-heading);
  margin-bottom: var(--gap-sm);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.eval-cta__body {
  font-size: var(--fs-body-lg);
  color: #3f4654;
  line-height: var(--lh-body);
  margin-bottom: var(--gap-md);
}

.eval-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  flex-wrap: wrap;
  margin-bottom: var(--gap-sm);
}

.eval-cta__btn {
  background: var(--c-bg-white);
  color: var(--c-text-heading);
  border: 1px solid rgba(15, 15, 15, 0.08);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
}

.eval-cta__btn:hover {
  background: #fafafa;
}

.eval-cta__note {
  font-size: var(--fs-small);
  color: #60636b;
}

/* ── Certifications & Recognition (replaces Company Info) ── */
.certifications {
  background: #fff;
}

.certifications .container {
  max-width: 1280px;
}

.certifications__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: rgb(23, 23, 25);
  margin: 0 0 24px;
}

/* Marquee — left-to-right flow */
.certifications__marquee {
  width: 100%;
  overflow: hidden;
  background: #f7f8fa;
  border-radius: 28px;
  padding: 32px 0;
  margin-bottom: 48px;
}

.certifications__track {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0 24px;
  list-style: none;
  width: max-content;
  animation: cert-scroll 50s linear infinite;
}

@keyframes cert-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.certifications__card {
  flex-shrink: 0;
  width: 200px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.06);
  min-height: 340px;
  justify-content: space-between;
}

.certifications__type {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgb(150, 150, 158);
  margin-bottom: 4px;
}

.certifications__product {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgb(23, 23, 25);
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

.certifications__wreath-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.certifications__wreath {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
}

.certifications__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.certifications__name-line1 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: rgb(23, 23, 25);
  line-height: 22px;
}

.certifications__name-line2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: rgb(80, 82, 90);
  line-height: 18px;
}

.certifications__year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgb(100, 102, 110);
  margin: 8px 0 16px;
}

.certifications__logo {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-top: auto;
}

/* Pause marquee on hover */
.certifications__marquee:hover .certifications__track {
  animation-play-state: paused;
}

/* Feature list #1..#6 */
.certifications__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certifications__feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(23, 23, 25, 0.08);
}

.certifications__feature:first-child {
  border-top: none;
}

.certifications__feature-num {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgb(120, 120, 128);
  padding-top: 4px;
}

.certifications__feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: rgb(23, 23, 25);
  margin: 0 0 8px;
}

.certifications__feature-desc {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 26px;
  color: rgb(130, 130, 138);
  margin: 0;
  max-width: 720px;
}

@media (max-width: 767px) {
  .certifications__title {
    font-size: 22px;
  }
  .certifications__card {
    width: 180px;
    min-height: 300px;
    padding: 18px 14px;
  }
  .certifications__product {
    font-size: 18px;
  }
  .certifications__feature {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .certifications__feature-title {
    font-size: 17px;
  }
  .certifications__feature-desc {
    font-size: 14px;
    line-height: 22px;
  }
}

/* ── Built for production (replaces Enterprise Features) ── */
.built-prod {
  background: #fff;
}

.built-prod .container {
  max-width: 1280px;
}

.built-prod__header {
  max-width: 1000px;
  margin: 0 auto 48px;
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.08);
}

.built-prod__title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 62px;
  letter-spacing: -0.5px;
  color: rgb(23, 23, 25);
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.built-prod__title-line {
  display: block;
}

.built-prod__title-accent {
  color: rgb(118, 90, 242);
}

.built-prod__subtitle {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 28px;
  color: rgb(123, 126, 133);
  margin: 0;
}

.built-prod__stats-label {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: rgb(23, 23, 25);
  margin: 0 0 20px;
}

.built-prod__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 64px 48px;
  border-radius: 32px;
  background: linear-gradient(
    110deg,
    rgb(132, 146, 237) 0%,
    rgb(99, 190, 219) 45%,
    rgb(133, 219, 189) 100%
  );
}

.built-prod__stat {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px;
}

.built-prod__stat + .built-prod__stat {
  border-left: none;
}

.built-prod__stat-number {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 16px;
}

.built-prod__stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.built-prod__stat-desc {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 26px;
  color: #fff;
  margin: 0;
  letter-spacing: -0.2px;
}

/* Certifications marquee inside Built for production */
.built-prod__cert-label {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: rgb(23, 23, 25);
  margin: 56px 0 20px;
}

.built-prod__marquee {
  width: 100%;
  overflow: hidden;
  background: #f7f8fa;
  border-radius: 28px;
  padding: 32px 0;
}

.built-prod__track {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0 24px;
  list-style: none;
  width: max-content;
  animation: built-prod-scroll 50s linear infinite;
}

@keyframes built-prod-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.built-prod__marquee:hover .built-prod__track {
  animation-play-state: paused;
}

.built-prod__cert-card {
  flex-shrink: 0;
  width: 200px;
  min-height: 340px;
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 4px 16px -6px rgba(0, 0, 0, 0.06);
}

.built-prod__cert-type {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgb(150, 150, 158);
  margin-bottom: 4px;
}

.built-prod__cert-product {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgb(23, 23, 25);
  margin: 0 0 18px;
  letter-spacing: -0.3px;
}

.built-prod__cert-wreath-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.built-prod__cert-wreath {
  width: 22px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
}

.built-prod__cert-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.built-prod__cert-name-l1 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: rgb(23, 23, 25);
  line-height: 22px;
}

.built-prod__cert-name-l2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: rgb(80, 82, 90);
  line-height: 18px;
}

.built-prod__cert-year {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgb(100, 102, 110);
  margin: 8px 0 16px;
}

.built-prod__cert-logo {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-top: auto;
}

@media (max-width: 1023px) {
  .built-prod__title {
    font-size: 36px;
    line-height: 48px;
  }
  .built-prod__stats {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
    padding: 48px 32px;
  }
  .built-prod__stat-number {
    font-size: 72px;
  }
  .built-prod__cert-label {
    font-size: 22px;
    margin: 40px 0 16px;
  }
}

@media (max-width: 767px) {
  .built-prod__title {
    font-size: 28px;
    line-height: 38px;
  }
  .built-prod__subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .built-prod__stats-label {
    font-size: 22px;
  }
  .built-prod__stats {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
    border-radius: 24px;
  }
  .built-prod__stat {
    padding: 0;
  }
  .built-prod__stat-number {
    font-size: 64px;
  }
  .built-prod__stat-desc {
    font-size: 15px;
    line-height: 22px;
  }
}

/* ── Final CTA ── */
.final-cta {
  padding-top: var(--section-py-sm);
  padding-bottom: var(--section-py);
  background: var(--c-bg-white);
}

.final-cta__card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 88px 48px;
  color: var(--c-text-white);
  text-align: center;
  background-color: #0a0a0a;
  isolation: isolate;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 70% 80% at 15% 40%,
      rgba(196, 75, 242, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 80% 80% at 40% 90%,
      rgba(23, 93, 255, 0.45) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 60% at 80% 20%,
      rgba(255, 38, 106, 0.35) 0%,
      transparent 60%
    ),
    linear-gradient(120deg, #1b0b2a 0%, #0a0a0a 60%);
  filter: saturate(1.1);
}

.final-cta__body {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--c-text-white);
  margin-bottom: var(--gap-sm);
}

.final-cta__desc {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--gap-md);
}

.final-cta__btn {
  font-size: var(--fs-body);
}

@media (max-width: 768px) {
  .final-cta__card {
    padding: 56px 24px;
    border-radius: var(--r-lg);
  }
  .final-cta__title {
    font-size: 26px;
  }
  .final-cta__br {
    display: none;
  }
  .final-cta__desc {
    font-size: var(--fs-body);
  }
}
