/* ============================================================
   ANERI R SHAH & ASSOCIATES — Global Stylesheet
   Scope: design tokens · typography · utilities ·
          top bar · nav · footer · floating WhatsApp
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {

  /* Backgrounds */
  --white:          #ffffff;
  --off-white:      #f7f5f2;

  /* Borders */
  --border-light:   #e8e5e0;
  --border-med:     #e0ddd8;

  /* Brand blue (ICAI) */
  --blue:           #1a5cad;
  --blue-dark:      #0c447c;
  --blue-light-bg:  #eaf1fb;
  --blue-light-bdr: #b5d4f4;

  /* Text */
  --charcoal:       #1a1a1a;
  --body-text:      #444444;
  --secondary-text: #555555;
  --muted-text:     #777777;
  --hint-text:      #999999;

  /* Surface colours */
  --footer-navy:    #16243a;
  --wa-green:       #1a7a3c;

  /* Segment illustration backgrounds & accents */
  --seg-starting-bg:    #d5e6f4;
  --seg-starting-acc:   #1a5cad;
  --seg-running-bg:     #cce4d5;
  --seg-running-acc:    #1a6b40;
  --seg-scaling-bg:     #c8e8f0;
  --seg-scaling-acc:    #0a7090;
  --seg-vc-bg:          #e8dece;
  --seg-vc-acc:         #7a4e22;
  --seg-individual-bg:  #c8e4d4;
  --seg-individual-acc: #1a6b50;

  /* Border radii */
  --radius-card: 10px;
  --radius-btn:   6px;
  --radius-pill:  20px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-med:  0.25s ease;

  /* Shadows */
  --shadow-nav: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-dropdown: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-wa: 0 4px 16px rgba(26, 122, 60, 0.35);
}


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

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

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

input, textarea, select {
  font-family: inherit;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

/* Serif face (headings) */
.serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

/* Heading scale */
h1.serif {
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

h2.serif {
  font-size: 21px;
  line-height: 1.35;
  color: var(--charcoal);
}

h3.serif {
  font-size: 15px;
  line-height: 1.4;
  color: var(--charcoal);
}

/* Eyebrow — plain text version */
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
}

/* Eyebrow — pill version (ICAI blue) */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-light-bg);
  color: var(--blue);
  border: 0.5px solid var(--blue-light-bdr);
}

/* Hide pill when content is empty */
.eyebrow-pill:empty { display: none; }

/* Eyebrow pill — neutral/grey variant */
.eyebrow-pill.neutral {
  background: var(--off-white);
  color: #5f5e5a;
  border-color: #d3d1c7;
}

/* Sub-section label pill */
.label-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.label-pill.blue {
  background: var(--blue-light-bg);
  color: var(--blue-dark);
  border: 0.5px solid var(--blue-light-bdr);
}

.label-pill.neutral {
  background: var(--off-white);
  color: #5f5e5a;
  border: 0.5px solid #d3d1c7;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Visually hidden (accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 9px 18px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition:
    background  var(--t-fast),
    border-color var(--t-fast),
    color        var(--t-fast),
    transform    var(--t-fast),
    box-shadow   var(--t-fast);
}

.btn:active { transform: scale(0.98); }

/* Primary — ICAI blue fill */
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* Outline — transparent with border */
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border-med);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* WhatsApp green */
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border: 1px solid var(--wa-green);
}
.btn-wa:hover { background: #155f30; border-color: #155f30; }

/* Neutral — white with light border */
.btn-neutral {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid #d8d5d0;
}
.btn-neutral:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Size modifiers */
.btn-sm { font-size: 11px; padding: 7px 14px; }
.btn-lg { font-size: 13px; padding: 12px 22px; }
.btn-full { width: 100%; justify-content: center; }


/* ============================================================
   6. PILL / TAG UTILITIES
   ============================================================ */

/* Row of service pills */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Individual service pill */
.service-pill {
  font-size: 11px;
  color: #666;
  background: var(--off-white);
  border: 0.5px solid var(--border-med);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}


/* ============================================================
   7. SCROLL ANIMATIONS
   ============================================================ */

/* Elements start hidden; JS adds .visible when in viewport */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for direct .fade-up children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0.00s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.08s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.16s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.24s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.32s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.40s; }
.stagger > .fade-up:nth-child(7) { transition-delay: 0.48s; }
.stagger > .fade-up:nth-child(8) { transition-delay: 0.56s; }


