@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap');
@import 'variables.css';
@import 'reset.css';

/* ============================================
   BASE — mobile-first
   ============================================ */
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--nv);
  background: var(--wh);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width:768px) { .container { padding: 0 2rem; } }

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

/* ============================================
   TYPOGRAPHY — mobile-first
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--fw-extra);
  line-height: 1.15;
  color: var(--hd);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

@media (min-width:768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.5rem; }
}
@media (min-width:1024px) {
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.5rem; }
}

p { color: var(--mu2); line-height: 1.65; font-size: 15px; }
p + p { margin-top: 1rem; }
@media (min-width:768px) { p { font-size: 16px; } }

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

/* ============================================
   BUTTONS — from citizen portal
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 13px;
  font-weight: var(--fw-bold);
  font-family: var(--font-body);
  transition: all var(--tr-base);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary { background: var(--cr); color: var(--wh); }
.btn--primary:hover { background: var(--cr2); }

.btn--secondary { background: var(--wh); color: var(--nv); border: 1.5px solid var(--bd); }
.btn--secondary:hover { border-color: var(--nv); }

.btn--ghost { background: transparent; color: var(--cr); border: 1.5px solid var(--cr); }
.btn--ghost:hover { background: var(--cr); color: var(--wh); }

.btn--lg { padding: 0.85rem 2rem; font-size: 14px; }

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

.btn svg { width: 18px; height: 18px; }

/* ============================================
   HEADER / NAV — updated for 8-page sitemap
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow var(--tr-base);
}
.header--scrolled { box-shadow: var(--sh-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.header__logo { display: flex; align-items: center; }

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

.nav { display: flex; align-items: center; gap: 1rem; }

.nav__list { display: none; align-items: center; gap: 0; }
@media (min-width:1024px) { .nav__list { display: flex; } }

.nav__link {
  padding: 0.4rem 0.5rem;
  font-size: 11.5px;
  font-weight: var(--fw-medium);
  color: var(--nv);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--tr-fast);
}
.nav__link:hover, .nav__link--active { color: var(--cr); }

.nav__cta { display: none; }
@media (min-width:1024px) { .nav__cta { display: flex; align-items: center; gap: 0.5rem; } }
.nav__cta .btn { padding: 0.5rem 1rem; font-size: 11px; }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--wh); border: 1px solid var(--bd);
  box-shadow: var(--sh-lg); padding: 0.5rem;
  opacity: 0; visibility: hidden;
  transition: all var(--tr-fast);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown-link {
  display: block; padding: 0.5rem 0.6rem;
  font-size: 13px; color: var(--nv);
  transition: all var(--tr-fast);
}
.nav__dropdown-link:hover { background: var(--pg); color: var(--cr); }

/* Mobile toggle */
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; background: none; border: none; cursor: pointer;
}
@media (min-width:1024px) { .nav__toggle { display: none; } }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--nv); transition: all var(--tr-base); }

.nav__mobile {
  display: none; position: fixed;
  top: 50px; left: 0; right: 0; bottom: 0;
  background: var(--wh); padding: 1.5rem;
  overflow-y: auto; z-index: 999;
}
.nav__mobile.is-open { display: block; }
.nav__mobile .nav__link {
  display: block; padding: 0.8rem 0;
  font-size: 16px; border-bottom: 1px solid var(--bd);
}
.nav__mobile-sub {
  padding-left: 1rem;
}
.nav__mobile-sub .nav__link {
  font-size: 14px;
  color: var(--mu2);
  border-bottom: 1px solid rgba(226,230,239,0.5);
}

/* ============================================
   HERO — 50/50 gate layout, mobile-first
   ============================================ */
.hero {
  padding-top: 50px;
  background: var(--wh);
}

.hero__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width:1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 50px);
  }
}

.hero__content {
  padding: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width:1024px) {
  .hero__content { padding: 3rem 3rem 3rem 0; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 14px 5px 8px;
  background: var(--pg);
  border: 1px solid var(--bd);
  font-size: 13px;
  color: var(--mu2);
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--gn);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero__title { margin-bottom: 1rem; }
.hero__title em { font-style: normal; color: var(--cr); }

.hero__subtitle {
  font-size: 16px;
  color: var(--mu2);
  line-height: 1.65;
  margin-bottom: 2rem;
}
@media (min-width:768px) { .hero__subtitle { font-size: 17px; } }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width:480px) {
  .hero__actions { flex-direction: row; gap: 1rem; }
}

