/*
 * Yogel — styles.css
 * Design: "Trusted Authority" — Premium B2B Industrial Minimal
 * Palette: Navy #003d7a | Dark Navy #003d7a | Safety Yellow #e9b328 | Sky Blue #67b2ed
 * Type: Montserrat (headings, 700/800/900) + Inter (body, 400/500/600)
 */

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2332;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================================
   UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text--yellow { color: #e9b328; }
.text--white { color: #ffffff; }
.hidden { display: none !important; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}

.btn--yellow {
  background-color: #e9b328;
  color: #003d7a;
}

.btn--yellow:hover {
  background-color: #f5c340;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233, 179, 40, 0.35);
}

.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ============================================================
   LABELS
============================================================ */
.label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #003d7a;
  margin-bottom: 0.75rem;
}

.label--yellow {
  color: #e9b328;
}

/* ============================================================
   SECTION SCAFFOLDING
============================================================ */
.section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section--white { background-color: #ffffff; }
.section--grey  { background-color: #f8f9fa; }
.section--navy  { background-color: #003d7a; }
.section--dark  { background-color: #003d7a; }

/* Section headers */
.section-header { margin-bottom: 4rem; }

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header--split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-header--split > div {
  flex: 1 1 auto;
}

.section-header--split > p {
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .section-header--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
}

.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: #003d7a;
}

.section-header--light h2 {
  color: #ffffff;
}

.section-sub {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
}

.section-sub--right {
  max-width: 360px;
  margin-top: 0;
}

.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.section-cta__note {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

.nav--scrolled .nav__links a {
  color: #1a2e4a;
}

.nav--scrolled .nav__links a:hover {
  color: #e9b328;
}

.nav--scrolled .nav__phone {
  color: #1a2e4a;
}

.nav--scrolled .nav__phone:hover {
  color: #003d7a;
}

.nav--scrolled .nav__burger span {
  background: #1a2e4a;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}

.nav__logo img {
  height: 40px;
  width: auto;
  /* White-bg logo works on both transparent and white nav */
  border-radius: 4px;
}

.nav__links {
  display: none;
  gap: 2rem;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
    align-items: center;
  }
}

.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: #e9b328;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .nav__actions {
    display: flex;
  }
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease;
}

.nav__phone:hover {
  color: #ffffff;
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

@media (min-width: 900px) {
  .nav__burger {
    display: none;
  }
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background-color: #003d7a;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__mobile--open {
  display: flex;
}

.nav__mobile a {
  padding: 0.75rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s ease;
}

.nav__mobile a:last-child {
  border-bottom: none;
  margin-top: 0.75rem;
  align-self: flex-start;
}

.nav__mobile a:hover {
  color: #e9b328;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 50, 0.72) 0%, rgba(0, 30, 70, 0.65) 50%, rgba(0, 15, 40, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 8rem 1.5rem 6rem;
}

.hero__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 auto 0;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.hero__badges li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.hero__badges li svg {
  color: #e9b328;
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.15s ease;
}

.hero__scroll:hover {
  color: #e9b328;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   WHY YOGEL — SPLIT LAYOUT
============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.split__tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.split__tag--outline {
  border: 1.5px solid #003d7a;
  color: #003d7a;
}

.split__tag--filled {
  background-color: #003d7a;
  color: #ffffff;
}

/* Pain cards */
.pain-cards, .solution-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-card, .solution-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 61, 122, 0.08);
  transition: box-shadow 0.2s ease;
}

.pain-card:hover, .solution-card:hover {
  box-shadow: 0 4px 16px rgba(0, 61, 122, 0.1);
}

.pain-card__icon, .solution-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(233, 179, 40, 0.1);
  color: #e9b328;
}

.solution-card__icon {
  background-color: rgba(0, 61, 122, 0.08);
  color: #003d7a;
}

.pain-card h3, .solution-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 0.35rem;
}

.pain-card p, .solution-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

/* Brand quote */
.brand-quote {
  background: #003d7a;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-align: center;
}

.brand-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.brand-quote span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   HOW IT WORKS — STEPS
============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
}

.step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f7f8fa;
  border-radius: 12px;
  border: 1px solid #eaecef;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.step:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.step__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: #e9b328;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(0, 61, 122, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #003d7a;
}

.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

/* Connector line between steps on desktop */
@media (min-width: 1024px) {
  .step__connector {
    display: block;
    position: absolute;
    top: 2.75rem;
    right: -1.25rem;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, #e9b328, rgba(233,179,40,0.2));
    z-index: 1;
  }
}

.step__connector {
  display: none;
}