/* ============================================================
   8. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--off-white);
  border-bottom: 0.5px solid var(--border-med);
  height: 34px;
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #666;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar__item svg  { color: var(--blue); flex-shrink: 0; }
.top-bar__item a:hover { color: var(--blue); }
.top-bar__sep { color: var(--border-med); }


/* ============================================================
   9. NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--white);
  border-bottom: 0.5px solid var(--border-light);
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--t-med);
}

/* Shadow appears once user scrolls past hero */
.site-nav.scrolled {
  box-shadow: var(--shadow-nav);
}

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

/* Brand / logo lockup */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__brand img { height: 36px; width: auto; }

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.nav__brand-sub {
  font-size: 9px;
  color: var(--muted-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Centre link list */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 12px;
  color: var(--secondary-text);
  padding: 6px 10px;
  border-radius: 5px;
  position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover,
.nav__link.active {
  color: var(--blue);
  background: var(--blue-light-bg);
}

/* Animated underline on hover */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav__link:hover::after { transform: scaleX(1); }

/* "Who We Serve" dropdown */
.nav__dropdown { position: relative; }

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--secondary-text);
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__dropdown-toggle:hover {
  color: var(--blue);
  background: var(--blue-light-bg);
}

/* Chevron rotates when open */
.nav__dropdown-toggle svg {
  transition: transform var(--t-fast);
}
.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown.open  .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-dropdown);
  padding: 6px;
  z-index: 200;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity     var(--t-fast),
    transform   var(--t-fast),
    visibility  var(--t-fast);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open  .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--secondary-text);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__dropdown-item:hover {
  background: var(--blue-light-bg);
  color: var(--blue);
}
.nav__dropdown-item svg { color: var(--blue); flex-shrink: 0; }

/* Right-side CTA */
.nav__actions { display: flex; align-items: center; }

/* Hamburger icon (hidden on desktop) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* Animated X when open */
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   10. MOBILE NAV PANEL
   ============================================================ */
.mobile-nav {
  display: none; /* shown via .open */
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--border-light);
  box-shadow: var(--shadow-dropdown);
  padding: 1rem 1.5rem 1.25rem;
  z-index: 99;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 56px);
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav__link {
  display: block;
  font-size: 13px;
  color: var(--secondary-text);
  padding: 10px 8px;
  border-radius: 6px;
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-nav__link:hover {
  background: var(--blue-light-bg);
  color: var(--blue);
}

.mobile-nav__section {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hint-text);
  padding: 8px 8px 4px;
  margin-top: 4px;
}

.mobile-nav__sub { padding-left: 16px; }

.mobile-nav__divider {
  height: 0.5px;
  background: var(--border-light);
  margin: 6px 0;
}

.mobile-nav__cta { margin-top: 8px; }


/* ============================================================
   11. FOOTER
   ============================================================ */
.site-footer {
  background: var(--footer-navy);
  padding: 2rem 0 0;
}

/* 4-column top section */
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 1.5rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
}

/* Col 1 — brand + address */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer__brand-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer__brand-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__address {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.footer__address-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
}
.footer__address-line svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.3);
}

/* Cols 2–4 — links */
.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}
.footer__link:hover { color: rgba(255, 255, 255, 0.9); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
}

.footer__copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   12. FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.float-wa__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  box-shadow: var(--shadow-wa);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  /* Pulse on first load to draw attention */
  animation: wa-pulse 2.5s ease-out 1;
}

.float-wa__btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(26, 122, 60, 0.45);
}

