.product-intro {
  --product-ink: #0b1220;
  --product-copy: #475467;
  --product-blue: #0f63ee;
  --product-blue-dark: #084fc7;
  --product-tint: #f3f7ff;
  overflow: hidden;
}

.product-intro *,
.product-intro *::before,
.product-intro *::after {
  box-sizing: border-box;
}

.product-section {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.product-section--white {
  background: #fff;
}

.product-section--tint {
  background: linear-gradient(180deg, #f7f9ff 0%, #f3f7ff 100%);
}

.product-section__head {
  max-width: 48rem;
  margin: 0 auto clamp(2.2rem, 5vw, 3.8rem);
  text-align: center;
}

.product-title {
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.14;
  text-wrap: balance;
}

.product-title--section {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
}

.product-lead {
  max-width: 42rem;
  margin: 1.15rem auto 0;
  color: var(--product-copy);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.product-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.product-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.8rem 1.2rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.product-button--primary {
  background: var(--product-blue);
  box-shadow: 0 18px 44px -24px rgba(15, 99, 238, 0.72);
  color: #fff;
}

.product-button--primary:hover {
  background: var(--product-blue-dark);
}

.product-button--secondary {
  border-color: rgba(15, 99, 238, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: var(--product-blue-dark);
}

.product-button--secondary:hover {
  border-color: rgba(15, 99, 238, 0.42);
  background: #fff;
}

.product-hero {
  position: relative;
  padding-block: clamp(5.5rem, 11vw, 9rem);
  background:
    radial-gradient(circle at 78% 16%, rgba(15, 99, 238, 0.16), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(115, 154, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}

.product-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 99, 238, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 99, 238, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
  pointer-events: none;
}

.product-hero__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 1.08fr);
}

.product-hero__copy {
  max-width: 39rem;
}

.product-hero__copy .product-lead {
  margin-inline: 0;
}

.product-hero__copy .product-button-row {
  margin-top: 2rem;
}

.product-problem-grid,
.product-quote-grid {
  display: grid;
  gap: 1.15rem;
}

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

.product-problem-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 99, 238, 0.1);
  border-radius: 26px;
  background: #fff;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.product-problem-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--product-blue), rgba(15, 99, 238, 0.12));
  content: "";
}

.product-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-problem-card__icon {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--product-tint);
  color: var(--product-blue);
  font-size: 0.78rem;
  font-weight: 750;
}