/* ============================================================
   PRODUCTS
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: #e9b328;
  box-shadow: 0 12px 32px rgba(0, 61, 122, 0.12);
  transform: translateY(-4px);
}

.product-card__img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #f1f3f5;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #e9b328;
  color: #003d7a;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.product-card__badge--blue {
  background: #003d7a;
  color: #ffffff;
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #67b2ed;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* "More" card */
.product-card--more .product-card__more-inner {
  height: 210px;
  background: linear-gradient(135deg, #003d7a 0%, #005ab5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-card__more-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.product-card__more-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tags span {
  background: rgba(0, 61, 122, 0.06);
  color: #003d7a;
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
}

/* Brands bar */
.brands-bar {
  background: #ffffff;
  border: 1px solid rgba(0, 61, 122, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.brands-bar__label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.brands-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.brand-item {
  text-align: center;
}

.brand-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #003d7a;
}

.brand-item span {
  font-size: 0.75rem;
  color: #64748b;
}

.brand-item--more strong {
  color: #f5a623;
  font-style: italic;
}

.product-card__img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  min-height: 160px;
}

.product-card__icon-wrap {
  font-size: 4rem;
  line-height: 1;
}

/* ============================================================
   CATEGORY STRIP (homepage product overview)
============================================================ */
.cat-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

@media (min-width: 700px) {
  .cat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
  transition: background 0.15s ease;
  position: relative;
}

@media (min-width: 700px) {
  .cat-row:nth-child(odd) {
    border-right: 1px solid #e2e8f0;
  }
  .cat-row:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 699px) {
  .cat-row:last-child {
    border-bottom: none;
  }
}

.cat-row:hover {
  background: #f8fafc;
}

.cat-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-content {
  flex: 1;
  min-width: 0;
}

.cat-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e4a;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.cat-desc {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  margin-left: 0.4rem;
  white-space: nowrap;
}

.cat-footer {
  text-align: center;
  padding: 0.25rem 0 0.5rem;
  margin-bottom: 2rem;
}

.cat-footer__more {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.cat-footer__link {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #003d7a;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 2px solid #e9b328;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.cat-footer__link:hover {
  color: #e9b328;
  border-color: #e9b328;
}

/* ============================================================
   INDUSTRIES
============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.industry-card:hover {
  background-color: rgba(233, 179, 40, 0.1);
  border-color: rgba(233, 179, 40, 0.4);
}

.industry-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(233, 179, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9b328;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.industries-also {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.industries-also > span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.industries-also__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.industries-also__pills span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}

/* ============================================================
   TRUST
============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}

@media (min-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  padding: 2rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.stat__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(233, 179, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9b328;
  margin: 0 auto 0.75rem;
}

.stat__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #003d7a;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .trust-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-point__bar {
  width: 2rem;
  height: 4px;
  background: #e9b328;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.trust-point h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #003d7a;
  margin-bottom: 0.75rem;
}

.trust-point p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
}

/* ============================================================
   AUDIT CTA
============================================================ */
/* Audit teaser layout (homepage) */
.audit-teaser-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .audit-teaser-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
  }
}

.audit-teaser-copy .label {
  margin-bottom: 0.75rem;
}

.audit-teaser-copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.audit-teaser-intro {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.audit-teaser-italic {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.audit-includes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

.audit-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.audit-includes li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* Right-side CTA card */
.audit-teaser-card-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 960px) {
  .audit-teaser-card-wrap {
    justify-content: flex-end;
    position: sticky;
    top: 6rem;
  }
}

.audit-teaser-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 420px;
  border-top: 4px solid #e9b328;
}

.audit-teaser-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #003d7a;
  margin-bottom: 0.85rem;
}

.audit-teaser-card__body {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.audit-teaser-card__btn {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.audit-teaser-card__note {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: italic;
  margin: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background-color: #f4f6f9;
}

.footer__accent {
  height: 4px;
  background-color: #e9b328;
}

/* Yellow top stripe already separates footer from dark audit section */

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

@media (min-width: 900px) {
  .footer__inner {
    grid-template-columns: 2fr 3fr;
  }
}

.footer__brand img {
  height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__brand > p {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.25rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #003d7a;
  transition: color 0.15s ease;
}

.footer__contact a:hover {
  color: #e9b328;
}

.footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #003d7a;
  transition: color 0.15s ease;
}

.footer__linkedin:hover {
  color: #e9b328;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Products col spans full width and displays as 2-column list */
  .footer__col--products {
    grid-column: 1 / -1;
  }

  .footer__col--products ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
  }
}

.footer__col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #003d7a;
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: #4a5568;
  transition: color 0.15s ease;
}

.footer__col a:hover {
  color: #003d7a;
}

.footer__bottom {
  border-top: 1px solid #dde3ea;
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 700px) {
  .footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer__brands > span:first-child {
  font-size: 0.7rem;
  color: #718096;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-right: 0.25rem;
}

.footer__brands > span:not(:first-child) {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #003d7a;
  background: rgba(0, 61, 122, 0.07);
  border: 1px solid rgba(0, 61, 122, 0.18);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.footer__copy {
  font-size: 0.78rem;
  color: #718096;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.products-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.10s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.15s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.20s; }
.products-grid .product-card:nth-child(5) { transition-delay: 0.25s; }
.products-grid .product-card:nth-child(6) { transition-delay: 0.30s; }

.industries-grid .industry-card:nth-child(1) { transition-delay: 0.05s; }
.industries-grid .industry-card:nth-child(2) { transition-delay: 0.10s; }
.industries-grid .industry-card:nth-child(3) { transition-delay: 0.15s; }
.industries-grid .industry-card:nth-child(4) { transition-delay: 0.20s; }

.steps .step:nth-child(1) { transition-delay: 0.05s; }
.steps .step:nth-child(2) { transition-delay: 0.10s; }
.steps .step:nth-child(3) { transition-delay: 0.15s; }
.steps .step:nth-child(4) { transition-delay: 0.20s; }

.stats-row .stat:nth-child(1) { transition-delay: 0.05s; }
.stats-row .stat:nth-child(2) { transition-delay: 0.10s; }
.stats-row .stat:nth-child(3) { transition-delay: 0.15s; }
.stats-row .stat:nth-child(4) { transition-delay: 0.20s; }

/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */
@media (max-width: 640px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  .brand-quote {
    padding: 1.5rem;
  }

}

/* Audit right col: photo and card locked to same width always */
.audit-right-col {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .audit-right-col {
    margin: 0;
  }
  .audit-teaser-card-wrap {
    position: static;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.audit-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

.audit-right-col .audit-teaser-card {
  border-radius: 0 0 16px 16px;
  border-top: 4px solid #e9b328;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-width: 100%;
  width: 100%;
}

/* Hero payoff line */
.hero__sub--payoff {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 1.75rem;
}