/* Hero right — benefits panel */
.hero__panel {
  background: var(--cr-bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--bd);
}
@media (min-width:1024px) {
  .hero__panel {
    padding: 2.5rem 2.25rem;
    border-top: none;
    border-left: 1px solid var(--bd);
    min-height: calc(100vh - 50px);
  }
}

.hero__panel-title {
  font-size: 22px;
  font-weight: var(--fw-extra);
  color: var(--hd);
  margin-bottom: 0.4rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width:768px) { .hero__panel-title { font-size: 24px; } }

.hero__panel-sub {
  font-size: 14px;
  color: var(--nv);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center;
}

.hero__benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.hero__benefit-check {
  width: 22px; height: 22px;
  background: var(--gb);
  border: 1.5px solid var(--gn);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px; font-weight: var(--fw-bold); color: var(--gn);
  margin-top: 2px;
}

.hero__benefit h4 {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--hd);
  margin-bottom: 2px;
  line-height: 1.3;
}

.hero__benefit p {
  font-size: 13px;
  color: var(--nv);
  line-height: 1.5;
}

.hero__trust {
  border-top: 1px solid rgba(160,37,47,0.15);
  padding-top: 1rem;
  margin-top: 0.5rem;
  font-size: 12px;
  color: var(--nv);
  line-height: 1.5;
}

/* Hero variant for inner pages (no panel) */
.hero--page .hero__inner {
  display: block;
  min-height: auto;
}
.hero--page .hero__content {
  padding: 2rem 0;
  max-width: 640px;
}
@media (min-width:1024px) {
  .hero--page .hero__content { padding: 3rem 0; }
}
.hero--page { background: var(--pg); border-bottom: 1px solid var(--bd); }

/* ============================================
   SECTIONS — mobile-first
   ============================================ */
.section { padding: 3rem 0; }
@media (min-width:768px) { .section { padding: 4rem 0; } }
@media (min-width:1024px) { .section { padding: 5rem 0; } }

.section--gray { background: var(--pg); }
.section--cr-bg { background: var(--cr-bg); }

.section__header {
  max-width: 640px;
  margin-bottom: 2rem;
}
@media (min-width:768px) { .section__header { margin-bottom: 3rem; } }

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--cr);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section__title { margin-bottom: 1rem; }

.section__desc {
  font-size: 16px;
  color: var(--mu);
  line-height: 1.6;
}
@media (min-width:768px) { .section__desc { font-size: 17px; } }

/* ============================================
   KPI STRIP
   ============================================ */
.kpi-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width:768px) {
  .kpi-strip { grid-template-columns: repeat(4, 1fr); }
}

.kpi-card {
  background: var(--wh);
  padding: 1.25rem;
  border-left: 3px solid var(--cr);
}

.kpi-card__value {
  font-size: 1.5rem;
  font-weight: var(--fw-extra);
  color: var(--cr);
  margin-bottom: 0.25rem;
}
@media (min-width:768px) { .kpi-card__value { font-size: 1.75rem; } }

.kpi-card__label {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--mu);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ============================================
   TWO-COLUMN CONTENT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width:768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.sidebar-box {
  background: var(--pg);
  padding: 1.5rem;
  border-left: 3px solid var(--cr);
}

/* ============================================
   CAPABILITY / MODULE CARDS
   ============================================ */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:640px) { .cap-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }

.cap-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-left: 3px solid var(--cr);
  padding: 1.5rem;
  transition: all var(--tr-base);
}
.cap-card:hover { border-color: var(--cr); box-shadow: var(--sh-md); }

.cap-card__icon {
  width: 42px; height: 42px;
  background: var(--cr-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--cr);
}

.cap-card h3 { font-size: 16px; font-weight: var(--fw-bold); margin-bottom: 0.5rem; }
.cap-card p { font-size: 14px; color: var(--mu2); line-height: 1.6; margin-bottom: 1rem; }

.cap-card__link {
  font-size: 12px; font-weight: var(--fw-bold); color: var(--cr);
  text-transform: uppercase; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--tr-fast);
}
.cap-card__link:hover { gap: 0.6rem; }

/* Module family cards — larger, grouped */
.family-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width:640px) { .family-grid { grid-template-columns: 1fr 1fr; } }

.family-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-top: 3px solid var(--cr);
  padding: 1.75rem;
  transition: all var(--tr-base);
}
.family-card:hover { box-shadow: var(--sh-md); }