.product-problem-card h3 {
  margin: 0;
  color: var(--product-ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.product-problem-card p {
  margin: 0.7rem 0 0;
  color: var(--product-copy);
  font-size: 0.9rem;
  line-height: 1.75;
}

.product-metrics-wrap .product-section__head {
  margin-bottom: 2rem;
}

.product-metrics-wrap .product-title,
.product-metrics-wrap .product-lead {
  color: #fff;
}

.product-metrics-wrap .product-lead {
  color: rgba(255, 255, 255, 0.72);
}

.product-cases {
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 0.68fr);
}

.product-case-tabs {
  display: grid;
  gap: 0.65rem;
}

.product-case-tab {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(71, 84, 103, 0.14);
  border-radius: 16px;
  background: var(--surface-bg);
  padding: 0.85rem 1rem;
  color: var(--product-ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.product-case-tab__icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(15, 99, 238, 0.08);
  color: var(--product-blue);
  font-size: 0.72rem;
}

.product-case-tab.story-tab-active {
  border-color: rgba(15, 99, 238, 0.25) !important;
  background: #fff !important;
  box-shadow: 0 18px 42px -32px rgba(11, 18, 32, 0.48) !important;
}

.product-case-panel {
  border: 1px solid rgba(15, 99, 238, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 68px -50px rgba(11, 18, 32, 0.45);
  padding: clamp(1.45rem, 4vw, 2.5rem);
}

.product-case-panel__tag {
  color: var(--product-blue);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.product-case-panel h3 {
  margin: 0.55rem 0 0;
  color: var(--product-ink);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-case-columns {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-case-column {
  border-radius: 18px;
  background: var(--product-tint);
  padding: 1.15rem;
}

.product-case-column--result {
  background: linear-gradient(150deg, rgba(15, 99, 238, 0.12), rgba(15, 99, 238, 0.035));
}

.product-case-column h4 {
  margin: 0;
  color: var(--product-ink);
  font-size: 0.82rem;
  font-weight: 750;
}

.product-case-column p {
  margin: 0.65rem 0 0;
  color: var(--product-copy);
  font-size: 0.88rem;
  line-height: 1.7;
}

.product-case-panel .product-button {
  margin-top: 1.35rem;
}

.product-proof-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.product-proof-list li {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 2rem 1fr;
  border-top: 1px solid rgba(71, 84, 103, 0.1);
  padding-top: 0.8rem;
  color: var(--product-copy);
  font-size: 0.87rem;
  line-height: 1.65;
}

.product-proof-list span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--product-tint);
  color: var(--product-blue);
  font-size: 0.7rem;
  font-weight: 750;
}

.product-partner-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 99, 238, 0.08);
  border-radius: 34px;
  padding-block: 1.8rem;
  mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
}

.product-partner-shell .partner-marquee__item img {
  height: 2.4rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  opacity: 0.68;
  filter: saturate(0.55);
  transition: opacity 180ms ease, filter 180ms ease;
}

.product-partner-shell .partner-marquee__item img:hover {
  opacity: 1;
  filter: saturate(1);
}

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

.product-quote {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(15, 99, 238, 0.1);
  border-radius: 24px;
  background: #fff;
  padding: 1.35rem;
}

.product-quote::before {
  color: rgba(15, 99, 238, 0.25);
  content: "“";
  font-family: Georgia, serif;
  font-size: 2.7rem;
  line-height: 0.8;
}

.product-quote blockquote {
  margin: 1rem 0 0;
  color: var(--product-ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.75;
}

.product-quote--featured {
  min-height: 0;
  grid-column: 1 / -1;
}

.product-quote--featured blockquote {
  max-width: 52rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.75;
}

.product-quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
  border-top: 1px solid var(--product-line);
  padding-top: 1rem;
}

.product-quote figcaption > img {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.product-quote__author {
  display: grid;
  gap: 0.25rem;
}

.product-quote figcaption strong {
  color: var(--product-ink);
  font-size: 0.9rem;
}

.product-quote figcaption span {
  color: var(--product-copy);
  font-size: 0.78rem;
  line-height: 1.6;
}

.product-final {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: #fff;
}

.product-final__card {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #0f63ee 0%, #073786 100%);
  box-shadow: 0 38px 90px -50px rgba(15, 99, 238, 0.75);
  padding: clamp(1.7rem, 5vw, 4rem);
  color: #fff;
}

.product-final h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.product-final ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.product-final li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.product-final li::before {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.product-final .product-button-row {
  margin-top: 1.7rem;
}

.product-final .product-button--primary {
  background: #fff;
  color: var(--product-blue-dark);
}

.product-final .product-button--secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.product-final__qr {
  justify-self: center;
  border-radius: 24px;
  background: #fff;
  padding: 0.8rem;
  text-align: center;
}

.product-final__qr img {
  display: block;
  width: min(100%, 210px);
  height: auto;
  border-radius: 14px;
}

.product-final__qr p {
  margin: 0.75rem 0 0;
  color: var(--product-copy);
  font-size: 0.72rem;
  font-weight: 650;
}

@media (max-width: 64rem) {
  .product-hero__inner{
    grid-template-columns: 1fr;
  }

  .product-hero__copy {
    max-width: 47rem;
    text-align: center;
    justify-self: center;
  }

  .product-hero__copy .product-lead {
    margin-inline: auto;
  }

  .product-hero__copy .product-button-row {
    justify-content: center;
  }

  .product-cases {
    grid-template-columns: 1fr;
  }

  .product-case-tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
  }

  .product-case-tab {
    min-width: max-content;
    scroll-snap-align: start;
  }
}

@media (max-width: 48rem) {
  .product-section {
    padding-block: 4rem;
  }

  .product-title {
    letter-spacing: -0.025em;
  }

  .product-hero {
    padding-block: 4.5rem;
  }

  .product-hero__inner {
    gap: 2.5rem;
  }

  
  .product-problem-grid,
  .product-case-columns,
  .product-quote-grid,
  .product-final__card {
    grid-template-columns: 1fr;
  }

  .product-partner-shell .partner-marquee {
    gap: 1.5rem;
  }

  .product-partner-shell .partner-marquee__item img {
    height: 1.8rem;
    max-width: 7rem;
  }

  .product-final__qr {
    justify-self: start;
  }
}

/* Match the original Educator customer logo presentation */
.product-partner-shell.partner-marquee-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 40px;
  padding: 1.5rem 0.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8) 18%, rgba(0, 0, 0, 0.8) 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.8) 18%, rgba(0, 0, 0, 0.8) 82%, transparent);
}

