/* ========================================
   FREEMIUMS – Design System
   Clean, modern, white + navy B2B aesthetic
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy: #0a1f44;
  --navy-light: #122d5e;
  --navy-dark: #06152e;
  --accent: #2167ae;
  --accent-light: #3a7ec4;
  --accent-dark: #185a96;
  --green: #6ab648;
  --green-light: #7cc45a;
  --green-dark: #5a9e3c;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-50: #f4f5f7;
  --gray-100: #e8eaef;
  --gray-200: #d1d5de;
  --gray-300: #b0b7c5;
  --gray-400: #8a94a6;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --text-primary: #0f1729;
  --text-secondary: #4b5563;
  --text-muted: #8a94a6;
  --border: #e2e5eb;
  --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 8px 32px rgba(10, 31, 68, 0.12);
  --shadow-xl: 0 16px 48px rgba(10, 31, 68, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --max-width-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.text-muted { color: var(--text-muted); }
.text-navy { color: var(--navy); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 64px 0;
}

.section--gray {
  background: var(--gray-50);
}

.section--navy {
  background: var(--navy);
}

.section--navy h2,
.section--navy h3,
.section--navy p,
.section--navy .section-label {
  color: var(--white);
}

.section--navy p {
  color: rgba(255,255,255,0.75);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: 48px;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── Grid ── */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

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

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--gray-50);
}

.card__body {
  padding: 20px 24px;
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.card__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.card__badge--blue {
  background: rgba(26, 92, 190, 0.1);
  color: var(--accent);
}

.card__badge--green {
  background: rgba(106, 182, 72, 0.1);
  color: var(--green);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav__logo:hover {
  color: var(--navy);
}

.nav__logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.875rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
  background: var(--gray-50);
}

.nav__links a.btn--primary,
.nav__links a.btn--primary:hover,
.nav__links .nav__cta a {
  color: #ffffff !important;
  background: var(--accent);
}

.nav__links a.btn--primary:hover,
.nav__links .nav__cta a:hover {
  background: var(--accent-dark);
}

.nav__cta {
  margin-left: 12px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 12px 16px;
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ── Hero ── */
.hero {
  padding: 212px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero--centered {
  text-align: center;
  padding: 160px 0 48px;
}

.hero--centered .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero--split {
  display: flex;
  align-items: center;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero--split .hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero--centered .hero__actions {
  justify-content: center;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

@media (max-width: 768px) {
  .hero { padding: 140px 0 64px; }
  .hero--split .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__image { max-height: 360px; }
}

/* ── Featured Strip ── */
.featured-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.featured-strip::-webkit-scrollbar {
  display: none;
}

.featured-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.featured-card__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--gray-50);
}

.featured-card__label {
  padding: 14px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ── Icon Features ── */
.feature {
  text-align: center;
  padding: 32px 24px;
}

.feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(26, 92, 190, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.feature__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.feature__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Trust Logos ── */
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.trust-logos img {
  height: 44px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all var(--transition);
}

.trust-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.trust-logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all var(--transition);
}

.trust-logo-placeholder:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Process Steps ── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gray-200);
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.process__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.process__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}

@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 92, 190, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card__formats {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Top Products ── */
.top-products {
  counter-reset: product;
}

.top-product {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.top-product:hover {
  background: var(--gray-50);
}

.top-product::before {
  counter-increment: product;
  content: counter(product);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.top-product__name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Forms ── */
.form {
  max-width: 640px;
}

.form--centered {
  margin-left: auto;
  margin-right: auto;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 92, 190, 0.12);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238a94a6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── Team ── */
.team-member {
  text-align: center;
}

.team-member__image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--gray-100);
  transition: all var(--transition);
}

.team-member:hover .team-member__image {
  border-color: var(--accent);
}

.team-member__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-member__role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Split Sections ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse { direction: ltr; }
}

/* ── Made in USA badge ── */
.usa-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.usa-badge img {
  height: 40px;
  object-fit: contain;
}

.usa-badge__text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── Scroll Reveal Animation System ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes slideInDot {
  0% { width: 0; }
  100% { width: 100%; }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Keep old class working too */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Immersive Hero ── */
.hero--immersive {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1f44 0%, #122d5e 40%, #1a3a6e 70%, #1a5cbe 100%);
  position: relative;
  overflow: hidden;
}

.hero--immersive::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(26, 92, 190, 0.15) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}

.hero--immersive::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(26, 92, 190, 0.1) 0%, transparent 60%);
  animation: pulse 12s ease-in-out infinite reverse;
}

