/* ============================================================
   Priceff homepage — pixel-faithful rebuild from Figma
   Font: Nunito | Canvas width: 1440px
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --navy-900: #12192b;   /* page background */
  --navy-700: #212e4e;   /* cards / surfaces */
  --yellow:   #ffd741;   /* primary accent */
  --white:    #ffffff;
  --text-muted: #aab2c5; /* low-emphasis body text on navy */

  /* Typography */
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;   /* content max-width from Figma (100–1340 = 1240) */
  --gutter: 24px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  font-weight: 300;
  background: var(--navy-900);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section vertical rhythm */
section {
  position: relative;
}

/* Always leave breathing room before the footer */
main > section:last-child {
  padding-bottom: 120px;
}

/* Utility */
.section-heading {
  font-size: 38px;
  line-height: 48px;
  font-weight: 300;
}

.section-heading strong,
.accent {
  color: var(--yellow);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding-inline: 28px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

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

.btn--primary {
  background: var(--yellow);
  color: var(--navy-900);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 25, 43, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin-inline: auto;
  padding: 50px 48px;
}

.site-header.is-scrolled .site-header__inner {
  padding-block: 22px;
}

.site-header__logo img {
  height: 38px;
  width: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 44px;
}

.site-nav__list a {
  font-size: 16px;
  font-weight: 400;
  color: var(--yellow);
  opacity: 0.92;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.site-nav__list a:hover {
  opacity: 1;
}

.site-nav__cta {
  font-weight: 700;
}

/* --- Industries dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--yellow);
  opacity: 0.92;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger:focus-visible {
  opacity: 1;
}

.nav-dropdown__caret {
  width: 10px;
  height: 10px;
  transition: transform 0.15s ease;
}

.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  width: 420px;
  background: var(--navy-700);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}

.nav-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown__item[aria-disabled="true"] {
  cursor: default;
  opacity: 0.45;
}

.nav-dropdown__item[aria-disabled="true"]:hover {
  background: none;
}

.nav-dropdown__icon {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  object-fit: contain;
  object-position: center;
}

.nav-dropdown__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.nav-dropdown__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 90px;
  padding-bottom: 70px;
}

.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.hero__copy {
  max-width: 564px;
  flex: 1 1 564px;
}

.hero__title {
  font-size: 58px;
  line-height: 60px;
  font-weight: 300;
  letter-spacing: -0.5px;
}

.hero__title strong {
  color: var(--yellow);
  font-weight: 700;
}

.hero__lede {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 300;
  max-width: 572px;
  color: var(--white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

.hero__art {
  flex: 0 0 auto;
  width: 258px;
  margin-top: 10px;
}

.hero__art img {
  width: 100%;
  height: auto;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 130px;
}

.stat {
  padding-inline: 36px;
  position: relative;
  text-align: center;
}

.stat:first-child {
  padding-left: 0;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.stat__num {
  display: block;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--yellow);
}

.stat__label {
  margin-top: 18px;
  margin-inline: auto;
  max-width: 320px;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.375;
}

.stat__label strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

/* ============================================================
   VIDEO / GUESSWORK
   ============================================================ */
.video-section {
  padding-top: 110px;
}

.video-section__title {
  text-align: center;
  margin-bottom: 48px;
}

.video {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  aspect-ratio: 880 / 476;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-700);
}

.video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__play {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 84px;
  height: 84px;
  border-radius: var(--radius-md);
  background: var(--yellow);
  display: grid;
  place-items: center;
  transition: transform 0.18s ease;
}

.video__play:hover {
  transform: scale(1.06);
}

.video__play svg {
  width: 34px;
  height: 34px;
  fill: var(--navy-900);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding-top: 130px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
  row-gap: 120px;
}

.feature__art {
  position: relative;
  height: 200px;
  margin-bottom: 36px;
}

.feature__title {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature__body {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 510px;
}

/* --- Feature graphic: price tags --- */
.feature__art--tags {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 40px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  color: var(--navy-900);
}

.price-tag--lg {
  background: var(--yellow);
  font-size: 28px;
  width: 184px;
  height: 78px;
  z-index: 2;
}

.price-tag--sm {
  background: #fff;
  font-size: 22px;
  width: 184px;
  height: 78px;
  margin-left: -32px;
  margin-top: 43px;
  opacity: 0.95;
}

/* --- Feature graphic: rising bars + uplift --- */
.feature__art--bars {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-left: 4px;
}

.feature__art--bars .bar {
  display: block;
  width: 96px;
  border-radius: 12px;
  background: var(--navy-700);
}

.bar--short { height: 100px; }
.bar--tall  { height: 150px; background: var(--yellow); }

.uplift-badge {
  position: absolute;
  top: 6px;
  right: 10px;
  background: var(--yellow);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 10px;
  z-index: 2;
}

.uplift-line {
  position: absolute;
  inset: 10px 10px auto 10px;
  height: 90px;
  width: calc(100% - 20px);
  overflow: visible;
}

.uplift-line line {
  stroke: var(--yellow);
  stroke-width: 3;
  stroke-dasharray: 6 6;
}

/* --- Feature graphic: alert --- */
.feature__art--alert {
  display: block;
}

.alert-dot {
  position: absolute;
  top: 20px;
  left: 60px;
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-900);
  font-weight: 800;
  font-size: 34px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.alert-stem {
  position: absolute;
  top: 86px;
  left: 94px;
  width: 2px;
  height: 38px;
  background: var(--yellow);
}

.alert-card {
  position: absolute;
  top: 110px;
  left: 0;
  width: 251px;
  height: 86px;
  border-radius: 14px;
  background: var(--navy-700);
}

/* --- Feature graphic: dot grid --- */
.feature__art--dots {
  --dot: 18px;
  --gap: 17px;
  background-image: radial-gradient(var(--navy-700) 45%, transparent 46%);
  background-size: calc(var(--dot) + var(--gap)) calc(var(--dot) + var(--gap));
  background-position: right top;
  height: 110px;
  width: 100%;
  max-width: 310px;
  margin-left: auto;
  position: relative;
}

.feature__art--dots::after {
  /* a cluster of highlighted yellow dots */
  content: "";
  position: absolute;
  top: 0;
  right: 70px;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(var(--yellow) 45%, transparent 46%);
  background-size: calc(var(--dot) + var(--gap)) calc(var(--dot) + var(--gap));
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 62%);
          mask-image: radial-gradient(circle at 50% 50%, #000 60%, transparent 62%);
}

/* ============================================================
   TRUSTED / TESTIMONIAL
   ============================================================ */
.trusted {
  padding-top: 150px;
}

.trusted__title {
  margin-bottom: 56px;
}

.testimonial {
  display: grid;
  grid-template-columns: 1fr 422px;
  background: var(--navy-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 565px;
}

.testimonial__body {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.pill--tag {
  background: transparent;
  color: var(--yellow);
  padding: 0;
  font-size: 15px;
}

.pill--sm {
  font-size: 14px;
  padding: 0;
}

.pill__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.testimonial__quote {
  font-size: 26px;
  line-height: 38px;
  font-weight: 300;
  margin: 40px 0 auto;
  max-width: 612px;
}

.testimonial__author {
  font-weight: 700;
  font-size: 16px;
  margin: 28px 0 24px;
}

.testimonial__media {
  position: relative;
}

.testimonial__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Industry cards --- */
.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.ind-card {
  background: var(--navy-700);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 228px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ind-card__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  margin: 18px 0 auto;
}

.link-arrow {
  color: var(--yellow);
  font-weight: 700;
  font-size: 16px;
  margin-top: 18px;
  transition: gap 0.15s ease, opacity 0.15s ease;
}

.link-arrow:hover {
  opacity: 0.8;
}

/* ============================================================
   INDUSTRY INSIGHTS
   ============================================================ */
.insights {
  padding-top: 150px;
}

.insights__title {
  margin-bottom: 40px;
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding-top: 90px; /* room for the booklets that poke above each card */
}

.insight-card {
  position: relative;
  background: var(--navy-700);
  border-radius: var(--radius-md);
  padding: 0 28px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Booklet: full transparent PNG (own shadow baked in) poking above the card.
   No crop, no border-radius, no extra box-shadow. */
.insight-card__img {
  width: 82%;
  height: auto;
  display: block;
  margin: -90px auto 20px;
  align-self: center;
}

.insight-card__title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: auto;
}

.insight-card .link-arrow {
  margin-top: 24px;
  font-weight: 400;
}

/* ============================================================
   BLOG / LATEST THINKING
   ============================================================ */
.blog {
  padding-top: 150px;
}

.blog__title {
  margin-bottom: 56px;
}

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

.post-card {
  display: flex;
  flex-direction: column;
}

.post-card__media {
  background: var(--yellow);
  border-radius: var(--radius-md);
  aspect-ratio: 396 / 202;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.post-card__media img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.post-card__title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 14px;
}

.post-card__excerpt {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding-top: 150px;
  padding-bottom: 120px;
}

.cta__card {
  display: grid;
  grid-template-columns: 1fr 619px;
  background: var(--navy-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 565px;
}

.cta__body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta__title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 300;
  margin: 28px 0 24px;
  max-width: 612px;
}

.cta__text {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 489px;
  margin-bottom: auto;
}

.cta__body .btn {
  margin-top: 36px;
}

.cta__media {
  position: relative;
  background: var(--yellow);
}

.cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0c1220;
  padding: 80px 48px 40px;
}

.site-footer__inner {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand img {
  height: 38px;
  width: auto;
  margin-bottom: 20px;
}

.site-footer__tagline {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 280px;
}

.footer-cols {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 300;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.site-footer__bottom {
  max-width: 1240px;
  margin-inline: auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer__legal {
  display: flex;
  gap: 28px;
}

.site-footer__legal a {
  color: var(--text-muted);
}

.site-footer__legal a:hover {
  color: var(--white);
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */

/* White image placeholders (designer's empty image frames in Figma) */
.hiw-hero__media,
.hiw-feature__media,
.about-hero__media,
.about-row__media {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* --- Hero --- */
.hiw-hero {
  padding-top: 90px;
  padding-bottom: 90px;
}

.hiw-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hiw-hero__copy {
  flex: 1 1 572px;
  max-width: 572px;
}

.hiw-hero__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 300;
}

.hiw-hero__title strong {
  color: var(--yellow);
  font-weight: 700;
}

.hiw-hero__lede {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  max-width: 572px;
}

.hiw-hero__media {
  flex: 0 0 570px;
  width: 570px;
  aspect-ratio: 570 / 362;
}

/* --- Stop pricing (centered) --- */
.hiw-feature {
  padding-top: 70px;
  text-align: center;
}

.hiw-feature__media {
  width: 800px;
  max-width: 100%;
  aspect-ratio: 800 / 362;
  margin: 0 auto 64px;
}

.hiw-feature__title {
  margin-bottom: 22px;
}

.hiw-feature__text {
  max-width: 800px;
  margin-inline: auto;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
}

/* --- 2x2 feature grid --- */
.hiw-grid {
  padding-top: 110px;
}

.hiw-grid__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 160px;
  row-gap: 64px;
}

.hiw-cell__title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 16px;
  max-width: 510px;
  min-height: 76px;
}

.hiw-cell__text {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 568px;
}

/* --- Testimonial spacing on this page --- */
.hiw-trusted {
  padding-top: 130px;
}

/* --- Four steps --- */
.steps2 {
  padding-top: 150px;
}

.steps2__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 140px;
  align-items: center;
}

.steps2__art {
  display: flex;
  justify-content: center;
}

.steps2__art img {
  width: 309px;
  max-width: 100%;
  height: auto;
}

.steps2__title {
  margin-bottom: 40px;
}

.steps2__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.step2__label {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 8px;
}

.step2__title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  margin-bottom: 12px;
}

.step2__text {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 568px;
}

/* ============================================================
   INDUSTRIES PAGE
   ============================================================ */

/* --- Hero (image + stats) --- */
.ind-hero {
  padding-top: 65px;
  padding-bottom: 70px;
}

.ind-hero--flush {
  padding-bottom: 0;
}

.ind-hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.ind-hero__copy {
  flex: 1 1 572px;
  max-width: 572px;
}

.ind-hero__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 300;
}

.ind-hero__title strong {
  color: var(--yellow);
  font-weight: 700;
}

.ind-hero__lede {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  max-width: 572px;
}

.ind-hero__media {
  flex: 0 0 570px;
  width: 570px;
  aspect-ratio: 570 / 530;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ind-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind-hero .stats {
  margin-top: 90px;
}

/* --- Capability sections (photo banner + card grid) --- */
.ind-capability {
  padding-top: 150px;
  text-align: center;
}

.ind-capability__title {
  max-width: 918px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.ind-capability__photo {
  width: 100%;
  aspect-ratio: 1242 / 626;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ind-capability__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ind-capability__grid {
  position: relative;
  z-index: 2;
  margin-top: -180px;
  padding-inline: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.ind-capability__card {
  background: var(--navy-700);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ind-capability__card:has(> .ind-capability__card-text:only-child) {
  min-height: 336px;
  justify-content: center;
}

.ind-capability__card-text:only-child {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  color: var(--white);
}

.ind-capability__card-title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 300;
  min-height: 114px;
}

.ind-capability__card-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  color: var(--white);
}

.ind-capability__card-title + .ind-capability__card-text {
  margin-top: 12px;
}

/* --- Feature banner (pill + title + CTA, photo insert) --- */
.ind-feature {
  padding-top: 150px;
}

.ind-feature__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  background: var(--navy-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.ind-feature__body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.ind-feature__title {
  font-size: 38px;
  line-height: 48px;
  font-weight: 300;
  max-width: 419px;
}

.ind-feature__media {
  position: relative;
}

.ind-feature__media img {
  position: absolute;
  top: -32px;
  right: 40px;
  width: calc(100% - 80px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  padding-top: 65px;
}

.about-hero + .about-row {
  padding-top: 158px;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 570px 570px;
  align-items: center;
  gap: 52px;
}

.about-hero__copy {
  max-width: 450px;
}

.about-hero__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 300;
  max-width: 406px;
}

.about-hero__title strong {
  color: var(--yellow);
  font-weight: 700;
}

.about-hero__lede {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}

.about-hero__media {
  width: 100%;
  aspect-ratio: 570 / 530;
}

.about-row {
  padding-top: 120px;
}

.about-row__inner {
  display: grid;
  grid-template-columns: 570px 570px;
  align-items: center;
  gap: 52px;
}

.about-row + .cta {
  padding-top: 100px;
  padding-bottom: 133px;
}

.about-row--reverse .about-row__media {
  order: 2;
}

.about-row--reverse .about-row__copy {
  order: 1;
}

.about-row__media {
  width: 100%;
  aspect-ratio: 570 / 362;
}

.about-row__copy {
  max-width: 571px;
}

.about-row__title {
  font-size: 38px;
  line-height: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-row__text {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}

.about-row__text + .about-row__text {
  margin-top: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
main > .contact-info:last-child {
  padding-bottom: 68px;
}

.contact-info {
  padding-top: 48px;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 129px;
}

.contact-info__company p {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}

.contact-info__company p:first-child {
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-person__avatar {
  width: 224px;
  height: 224px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  background: var(--yellow);
}

.contact-person__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-person__name {
  font-weight: 700;
  font-size: 18px;
}

.contact-person p {
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  margin-top: 4px;
}

.contact-person a:hover {
  color: var(--yellow);
}

.contact-person__langs {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 16px;
  max-width: 250px;
}

/* ============================================================
   BOOK A DEMO PAGE
   ============================================================ */
.demo-hero {
  padding-top: 140px;
  text-align: center;
}

.demo-hero__inner {
  max-width: 844px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.demo-hero__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--yellow);
}

.demo-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-hero__label {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}

.demo-hero__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 300;
}

.demo-hero__title strong {
  color: var(--yellow);
  font-weight: 700;
}

.demo-hero__lede {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  max-width: 800px;
}

.demo-booking {
  padding-top: 80px;
}

.demo-booking__card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 38px;
  overflow: hidden;
  min-height: 640px;
}

.demo-booking__info {
  flex: 0 0 360px;
  padding: 56px 40px;
  border-right: 1px solid #e7e7e7;
  font-family: "Montserrat", sans-serif;
}

.demo-booking__info-title {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  color: #212121;
  margin-bottom: 20px;
}

.demo-booking__info-text {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #212121;
  max-width: 221px;
  margin-bottom: 24px;
}

.demo-booking__info-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 18px;
}

.demo-booking__info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 221px;
  padding-left: 18px;
}

.demo-booking__info-list li {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #212121;
  list-style: disc;
}

.demo-booking__widget {
  flex: 1 1 auto;
  min-height: 640px;
  background: #ffffff;
}

/* ============================================================
   RESULTS PAGE
   ============================================================ */
.results-grid {
  padding-top: 150px;
}

.results-grid .filter-tabs {
  margin-bottom: 0;
}

.industry-cards--results {
  margin-top: 100px;
}

.results-grid + .insights {
  padding-top: 100px;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-hero {
  padding-top: 100px;
  padding-bottom: 40px;
  text-align: center;
}

.resources-hero__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 400;
  max-width: 732px;
  margin-inline: auto;
}

.resources-hero__title strong {
  color: var(--yellow);
  font-weight: 700;
}

/* --- Shared heading + link row (e.g. "Case studies" + "Find more case studies →") --- */
.section-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

/* --- Filter tabs (Articles) --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding-inline: 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 215, 65, 0.5);
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 300;
  transition: background 0.15s ease;
}

.filter-tab:hover {
  background: rgba(255, 215, 65, 0.7);
}

.filter-tab--active {
  background: var(--yellow);
}

/* --- Load more --- */
.load-more {
  display: block;
  text-align: center;
  margin-top: 56px;
  color: var(--yellow);
  font-size: 16px;
  font-weight: 700;
}

.load-more:hover {
  opacity: 0.8;
}

/* ============================================================
   DOWNLOAD GUIDE
   ============================================================ */
.guide {
  padding-top: 65px;
}

.guide__inner {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.guide__copy {
  flex: 1 1 480px;
  max-width: 500px;
}

.guide__book {
  width: 260px;
  margin-bottom: 48px;
}

.guide__book img {
  width: 100%;
  height: auto;
  display: block;
}

.guide__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 300;
}

.guide__title strong {
  color: var(--yellow);
  font-weight: 700;
}

.guide__lede {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
}

.guide-form {
  flex: 0 0 570px;
  max-width: 570px;
  background: var(--navy-700);
  border-radius: var(--radius-lg);
  padding: 56px 70px;
}

.guide-form__title {
  font-size: 38px;
  line-height: 48px;
  font-weight: 300;
  margin-bottom: 28px;
}

.guide-form__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-form__input,
.guide-form__select {
  height: 50px;
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  padding-inline: 20px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy-900);
  background: var(--white);
}

.guide-form__input::placeholder {
  color: var(--navy-900);
  opacity: 1;
}

.guide-form__select-wrap {
  position: relative;
}

.guide-form__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 70px;
  cursor: pointer;
}

.guide-form__select-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--navy-900);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.guide-form__select-arrow svg {
  width: 12px;
  height: 8px;
}

.guide-form__consent {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
}

.guide-form__submit {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   ARTICLE
   ============================================================ */
.article {
  padding-top: 65px;
}

.article__col {
  max-width: 800px;
  margin-inline: auto;
}

.article__hero {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  aspect-ratio: 800 / 408;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
}

.article__hero img {
  width: 82%;
  height: auto;
  mix-blend-mode: multiply;
}

.article__eyebrow {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--yellow);
  margin-bottom: 12px;
}

.article__title {
  font-size: 48px;
  line-height: 56px;
  font-weight: 400;
}

.article__standfirst {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
}

.article__body {
  margin-top: 24px;
}

.article__body p {
  font-size: 18px;
  font-weight: 300;
}

.article__body p + p {
  margin-top: 24px;
}

.article__body h2 {
  font-size: 28px;
  font-weight: 400;
  margin-top: 56px;
  margin-bottom: 24px;
}

.article__divider {
  margin-top: 64px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.article__cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
}

.article__cta-avatar {
  flex: 0 0 auto;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--yellow);
}