.product-partner-logo {
  width: auto;
  max-width: 10rem;
  height: 2.5rem;
  object-fit: contain;
  opacity: 0.8;
  filter: none;
  transition: opacity 180ms ease;
}

.product-partner-logo:hover {
  opacity: 1;
}

.product-partner-shell .partner-marquee__item .product-partner-logo {
  width: auto;
  max-width: 10rem;
  height: 2.5rem;
  object-fit: contain;
  opacity: 0.8;
  filter: none;
}

.product-partner-shell .partner-marquee__item .product-partner-logo:hover {
  opacity: 1;
  filter: none;
}

/* Final flat color system */
.product-hero,
.product-section--tint,
  .product-case-column--result,
.product-final__card {
  background-image: none;
}

.product-hero,
.product-section--tint {
  background-color: #f6f7f9;
}

.product-case-panel,
.product-quote {
  background-image: none;
  border-color: #e5e7eb;
  background-color: #fff;
  box-shadow: none;
}

.product-case-column,
.product-case-column--result,
.product-final__card {
  border-color: #e5e7eb;
  background-color: #f3f4f6;
  box-shadow: none;
}

.product-problem-card::before {
  background-image: none;
  background-color: var(--product-blue);
}

.product-final__card {
  border: 1px solid #e5e7eb;
  color: var(--product-ink);
}

.product-final h2 {
  color: var(--product-ink);
}

.product-final li {
  color: var(--product-copy);
}

.product-final li::before {
  background: var(--product-blue);
}

.product-final .product-button--primary {
  background: var(--product-blue);
  color: #fff;
}

.product-final .product-button--secondary {
  border-color: rgba(23, 105, 232, 0.2);
  background: #fff;
  color: var(--product-blue-dark);
}

/* Recognition evidence */
.product-recognition {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
}

.product-recognition__content .product-proof-list {
  gap: 0;
  margin: 0;
}

.product-recognition__content .product-proof-list li {
  gap: 1rem;
  border-top: 0;
  grid-template-columns: 2.5rem 1fr;
  padding-block: 1rem;
  font-size: 0.95rem;
}

.product-recognition__content .product-proof-list span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
}

.product-recognition__visual {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  padding: clamp(0.65rem, 1.5vw, 0.9rem);
  border-radius: 22px;
  background: #f3f4f6;
}

.product-recognition__visual img {
  display: block;
  width: 100%;
  border-radius: 15px;
}

@media (max-width: 64rem) {
  .product-recognition {
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
  }
}

@media (max-width: 48rem) {
  .product-recognition {
    grid-template-columns: 1fr;
  }

  .product-recognition__visual {
    width: min(100%, 330px);
  }
}

/* Hero outcome summary */
.product-impact {
  background: #f6f7f9;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.product-impact__panel {
  overflow: hidden;
  border: 1px solid #e8ebf0;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 60px -54px rgba(11, 18, 32, 0.45);
  padding: clamp(1.75rem, 4vw, 3rem);
}

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

.product-impact__group {
  min-width: 0;
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
}

.product-impact__group--learning {
  border-left: 1px solid #e8ebf0;
  padding-right: 0;
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}

.product-impact__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.product-impact__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 11px;
  background: rgba(23, 105, 232, 0.08);
  color: var(--product-blue);
}