.family-card__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--cr);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.family-card h3 { font-size: 18px; margin-bottom: 0.75rem; }
.family-card p { font-size: 14px; color: var(--mu2); line-height: 1.6; margin-bottom: 1rem; }

.family-card__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.family-card__module-tag {
  padding: 3px 10px;
  background: var(--cr-bg);
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--cr);
}

/* ============================================
   SOLUTION CARDS — audience segments
   ============================================ */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:640px) { .solution-grid { grid-template-columns: 1fr 1fr; } }

.solution-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  padding: 1.75rem;
  border-left: 3px solid var(--cr);
  transition: all var(--tr-base);
}
.solution-card:hover { box-shadow: var(--sh-md); border-color: var(--cr); }

.solution-card h3 { font-size: 17px; margin-bottom: 0.75rem; }
.solution-card p { font-size: 14px; color: var(--mu2); line-height: 1.6; margin-bottom: 1rem; }

.solution-card__link {
  font-size: 12px; font-weight: var(--fw-bold); color: var(--cr);
  text-transform: uppercase; letter-spacing: 0.04em;
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width:640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center;
  padding: 1.5rem;
  background: var(--wh);
  border: 1px solid var(--bd);
}

.step__number {
  width: 40px; height: 40px;
  background: var(--cr); color: var(--wh);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: var(--fw-bold);
  margin: 0 auto 1rem; border-radius: 50%;
}

.step h4 { font-size: 15px; font-weight: var(--fw-bold); color: var(--hd); margin-bottom: 0.5rem; }
.step p { font-size: 13px; color: var(--mu); line-height: 1.5; }

/* ============================================
   INFO BOXES — from citizen portal
   ============================================ */
.info-box {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 1.6;
}
.info-box--green { background: var(--gb); border-left: 3px solid var(--gn); color: #14532D; }
.info-box--amber { background: var(--ab); border-left: 3px solid #D97706; color: var(--at); }
.info-box--blue { background: var(--bl); border-left: 3px solid var(--cr); color: var(--nv); }
.info-box--red { background: var(--cr-bg); border-left: 3px solid var(--cr); color: var(--cr); }
.info-box strong { font-weight: var(--fw-bold); }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width:768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--wh);
  border: 1px solid var(--bd);
}
.trust-card__icon {
  width: 48px; height: 48px;
  background: var(--bl); border: 1.5px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; border-radius: 50%;
  color: var(--cr);
}
.trust-card h4 { font-size: 14px; font-weight: var(--fw-bold); color: var(--hd); margin-bottom: 0.4rem; }
.trust-card p { font-size: 13px; color: var(--mu); line-height: 1.5; }

/* ============================================
   CITIZEN JOURNEY
   ============================================ */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width:640px) { .journey-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px) { .journey-grid { grid-template-columns: repeat(3, 1fr); } }

.journey-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  padding: 1.5rem;
  border-top: 3px solid var(--cr);
}
.journey-card h4 { font-size: 15px; margin-bottom: 0.5rem; }
.journey-card p { font-size: 14px; color: var(--mu2); line-height: 1.5; }

/* ============================================
   CLIENT LOGOS
   ============================================ */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
.logo-chip {
  padding: 0.5rem 1rem;
  background: var(--wh);
  border: 1px solid var(--bd);
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--nv);
  white-space: nowrap;
}

/* ============================================
   SECURITY DETAIL CARDS
   ============================================ */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:640px) { .security-grid { grid-template-columns: 1fr 1fr; } }

.security-card {
  background: var(--wh);
  border: 1px solid var(--bd);
  border-left: 3px solid var(--cr);
  padding: 1.5rem;
}
.security-card h4 { font-size: 15px; font-weight: var(--fw-bold); color: var(--hd); margin-bottom: 0.5rem; }
.security-card p { font-size: 14px; color: var(--mu2); line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--cr-bg);
  border-top: 3px solid var(--cr);
  padding: 3rem 0;
  text-align: center;
}
@media (min-width:768px) { .cta-banner { padding: 4rem 0; } }

.cta-banner h2 { color: var(--hd); margin-bottom: 1rem; }
.cta-banner p { color: var(--mu2); margin-bottom: 2rem; font-size: 16px; }
.cta-banner .btn { margin: 0.25rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--hd);
  border-top: 3px solid var(--cr);
  padding: 2.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width:768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer__brand-icon {
  width: 28px; height: 28px; background: var(--cr); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer__brand-name { font-size: 14px; font-weight: var(--fw-bold); color: rgba(255,255,255,0.85); }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 300px; }