/* Tooltip slides in from the right */
.float-wa__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--charcoal);
  color: var(--white);
  font-size: 11px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

/* Arrow pointing right */
.float-wa__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal);
}

.float-wa:hover .float-wa__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(26, 122, 60, 0.5); }
  50%  { box-shadow: 0 0 0 14px rgba(26, 122, 60, 0);   }
  100% { box-shadow: var(--shadow-wa); }
}


/* ============================================================
   14. PAGE FADE-IN
   ============================================================ */
body {
  animation: page-fadein 0.35s ease both;
}
@keyframes page-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ============================================================
   15. HOMEPAGE — HERO
   ============================================================ */
.hero {
  padding: 2.5rem 0 2.25rem;
  border-bottom: 0.5px solid #f0ede8;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 1rem 0;
}

.hero__h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero__sub {
  font-size: 14px;
  color: var(--secondary-text);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero__pills { margin-top: 0; } /* .pill-row handles spacing */


/* ============================================================
   16. HOMEPAGE — WHO WE SERVE (SEGMENT SECTION)
   ============================================================ */
.segment { background: var(--off-white); padding-top: 1.25rem; }
.segment__illus-wrap { padding: 0 1.5rem; }

/* -- Illustration area -- */
.segment__illus {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: var(--seg-starting-bg); /* default; JS updates this */
  transition: background-color 0.3s ease;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-card);
}

.segment__illus-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.segment__illus-frame.is-active { opacity: 1; }
.segment__illus-frame svg { width: 100%; height: 100%; display: block; }

/* Overlay text (label + title) sits above the SVG */
.segment__illus-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
}
.segment__illus-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3px;
}
.segment__illus-title {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  color: #fff;
  line-height: 1.3;
}

/* -- Section intro -- */
.segment__intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1rem;
}
.segment__intro-h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0.4rem 0;
}
.segment__intro-sub {
  font-size: 13px;
  color: var(--secondary-text);
}

/* -- Five-tile grid -- */
.segment__tiles-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 0;
}
.segment__tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.segment__tile {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 0.9rem 0.85rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.segment__tile:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,92,173,0.08);
}
.segment__tile.is-active {
  border-color: var(--blue);
  border-width: 1.5px;
}

.segment__tile-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue-light-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.segment__tile.is-active .segment__tile-icon {
  background: var(--blue);
  color: var(--white);
}

.segment__tile-title { font-size: 11px; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.segment__tile-desc  { font-size: 10px; color: var(--muted-text); line-height: 1.4; }

.segment__tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--blue);
  margin-top: 2px;
  transition: gap var(--t-fast);
}
.segment__tile:hover .segment__tile-cta { gap: 7px; }

/* -- Detail panel -- */
.segment__detail {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 1.25rem 0;
}
.segment__detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.segment__detail-left  { flex: 1; min-width: 0; }
.segment__detail-right { flex-shrink: 0; padding-top: 0.25rem; }

.segment__detail-eyebrow {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.35rem;
}
.segment__detail-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.segment__detail-body {
  font-size: 12px;
  color: var(--secondary-text);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 0.85rem;
}


/* ============================================================
   17. HOMEPAGE — WHY CHOOSE US
   ============================================================ */
.why {
  padding: 2.5rem 0;
}
.why__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.why__intro { margin-bottom: 1.5rem; }
.why__intro-eyebrow { margin-bottom: 0.4rem; }
.why__intro-h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--charcoal);
}

/* Stats header */
.why__track-header { margin: 1.5rem 0 1.1rem; }
.why__track-h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0.35rem 0 0.25rem;
}
.why__track-sub { font-size: 12px; color: var(--secondary-text); }

/* 8-stat grid */
.why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.stat-card {
  background: var(--off-white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1rem 1.1rem;
}
.stat-card__number {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--body-text);
  margin-bottom: 2px;
}
.stat-card__note { font-size: 10px; color: #aaa; }

.why__disclaimer {
  font-size: 10px;
  font-style: italic;
  color: #bbb;
  line-height: 1.65;
  margin-top: 0.75rem;
}

/* Ethos divider */
.why__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.25rem 0 1.5rem;
}
.why__divider-line { flex: 1; height: 0.5px; background: var(--border-med); }
.why__divider-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bbb;
  white-space: nowrap;
}