.article__cta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.article__cta-text {
  font-size: 22px;
  font-weight: 400;
}

.article__guides {
  margin-top: 150px;
}

.article__body strong {
  color: var(--yellow);
}

.article__hero--placeholder {
  background: var(--white);
}

.article .stats {
  margin-top: 40px;
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features__grid { column-gap: 80px; row-gap: 90px; }
  .testimonial { grid-template-columns: 1fr 360px; }
  .cta__card { grid-template-columns: 1fr 480px; }
  .ind-feature__inner { grid-template-columns: 1fr 340px; }
}

@media (max-width: 900px) {
  /* Header → mobile nav */
  .nav-toggle { display: flex; }
  .site-header__inner { padding: 28px 24px; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 18, 32, 0.98);
    backdrop-filter: blur(8px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-header.nav-open .site-nav { max-height: 60vh; }
  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
  }
  .site-nav__list li { width: 100%; }
  .site-nav__list a { display: block; padding: 14px 0; }

  /* Industries dropdown becomes an inline accordion on mobile */
  .nav-dropdown__trigger { display: flex; width: 100%; justify-content: space-between; padding: 14px 0; }
  .nav-dropdown__panel {
    position: static;
    top: auto; left: auto; transform: none;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    transition: max-height 0.25s ease;
  }
  .nav-dropdown.is-open .nav-dropdown__panel { max-height: 600px; padding: 4px 0 12px; }
  .nav-dropdown:hover .nav-dropdown__panel { max-height: 0; } /* no hover intent on touch */
  .nav-dropdown.is-open:hover .nav-dropdown__panel { max-height: 600px; }

  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero stacks */
  .hero__inner { flex-direction: column; }
  .hero__art { width: 200px; order: -1; }
  .stats { margin-top: 80px; }

  /* Grids collapse */
  .features__grid { grid-template-columns: 1fr; }
  .testimonial,
  .cta__card { grid-template-columns: 1fr; }
  .testimonial__media,
  .cta__media { position: relative; min-height: 320px; }
  .testimonial__media img,
  .cta__media img { position: relative; height: 320px; }

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

  /* How it works */
  .hiw-hero__inner { flex-direction: column; align-items: flex-start; }
  .hiw-hero__media { flex-basis: auto; width: 100%; }
  .hiw-grid__inner { grid-template-columns: 1fr; row-gap: 48px; }
  .steps2__inner { grid-template-columns: 1fr; gap: 48px; }
  .steps2__art { order: 2; }
  .steps2__art img { width: 240px; }

  /* Industries */
  .ind-hero__inner { flex-direction: column; align-items: flex-start; }
  .ind-hero__media { flex-basis: auto; width: 100%; aspect-ratio: 570 / 400; }
  .ind-hero .stats { margin-top: 60px; }
  .ind-capability__grid { grid-template-columns: 1fr; margin-top: 24px; padding-inline: 0; }
  .ind-feature__inner { grid-template-columns: 1fr; }
  .ind-feature__media { min-height: 280px; }
  .ind-feature__media img { position: relative; top: 0; right: 0; width: 100%; height: 280px; }

  /* About */
  .about-hero__inner,
  .about-row__inner,
  .about-row--reverse { grid-template-columns: 1fr; align-items: start; gap: 32px; }
  .about-row--reverse .about-row__media,
  .about-row--reverse .about-row__copy { order: initial; }

  /* Contact */
  .contact-info__grid { grid-template-columns: 1fr; }

  /* Resources */
  .section-heading-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Book a demo */
  .demo-booking__card { flex-direction: column; }
  .demo-booking__info { flex-basis: auto; border-right: none; border-bottom: 1px solid #e7e7e7; }

  /* Download guide */
  .guide__inner { flex-direction: column; align-items: flex-start; gap: 56px; }
  .guide__copy { width: 100%; max-width: 100%; }
  .guide-form { flex-basis: auto; max-width: 570px; width: 100%; }

  /* Article */
  .article__title { font-size: 36px; line-height: 44px; }
  .article__cta { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }

  .hero { padding-top: 40px; }
  .hero__title { font-size: 40px; line-height: 44px; }
  .section-heading { font-size: 28px; line-height: 34px; }
  .cta__title { font-size: 28px; line-height: 34px; }

  .stats { grid-template-columns: 1fr; gap: 36px; margin-top: 60px; }
  .stat { padding-inline: 0; }
  .stat + .stat::before { display: none; }

  .industry-cards,
  .insights__grid,
  .blog__grid { grid-template-columns: 1fr; }

  .testimonial__body,
  .cta__body,
  .ind-feature__body { padding: 36px 28px; }

  .hero__actions .btn { width: 100%; justify-content: center; }

  .ind-hero__title { font-size: 34px; line-height: 40px; }
  .ind-capability__title { font-size: 28px; line-height: 34px; }
  .ind-feature__title { font-size: 28px; line-height: 34px; }

  .about-hero__title,
  .demo-hero__title { font-size: 34px; line-height: 40px; }
  .about-row__title { font-size: 28px; line-height: 34px; }

  .resources-hero__title { font-size: 34px; line-height: 40px; }

  .guide__title { font-size: 34px; line-height: 40px; }
  .guide-form { padding: 40px 28px; }
  .guide-form__title { font-size: 28px; line-height: 34px; }

  .article__title { font-size: 28px; line-height: 34px; }
  .article__body h2 { font-size: 24px; }
  .article__cta-text { font-size: 18px; }
}