.hero--immersive .hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero--immersive .hero__label {
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.6875rem;
  backdrop-filter: blur(4px);
}

.hero--immersive .hero__title {
  color: #ffffff;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
}

.hero--immersive .hero__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1875rem;
}

.hero--immersive .btn--primary {
  background: #ffffff;
  color: var(--navy);
  font-weight: 700;
}

.hero--immersive .btn--primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero--immersive .btn--outline-white {
  border: 1.5px solid rgba(255,255,255,0.35);
}

/* Floating product collage */
.hero-collage {
  position: relative;
  height: 520px;
}

.hero-collage__item {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-collage__item:hover {
  transform: scale(1.05) !important;
  z-index: 10;
}

.hero-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage__item:nth-child(1) {
  top: 0; left: 10%; width: 220px; height: 280px;
  animation: floatSlow 6s ease-in-out infinite;
  z-index: 3;
}

.hero-collage__item:nth-child(2) {
  top: 40px; right: 0; width: 200px; height: 240px;
  animation: floatSlow 7s ease-in-out infinite 1s;
  z-index: 2;
}

.hero-collage__item:nth-child(3) {
  bottom: 20px; left: 0; width: 240px; height: 200px;
  animation: floatSlow 8s ease-in-out infinite 0.5s;
  z-index: 1;
}

.hero-collage__item:nth-child(4) {
  bottom: 60px; right: 10%; width: 180px; height: 220px;
  animation: floatSlow 6.5s ease-in-out infinite 1.5s;
  z-index: 4;
}

@media (max-width: 768px) {
  .hero--immersive .hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 72px;
  }
  .hero-collage {
    height: auto;
  }
  .hero-collage__item:nth-child(1) { width: 120px; height: 150px; left: 0; }
  .hero-collage__item:nth-child(2) { width: 110px; height: 130px; top: 10px; }
  .hero-collage__item:nth-child(3) { width: 130px; height: 110px; }
  .hero-collage__item:nth-child(4) { width: 100px; height: 130px; }
}

/* ── Mail Journey Section ── */
.journey {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.journey__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.journey__timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  border-radius: 2px;
}

.journey__step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.journey__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(26, 92, 190, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.journey__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(26, 92, 190, 0.2);
  transition: all var(--transition);
}

.journey__step:hover .journey__icon {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(26, 92, 190, 0.4);
}

.journey__step:hover .journey__icon::after {
  inset: -8px;
  border-color: rgba(26, 92, 190, 0.3);
}

.journey__icon svg {
  width: 40px;
  height: 40px;
}

.journey__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.journey__step-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.journey__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gray-50);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .journey__timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .journey__timeline::before {
    display: none;
  }
  .journey { padding: 80px 0; }
}

/* ── Enhanced Card Hover Effects ── */
.card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover {
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.15);
  transform: translateY(-8px);
}

.card__image {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card__image {
  transform: scale(1.05);
}

/* ── Premium Category Cards ── */
.premium-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.premium-card .card__image {
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
}

.premium-card .card__body {
  padding: 20px 16px;
}

.premium-card .card__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}

.premium-card:hover {
  box-shadow: 0 16px 48px rgba(10, 31, 68, 0.14);
  transform: translateY(-6px);
}

.premium-card:hover .card__image {
  transform: scale(1.08);
}

/* ── Most Requested Cards (products page) ── */
.most-req-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.35s ease;
  cursor: default;
}

.most-req-num {
  background: linear-gradient(135deg, #6ab648, #4a9e2f);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.most-req-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.most-req-card:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(106, 182, 72, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(106, 182, 72, 0.15);
}

.featured-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover {
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.15);
  transform: translateY(-8px);
}

