/*
Theme Name: Enlightened Business
Theme URI: https://enlightenedbusiness.com.au
Author: Anthony Pinto
Author URI: https://enlightenedbusiness.com.au
Description: Custom WordPress theme for Enlightened Business Solutions — Australian small business digital transformation consultancy.
Version: 1.0.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://enlightenedbusiness.com.au
Text Domain: enlightened-business
*/

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:      #0F2B46;
  --teal:      #1D9E75;
  --teal-dark: #158a62;
  --white:     #FFFFFF;
  --grey:      #F5F5F3;
  --grey-mid:  #E8E8E6;
  --text:      #1a1a2e;
  --text-muted:#5a6a7a;
  --radius:    10px;
  --shadow:    0 4px 24px rgba(15,43,70,.08);
  --shadow-lg: 0 8px 48px rgba(15,43,70,.14);
  --transition:160ms ease;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.625rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover { background: var(--teal-dark); box-shadow: 0 4px 16px rgba(29,158,117,.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover { background: var(--grey); box-shadow: 0 4px 16px rgba(0,0,0,.12); }

.btn--sm { padding: .5rem 1.125rem; font-size: .875rem; }

/* ─── SECTION TYPOGRAPHY ─────────────────────────────────── */
.section-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: .5rem;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--transition);
}
.nav-wrapper.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__logo .custom-logo-link { display:flex; align-items:center; }
.nav__logo .custom-logo { height: 42px; width: auto; display: block; }
.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.logo-text {
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.logo-text em {
  font-style: normal;
  color: var(--teal);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav__links a,
.nav__links .nav__links-inner a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .7rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links .nav__links-inner a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__links .btn--teal { color: var(--white); margin-left: .5rem; }

/* WordPress menu reset */
.nav__links ul.menu,
.nav__links .menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links .menu li { position: relative; }
.nav__links .menu a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .7rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links .menu a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__links .menu .current-menu-item > a,
.nav__links .menu .current_page_item > a { color: var(--white); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: .25rem;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .nav__links.open { transform: none; }
  .nav__links a,
  .nav__links .menu a { padding: .75rem 1rem; font-size: 1rem; }
  .nav__links .menu { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav__links .btn--teal { margin-left: 0; margin-top: .5rem; justify-content: center; }

  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: clamp(4rem, 10vw, 7rem) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner { text-align: center; position: relative; }

.hero__badge {
  display: inline-block;
  background: rgba(29,158,117,.2);
  color: #5ecfaa;
  border: 1px solid rgba(29,158,117,.35);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.75rem;
}

.hero__heading {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

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

.hero__social-proof {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 4rem;
}

.hero__wave {
  margin-top: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

.br-lg { display: none; }
@media (min-width: 700px) { .br-lg { display: inline; } }

/* ─── OUTCOMES ───────────────────────────────────────────── */
.outcomes {
  background: var(--grey);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.outcome-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.outcome-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.outcome-card--featured {
  background: var(--navy);
  color: var(--white);
}
.outcome-card--featured h3 { color: #ffffff !important; }
.outcome-card--featured p { color: #ffffff !important; }
.outcome-card--featured .outcome-card__icon { color: var(--teal); }

.outcome-card__icon {
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.outcome-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.outcome-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-tile {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 2rem 1.875rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-tile:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(29,158,117,.12);
  transform: translateY(-2px);
}
.service-tile__icon {
  color: var(--teal);
  margin-bottom: .25rem;
}
.service-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.service-tile p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-tile__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .25rem;
}
.service-tile__link:hover { color: var(--teal-dark); }

.service-tile--accent {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-tile--accent h3 { color: var(--white); }
.service-tile--accent p { color: rgba(255,255,255,.72); }
.service-tile--accent .service-tile__link { color: #5ecfaa; }
.service-tile--accent:hover { border-color: var(--teal); box-shadow: 0 4px 32px rgba(15,43,70,.3); }

/* ─── TECHNOLOGIES ───────────────────────────────────────── */
.technologies {
  background: var(--grey);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.technologies .section-heading,
.technologies .section-label { text-align: center; }

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.tech-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: .875rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tech-logo:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(29,158,117,.12);
}
.tech-logo__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.tech-logo__badge {
  font-size: .7rem;
  font-weight: 600;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  padding: .15rem .55rem;
  white-space: nowrap;
}

/* ─── TESTIMONIAL ────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}

.testimonial__card {
  background: var(--grey);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 780px;
  margin-inline: auto;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial__card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  opacity: .25;
  font-family: Georgia, serif;
}

.testimonial__card blockquote p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.testimonial__card figcaption {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.testimonial__meta {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.testimonial__meta strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial__meta span {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS CAROUSEL ──────────────────────────────── */
.testimonials-section {
  background: var(--grey);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}
.testimonials-section .section-sub {
  max-width: 580px;
  margin: 0 auto 3rem;
}
.tcarousel {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 3.5rem;
}
@media (max-width: 600px) { .tcarousel { padding: 0 2.5rem; } }

.tcarousel__track { position: relative; }

.tcarousel__slide {
  position: absolute;
  top: 0; left: 0; width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}
.tcarousel__slide--active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Arrow buttons */
.tcarousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--grey-mid);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.tcarousel__arrow:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.tcarousel__arrow--prev { left: 0; }
.tcarousel__arrow--next { right: 0; }
@media (max-width: 600px) {
  .tcarousel__arrow { width: 34px; height: 34px; top: auto; bottom: -3.5rem; transform: none; }
  .tcarousel__arrow--prev { left: calc(50% - 2.5rem); }
  .tcarousel__arrow--next { right: calc(50% - 2.5rem); }
}

/* Dot indicators */
.tcarousel__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.75rem;
}
.tcarousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--grey-mid);
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.tcarousel__dot--active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* Progress bar */
.tcarousel__progress {
  height: 3px;
  background: var(--grey-mid);
  border-radius: 2px;
  margin-top: .75rem;
  overflow: hidden;
}
.tcarousel__progress-bar {
  height: 100%;
  background: var(--teal);
  border-radius: 2px;
  width: 0%;
}

/* ─── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: var(--teal);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-strip__text p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  line-height: 1.65;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand p {
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,.6);
}
.footer__partner-badge {
  margin-top: .75rem !important;
  color: #5ecfaa !important;
  font-weight: 600;
  font-size: .8rem !important;
}
.footer__logo { margin-bottom: .5rem; display: inline-block; }
.footer__logo .custom-logo-link { display: block; }
.footer__logo .custom-logo { height: 42px; width: auto; display: block; }

.footer__nav h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__contact h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__contact ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--teal); color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { transition: color var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,.75); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .cta-strip__text p { margin-inline: auto; }
  .outcomes .section-heading,
  .outcomes .section-label { text-align: left; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 740px; }
.page-hero__heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ── */
.about-story {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story__text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: .975rem;
}
.about-story__image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat-card {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border: 1px solid var(--grey-mid);
}
.about-stat-card--teal { background: var(--teal); border-color: var(--teal); }
.about-stat-card--teal .about-stat-card__number,
.about-stat-card--teal .about-stat-card__label { color: var(--white); }
.about-stat-card--navy { background: var(--navy); border-color: var(--navy); }
.about-stat-card--navy .about-stat-card__number,
.about-stat-card--navy .about-stat-card__label { color: var(--white); }
.about-stat-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.about-stat-card__label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.bio-section {
  background: var(--grey);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.bio-section__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: start;
}
.bio-avatar {
  flex-shrink: 0;
}
.bio-avatar__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--teal);
  display: block;
}
.bio-avatar__initials {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 4px solid var(--teal);
}
.bio-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.bio-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: .975rem;
}
.bio-quote {
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  font-size: .95rem;
}
.bio-quote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-weight: 600;
  font-size: .85rem;
  color: var(--teal);
}

.values-section {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.values-header { max-width: 680px; margin-bottom: 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--grey-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card__icon {
  color: var(--teal);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.value-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.partners-section {
  background: var(--grey);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.partner-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.partner-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--grey-mid);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.partner-badge:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.partner-badge--featured { border-color: var(--teal); }
.partner-badge__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
}
.partner-badge__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--teal);
  margin-bottom: .75rem;
}
.partner-badge__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES PAGE ── */
.service-detail { padding: clamp(3rem, 7vw, 5rem) 0; }
.service-detail--accent { background: var(--navy); }
.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.service-detail__inner--reverse { direction: rtl; }
.service-detail__inner--reverse > * { direction: ltr; }
.service-detail__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: rgba(29,158,117,.1);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-detail__icon--light { background: rgba(29,158,117,.2); color: #5ecfaa; }
.service-detail__text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
}
.service-detail--accent .service-detail__text h3 { color: var(--white); }
.service-detail__text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: .975rem;
}
.service-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service-list--light li { color: rgba(255,255,255,.75); }
.service-list--light li::before { color: #5ecfaa; }
.service-divider {
  border: none;
  border-top: 1px solid var(--grey-mid);
  margin: 0;
}
.new-badge {
  display: inline-block;
  background: rgba(29,158,117,.25);
  color: #5ecfaa;
  border: 1px solid rgba(29,158,117,.4);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.service-aside-card {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--grey-mid);
  margin-bottom: 1.25rem;
}
.service-aside-card h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.outcome-stat {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--grey-mid);
}
.outcome-stat:last-child { border-bottom: none; }
.outcome-stat__number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.outcome-stat__label { font-size: .875rem; color: var(--text-muted); line-height: 1.4; }
.service-aside-tools h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.service-aside-tools--light h4 { color: rgba(255,255,255,.6); }
.tool-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.tool-pills span {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}
.tool-pills--light span {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}

/* ── CASE STUDIES PAGE ── */
.case-studies-section { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--grey); }
.case-studies-section .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.case-study-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--grey-mid);
  transition: box-shadow var(--transition);
}
.case-study-card:hover { box-shadow: var(--shadow-lg); }
.case-study-card--featured {
  border-color: var(--teal);
  border-width: 2px;
}
.case-study-card__header {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.case-study-card__industry,
.case-study-card__service {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
}
.case-study-card__industry {
  background: rgba(15,43,70,.08);
  color: var(--navy);
}
.case-study-card__service {
  background: rgba(29,158,117,.1);
  color: var(--teal-dark);
}
.case-study-card h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.case-study-card p {
  font-size: .925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.case-study-card__stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
  flex-wrap: wrap;
}
.case-stat { display: flex; flex-direction: column; gap: .25rem; }
.case-stat__number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.03em;
  line-height: 1;
}
.case-stat__label { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.case-study-card__tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.case-study-card__tags span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--grey);
  padding: .25rem .75rem;
  border-radius: 100px;
  border: 1px solid var(--grey-mid);
}