.product-impact__header h2 {
  margin: 0;
  color: var(--product-ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-impact__metrics {
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-impact__metric {
  min-width: 0;
}

.product-impact__metric strong {
  display: block;
  color: var(--product-blue);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
  white-space: nowrap;
}

.product-impact__metric p {
  max-width: 9.5rem;
  margin: 0.65rem 0 0;
  color: var(--product-copy);
  font-size: 0.84rem;
  line-height: 1.6;
}

.product-impact__note {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: clamp(1.8rem, 3vw, 2.4rem) 0 0;
  border-radius: 12px;
  background: #f6f7f9;
  padding: 0.75rem 0.9rem;
  color: var(--text-tertiary);
  font-size: 0.76rem;
  line-height: 1.65;
}

.product-impact__note span {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8c0cc;
  border-radius: 50%;
  margin-top: 0.08rem;
  color: #778292;
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1;
}

@media (max-width: 64rem) {
  .product-impact__grid {
    grid-template-columns: 1fr;
  }

  .product-impact__group {
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .product-impact__group--learning {
    border-top: 1px solid #e8ebf0;
    border-left: 0;
    padding-top: 2rem;
    padding-left: 0;
  }

  .product-impact__metric p {
    max-width: 14rem;
  }
}

@media (max-width: 36rem) {
  .product-impact {
    padding-block: 3rem;
  }

  .product-impact__panel {
    border-radius: 22px;
    padding: 1.35rem;
  }

  .product-impact__metrics {
    gap: 1.1rem;
    grid-template-columns: 1fr;
  }

  .product-impact__metric {
    border-top: 1px solid #eef0f3;
    padding-top: 1rem;
  }

  .product-impact__metric strong {
    font-size: 1.65rem;
  }

  .product-impact__metric p {
    max-width: none;
    margin-top: 0.35rem;
    font-size: 0.82rem;
  }

  .product-impact__note {
    margin-top: 1.5rem;
  }
}

.product-hero__inner {
  display: block;
}

.product-hero__copy {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.product-hero__copy .product-lead {
  margin-inline: auto;
}

.product-hero__highlight {
  color: var(--product-blue);
  font-weight: 700;
}

.product-hero__copy .product-button-row {
  justify-content: center;
}

.product-metrics-wrap .product-section__head {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 0 clamp(2.75rem, 5vw, 4rem);
  text-align: left;
}

.product-metrics-wrap .product-title {
  max-width: 36rem;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.22;
}

@media (max-width: 48rem) {

  .product-metrics-wrap .product-section__head {
    margin-bottom: 2rem;
  }
}

/* Flat product theme */
.product-intro {
  --product-blue: #1769e8;
  --product-blue-dark: #0f56c8;
  --product-tint: #f3f4f6;
  --product-line: #e5e7eb;
  background: #fff;
}

.product-hero,
.product-section--tint {
  background: #f6f7f9;
}

.product-hero::before {
  display: none;
}

.product-button,
.product-problem-card,
.product-case-tab,
.product-case-panel,
.product-case-column,
  .product-quote,
.product-final__card {
  box-shadow: none;
}

.product-button--primary {
  background: var(--product-blue);
}

.product-section--white,
.product-final {
  background: #fff;
}

.product-problem-card,
.product-case-panel,
.product-quote {
  border-color: var(--product-line);
  background: #fff;
}

.product-problem-card::before {
  background: var(--product-blue);
}

.product-problem-card::after {
  display: none;
}

.product-metrics-wrap .product-title{
  color: var(--product-ink);
}

.product-metrics-wrap .product-lead{
  color: var(--product-copy);
}

.product-case-column,
.product-case-column--result,
.product-case-tab{
  border-color: var(--product-line);
  background: #f3f4f6;
}

.product-case-tab.story-tab-active {
  border-color: rgba(23, 105, 232, 0.35) !important;
  background: #fff !important;
  box-shadow: none !important;
}

.product-partner-shell {
  border-color: var(--product-line);
}

.product-final__card {
  border: 1px solid var(--product-line);
  background: #f3f4f6;
  color: var(--product-ink);
}

.product-final h2 {
  color: var(--product-ink);
}

.product-final li {
  color: var(--product-copy);
}

.product-final li::before {
  background: var(--product-blue);
}

.product-final .product-button--primary {
  background: var(--product-blue);
  color: #fff;
}

.product-final .product-button--secondary {
  border-color: rgba(23, 105, 232, 0.2);
  background: #fff;
  color: var(--product-blue-dark);
}

/* Keep the opening story visually connected, then alternate section backgrounds. */
.product-hero {
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.product-impact {
  padding-top: 0;
}

.product-section--capabilities {
  position: relative;
  background: #fff;
}

@media (max-width: 34rem) {
  .product-button-row,
  .product-button {
    width: 100%;
  }

  .product-case-tab {
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-button {
    transition: none;
  }

  .product-button:hover {
    transform: none;
  }
}

/* Editorial layout: reserve containers for product visuals and conversion moments. */
.product-section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

.product-section--tint {
  background: #f7f8fb;
}

.product-section__head {
  margin-bottom: clamp(2.6rem, 5vw, 4.4rem);
}

.product-problem-grid {
  gap: clamp(1.2rem, 3vw, 2rem);
}

.product-problem-card {
  isolation: isolate;
  min-height: 250px;
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  padding: clamp(1.7rem, 4vw, 2.6rem);
}

.product-problem-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  z-index: -1;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(15, 99, 238, 0.065);
  content: "";
  filter: blur(4px);
}

.product-problem-card::before {
  display: block;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--product-blue), transparent 72%);
}

.product-problem-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.3rem;
  border-radius: 50%;
  background: rgba(15, 99, 238, 0.08);
}

.product-problem-card__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.product-case-tab__icon svg,
.product-proof-list__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.product-problem-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.product-problem-card p {
  max-width: 31rem;
  margin-top: 1rem;
  font-size: 0.96rem;
}

.product-metrics-wrap .product-title {
  color: var(--product-ink);
}

.product-proof-list li {
  padding-block: 0.95rem;
}

.product-partner-shell {
  border: 0;
  border-radius: 0;
  padding-block: 1rem;
}

.product-quote-grid {
  gap: clamp(1rem, 2vw, 1.4rem);
}

.product-quote {
  min-height: 280px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.product-quote blockquote {
  max-width: 32rem;
  font-size: 1rem;
}

.product-quote--featured {
  min-height: 0;
}

.product-quote--featured blockquote {
  max-width: 52rem;
}

@media (max-width: 48rem) {
  .product-section {
    padding-block: 4.8rem;
  }

  .product-problem-card,
  .product-problem-card:nth-child(odd),
  .product-problem-card:nth-child(even) {
    min-height: 0;
    border-right: 0;
    padding: 1.5rem;
  }

  .product-quote,
  .product-quote:nth-child(3n + 1),
  .product-quote:nth-child(3n) {
    min-height: 0;
    border-right: 0;
    padding: 1.5rem;
  }
}

/* Final flat color system: keep this last so legacy component styles cannot reintroduce gradients. */
.product-hero,
.product-section--tint,
  .product-case-column--result,
.product-final__card {
  background-image: none;
}

.product-hero,
.product-section--tint {
  background-color: #f6f7f9;
}

.product-case-panel,
.product-quote{
  background-image: none;
  border-color: #e5e7eb;
  background-color: #fff;
  box-shadow: none;
}

.product-case-column,
.product-case-column--result,
.product-final__card {
  border-color: #e5e7eb;
  background-color: #f3f4f6;
  box-shadow: none;
}

.product-problem-card::before {
  background-image: none;
  background-color: var(--product-blue);
}

.product-final__card {
  border: 1px solid #e5e7eb;
  color: var(--product-ink);
}

.product-final h2 {
  color: var(--product-ink);
}

.product-final li {
  color: var(--product-copy);
}

.product-final li::before {
  background: var(--product-blue);
}

.product-final .product-button--primary {
  background: var(--product-blue);
  color: #fff;
}

.product-final .product-button--secondary {
  border-color: rgba(23, 105, 232, 0.2);
  background: #fff;
  color: var(--product-blue-dark);
}