.footer__col-title {
  font-size: 11px; font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer__link {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0;
  transition: color var(--tr-fast);
}
.footer__link:hover { color: var(--wh); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.35);
}
@media (min-width:768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__powered {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-weight: var(--fw-bold); font-size: 12px;
}

/* ============================================
   PAGE-LEVEL COMPONENTS
   ============================================ */

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.about-sidebar { background: var(--pg); padding: 1.5rem; border-left: 3px solid var(--cr); }

.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { background: var(--wh); border: 1px solid var(--bd); padding: 1.5rem; text-align: center; }
.team-card__avatar {
  width: 72px; height: 72px; background: var(--cr); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px; font-weight: var(--fw-extra); color: var(--wh);
}
.team-card h4 { font-size: 15px; font-weight: var(--fw-bold); color: var(--hd); margin-bottom: 2px; }
.team-card__role { font-size: 11px; font-weight: var(--fw-bold); color: var(--cr); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.team-card p { font-size: 13px; color: var(--mu); line-height: 1.5; }
.team-card__cred { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--bd); font-size: 11px; color: var(--mu); }

.client-logos { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.client-logo { padding: 0.5rem 1rem; background: var(--wh); border: 1px solid var(--bd); font-size: 13px; font-weight: var(--fw-bold); color: var(--nv); white-space: nowrap; }

/* Modules page */
.module-detail {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: start; padding: 3rem 0; border-bottom: 1px solid var(--bd);
}
@media (min-width:768px) { .module-detail { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.module-detail:last-child { border-bottom: none; }

.module-detail--reverse .module-detail__content { order: 1; }
.module-detail--reverse .module-detail__sidebar { order: 2; }
@media (min-width:768px) {
  .module-detail--reverse .module-detail__content { order: 2; }
  .module-detail--reverse .module-detail__sidebar { order: 1; }
}

.module-detail__label { font-size: 11px; font-weight: var(--fw-bold); color: var(--cr); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.module-detail h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.module-detail p { font-size: 15px; color: var(--mu2); line-height: 1.65; margin-bottom: 1rem; }

.module-detail__features { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.module-feature { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 14px; color: var(--nv); }
.module-feature__check {
  width: 18px; height: 18px; background: var(--gb); border: 1px solid var(--gn); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 9px; color: var(--gn); margin-top: 3px;
}

.module-detail__sidebar { background: var(--pg); padding: 1.5rem; border-left: 3px solid var(--cr); }
.module-detail__sidebar h4 { font-size: 12px; font-weight: var(--fw-bold); color: var(--cr); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:768px) { .contact-grid { grid-template-columns: 1fr 300px; } }

.contact-form { background: var(--wh); padding: 1.5rem; border: 1px solid var(--bd); }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 12px; font-weight: var(--fw-medium); color: var(--mu); margin-bottom: 0.25rem; }
.form-input, .form-select {
  width: 100%; height: 38px; border: none; border-bottom: 1.5px solid var(--bd);
  background: transparent; padding: 0 4px; font-size: 15px; color: var(--nv); font-family: var(--font-body);
}
.form-input:focus, .form-select:focus { outline: none; border-bottom-color: var(--cr); }
.form-textarea {
  width: 100%; border: none; border-bottom: 1.5px solid var(--bd);
  background: transparent; padding: 4px; font-size: 15px; color: var(--nv);
  font-family: var(--font-body); resize: none; height: 100px;
}
.form-textarea:focus { outline: none; border-bottom-color: var(--cr); }
.form-hint { font-size: 11px; color: var(--mu); margin-top: 3px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { background: var(--pg); border-left: 3px solid var(--cr); padding: 1.25rem; }
.contact-info-card__title { font-size: 11px; font-weight: var(--fw-bold); color: var(--mu); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; }
.contact-info-card__value { font-size: 15px; font-weight: var(--fw-bold); color: var(--nv); }

/* Resources page */
.resource-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width:640px) { .resource-grid { grid-template-columns: 1fr 1fr; } }

.resource-card { background: var(--wh); border: 1px solid var(--bd); overflow: hidden; transition: all var(--tr-base); }
.resource-card:hover { border-color: var(--cr); box-shadow: var(--sh-md); }
.resource-card__tag { display: inline-block; padding: 3px 10px; font-size: 10px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.04em; background: var(--cr-bg); color: var(--cr); margin-bottom: 0.75rem; }
.resource-card__body { padding: 1.5rem; }
.resource-card h4 { font-size: 16px; font-weight: var(--fw-bold); color: var(--hd); margin-bottom: 0.5rem; }
.resource-card p { font-size: 14px; color: var(--mu); line-height: 1.5; margin-bottom: 1rem; }
.resource-card__link { font-size: 12px; font-weight: var(--fw-bold); color: var(--cr); text-transform: uppercase; letter-spacing: 0.04em; }

.podcast-embed { background: var(--pg); border-left: 3px solid var(--cr); padding: 1.5rem; margin-bottom: 1.25rem; }
.podcast-embed h4 { font-size: 15px; font-weight: var(--fw-bold); color: var(--hd); margin-bottom: 0.5rem; }
.podcast-embed p { font-size: 13px; color: var(--mu); line-height: 1.5; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--sp-8);
}
@media (min-width:768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width:1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  border-left: 3px solid var(--cr);
  padding: 1.5rem;
  background: var(--wh);
}
.section--cr-bg .testimonial-card {
  background: var(--wh);
}
.section--gray .testimonial-card {
  background: var(--wh);
}

.testimonial-card__quote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--mu2);
  margin-bottom: 1rem;
}
@media (min-width:768px) {
  .testimonial-card__quote { font-size: 15px; }
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--hd);
}

.testimonial-card__role {
  font-size: 12px;
  color: var(--mu);
  margin-top: 0.15rem;
}

/* Single inline quote (for solutions pages) */
.testimonial-inline {
  border-left: 3px solid var(--cr);
  padding: 1.25rem 1.5rem;
  background: var(--wh);
  margin-top: var(--sp-6);
}
.testimonial-inline__quote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: var(--mu2);
}
.testimonial-inline__attr {
  font-size: 12px;
  font-weight: 700;
  color: var(--hd);
  margin-top: 0.75rem;
}