/* ── CONTACT PAGE ── */
.contact-section { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--grey); }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--grey-mid);
}
.contact-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.contact-form-wrap > p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .825rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  font-size: .775rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .5rem;
}
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(29,158,117,.12);
  color: var(--teal);
  font-size: 1.75rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-success p { font-size: .9rem; color: var(--text-muted); }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--grey-mid);
}
.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-list__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(29,158,117,.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-list__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-info-list__value {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}
a.contact-info-list__value:hover { color: var(--teal); }
.hours-list { display: flex; flex-direction: column; gap: .6rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--text-muted);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--grey-mid);
}
.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hours-list li span:first-child { font-weight: 600; color: var(--navy); }
.contact-info-card--promise { background: var(--navy); border-color: var(--navy); }
.contact-info-card--promise h3 { color: var(--white); border-color: rgba(255,255,255,.12); }
.promise-list { display: flex; flex-direction: column; gap: .75rem; }
.promise-list li { font-size: .875rem; color: rgba(255,255,255,.8); line-height: 1.5; }

/* ── RESPONSIVE for inner pages ── */
@media (max-width: 900px) {
  .about-story__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .bio-avatar { display: none; }
  .service-detail__inner { grid-template-columns: 1fr; }
  .service-detail__inner--reverse { direction: ltr; }
  .contact-section__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .case-study-card { padding: 1.5rem; }
  .case-study-card__stats { gap: 1.25rem; }
  .about-story__image-block { grid-template-columns: 1fr 1fr; }
}