.featured-card__image {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card__image {
  transform: scale(1.08);
}

/* ── Animated Counter ── */
.stat__number {
  display: inline-block;
}

/* ── Parallax Background ── */
.parallax-bg {
  position: absolute;
  width: 100%;
  height: 120%;
  top: -10%;
  left: 0;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

/* ── Glowing CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 103, 174, 0.3) 0%, transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}

/* ── Case Study Section ── */
.case-study {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.case-study:hover {
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.case-study__content {
  padding: 48px 40px;
}

.case-study__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

.case-study__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.case-study__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.case-study__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-study__metric {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: all var(--transition);
}

.case-study__metric:hover {
  background: rgba(33, 103, 174, 0.06);
}

.case-study__metric-before {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.case-study__metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.case-study__metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.case-study__metric-arrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 2px;
}

.case-study__visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.case-study__visual::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  animation: pulse 8s ease-in-out infinite;
}

.case-study__visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.case-study__big-number {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study__big-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.case-study__roi-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  font-style: italic;
}

@media (max-width: 768px) {
  .case-study {
    grid-template-columns: 1fr;
  }
  .case-study__content {
    padding: 32px 24px;
  }
  .case-study__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-study__visual {
    padding: 32px;
  }
  .case-study__big-number {
    font-size: 3.5rem;
  }
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

.divider--centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── Page-Level Helpers ── */
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Modal / Popup ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(10, 31, 68, 0.25);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(16, 137, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.modal-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-card__divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.modal-card__call-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.modal-card__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #6ab648 0%, #4a9e2f 100%);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(106, 182, 72, 0.35);
}

.modal-card__call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(106, 182, 72, 0.45);
}

.modal-card__call-btn svg {
  width: 22px;
  height: 22px;
}

.modal-card__close {
  display: block;
  margin-top: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.modal-card__close:hover {
  color: var(--navy);
}

/* ════════════════════════════════════════════
   COMPREHENSIVE MOBILE OVERRIDES
   Compact layout, 2-col grids, minimal scroll
   ════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Hide desktop-only line breaks ── */
  .desktop-only {
    display: none;
  }

  /* ── Nav: Compact ── */
  .nav__inner {
    height: 80px;
  }
  .nav__logo-img {
    height: 80px;
  }
  .nav__links {
    top: 80px;
  }

  /* ── Hero: Tight & clean ── */
  .hero {
    padding: 88px 0 32px;
  }
  .hero--centered {
    padding: 88px 0 24px;
  }
  .hero__title {
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.55;
  }
  .hero__label {
    font-size: 0.6rem;
    margin-bottom: 8px;
  }
  /* Hero buttons: side by side, compact */
  .hero__actions {
    flex-direction: row;
    gap: 8px;
  }
  .hero__actions .btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }

  /* ── Immersive hero video — compact, no excess blue space ── */
  .hero--immersive {
    min-height: auto;
  }
  .hero--immersive .hero__inner {
    gap: 10px;
    padding-top: 56px;
    padding-bottom: 10px;
  }
  .hero-collage {
    height: auto;
  }
  .hero-video {
    display: flex;
    justify-content: center;
  }
  .hero-collage .hero-video video {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3) !important;
  }

  /* ── Sections: reduce padding ── */
  .section {
    padding: 40px 0;
  }
  .section--sm {
    padding: 32px 0;
  }
  .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
  h2 {
    font-size: 1.35rem;
  }

  /* ── Journey / Giving Cycle: Animated compact flow on mobile ── */
  .journey-scene {
    display: none !important;
  }
  .journey-loop {
    display: none !important;
  }
  .journey {
    padding: 36px 0 28px;
  }
  .journey .section-title {
    font-size: 1.2rem;
  }
  .journey .section-subtitle {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
  .journey-mobile-flow {
    display: block !important;
  }

  /* Animated mobile flow icons */
  .journey-mobile-flow .mobile-step {
    opacity: 0;
    transform: translateY(16px) scale(0.7);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .journey-mobile-flow .mobile-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .journey-mobile-flow.animated .mobile-step {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .journey-mobile-flow.animated .mobile-arrow {
    opacity: 1;
  }
  /* Staggered delays for sequential animation */
  .journey-mobile-flow.animated .mobile-step:nth-child(1) { transition-delay: 0s; }
  .journey-mobile-flow.animated .mobile-arrow:nth-child(2) { transition-delay: 0.3s; }
  .journey-mobile-flow.animated .mobile-step:nth-child(3) { transition-delay: 0.5s; }
  .journey-mobile-flow.animated .mobile-arrow:nth-child(4) { transition-delay: 0.8s; }
  .journey-mobile-flow.animated .mobile-step:nth-child(5) { transition-delay: 1.0s; }
  .journey-mobile-flow.animated .mobile-arrow:nth-child(6) { transition-delay: 1.3s; }
  .journey-mobile-flow.animated .mobile-step:nth-child(7) { transition-delay: 1.5s; }
  .journey-mobile-flow.animated .mobile-arrow:nth-child(8) { transition-delay: 1.8s; }
  .journey-mobile-flow.animated .mobile-step:nth-child(9) { transition-delay: 2.0s; }

  .journey-mobile-flow .mobile-step .mobile-icon {
    transition: box-shadow 0.4s ease, background 0.4s ease;
  }
  .journey-mobile-flow.animated .mobile-step .mobile-icon {
    box-shadow: 0 4px 16px rgba(33, 103, 174, 0.15);
  }

  /* Giving Cycle label animation */
  .journey-mobile-flow .mobile-cycle-label {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 2.3s, transform 0.5s ease 2.3s;
  }
  .journey-mobile-flow.animated .mobile-cycle-label {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Grids: Keep 2-col on mobile for density ── */
  .grid--3, .grid--4, .grid--5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .grid--2 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  /* ── Homepage Blog Grid: 2-col compact ── */
  .homepage-blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }
  .homepage-blog-grid a img {
    height: 120px !important;
  }
  .homepage-blog-grid a > div {
    padding: 14px 12px !important;
  }
  .homepage-blog-grid a h3 {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }
  .homepage-blog-grid a p {
    font-size: 0.7rem !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .homepage-blog-grid a span {
    font-size: 0.7rem !important;
    margin-top: 8px !important;
  }

  /* ── Featured Strip / Product categories (2-col density) ── */
  .featured-strip {
    gap: 10px;
    padding: 0 0 4px;
  }
  .featured-card {
    flex: 0 0 145px;
  }
  .featured-card__image {
    height: 100px;
  }
  .featured-card__label {
    font-size: 0.7rem;
    padding: 8px 10px;
  }

  /* ── Feature items: compact ── */
  .feature {
    padding: 16px 10px;
  }
  .feature__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .feature__icon svg {
    width: 20px;
    height: 20px;
  }
  .feature__title {
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  .feature__text {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  /* ── Stats ── */
  .stat__number {
    font-size: 1.5rem;
  }
  .stat__label {
    font-size: 0.7rem;
  }

  /* ── Cards: compact ── */
  .card__body {
    padding: 12px 14px;
  }
  .card__title {
    font-size: 0.85rem;
  }
  .card__text {
    font-size: 0.75rem;
  }

  /* ── Trust Logos ── */
  .trust-logos {
    gap: 16px;
    padding: 12px 0;
  }
  .trust-logos img {
    height: 28px;
  }

  /* ── Process Steps ── */
  .process__number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  /* ── Case Study Carousel ── */
  .cs-roi__number {
    font-size: 2rem;
  }
  .cs-metric__value {
    font-size: 1.1rem;
  }

  /* ── CTA Section ── */
  .cta-section {
    padding: 40px 0;
  }
  .cta-section h2 {
    font-size: 1.35rem;
  }

  /* ── Footer: compact ── */
  .footer {
    padding: 40px 0 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 84px 0 20px;
  }
  .hero--centered {
    padding: 84px 0 16px;
  }
  .hero--immersive .hero__inner {
    padding-top: 48px;
    padding-bottom: 8px;
    gap: 6px;
  }
  .hero__title {
    font-size: 1.45rem;
  }
  .section {
    padding: 32px 0;
  }
  .footer__grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Page-specific mobile overrides ── */
@media (max-width: 768px) {
  /* About page: capabilities single column */
  .about-capabilities {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Services page: service cards single column */
  #services-overview .grid--2 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Products page: Most Requested grid - 3 columns to prevent cutoff */
  .most-req-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
  .most-req-card {
    padding: 10px 10px !important;
    gap: 6px !important;
  }
  .most-req-num {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.65rem !important;
  }
  .most-req-name {
    font-size: 0.72rem !important;
  }

  /* About page: team bios single column */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .team-grid .service-card {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .team-grid .team-member__photo {
    margin: 0 auto 24px !important;
  }
}

/* ═══ FAQ Accordion ═══ */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26, 92, 190, 0.08);
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(26, 92, 190, 0.1);
}
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: rgba(26, 92, 190, 0.03);
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-answer p {
  margin: 0;
}