/* Ethos header */
.why__ethos-header { margin-bottom: 1rem; }
.why__ethos-h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0.35rem 0 0;
}

/* Quote block */
.why__quote {
  background: var(--off-white);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 12px;
  color: var(--body-text);
  line-height: 1.75;
  font-style: italic;
}

/* 6-card ethos grid */
.why__ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ethos-card {
  background: var(--off-white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1rem 1.1rem;
  transition: border-color var(--t-fast);
}
.ethos-card:hover { border-color: var(--blue); }
.ethos-card__icon  { color: var(--blue); margin-bottom: 8px; }
.ethos-card__title { font-size: 12px; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.ethos-card__body  { font-size: 11px; color: #666; line-height: 1.6; }


/* ============================================================
   18. SHARED — CTA SECTION
        (used on homepage and all inner pages)
   ============================================================ */
.cta {
  background: var(--off-white);
  border-top: 3px solid var(--blue);
  padding: 2rem 0;
}
.cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta__left  { flex: 1; }
.cta__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 210px;
}
.cta__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0.4rem 0 0.6rem;
}
.cta__sub {
  font-size: 13px;
  color: var(--secondary-text);
  line-height: 1.7;
  max-width: 480px;
}


/* ============================================================
   19. INNER PAGES — audience pages, about, services, contact
        Shared layout components used across all inner pages.
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted-text);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted-text); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb__sep { color: var(--border-med); }

/* Inner hero — matches homepage hero style (white bg, dark text).
   Use border-top inline on the <section> for per-page colour accent. */
.inner-hero {
  background: var(--white);
  border-bottom: 0.5px solid #f0ede8;
  padding: 2.5rem 0 2.25rem;
}
.inner-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.inner-hero .eyebrow-pill { margin-bottom: 0.75rem; }
.inner-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.inner-hero__sub {
  font-size: 14px;
  color: var(--secondary-text);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 1.25rem;
}

/* Section wrapper */
.section     { padding: 2.25rem 0; }
.section--alt { padding: 2.25rem 0; background: var(--off-white); }
.section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__header { margin-bottom: 1.5rem; }
.section__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 0.4rem;
}
.section__h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
}
.section__sub {
  font-size: 13px;
  color: var(--secondary-text);
  margin-top: 0.35rem;
  line-height: 1.7;
}

/* Pain point cards — 2-col grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.pain-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.25rem;
}
.pain-card__icon  { color: var(--blue); margin-bottom: 8px; }
.pain-card__title { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.pain-card__body  { font-size: 12px; color: var(--secondary-text); line-height: 1.65; }

/* Service items — stacked list */
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.25rem;
  transition: border-color var(--t-fast);
}
.service-item:hover { border-color: var(--blue); }
.service-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--blue-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-item__title { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.service-item__desc  { font-size: 12px; color: var(--secondary-text); line-height: 1.65; }

/* Differentiator cards — 3-col grid */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.diff-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem;
  transition: border-color var(--t-fast);
}
.diff-card:hover { border-color: var(--blue); }
.diff-card__accent {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, 'Times New Roman', serif;
}
.diff-card__title { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 5px; }
.diff-card__body  { font-size: 12px; color: var(--secondary-text); line-height: 1.65; }


/* ============================================================
   20. ABOUT PAGE
   ============================================================ */

/* Constrained narrative text */
.about-narrative {
  max-width: 720px;
  margin-bottom: 0;
}
.about-narrative p {
  font-size: 13px;
  color: var(--secondary-text);
  line-height: 1.8;
}