/* Resource card dual actions (Read Online + Download) */
.resource-card__actions {
  display: flex;
  gap: 0;
  border-top: 1px solid #eee;
}
.resource-card__actions .resource-card__link {
  flex: 1;
  text-align: center;
  border-top: none;
}
.resource-card__actions .resource-card__link + .resource-card__link {
  border-left: 1px solid #eee;
}
.resource-card__link--download {
  color: var(--mu2);
}
.resource-card__link--download:hover {
  color: var(--cr);
}

/* Podcast episode cards */
.podcast-series {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: var(--sp-6);
}
.podcast-episode {
  display: flex;
  gap: 1.25rem;
  background: var(--wh);
  padding: 1.5rem;
  border-left: 3px solid var(--cr);
}
.podcast-episode__number {
  font-size: 28px;
  font-weight: 700;
  color: var(--cr);
  line-height: 1;
  min-width: 2.5rem;
  flex-shrink: 0;
}
.podcast-episode__content {
  flex: 1;
  min-width: 0;
}
.podcast-episode__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hd);
  margin-bottom: 0.5rem;
}
.podcast-episode__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mu2);
  margin-bottom: 1rem;
}
.podcast-episode__player {
  width: 100%;
  height: 40px;
}
@media (max-width:480px) {
  .podcast-episode { flex-direction: column; gap: 0.75rem; }
  .podcast-episode__number { font-size: 22px; }
}

/* ============================================
   EXPERIENCE PAGE — unique styles
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card-grid .info-box {
  margin-bottom: 0;
}

.cta-banner__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cta-banner__buttons {
    flex-direction: row;
  }
}

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

.footer__brand {
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer__brand img {
  height: 30px;
  width: auto;
}

.footer__tagline {
  color: #D1D5DB;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer__heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

.info-box__title {
  color: var(--hd);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-box__description {
  color: var(--nv);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-box__quote {
  color: var(--nv);
  font-style: italic;
  padding-left: 1rem;
  border-left: 3px solid var(--cr);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.info-box__quote-attr {
  color: var(--hd);
  font-weight: 600;
  font-style: normal;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.max-w-lg {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.section__description {
  color: var(--nv);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.testimonial-card__quote {
  color: var(--nv);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-card__attr {
  color: var(--hd);
  font-weight: 600;
  font-style: normal;
  font-size: 0.85rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.mb-0 { margin-bottom: 0; }