/* ─── TECHNOLOGIES PAGE ──────────────────────────────────── */
.tech-intro {
  background: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--grey-mid);
}
.tech-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.tech-intro__lead .section-heading { margin-bottom: 0; }
.tech-intro__body p {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.tech-intro__body p:last-child { margin-bottom: 0; }

.tech-categories {
  background: var(--grey);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.tech-category {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--grey-mid);
}
.tech-category:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.tech-category__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.tech-category__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--teal);
  display: grid;
  place-items: center;
  border: 1.5px solid var(--grey-mid);
  flex-shrink: 0;
}
.tech-category__number {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: .25rem;
}
.tech-category__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.tech-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.tech-card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.tech-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(29,158,117,.1);
  transform: translateY(-2px);
}
.tech-card--partner {
  border-color: var(--teal);
  background: linear-gradient(145deg, rgba(29,158,117,.04) 0%, var(--white) 60%);
}
.tech-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
}
.tech-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}
.tech-card__badge {
  font-size: .68rem;
  font-weight: 700;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  padding: .2rem .65rem;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .03em;
}
.tech-card__badge--new { background: var(--navy); }
.tech-card__desc {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.tech-card__why {
  font-size: .8rem;
  color: var(--teal-dark);
  line-height: 1.55;
  padding-top: .75rem;
  border-top: 1px solid var(--grey-mid);
  font-weight: 500;
}
.tech-card__why::before { content: '✓  '; font-weight: 700; }

/* ── Zoho partner banner ── */
.zoho-banner {
  background: var(--navy);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.zoho-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 10% 50%, rgba(29,158,117,.12) 0%, transparent 65%);
  pointer-events: none;
}
.zoho-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}
.zoho-banner__partner-tag {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: rgba(29,158,117,.2);
  color: #5ecfaa;
  border: 1px solid rgba(29,158,117,.35);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.zoho-banner__heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.zoho-banner__text {
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.zoho-banner__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.zoho-banner__points li {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.zoho-banner__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.zoho-banner__apps-panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2rem;
}
.zoho-banner__apps-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.25rem;
}
.zoho-banner__apps {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.zoho-banner__app {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  padding: .4rem .875rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.zoho-banner__app:hover {
  background: rgba(29,158,117,.2);
  border-color: rgba(29,158,117,.4);
  color: #5ecfaa;
}

/* ── Technologies responsive ── */
@media (max-width: 900px) {
  .tech-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
  .zoho-banner__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 620px) {
  .tech-cards { grid-template-columns: 1fr; }
}

/* ─── RESOURCES PAGE ─────────────────────────────────────── */

/* ── Featured article ── */
.resources-featured {
  background: var(--grey);
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-bottom: 1px solid var(--grey-mid);
}
.featured-article {
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--grey-mid);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  margin-top: 1.5rem;
}
.featured-article:hover { box-shadow: var(--shadow-lg); }
.featured-article__label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(29,158,117,.1);
  color: var(--teal-dark);
  border: 1px solid rgba(29,158,117,.2);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.featured-article__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.featured-article__summary {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.featured-article__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  font-size: .825rem;
  color: var(--text-muted);
}
.featured-article__meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.featured-article__aside {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.featured-article__aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 100% 0%, rgba(29,158,117,.15) 0%, transparent 65%);
  pointer-events: none;
}
.featured-article__aside > * { position: relative; }
.featured-article__aside-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}
.featured-article__aside-stat {
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .4rem;
}
.featured-article__aside-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  margin-bottom: 1rem;
}
.featured-article__aside-desc {
  font-size: .825rem;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.featured-article__aside-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.featured-article__aside-points li {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.featured-article__aside-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── Articles grid ── */
.articles-section {
  background: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.article-card__image {
  display: block;
  margin: -1.75rem -1.75rem 0;
  width: calc(100% + 3.5rem);
  overflow: hidden;
  flex-shrink: 0;
}
.article-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.article-card:hover .article-card__image img { transform: scale(1.04); }
.article-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(29,158,117,.1);
  transform: translateY(-2px);
}
.article-card__category {
  display: inline-block;
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal-dark);
  background: rgba(29,158,117,.09);
  border-radius: 100px;
  padding: .25rem .75rem;
}
.article-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -.02em;
}
.article-card__summary {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .875rem;
  border-top: 1px solid var(--grey-mid);
  margin-top: auto;
}
.article-card__read-time {
  font-size: .775rem;
  color: var(--text-muted);
  font-weight: 500;
}
.article-card__link {
  font-size: .825rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  transition: color var(--transition);
}
.article-card__link:hover { color: var(--teal-dark); }