/* Approach cards — 3-col grid, icon + title + body */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.approach-card {
  background: var(--off-white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color var(--t-fast);
}
.approach-card:hover { border-color: var(--blue); }

.approach-card__icon {
  color: var(--blue);
  margin-bottom: 2px;
}

.approach-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.approach-card__body {
  font-size: 12px;
  color: var(--secondary-text);
  line-height: 1.7;
}

/* Team grid — 4 columns */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.team-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: border-color var(--t-fast);
}
.team-card:hover { border-color: var(--blue); }

.team-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hint-text);
  flex-shrink: 0;
}

.team-card__role {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
}

.team-card__domains {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.team-card__note {
  font-size: 10px;
  font-style: italic;
  color: var(--hint-text);
  margin-top: auto;
  padding-top: 0.25rem;
}

/* ICAI ethics block */
.ethics-block {
  background: var(--blue-light-bg);
  border: 0.5px solid var(--blue-light-bdr);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ethics-block__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ethics-block__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.ethics-block__reg {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-text);
}

.ethics-block__body {
  font-size: 13px;
  color: var(--secondary-text);
  line-height: 1.75;
  max-width: 780px;
}

.ethics-block__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 10px;
  font-style: italic;
  color: var(--muted-text);
  line-height: 1.65;
  padding-top: 0.5rem;
  border-top: 0.5px solid var(--blue-light-bdr);
  max-width: 780px;
}
.ethics-block__disclaimer svg { flex-shrink: 0; margin-top: 1px; color: var(--blue); }


/* ============================================================
   21. SERVICES PAGE
   ============================================================ */

/* 2-column grid; 7th card spans both columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.svc-card {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.svc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26, 92, 173, 0.06);
}

/* Wide variant spans both columns */
.svc-card--wide { grid-column: 1 / -1; }

.svc-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-light-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-card__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
}

.svc-card__desc {
  font-size: 12px;
  color: var(--secondary-text);
  line-height: 1.7;
  flex: 1;
}

.svc-card__footer {
  padding-top: 0.85rem;
  border-top: 0.5px solid var(--border-light);
  margin-top: auto;
}

.svc-card__footer-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hint-text);
  margin-bottom: 7px;
}

.svc-audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light-bg);
  border: 0.5px solid var(--blue-light-bdr);
  padding: 4px 11px 4px 9px;
  border-radius: var(--radius-pill);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  text-decoration: none;
}
.svc-audience-pill:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}


/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-page {
  border-top: 3px solid var(--blue);
  padding: 2.5rem 0 3rem;
}

.contact-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  grid-template-rows: auto 1fr;
  column-gap: 4rem;
  row-gap: 0;
}

/* Breadcrumb spans both columns */
.contact-page__breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

/* Left: info */
.contact-info .eyebrow { margin-bottom: 0.5rem; }

.contact-info h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.contact-info__sub {
  font-size: 13px;
  color: var(--secondary-text);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 380px;
}

/* Contact detail rows */
.contact-details {
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0.85rem 1rem;
  background: var(--off-white);
  border-bottom: 0.5px solid var(--border-light);
}
.contact-detail:last-child { border-bottom: none; }

.contact-detail__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue-light-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-detail__label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hint-text);
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.55;
}
.contact-detail__value a {
  color: var(--body-text);
  transition: color var(--t-fast);
}
.contact-detail__value a:hover { color: var(--blue); }

/* Direct contact buttons */
.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Right: form card */
.contact-form-wrap {
  background: var(--white);
  border: 0.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  align-self: start;
}

.contact-form-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--border-light);
}
.contact-form-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.contact-form-sub {
  font-size: 12px;
  color: var(--muted-text);
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; }
.form-row { margin-bottom: 1rem; }
.form-row:last-child { margin-bottom: 0; }

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal);
}
.form-required { color: var(--blue); }
.form-optional { font-weight: 400; color: var(--hint-text); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--body-text);
  background: var(--white);
  border: 1px solid var(--border-med);
  border-radius: 6px;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 92, 173, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--hint-text); }