/* ── Free download card ── */
.download-section {
  background: var(--grey);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.download-card {
  background: var(--white);
  border-radius: 16px;
  border: 2px solid var(--teal);
  padding: clamp(2rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  box-shadow: 0 4px 32px rgba(29,158,117,.1);
}
.download-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: rgba(29,158,117,.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.download-card__label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .4rem;
}
.download-card__title {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.025em;
  margin-bottom: .625rem;
}
.download-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: .4rem;
}
.download-card__note {
  font-size: .775rem;
  color: var(--text-muted);
  font-style: italic;
}
.download-card__cta { flex-shrink: 0; }

/* ── Newsletter section ── */
.newsletter-section {
  background: var(--teal);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(255,255,255,.1) 0%, transparent 65%);
  pointer-events: none;
}
.newsletter-section__inner {
  position: relative;
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
}
.newsletter-section__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.newsletter-section__sub {
  font-size: .975rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.newsletter-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form__input {
  flex: 1;
  min-width: 240px;
  padding: .875rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  transition: border-color var(--transition), background var(--transition);
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255,255,255,.2);
}
.newsletter-privacy {
  font-size: .775rem;
  color: rgba(255,255,255,.55);
  margin-top: 1rem;
}
.newsletter-success {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.newsletter-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
}
.newsletter-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}
.newsletter-success p {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}