/* Custom dropdown arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  color: var(--body-text);
}
.form-group select:invalid,
.form-group select option[value=""] { color: var(--hint-text); }

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.65;
}

.form-submit {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-note {
  font-size: 11px;
  color: var(--hint-text);
  line-height: 1.5;
}

/* Success state after submission */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #1a6b40;
  background: #e8f5ee;
  border: 0.5px solid #a8d8b8;
  border-radius: 6px;
  padding: 10px 14px;
  line-height: 1.55;
}
.form-success svg { color: #1a6b40; flex-shrink: 0; margin-top: 2px; }


/* ============================================================
   13. RESPONSIVE — TABLET ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  /* Team grid drops to 2-col before hitting the full mobile breakpoint */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   13. RESPONSIVE — MOBILE ≤ 768px
   ============================================================ */
@media (max-width: 768px) {

  /* ---- Global ---- */
  .top-bar { display: none; }

  .nav__links,
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }

  /* Tighten brand lockup so it fits beside hamburger on small phones */
  .nav__brand-name { font-size: 12px; }
  .nav__brand-sub  { display: none; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .float-wa { bottom: 16px; right: 16px; }

  /* ---- Typography ---- */
  .hero__h1          { font-size: 22px; }
  .hero__sub         { font-size: 13px; }
  .inner-hero h1     { font-size: 20px; }
  .inner-hero__sub   { font-size: 13px; }
  .section__h2       { font-size: 18px; }
  .cta__h2           { font-size: 18px; }
  .segment__intro-h2 { font-size: 18px; }
  .why__intro-h2     { font-size: 18px; }
  .why__track-h3     { font-size: 14px; }
  .why__ethos-h3     { font-size: 14px; }

  /* ---- Homepage hero ---- */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }

  /* ---- Segment / Who We Serve ---- */
  .segment__illus { height: 160px; }
  .segment__tiles { grid-template-columns: repeat(2, 1fr); }
  .segment__tile:nth-child(5) {
    grid-column: span 2;
    max-width: 200px;
    margin: 0 auto;
    width: 100%;
  }
  .segment__detail-inner { flex-direction: column; }
  .segment__detail-right { width: 100%; }
  .segment__detail-right .btn { width: 100%; justify-content: center; }

  /* ---- Why choose us ---- */
  .why { padding: 1.75rem 0; }
  .why__stats      { grid-template-columns: repeat(2, 1fr); }
  .why__ethos-grid { grid-template-columns: 1fr; }
  .why__quote      { font-size: 12px; padding: 0.85rem 1rem; }

  /* ---- CTA ---- */
  .cta { padding: 1.5rem 0; }
  .cta__inner { flex-direction: column; }
  .cta__right { width: 100%; }
  .cta__right .btn { width: 100%; justify-content: center; }

  /* ---- Inner page sections ---- */
  .section, .section--alt { padding: 1.75rem 0; }
  .inner-hero { padding: 1.75rem 0 1.5rem; }
  .pain-grid  { grid-template-columns: 1fr; }
  .diff-grid  { grid-template-columns: 1fr; }

  .service-list { gap: 8px; }
  .service-item { padding: 0.9rem 1rem; gap: 0.75rem; }
  .service-item__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
  }
  .service-item__title { font-size: 13px; }
  .service-item__desc  { font-size: 12px; }

  /* ---- About page ---- */
  .approach-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: repeat(2, 1fr); }
  .ethics-block  { padding: 1.25rem; }
  .ethics-block__header { flex-wrap: wrap; gap: 8px; }

  /* ---- Services page ---- */
  .services-grid  { grid-template-columns: 1fr; }
  .svc-card--wide { grid-column: auto; }
  .svc-card       { padding: 1.25rem; }

  /* ---- Contact page ---- */
  .contact-page { padding: 1.75rem 0 2rem; }
  .contact-page__inner {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
  .contact-info__sub     { max-width: none; }
  .contact-cta-btns .btn { width: 100%; justify-content: center; }
  .contact-form-wrap     { padding: 1.25rem; margin-top: 1.5rem; }
  .form-row--2col        { grid-template-columns: 1fr; gap: 1rem; }
}