/* ── Navy CTA strip variant ── */
.cta-strip--navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-strip--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 120% at 0% 50%, rgba(29,158,117,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip--navy .cta-strip__inner { position: relative; }

/* ─── ARTICLE / BLOG PAGES ───────────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.15) 0%, transparent 70%);
  pointer-events: none;
}
.article-hero__inner { position: relative; z-index: 1; max-width: 780px; }
.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .825rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.article-hero__back:hover { color: rgba(255,255,255,.9); }
.article-hero__category {
  display: inline-block;
  background: rgba(29,158,117,.2);
  color: #5ecfaa;
  border: 1px solid rgba(29,158,117,.35);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.article-hero__heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .825rem;
  color: rgba(255,255,255,.5);
}
.article-hero__meta span { display: flex; align-items: center; gap: .4rem; }

.article-layout {
  background: var(--grey);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.article-layout__inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.article-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--grey-mid);
}
.article-body h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.025em;
  line-height: 1.25;
  margin: 2.5rem 0 .875rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 .625rem;
}
.article-body p {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body p strong { color: var(--text); font-weight: 600; }
.article-body ul, .article-body ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.article-body ul li, .article-body ol li {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}
.article-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.article-body ol { counter-reset: al; }
.article-body ol li { padding-left: 2rem; counter-increment: al; }
.article-body ol li::before {
  content: counter(al) '.';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.article-body blockquote {
  border-left: 3px solid var(--teal);
  background: var(--grey);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-style: italic;
  color: var(--text);
  font-size: .975rem;
  line-height: 1.75;
}
.article-divider {
  border: none;
  border-top: 1px solid var(--grey-mid);
  margin: 2.5rem 0;
}
.article-inline-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}
.article-inline-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(29,158,117,.12) 0%, transparent 65%);
  pointer-events: none;
}
.article-inline-cta > * { position: relative; }
.article-inline-cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem !important;
  margin-top: 0 !important;
}
.article-inline-cta p { color: rgba(255,255,255,.72); margin-bottom: 1.25rem !important; }

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 88px;
}
.article-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--grey-mid);
}
.article-sidebar-card--cta {
  border-color: var(--teal);
  background: linear-gradient(160deg, rgba(29,158,117,.05) 0%, var(--white) 60%);
}
.article-sidebar-card h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  margin-bottom: .875rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--grey-mid);
}
.article-sidebar-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.article-sidebar-card .btn { width: 100%; justify-content: center; }
.article-author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.article-author__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid var(--teal);
}
.article-author__name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.article-author__title { font-size: .775rem; color: var(--text-muted); }
.article-related {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.article-related a {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
  transition: color var(--transition);
}
.article-related a::before { content: '→'; position: absolute; left: 0; color: var(--teal); }
.article-related a:hover { color: var(--teal); }

@media (max-width: 900px) {
  .article-layout__inner { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* ── Resources responsive ── */
@media (max-width: 960px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-article__aside { display: none; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .download-card { grid-template-columns: auto 1fr; }
  .download-card__cta { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .articles-grid { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-card__icon { margin: 0 auto; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form__input { min-width: 100%; }
}

/* ── WPForms overrides ── */
.wpforms-form .wpforms-field input,
.wpforms-form .wpforms-field select,
.wpforms-form .wpforms-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-mid) !important;
  border-radius: var(--radius) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
  color: var(--text) !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
.wpforms-form .wpforms-field input:focus,
.wpforms-form .wpforms-field select:focus,
.wpforms-form .wpforms-field textarea:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(29,158,117,.12) !important;
  outline: none !important;
}
.wpforms-form .wpforms-submit-container .wpforms-submit {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: var(--radius) !important;
  padding: .75rem 1.625rem !important;
  font-size: .95rem !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background var(--transition) !important;
}
.wpforms-form .wpforms-submit-container .wpforms-submit:hover {
  background: var(--teal-dark) !important;
}

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal-wrap {
  padding: 4rem 0 6rem;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--grey-mid);
  font-size: .875rem;
  color: var(--text-muted);
}
.legal-meta strong { color: var(--text); }
.legal-toc {
  background: var(--grey);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.legal-toc h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
  columns: 2;
  column-gap: 2rem;
}
@media (max-width: 600px) { .legal-toc ol { columns: 1; } }
.legal-toc ol li { margin-bottom: .35rem; font-size: .9rem; break-inside: avoid; }
.legal-toc ol li a { color: var(--teal); text-decoration: none; }
.legal-toc ol li a:hover { text-decoration: underline; }
.legal-section {
  margin-bottom: 3rem;
  scroll-margin-top: 6rem;
}
.legal-section-number {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .75rem;
}
.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .6rem;
}
.legal-content p { margin-bottom: 1rem; color: var(--text); line-height: 1.75; }
.legal-content ul,
.legal-content ol {
  margin: .5rem 0 1rem 1.5rem;
  color: var(--text);
  line-height: 1.75;
}
.legal-content li { margin-bottom: .4rem; }
.legal-content a { color: var(--teal); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-highlight {
  background: var(--grey);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.legal-highlight p { margin-bottom: 0; font-size: .95rem; color: var(--text-muted); }
.legal-highlight strong { color: var(--navy); }
.legal-content hr {
  border: none;
  border-top: 1px solid var(--grey-mid);
  margin: 2.5rem 0;
}

/* ─── CHECKLIST PAGE ─────────────────────────────────────── */
.page-hero--compact { padding: 4rem 0 3rem; }

/* Gate section */
.checklist-gate { padding: 4rem 0 5rem; background: var(--grey); }
.checklist-gate__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .checklist-gate__inner { grid-template-columns: 1fr; }
  .checklist-gate__form { order: -1; }
}
.checklist-gate__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.checklist-gate__form h2 { font-size: 1.3rem; margin-bottom: .4rem; color: var(--navy); }
.checklist-gate__form > p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: .95rem; }
.checklist-gate__benefits h2 { font-size: 1.5rem; margin-bottom: .75rem; }

/* Benefits list */
.gate-benefits-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.gate-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.gate-benefits-list li:last-child { border-bottom: none; }
.gate-benefits-list svg { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* Phase preview */
.gate-phase-preview { margin-top: .5rem; }
.gate-phase-preview__label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.gate-phase-preview__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--grey-mid);
  font-size: .9rem;
  color: var(--text);
}
.gate-phase-preview__item:last-child { border-bottom: none; }
.gate-phase-preview__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.gate-phase-preview__count {
  margin-left: auto;
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Checklist reveal */
.checklist-reveal { display: none; }
.checklist-success-banner {
  background: var(--teal);
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: 1rem;
}
.checklist-container { padding: 3rem 0 5rem; }

/* Progress bar */
.checklist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.checklist-progress-wrap { flex: 1; min-width: 200px; }
.checklist-progress-bar-outer {
  height: 10px;
  background: var(--grey-mid);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: .4rem;
}
.checklist-progress-bar-inner {
  height: 100%;
  background: var(--teal);
  border-radius: 5px;
  transition: width .4s ease;
  width: 0%;
}
.checklist-progress-label { font-size: .875rem; color: var(--text-muted); font-weight: 500; }
.checklist-print-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  color: var(--text);
  padding: .6rem 1.2rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.checklist-print-btn:hover { border-color: var(--teal); color: var(--teal); }

/* Phase blocks */
.checklist-phase {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.checklist-phase__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--navy);
  color: #fff;
}
.checklist-phase__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  color: #fff;
  flex-shrink: 0;
}
.checklist-phase__title-wrap { flex: 1; }
.phase-badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .15rem .55rem;
  border-radius: 3px;
  margin-bottom: .2rem;
}
.checklist-phase__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.phase-item-count {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

/* Checklist items */
.checklist-items { padding: 0 2rem; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--grey-mid);
  transition: background var(--transition);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item__check-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--grey-mid);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
  position: relative;
}
.checklist-item__check-wrap:hover { border-color: var(--teal); }
.checklist-item__checkbox {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.checklist-item__checkmark { color: transparent; pointer-events: none; }
.checklist-item--done .checklist-item__check-wrap {
  background: var(--teal);
  border-color: var(--teal);
}
.checklist-item--done .checklist-item__checkmark { color: #fff; }
.checklist-item__body { flex: 1; }
.checklist-item__num {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.checklist-item__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .3rem;
  transition: color var(--transition);
}
.checklist-item__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.checklist-item--done .checklist-item__title {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--teal);
}

/* Footer CTA inside checklist */
.checklist-footer-cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
}
.checklist-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.checklist-footer-cta h3 { color: #fff; font-size: 1.2rem; margin-bottom: .4rem; }
.checklist-footer-cta p { color: rgba(255,255,255,.75); font-size: .95rem; max-width: 520px; }

/* Print styles */
@media print {
  .nav, .footer, .checklist-gate, .checklist-success-banner,
  .checklist-header, .checklist-print-btn, .checklist-footer-cta,
  .cta-strip, .page-hero { display: none !important; }
  .checklist-reveal { display: block !important; }
  .checklist-phase__header { background: var(--navy) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .checklist-item { break-inside: avoid; }
  .checklist-phase { break-inside: avoid; box-shadow: none; border: 1px solid #ddd; }
  body { font-size: 11pt; }
  .container { max-width: 100%; }
}
