@font-face {
  font-family: 'Keno';
  src: url('../assets/fonts/Keno.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hanson';
  src: url('../assets/fonts/Hanson-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Natural Minimalist Editorial Color Palette */
  --color-soot: #2D3536;            /* Soot (Primary Dark, Sections, Cards, Footer, Dark Text) */
  --color-plaster: #F2EFE2;         /* Plaster (Canvas, Base Light BG, Light Cards, Soft Text) */
  --color-eucalyptus: #98AA9D;      /* Eucalyptus (Sage Accent, Badges, Highlights, Active Lines) */
  --color-moss: #697C70;            /* Moss (Secondary Accent, Muted Subtitles, Buttons) */
  --color-mist: #B3C9D6;            /* Mist (Soft Blue Accent, Tints, Pills) */
  
  --color-milk: #F2EFE2;            /* Plaster Canvas */
  --color-oat: #e6e2d3;             /* Plaster Soft Tint */
  --color-taupe: #98AA9D;           /* Eucalyptus Accent */
  --color-mocha: #697C70;           /* Moss Tone */
  --color-charcoal: #2D3536;        /* Soot Foundation */
  --color-charcoal-dark: #22292A;   /* Deep Soot */
  --color-charcoal-surface: #374142;/* Subtle Elevated Soot Surface */
  
  --color-cream-bg: #F2EFE2;        /* Plaster Wall Tone */
  --color-cream-card: #ffffff;      /* Pure White Surface Cards */
  --color-cream-alt: #e6e2d3;       /* Plaster Alt BG */
  
  --color-navy: #2D3536;            /* Primary Deep Soot */
  --color-navy-hover: #3d4748;      /* Soot Hover */
  --color-navy-dark: #22292A;       /* Deep Soot */
  --color-navy-surface: #374142;    /* Soot Surface */
  --color-navy-card: #2D3536;       /* Soot Card */
  
  --color-greige: #98AA9D;          /* Eucalyptus Accent */
  --color-greige-light: #e6e2d3;    /* Plaster Soft Tint */
  --color-greige-border: rgba(152, 170, 157, 0.45);
  
  --color-charcoal-muted: #697C70;  /* Moss Muted Text */
  
  --color-text-dark: #2D3536;       /* Deep Soot for Light Backgrounds */
  --color-text-muted: #697C70;      /* Moss Muted Text */
  --color-text-light: #F2EFE2;      /* Plaster Crisp Text for Dark BG */
  --color-text-light-muted: rgba(242, 239, 226, 0.85);
  
  --color-primary-green: #2D3536;   /* Primary Dark Soot */
  --color-primary-green-hover: #3d4748;
  --color-sage-accent: #98AA9D;     /* Eucalyptus Accent */
  --color-sage-light: #B3C9D6;      /* Mist Tint */
  --color-gold: #98AA9D;            /* Eucalyptus */
  --color-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  background-color: var(--color-cream-bg);
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE/Edge */
  scroll-behavior: smooth;
  scroll-padding-top: 75px;
}

section {
  scroll-margin-top: 75px;
}

body {
  background-color: var(--color-cream-bg);
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -ms-overflow-style: none;
  color: var(--color-text-dark);
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge/WebKit */
}

@supports (scrollbar-width: none) {
  html, body {
    scrollbar-width: none; /* Firefox & modern browsers */
  }
}

/* Top Info Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 38px;
  z-index: 102;
  background: rgba(242, 239, 226, 0.96);
  border-bottom: 1px solid rgba(45, 53, 54, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-size: 11.5px;
  color: #697C70;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #697C70;
  transition: color 0.2s ease;
}

.top-bar-item:hover {
  color: #2D3536;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  stroke: #98AA9D;
}

.top-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 9px;
  border-radius: 20px;
  background: rgba(152, 170, 157, 0.18);
  border: 1px solid rgba(152, 170, 157, 0.45);
  color: #2D3536;
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.4px;
}

/* Permanent Sticky Adaptive Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  box-sizing: border-box;
  transition: background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. DARK NAVBAR THEME (Active when section background is LIGHT: Hero, Sectors, Why-Us, Contact, etc.) */
.header.nav-dark {
  background-color: #1c2223;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}

.header.nav-dark .brand-logo-badge {
  color: #98AA9D;
}

.header.nav-dark .brand-title {
  color: #ffffff;
}

.header.nav-dark .brand-subtitle {
  color: #98AA9D;
}

.header.nav-dark .nav-link {
  color: rgba(242, 239, 226, 0.85);
  background: transparent;
}

.header.nav-dark .nav-link:hover, 
.header.nav-dark .nav-item:hover > .nav-link {
  color: #ffffff;
  background: transparent;
}

.header.nav-dark .nav-link:hover::after {
  background-color: rgba(152, 170, 157, 0.65);
}

.header.nav-dark .nav-link.active {
  color: #ffffff;
  font-weight: 700;
  background: transparent;
}

.header.nav-dark .nav-link.active::after {
  background-color: #98AA9D;
  box-shadow: 0 0 8px rgba(152, 170, 157, 0.55);
}

.header.nav-dark .mobile-toggle {
  color: #ffffff;
}

/* 2. LIGHT NAVBAR THEME (Active when section background is DARK: Services, Knowledge Bank, About Card, Footer) */
.header.nav-light {
  background-color: #F2EFE2;
  border-bottom: 1px solid rgba(45, 53, 54, 0.1);
  box-shadow: 0 8px 32px rgba(45, 53, 54, 0.06);
}

.header.nav-light .brand-logo-badge {
  color: #2D3536;
}

.header.nav-light .brand-title {
  color: #2D3536;
}

.header.nav-light .brand-subtitle {
  color: #697C70;
}

.header.nav-light .nav-link {
  color: rgba(45, 53, 54, 0.82);
  background: transparent;
}

.header.nav-light .nav-link:hover, 
.header.nav-light .nav-item:hover > .nav-link {
  color: #2D3536;
  background: transparent;
}

.header.nav-light .nav-link:hover::after {
  background-color: rgba(45, 53, 54, 0.4);
}

.header.nav-light .nav-link.active {
  color: #2D3536;
  font-weight: 700;
  background: transparent;
}

.header.nav-light .nav-link.active::after {
  background-color: #2D3536;
}

.header.nav-light .mobile-toggle {
  color: #2D3536;
}

/* Logo & Branding - Pushed to Absolute Left */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  margin-left: 0;
  flex-shrink: 0;
}

.brand-logo-badge {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .brand-logo-badge {
  transform: translateY(-1px) scale(1.06);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.header.nav-dark .brand-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.header.nav-light .brand-logo-img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.mobile-drawer .brand-logo-img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.contact-dir-brand-wrap .brand-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.15;
  transition: color 0.3s ease;
}

.brand-amp {
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  color: #364B3B;
  transition: color 0.3s ease;
}

.header.nav-dark .brand-amp {
  color: #98AA9D;
}

.header.nav-light .brand-amp {
  color: #364B3B;
}

.contact-dir-brand-wrap .brand-amp {
  color: #98AA9D;
}

.brand-subtitle {
  font-family: 'Plus Jakarta Sans', 'Josefin Sans', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #364B3B;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.header.nav-dark .brand-subtitle {
  color: #98AA9D;
}

.header.nav-light .brand-subtitle {
  color: #364B3B;
}

.contact-dir-brand-wrap .brand-subtitle {
  color: #98AA9D;
}

/* Desktop Navigation Menu - Pushed to Absolute Right */
.header > nav {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px 10px;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform: none;
  text-decoration: none;
  border-radius: 6px;
  background: transparent;
  transition: color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

/* Bottom Active Indicator Line */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2.5px;
  border-radius: 2px;
  background-color: transparent;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.28s ease;
}

.nav-link:hover::after {
  transform: scaleX(0.7);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link svg.chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.nav-item:hover > .nav-link svg.chevron {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 53, 54, 0.1);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  list-style: none;
  z-index: 1000;
}

.dropdown-menu.align-right {
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(152, 170, 157, 0.16);
  transform: translateX(4px);
}

.dropdown-title {
  font-size: 13px;
  font-weight: 600;
  color: #2D3536;
}

.dropdown-desc {
  font-size: 11px;
  color: #697C70;
}

/* CTA Header Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-portal {
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: #2D3536;
  background: transparent;
  border: 1px solid rgba(45, 53, 54, 0.2);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-portal:hover {
  border-color: #2D3536;
  color: #2D3536;
  background: rgba(45, 53, 54, 0.05);
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff !important;
  background: #2D3536;
  border: 1px solid #2D3536;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(45, 53, 54, 0.25);
}

.btn-consultation:hover {
  background: #3d4748;
  border-color: #3d4748;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45, 53, 54, 0.35);
}

.btn-consultation-full {
  width: 100%;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #2D3536;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 53, 54, 0.18);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: #98AA9D;
  color: #2D3536;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #2D3536;
  padding: 6px;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-close-btn {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #2D3536;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item a {
  display: block;
  padding: 10px 12px;
  color: #2D3536;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-nav-item a:hover {
  background: rgba(152, 170, 157, 0.16);
  color: #2D3536;
}

.mobile-section-heading {
  font-weight: 700 !important;
  color: #2D3536 !important;
}

.mobile-submenu {
  list-style: none;
  padding-left: 16px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-submenu a {
  font-size: 13px;
  color: #697C70;
  padding: 6px 12px;
}

.mobile-drawer-footer {
  margin-top: 24px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 53, 54, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

@media (max-width: 1080px) {
  .top-bar {
    display: none;
  }
  .header {
    top: 0;
    padding: 14px 20px;
  }
  .nav-menu, .nav-actions .btn-portal {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Fixed Canvas Background */
#canvas {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: block;
  z-index: 1;
  pointer-events: none;
  background-color: var(--color-cream-bg);
}

/* Scroll container to control image sequence */
#scroll-container {
  height: 380vh;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Scroll Pure Text Reveal Overlay (Heading Now / Bebas Neue Super-Condensed Ultra-Bold Typography) */
.hero-narrative-text {
  position: fixed;
  top: 50%;
  z-index: 25;
  max-width: 740px;
  font-family: 'Heading Now', 'Bebas Neue', 'Anton', 'Big Shoulders Display', 'Barlow Condensed', sans-serif !important;
  font-size: clamp(66px, 6.6vw, 102px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.8px;
  color: #2D3536;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.95), 0 4px 40px rgba(242, 239, 226, 0.75);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-narrative-text.text-right {
  right: 3.8vw;
  left: auto;
  text-align: center;
  transform: translateY(-50%) translateX(40px);
}

.hero-narrative-text.text-left {
  left: 3.8vw;
  right: auto;
  text-align: center;
  transform: translateY(-50%) translateX(-40px);
}

.hero-narrative-text.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* Scroll Hint Prompt Badge */
.hero-scroll-hint {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(152, 170, 157, 0.35);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #2D3536;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  animation: gentleHintBounce 2s infinite ease-in-out;
}

.hero-scroll-hint svg {
  stroke: #697C70;
  stroke-width: 2.5;
}

.hero-scroll-hint.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 15px) !important;
}

@keyframes gentleHintBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 5px); }
}

@media (min-width: 861px) and (max-width: 1080px) {
  .hero-narrative-text {
    max-width: 360px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 0.98;
  }
  .hero-narrative-text.text-right {
    right: 4vw;
  }
  .hero-narrative-text.text-left {
    left: 4vw;
  }
}

@media (max-width: 860px) {
  .hero-narrative-text {
    position: fixed;
    top: 42% !important;
    max-width: clamp(160px, 46vw, 240px) !important;
    font-size: clamp(22px, 5.5vw, 30px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.98), 0 0 20px rgba(242, 239, 226, 0.95) !important;
  }
  .hero-narrative-text.text-right {
    right: 4vw !important;
    left: auto !important;
    text-align: right !important;
    transform: translateY(-50%) translateX(20px) !important;
  }
  .hero-narrative-text.text-left {
    left: 4vw !important;
    right: auto !important;
    text-align: left !important;
    transform: translateY(-50%) translateX(-20px) !important;
  }
  .hero-narrative-text.active {
    opacity: 1 !important;
    transform: translateY(-50%) translateX(0) !important;
  }
}

/* Hero overlay card floating on initial scroll */
.hero-floating-badge {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(152, 170, 157, 0.25);
  border-radius: 40px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: auto;
}

.hero-floating-badge.fade-out {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}

.hero-floating-text {
  font-size: 12.5px;
  color: #2D3536;
  font-weight: 500;
}

.scroll-indicator-arrow {
  animation: bounce 1.8s infinite;
  color: #697C70;
  display: flex;
  align-items: center;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* Main Site Content Wrapper - Seamless stage reveal matching canvas tone */
.site-content {
  position: relative;
  z-index: 10;
  background: var(--color-cream-bg);
  border-radius: 0;
  margin-top: 0;
  box-shadow: none;
  overflow: visible;
}

/* ==========================================================================
   About Us - Senior FCA Partner Showcase (Plaster #F2EFE2 Background)
   ========================================================================== */
.about-coach-section {
  position: relative;
  max-width: 1240px;
  margin: 48px auto 24px;
  padding: 140px 24px 8px;
  overflow: visible;
  background: #F2EFE2;
}

/* Massive backdrop text behind character head - Eucalyptus #98AA9D Tone */
.about-backdrop-text {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-family: 'Hanson', 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(28px, 5.8vw, 84px);
  font-weight: 900;
  letter-spacing: 4px;
  color: #98AA9D;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  opacity: 0.95;
}

/* Dark Rounded Card - Dark Green #1c2223 */
.about-coach-card {
  position: relative;
  z-index: 2;
  background: #1c2223;
  border-radius: 28px;
  padding: 0 48px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32), 0 4px 16px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.about-coach-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: flex-end;
  gap: 36px;
  position: relative;
  overflow: visible;
}

/* Character Column (Left Side, head & shoulders popping WAY up to nose level of text) */
.about-coach-character {
  position: relative;
  z-index: 4;
  margin-top: -310px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
  pointer-events: none;
}

.about-partner-img {
  height: 590px;
  max-height: 600px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  /* Subtle contour outline + rich soft ambient shadow */
  filter: 
    drop-shadow(1px 0 0 rgba(255, 255, 255, 0.55)) 
    drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.55)) 
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55)) 
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.55)) 
    drop-shadow(0 20px 42px rgba(0, 0, 0, 0.5));
  transition: filter 0.35s ease;
  pointer-events: auto;
}

/* Content Column (Right Side, inside dark card) */
.about-coach-content {
  position: relative;
  z-index: 3;
  padding: 56px 0 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Social Proof Pill Badge (Luxury Editorial Architectural Badge) */
.about-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  padding: 6px 18px 6px 8px;
  width: fit-content;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.about-social-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(197, 155, 56, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 16px rgba(197, 155, 56, 0.2);
  transform: translateY(-1px);
}

.about-avatars-group {
  display: flex;
  align-items: center;
}

.avatar-pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 8.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  letter-spacing: 0.3px;
  position: relative;
  transition: transform 0.25s ease, z-index 0.25s ease;
}

.avatar-pill:hover {
  transform: translateY(-2px) scale(1.1);
  z-index: 10;
}

.avatar-pill.av-1 {
  margin-left: 0;
  background: linear-gradient(135deg, #2D3536 0%, #161b1c 100%);
  color: #F2EFE2;
  border: 1.5px solid rgba(242, 239, 226, 0.4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.avatar-pill.av-2 {
  background: linear-gradient(135deg, #c59b38 0%, #a17822 100%);
  color: #1c2223;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 10px rgba(197, 155, 56, 0.45);
  z-index: 2;
}

.avatar-pill.av-3 {
  background: #ffffff;
  color: #1c2223;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.about-badge-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.25px;
  line-height: 1;
}

/* Headline */
.about-coach-title {
  font-family: 'Voces', 'Shanghai Voces', sans-serif !important;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

/* Description */
.about-coach-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(242, 239, 226, 0.85);
  margin-bottom: 30px;
  max-width: 580px;
}

.about-coach-desc strong {
  color: #ffffff;
  font-weight: 600;
}

/* Action Buttons */
.about-coach-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-coach-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: #98AA9D;
  color: #2D3536 !important;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 8px;
  border: 1px solid #98AA9D;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(152, 170, 157, 0.32);
}

.btn-coach-primary:hover {
  background: #879a8d;
  border-color: #879a8d;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(152, 170, 157, 0.45);
}

.btn-coach-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.06);
  color: #F2EFE2 !important;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 8px;
  border: 1px solid rgba(242, 239, 226, 0.25);
  text-decoration: none;
  transition: all 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-coach-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .about-coach-section {
    position: relative;
    padding-top: 140px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 24px;
    margin-top: 42px;
    margin-bottom: 35px;
    overflow: visible;
  }
  .about-backdrop-text {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    font-size: clamp(30px, 6.8vw, 54px);
    letter-spacing: 3px;
    color: #98AA9D;
    opacity: 0.95;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }
  .about-coach-card {
    position: relative;
    z-index: 2;
    padding: 0 24px 36px;
    border-radius: 24px;
    margin-top: 24px;
    overflow: visible;
  }
  .about-coach-grid {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
  }
  .about-coach-character {
    position: relative;
    z-index: 4;
    margin-top: -140px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: transparent !important;
    pointer-events: none;
  }
  .about-partner-img {
    height: 420px;
    max-height: 460px;
    width: auto;
    max-width: 90vw;
    display: block;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
    filter: none !important;
    pointer-events: auto;
  }
  .about-coach-content {
    padding: 10px 0 0;
    text-align: center;
    align-items: center;
  }
  .about-social-badge {
    margin: 0 auto 18px;
  }
  .about-coach-desc {
    margin: 0 auto 24px;
  }
  .about-coach-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  .btn-coach-primary, .btn-coach-secondary {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about-coach-section {
    padding-top: 120px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 18px;
    margin-top: 32px;
    margin-bottom: 25px;
    overflow: visible;
  }
  .about-backdrop-text {
    top: 16px;
    font-size: clamp(21px, 6.2vw, 32px);
    letter-spacing: 2px;
  }
  .about-coach-card {
    padding: 0 16px 28px;
    border-radius: 20px;
    margin-top: 24px;
    overflow: visible;
  }
  .about-coach-character {
    margin-top: -115px;
    margin-bottom: 8px;
    background: transparent !important;
  }
  .about-partner-img {
    height: clamp(310px, 72vw, 380px);
    max-width: 92vw;
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    filter: none !important;
  }
  .about-coach-content {
    padding: 6px 0 0;
  }
  .about-coach-title {
    font-size: clamp(21px, 5.6vw, 26px);
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .about-coach-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .about-social-badge {
    padding: 5px 14px 5px 6px;
    gap: 10px;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  }
  .avatar-pill {
    width: 24px;
    height: 24px;
    font-size: 7.5px;
    margin-left: -6px;
  }
  .about-badge-text {
    font-size: 11.5px;
    color: #ffffff;
  }
  .btn-coach-primary, .btn-coach-secondary {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* Common Section Styles */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2D3536;
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #2D3536;
}

.section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #2D3536;
  margin-bottom: 12px;
}

.section-description {
  font-size: 15.5px;
  line-height: 1.7;
  color: #697C70;
  max-width: 720px;
  margin-bottom: 18px;
}

/* 1. Pure Text & Number Stats (Outside Card, Transparent, Seamless on Main Page) */
.about-stats-bare {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 16px;
  background: transparent !important;
  border: none !important;
  position: relative;
  z-index: 5;
}

.stat-bare-item {
  text-align: center;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 12px;
}

.stat-bare-number {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(38px, 3.4vw, 50px);
  font-weight: 700;
  color: #2D3536;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-counter-num {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  color: #2D3536;
}

.stat-bare-number span:last-child {
  color: #697C70;
  font-weight: 600;
  margin-left: 2px;
}

.stat-bare-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #697C70;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .about-stats-bare {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    margin-top: 50px;
  }
}

@media (max-width: 540px) {
  .about-stats-bare {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    margin-top: 46px;
    padding: 0 8px;
  }
  .stat-bare-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px 4px;
  }
  .stat-bare-number {
    font-size: clamp(28px, 7.5vw, 34px);
    margin-bottom: 4px;
  }
  .stat-bare-label {
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.35;
  }
}

/* 2. Services Section & Dark Contrast Sections (Dark Green #1c2223 Foundation) */
.section-dark-alt {
  background: #1c2223;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark-alt .section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  color: #ffffff;
}

.section-dark-alt .section-description {
  color: rgba(242, 239, 226, 0.85);
}

.section-dark-alt .section-tag {
  color: #98AA9D;
}

.section-dark-alt .section-tag::before {
  background: #98AA9D;
}

/* ==========================================================================
   Services SOHub-Style Auto-Sliding & Interactive Card Showcase
   ========================================================================== */
.services-scroll-section {
  position: relative;
  width: 100%;
  background: #1c2223;
  padding: 38px 0 44px;
  box-sizing: border-box;
  overflow: hidden;
}

.services-pinned-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.services-main-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  box-sizing: border-box;
}

.services-sticky-header {
  margin-bottom: 18px;
}

.services-sticky-header .section-description {
  margin-bottom: 0;
}

.services-stage-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
}

/* Side Navigation Track: 01 to 06 */
.services-side-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-nav-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.services-nav-indicator {
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 46px;
  background: #98AA9D;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(152, 170, 157, 0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s ease;
  pointer-events: none;
}

.services-nav-btn {
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(242, 239, 226, 0.5);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  width: 100%;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Dynamic Timer Progress Bar inside Active Nav Item */
.nav-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(152, 170, 157, 0.18);
  border-left: 3px solid #98AA9D;
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
  transition: width 0.08s linear;
}

.services-nav-btn .nav-num {
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', monospace;
  color: rgba(242, 239, 226, 0.45);
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  z-index: 2;
}

.services-nav-btn .nav-label {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.25s ease;
  position: relative;
  z-index: 2;
}

.services-nav-btn:hover {
  color: rgba(242, 239, 226, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.services-nav-btn:hover .nav-num {
  color: #98AA9D;
  transform: translateX(2px);
}

.services-nav-btn.active {
  color: #ffffff;
}

.services-nav-btn.active .nav-num {
  color: #98AA9D;
  font-weight: 800;
}

.services-nav-btn.active .nav-label {
  color: #ffffff;
  font-weight: 700;
}

/* Card Viewport / Masked Stage */
.services-viewport-stage {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  background: #22292A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: grab;
}

.services-viewport-stage:active {
  cursor: grabbing;
}

/* Individual Stacked Panels with SOHub slide-up animation */
.service-card-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  will-change: transform, opacity, filter;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

/* Entering / Active Card */
.service-card-panel.active {
  transform: translateY(0%) scale(1);
  opacity: 1;
  filter: brightness(1);
  pointer-events: auto;
  z-index: 3;
}

/* Exiting Card staying right underneath while covered */
.service-card-panel.prev {
  transform: translateY(-5%) scale(0.97);
  opacity: 0.85;
  filter: brightness(0.92);
  z-index: 2;
  pointer-events: none;
}

/* Card internal content micro-animations */
.service-card-panel.active .service-badge-row {
  animation: serviceContentFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.service-card-panel.active .service-head {
  animation: serviceContentFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.service-card-panel.active .service-text {
  animation: serviceContentFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.service-card-panel.active .service-link {
  animation: serviceContentFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.service-card-panel.active .service-panel-right {
  animation: serviceContentFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

@keyframes serviceContentFadeUp {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Cohesive Color Swatches for Service Cards (Natural Studio Palette)
   ========================================================================== */

.service-card-body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  padding: 40px 44px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

.service-panel-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-number-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.service-card-panel .service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-panel .service-head {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card-panel .service-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card-panel .service-link {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.service-panel-right {
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-scope-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.service-card-panel .service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.service-card-panel .service-list li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.45;
}

.service-card-panel .service-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 10px;
  flex-shrink: 0;
}

/* 1. Frame 1: Audit & Assurance (Sandstone/Plaster Warm Theme) */
.service-card-panel.frame-1 {
  background: #E7DFD0 !important;
  border: 1px solid rgba(45, 53, 54, 0.18);
}
.service-card-panel.frame-1 .service-head {
  color: #2D3536 !important;
}
.service-card-panel.frame-1 .service-text {
  color: #4a5455 !important;
}
.service-card-panel.frame-1 .service-number-pill {
  background: #c5baaa !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.25) !important;
}
.service-card-panel.frame-1 .service-icon {
  background: rgba(45, 53, 54, 0.1) !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-1 .service-link {
  background: #2D3536 !important;
  color: #ffffff !important;
  border: 1px solid #2D3536 !important;
}
.service-card-panel.frame-1 .service-link:hover {
  background: #3d4748 !important;
  transform: translateY(-2px);
}
.service-card-panel.frame-1 .service-panel-right {
  background: #D6CCBA !important;
  border: 1px solid rgba(45, 53, 54, 0.18) !important;
}
.service-card-panel.frame-1 .service-scope-label {
  color: #2D3536 !important;
}
.service-card-panel.frame-1 .service-list li {
  color: #2D3536 !important;
}
.service-card-panel.frame-1 .service-list li::before {
  background: rgba(45, 53, 54, 0.14) !important;
  border: 1px solid rgba(45, 53, 54, 0.28) !important;
  color: #2D3536 !important;
}

/* 2. Frame 2: Direct & Indirect Tax (Eucalyptus #98AA9D Theme) */
.service-card-panel.frame-2 {
  background: #98AA9D !important;
  border: 1px solid rgba(45, 53, 54, 0.2);
}
.service-card-panel.frame-2 .service-head {
  color: #2D3536 !important;
}
.service-card-panel.frame-2 .service-text {
  color: #22292A !important;
}
.service-card-panel.frame-2 .service-number-pill {
  background: #7d9183 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.service-card-panel.frame-2 .service-icon {
  background: rgba(45, 53, 54, 0.12) !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.22) !important;
}
.service-card-panel.frame-2 .service-link {
  background: #2D3536 !important;
  color: #ffffff !important;
  border: 1px solid #2D3536 !important;
  font-weight: 700;
}
.service-card-panel.frame-2 .service-link:hover {
  background: #3d4748 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 53, 54, 0.25);
}
.service-card-panel.frame-2 .service-panel-right {
  background: #879A8D !important;
  border: 1px solid rgba(45, 53, 54, 0.15) !important;
}
.service-card-panel.frame-2 .service-scope-label {
  color: #2D3536 !important;
}
.service-card-panel.frame-2 .service-list li {
  color: #2D3536 !important;
}
.service-card-panel.frame-2 .service-list li::before {
  background: rgba(45, 53, 54, 0.15) !important;
  border: 1px solid rgba(45, 53, 54, 0.28) !important;
  color: #2D3536 !important;
}

/* 3. Frame 3: Virtual CFO & Accounts (Mist #B3C9D6 Theme) */
.service-card-panel.frame-3 {
  background: #B3C9D6 !important;
  border: 1px solid rgba(45, 53, 54, 0.18);
}
.service-card-panel.frame-3 .service-head {
  color: #2D3536 !important;
}
.service-card-panel.frame-3 .service-text {
  color: #25333d !important;
}
.service-card-panel.frame-3 .service-number-pill {
  background: #8faec0 !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.25) !important;
}
.service-card-panel.frame-3 .service-icon {
  background: rgba(45, 53, 54, 0.1) !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-3 .service-link {
  background: #2D3536 !important;
  color: #ffffff !important;
  border: 1px solid #2D3536 !important;
}
.service-card-panel.frame-3 .service-link:hover {
  background: #3d4748 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.service-card-panel.frame-3 .service-panel-right {
  background: #A0BAC9 !important;
  border: 1px solid rgba(45, 53, 54, 0.18) !important;
}
.service-card-panel.frame-3 .service-scope-label {
  color: #2D3536 !important;
}
.service-card-panel.frame-3 .service-list li {
  color: #2D3536 !important;
}
.service-card-panel.frame-3 .service-list li::before {
  background: rgba(45, 53, 54, 0.15) !important;
  border: 1px solid rgba(45, 53, 54, 0.28) !important;
  color: #2D3536 !important;
}

/* 4. Frame 4: Valuation Advisory (Plaster #F2EFE2 Theme) */
.service-card-panel.frame-4 {
  background: #F2EFE2 !important;
  border: 1px solid rgba(45, 53, 54, 0.15);
}
.service-card-panel.frame-4 .service-head {
  color: #2D3536 !important;
}
.service-card-panel.frame-4 .service-text {
  color: #4a5455 !important;
}
.service-card-panel.frame-4 .service-number-pill {
  background: #dcd6c4 !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-4 .service-icon {
  background: rgba(45, 53, 54, 0.08) !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-4 .service-link {
  background: #2D3536 !important;
  color: #ffffff !important;
  border: 1px solid #2D3536 !important;
}
.service-card-panel.frame-4 .service-link:hover {
  background: #3d4748 !important;
  transform: translateY(-2px);
}
.service-card-panel.frame-4 .service-panel-right {
  background: #E2DDD0 !important;
  border: 1px solid rgba(45, 53, 54, 0.15) !important;
}
.service-card-panel.frame-4 .service-scope-label {
  color: #2D3536 !important;
}
.service-card-panel.frame-4 .service-list li {
  color: #2D3536 !important;
}
.service-card-panel.frame-4 .service-list li::before {
  background: rgba(45, 53, 54, 0.14) !important;
  border: 1px solid rgba(45, 53, 54, 0.25) !important;
  color: #2D3536 !important;
}

/* 5. Frame 5: Company Law & ROC (Moss Tint #C4D1C7 Theme) */
.service-card-panel.frame-5 {
  background: #C4D1C7 !important;
  border: 1px solid rgba(45, 53, 54, 0.18);
}
.service-card-panel.frame-5 .service-head {
  color: #2D3536 !important;
}
.service-card-panel.frame-5 .service-text {
  color: #26382c !important;
}
.service-card-panel.frame-5 .service-number-pill {
  background: #a4b8aa !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-5 .service-icon {
  background: rgba(45, 53, 54, 0.08) !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-5 .service-link {
  background: #2D3536 !important;
  color: #ffffff !important;
  border: 1px solid #2D3536 !important;
}
.service-card-panel.frame-5 .service-link:hover {
  background: #3d4748 !important;
  transform: translateY(-2px);
}
.service-card-panel.frame-5 .service-panel-right {
  background: #B0C0B4 !important;
  border: 1px solid rgba(45, 53, 54, 0.15) !important;
}
.service-card-panel.frame-5 .service-scope-label {
  color: #2D3536 !important;
}
.service-card-panel.frame-5 .service-list li {
  color: #2D3536 !important;
}
.service-card-panel.frame-5 .service-list li::before {
  background: rgba(45, 53, 54, 0.14) !important;
  border: 1px solid rgba(45, 53, 54, 0.25) !important;
  color: #2D3536 !important;
}

/* 6. Frame 6: International Tax & FEMA (Warm Plaster Oat #E5DDD0 Theme) */
.service-card-panel.frame-6 {
  background: #E5DDD0 !important;
  border: 1px solid rgba(45, 53, 54, 0.18);
}
.service-card-panel.frame-6 .service-head {
  color: #2D3536 !important;
}
.service-card-panel.frame-6 .service-text {
  color: #4a5455 !important;
}
.service-card-panel.frame-6 .service-number-pill {
  background: #c5baaa !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.25) !important;
}
.service-card-panel.frame-6 .service-icon {
  background: rgba(45, 53, 54, 0.08) !important;
  color: #2D3536 !important;
  border: 1px solid rgba(45, 53, 54, 0.2) !important;
}
.service-card-panel.frame-6 .service-link {
  background: #2D3536 !important;
  color: #ffffff !important;
  border: 1px solid #2D3536 !important;
  font-weight: 700;
}
.service-card-panel.frame-6 .service-link:hover {
  background: #3d4748 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 53, 54, 0.25);
}
.service-card-panel.frame-6 .service-panel-right {
  background: #D0C4B2 !important;
  border: 1px solid rgba(45, 53, 54, 0.15) !important;
}
.service-card-panel.frame-6 .service-scope-label {
  color: #2D3536 !important;
}
.service-card-panel.frame-6 .service-list li {
  color: #2D3536 !important;
}
.service-card-panel.frame-6 .service-list li::before {
  background: rgba(45, 53, 54, 0.14) !important;
  border: 1px solid rgba(45, 53, 54, 0.25) !important;
  color: #2D3536 !important;
}

/* Tablet & Mobile Specific Rules for Services */
@media (max-width: 992px) {
  .services-scroll-section {
    padding: 36px 0 40px;
  }
  .services-main-container {
    padding: 0 20px;
  }
  .services-pinned-stage {
    min-height: 0;
    padding: 0;
    justify-content: flex-start;
  }
  .services-stage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-side-nav {
    width: 100%;
  }
  .services-nav-track {
    flex-direction: row;
    border-left: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    padding: 0 0 6px;
    justify-content: space-between;
    gap: 4px;
    overflow-x: auto;
  }
  .services-nav-track::-webkit-scrollbar {
    display: none;
  }
  @supports (scrollbar-width: none) {
    .services-nav-track {
      scrollbar-width: none;
    }
  }
  .services-nav-indicator {
    height: 2px;
    width: 36px;
    top: auto;
    bottom: -2px;
    left: 0;
  }
  .services-nav-btn {
    padding: 8px 12px;
    justify-content: center;
    width: auto;
    flex: 1;
    min-width: 44px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
  }
  .services-nav-btn.active {
    background: rgba(152, 170, 157, 0.18);
  }
  .services-nav-btn .nav-label {
    display: none;
  }
  .services-viewport-stage {
    height: auto;
    min-height: 480px;
    position: relative;
  }
  .service-card-panel {
    position: absolute;
    inset: 0;
    border-radius: 18px;
  }
  .service-card-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px;
    overflow-y: auto;
    max-height: 100%;
  }
  .service-panel-right {
    padding: 14px 16px;
    border-radius: 12px;
  }
  .service-card-panel .service-head {
    font-size: 21px;
    line-height: 1.25;
  }
}

@media (max-width: 576px) {
  .services-scroll-section {
    padding: 30px 0 36px;
  }
  .services-main-container {
    padding: 0 14px;
  }
  .services-viewport-stage {
    min-height: 520px;
  }
  .service-card-panel {
    border-radius: 14px;
  }
  .service-card-body {
    padding: 16px 14px;
    gap: 12px;
  }
  .service-card-panel .service-head {
    font-size: 19px;
    margin-bottom: 4px;
  }
  .service-card-panel .service-text {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .service-card-panel .service-link {
    padding: 10px 18px;
    font-size: 12.5px;
  }
  .service-panel-right {
    padding: 12px;
    border-radius: 10px;
  }
  .service-scope-label {
    font-size: 10.5px;
    margin-bottom: 6px;
  }
  .service-list {
    gap: 6px;
  }
  .service-list li {
    font-size: 11.5px;
    line-height: 1.4;
    gap: 6px;
  }
  .service-list li::before {
    width: 15px;
    height: 15px;
    font-size: 8.5px;
  }
}

/* ==========================================================================
   3. Sectors Section (Mist #B3C9D6 Background Theme)
   ========================================================================== */
.section-sectors {
  background: #B3C9D6 !important;
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(45, 53, 54, 0.12);
  border-bottom: 1px solid rgba(45, 53, 54, 0.12);
  padding: 44px 0;
}

.section-sectors .section-container {
  padding-top: 0;
  padding-bottom: 0;
}

.section-sectors .section-tag {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(45, 53, 54, 0.2);
  color: #2D3536;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(45, 53, 54, 0.06);
}

.section-sectors .section-tag::before {
  background: #2D3536;
}

.section-sectors .section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  color: #2D3536;
  margin-top: 8px;
}

.section-sectors .section-description {
  color: #2D3536;
  opacity: 0.9;
}

.sectors-matrix-wrapper {
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid rgba(45, 53, 54, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(45, 53, 54, 0.14), 0 8px 24px rgba(45, 53, 54, 0.08);
}

.sector-matrix-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 28px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(45, 53, 54, 0.08);
  background: #ffffff;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sector-matrix-item:last-child {
  border-bottom: none;
}

.sector-matrix-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #2D3536;
  opacity: 0;
  transform: scaleY(0.4);
  transition: all 0.3s ease;
}

.sector-matrix-item:hover {
  background: #f7fafc;
  padding-left: 42px;
}

.sector-matrix-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.sector-matrix-index {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sector-num {
  font-family: 'Source Serif 4', 'Plus Jakarta Sans', Georgia, serif;
  font-size: 26px;
  color: #697C70;
  letter-spacing: 1.5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.sector-matrix-item:hover .sector-num {
  color: #2D3536;
}

.sector-accent-line {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: rgba(45, 53, 54, 0.18);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.sector-matrix-item:hover .sector-accent-line {
  width: 32px;
  background: #2D3536;
}

.sector-matrix-main {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 32px;
}

.sector-matrix-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sector-matrix-emblem {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #B3C9D6;
  border: 1px solid rgba(45, 53, 54, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D3536;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sector-matrix-emblem svg {
  stroke: #2D3536;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.sector-matrix-item:hover .sector-matrix-emblem {
  background: #2D3536;
  border-color: #2D3536;
  box-shadow: 0 6px 16px rgba(45, 53, 54, 0.25);
}

.sector-matrix-item:hover .sector-matrix-emblem svg {
  stroke: #ffffff;
  transform: scale(1.08);
}

.sector-matrix-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sector-matrix-title {
  font-size: 17.5px;
  font-weight: 700;
  color: #2D3536;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.sector-matrix-item:hover .sector-matrix-title {
  color: #1b2223;
}

.sector-matrix-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #697C70;
}

.sector-matrix-desc {
  font-size: 13.5px;
  color: #485455;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .sector-matrix-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 22px 24px;
  }
  .sector-matrix-main {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .sector-matrix-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 20px 20px;
  }
  .sector-matrix-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .section-sectors {
    padding: 36px 0 40px;
  }
  .section-sectors .section-container {
    padding: 0 14px;
  }
  .sectors-matrix-wrapper {
    margin-top: 18px;
    border-radius: 14px;
  }
  .sector-matrix-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 12px;
  }
  .sector-matrix-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2px;
  }
  .sector-num {
    font-size: 13px;
  }
  .sector-accent-line {
    flex: 1;
    margin-left: 12px;
    height: 1px;
  }
  .sector-matrix-header {
    gap: 10px;
  }
  .sector-matrix-emblem {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .sector-matrix-emblem svg {
    width: 16px;
    height: 16px;
  }
  .sector-matrix-title {
    font-size: 15.5px;
    line-height: 1.25;
  }
  .sector-matrix-tag {
    font-size: 10px;
  }
  .sector-matrix-desc {
    font-size: 12px;
    line-height: 1.5;
  }
  .sector-matrix-item:hover {
    padding-left: 12px;
  }
}

/* 4. Compliance Calendar & Knowledge Center (Luxury Editorial Architecture & Interactive Intelligence Suite) */
.knowledge-section {
  padding: 0 !important;
  background: #1c2223;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.knowledge-section .section-container {
  padding: 40px 28px !important;
}

.knowledge-head-wrap {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}

.knowledge-section .section-tag,
.knowledge-head-wrap .section-tag {
  color: #ffffff;
}

.knowledge-section .section-tag::before,
.knowledge-head-wrap .section-tag::before {
  background: #ffffff;
}

.knowledge-main-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin: 12px 0 14px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.knowledge-main-desc {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(242, 239, 226, 0.82);
  margin: 0;
}

/* Category Filter Bar */
.kb-nav-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.kb-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 53, 54, 0.6);
  border: 1px solid rgba(242, 239, 226, 0.12);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(242, 239, 226, 0.75);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.kb-filter-btn:hover {
  background: rgba(45, 53, 54, 0.9);
  color: #ffffff;
  border-color: rgba(242, 239, 226, 0.3);
  transform: translateY(-1px);
}

.kb-filter-btn.active {
  background: #F2EFE2;
  color: #22292A;
  border-color: #F2EFE2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.kb-btn-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #98AA9D;
  transition: all 0.2s ease;
}

.kb-filter-btn.active .kb-btn-dot {
  background: #2e7d32;
  transform: scale(1.2);
}

.kb-block {
  background: linear-gradient(175deg, #2A3435 0%, #202728 100%);
  border: 1px solid rgba(242, 239, 226, 0.14);
  border-radius: 12px;
  padding: 34px 38px;
  margin-bottom: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.kb-block:last-child,
.kb-bulletins-block {
  margin-bottom: 0 !important;
}

/* Specific Off-White Card Palette for Statutory Compliance Calendar (Matching Sectors Card) */
.kb-calendar-block {
  background: #ffffff;
  border: 1px solid rgba(45, 53, 54, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.kb-block-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(242, 239, 226, 0.1);
  margin-bottom: 24px;
}

.kb-calendar-block .kb-block-header {
  border-bottom: 1px solid rgba(45, 53, 54, 0.12);
}

.kb-kicker {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #98AA9D;
  display: block;
  margin-bottom: 6px;
}

.kb-calendar-block .kb-kicker {
  color: #697C70;
}

.kb-block-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.kb-calendar-block .kb-block-title {
  color: #2D3536;
}

.kb-block-desc {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(242, 239, 226, 0.78);
  margin: 0;
}

.kb-calendar-block .kb-block-desc {
  color: #485455;
}

.kb-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.kb-calendar-block .kb-status-badge {
  background: #e8f5e9;
  border-color: #a5d6a7;
  color: #1b5e20;
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 1.8s infinite ease-in-out;
}

.kb-calendar-block .pulse-dot-green {
  background: #2e7d32;
  box-shadow: 0 0 8px #2e7d32;
}

@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

/* Quarter Filter Pills */
.kb-quarter-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.kb-quarter-label {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(242, 239, 226, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kb-calendar-block .kb-quarter-label {
  color: #2D3536;
}

.kb-quarter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.kb-q-btn {
  background: #1C2324;
  border: 1px solid rgba(242, 239, 226, 0.14);
  color: rgba(242, 239, 226, 0.85);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.kb-q-btn:hover {
  background: #252E2F;
  border-color: rgba(242, 239, 226, 0.35);
  color: #ffffff;
}

.kb-q-btn.active {
  background: #F2EFE2;
  color: #1E2824;
  border-color: #F2EFE2;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kb-calendar-block .kb-q-btn {
  background: #F2EFE2;
  border: 1px solid rgba(45, 53, 54, 0.15);
  color: #2D3536;
}

.kb-calendar-block .kb-q-btn:hover {
  background: #e6e2d3;
  border-color: #2D3536;
  color: #1E2824;
}

.kb-calendar-block .kb-q-btn.active {
  background: #2D3536;
  color: #ffffff;
  border-color: #2D3536;
  box-shadow: 0 2px 8px rgba(45, 53, 54, 0.25);
}

/* Timeline Matrix Layout */
.kb-timeline-matrix {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kb-deadline-card {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: #1F2728;
  border: 1px solid rgba(242, 239, 226, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.kb-deadline-card:hover {
  background: #252F30;
  border-color: #98AA9D;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.kb-calendar-block .kb-deadline-card {
  background: #fbfbf9;
  border: 1px solid rgba(45, 53, 54, 0.11);
  box-shadow: 0 2px 8px rgba(45, 53, 54, 0.05);
}

.kb-calendar-block .kb-deadline-card:hover {
  background: #ffffff;
  border-color: #2D3536;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(45, 53, 54, 0.12);
}

.kb-date-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #283334;
  border: 1px solid rgba(242, 239, 226, 0.14);
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
}

.kb-calendar-block .kb-date-flag {
  background: #F2EFE2;
  border: 1px solid rgba(45, 53, 54, 0.14);
}

.kb-date-num {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.kb-calendar-block .kb-date-num {
  color: #2D3536;
}

.kb-date-cycle {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #98AA9D;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.kb-calendar-block .kb-date-cycle {
  color: #697C70;
}

.flag-gold .kb-date-num { color: #fde68a; }
.flag-emerald .kb-date-num { color: #86efac; }
.flag-terracotta .kb-date-num { color: #fdba74; }
.flag-slate .kb-date-num { color: #93c5fd; }

.kb-calendar-block .flag-gold .kb-date-num { color: #92400e; }
.kb-calendar-block .flag-emerald .kb-date-num { color: #065f46; }
.kb-calendar-block .flag-terracotta .kb-date-num { color: #9a3412; }
.kb-calendar-block .flag-slate .kb-date-num { color: #075985; }

.kb-deadline-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kb-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.kb-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-amber { background: rgba(245, 158, 11, 0.15); color: #fde68a; border: 1px solid rgba(245, 158, 11, 0.35); }
.badge-blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.35); }
.badge-purple { background: rgba(168, 85, 247, 0.15); color: #d8b4fe; border: 1px solid rgba(168, 85, 247, 0.35); }
.badge-green { background: rgba(34, 197, 94, 0.15); color: #86efac; border: 1px solid rgba(34, 197, 94, 0.35); }
.badge-orange { background: rgba(249, 115, 22, 0.15); color: #fdba74; border: 1px solid rgba(249, 115, 22, 0.35); }
.badge-cyan { background: rgba(6, 182, 212, 0.15); color: #67e8f9; border: 1px solid rgba(6, 182, 212, 0.35); }

.kb-calendar-block .badge-amber { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.kb-calendar-block .badge-blue { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.kb-calendar-block .badge-purple { background: #f3e8ff; color: #7e22ce; border: 1px solid #e9d5ff; }
.kb-calendar-block .badge-green { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.kb-calendar-block .badge-orange { background: #ffedd5; color: #9a3412; border: 1px solid #fed7aa; }
.kb-calendar-block .badge-cyan { background: #cffafe; color: #0e7490; border: 1px solid #a5f3fc; }

.kb-statutory-ref {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #98AA9D;
  font-weight: 600;
}

.kb-calendar-block .kb-statutory-ref {
  color: #697C70;
}

.kb-deadline-title {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 0;
  line-height: 1.3;
}

.kb-calendar-block .kb-deadline-title {
  color: #2D3536;
}

.kb-deadline-detail {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(242, 239, 226, 0.75);
  margin: 0;
  line-height: 1.45;
}

.kb-calendar-block .kb-deadline-detail {
  color: #485455;
}

.kb-statutory-notice {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: #fde68a;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.kb-calendar-block .kb-statutory-notice {
  color: #92400e;
}

.notice-icon {
  font-size: 14px;
  color: #fbbf24;
}

.kb-calendar-block .notice-icon {
  color: #b45309;
}

.kb-deadline-action {
  white-space: nowrap;
}

.kb-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F2EFE2;
  border: 1px solid #F2EFE2;
  color: #1E2824;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.kb-action-link:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1E2824;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(242, 239, 226, 0.35);
}

.kb-calendar-block .kb-action-link {
  background: #2D3536;
  border: 1px solid #2D3536;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(45, 53, 54, 0.2);
}

.kb-calendar-block .kb-action-link:hover {
  background: #1b5870;
  border-color: #1b5870;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(27, 88, 112, 0.35);
}

.kb-action-link span {
  transition: transform 0.2s ease;
}

.kb-action-link:hover span {
  transform: translateX(3px);
}

/* Master Section 2: Interactive Computational Suite */
.kb-interactive-suite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.kb-interactive-suite.single-view {
  grid-template-columns: 1fr;
}

.kb-tariff-empty {
  padding: 32px 20px;
  text-align: center;
  color: #98AA9D;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px dashed rgba(152, 170, 157, 0.3);
  margin-top: 10px;
}

.kb-suite-card {
  background: linear-gradient(175deg, #2A3435 0%, #202728 100%);
  border: 1px solid rgba(242, 239, 226, 0.14);
  border-radius: 12px;
  padding: 32px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.kb-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.kb-card-icon {
  width: 44px;
  height: 44px;
  background: #1C2324;
  border: 1px solid rgba(242, 239, 226, 0.16);
  border-radius: 8px;
  color: #98AA9D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kb-card-tag {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #98AA9D;
  letter-spacing: 1px;
  display: block;
}

.kb-card-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 2px 0 0;
  line-height: 1.25;
}

.kb-card-desc {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(242, 239, 226, 0.75);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

/* Live Calculator Workspace */
.kb-calc-workspace {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1A2122;
  border: 1px solid rgba(242, 239, 226, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.kb-calc-label {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  display: block;
}

.kb-income-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.kb-currency-sym {
  position: absolute;
  left: 14px;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #98AA9D;
}

.kb-calc-field {
  width: 100%;
  background: #242D2E;
  border: 1px solid rgba(242, 239, 226, 0.18);
  border-radius: 6px;
  padding: 10px 14px 10px 34px;
  color: #ffffff;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kb-calc-field:focus {
  border-color: #98AA9D;
  box-shadow: 0 0 0 3px rgba(152, 170, 157, 0.25);
}

.kb-income-presets {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.preset-btn {
  background: #252E2F;
  border: 1px solid rgba(242, 239, 226, 0.14);
  color: rgba(242, 239, 226, 0.85);
  padding: 5px 12px;
  border-radius: 4px;
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preset-btn:hover {
  background: #2D3738;
  border-color: rgba(242, 239, 226, 0.35);
  color: #ffffff;
}

.preset-btn.active {
  background: #F2EFE2;
  color: #1E2824;
  border-color: #F2EFE2;
  font-weight: 700;
}

.kb-deductions-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 239, 226, 0.1);
}

.kb-deduct-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.kb-deduct-title {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(242, 239, 226, 0.75);
}

.kb-deduct-val {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #98AA9D;
}

.kb-range-slider {
  width: 100%;
  accent-color: #98AA9D;
  cursor: pointer;
}

.kb-slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: rgba(242, 239, 226, 0.55);
  margin-top: 2px;
  font-weight: 600;
}

/* Results Grid */
.kb-calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kb-regime-result {
  background: #1F2728;
  border: 1px solid rgba(242, 239, 226, 0.1);
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.kb-regime-result.highlighted {
  border: 2px solid #86efac;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.15);
}

.regime-tag {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tag-new { color: #93c5fd; }
.tag-old { color: #fde68a; }

.regime-tax-val {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.regime-tax-sub {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  color: rgba(242, 239, 226, 0.7);
  margin-top: 3px;
}

/* Recommendation Banner */
.kb-recommendation-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: 6px;
}

.rec-icon {
  width: 28px;
  height: 28px;
  background: #22c55e;
  color: #122818;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.rec-text strong {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #ffffff;
  display: block;
}

.rec-text p {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(242, 239, 226, 0.85);
  margin: 2px 0 0;
  line-height: 1.35;
}

.rec-cta-btn {
  margin-left: auto;
  white-space: nowrap;
  background: #F2EFE2;
  color: #1E2824;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rec-cta-btn:hover {
  background: #ffffff;
  color: #1E2824;
  transform: translateY(-1px);
}

/* GST Tariff Classifier */
.kb-search-container {
  position: relative;
  margin-bottom: 16px;
}

.kb-search-input {
  width: 100%;
  background: #1A2122;
  border: 1px solid rgba(242, 239, 226, 0.18);
  border-radius: 6px;
  padding: 12px 42px 12px 16px;
  color: #ffffff;
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kb-search-input:focus {
  border-color: #98AA9D;
  box-shadow: 0 0 0 3px rgba(152, 170, 157, 0.25);
}

.kb-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #98AA9D;
  pointer-events: none;
}

.kb-tariff-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 4px;
}

.kb-tariff-list::-webkit-scrollbar {
  width: 4px;
}

.kb-tariff-list::-webkit-scrollbar-thumb {
  background: rgba(242, 239, 226, 0.2);
  border-radius: 4px;
}

.kb-tariff-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 12px 14px;
  background: #1F2728;
  border: 1px solid rgba(242, 239, 226, 0.1);
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.kb-tariff-item:hover {
  background: #252F30;
  border-color: #98AA9D;
  transform: translateY(-1px);
}

.tariff-code-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tariff-code {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.tariff-rate {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  text-align: center;
  display: inline-block;
}

.rate-standard {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.rate-exempt {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.tariff-detail-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tariff-name {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.tariff-desc {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: rgba(242, 239, 226, 0.72);
  margin: 0;
  line-height: 1.35;
}

.kb-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 239, 226, 0.1);
}

.kb-footer-cta {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #98AA9D;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.kb-footer-cta:hover {
  color: #ffffff;
}

.kb-footer-cta span {
  transition: transform 0.2s ease;
}

.kb-footer-cta:hover span {
  transform: translateX(3px);
}

/* Master Section 3: Technical Bulletins (Off-White Sectors Architecture) */
.kb-bulletins-block {
  background: #ffffff;
  border: 1px solid rgba(45, 53, 54, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.kb-bulletins-block .kb-block-header {
  border-bottom: 1px solid rgba(45, 53, 54, 0.12);
}

.kb-bulletins-block .kb-kicker {
  color: #697C70;
}

.kb-bulletins-block .kb-block-title {
  color: #2D3536;
}

.kb-bulletins-block .kb-block-desc {
  color: #485455;
}

.kb-bulletin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kb-bulletin-card {
  background: linear-gradient(175deg, #2A3435 0%, #202728 100%);
  border: 1px solid rgba(242, 239, 226, 0.14);
  border-radius: 8px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bulletin-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bulletin-category {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #98AA9D;
  letter-spacing: 0.5px;
}

.bulletin-date {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(242, 239, 226, 0.6);
  font-weight: 600;
}

.bulletin-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.bulletin-excerpt {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(242, 239, 226, 0.75);
  line-height: 1.5;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

.bulletin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 239, 226, 0.1);
}

.bulletin-author {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(242, 239, 226, 0.6);
  font-weight: 500;
}

.bulletin-read-btn {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #F2EFE2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.bulletin-read-btn:hover {
  color: #98AA9D;
}

.bulletin-read-btn span {
  transition: transform 0.2s ease;
}

.bulletin-read-btn:hover span {
  transform: translateX(3px);
}

/* Media Queries for Knowledge Bank */
@media (max-width: 1024px) {
  .knowledge-main-title {
    font-size: 32px;
  }
  .kb-interactive-suite {
    grid-template-columns: 1fr;
  }
  .kb-bulletin-grid {
    grid-template-columns: 1fr;
  }
  .kb-block {
    padding: 24px 22px;
  }
  .kb-suite-card {
    padding: 24px 22px;
  }
}

@media (max-width: 768px) {
  .knowledge-section {
    padding: 0 !important;
  }
  .knowledge-section .section-container {
    padding: 28px 16px !important;
  }
  .knowledge-main-title {
    font-size: 26px;
  }
  .kb-deadline-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kb-date-flag {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 12px;
    width: fit-content;
  }
  .kb-date-num {
    font-size: 18px;
  }
  .kb-calc-results-grid {
    grid-template-columns: 1fr;
  }
  .kb-recommendation-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .rec-cta-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .kb-tariff-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* 5. Why Choose Us / Advantage (2-Tone Split Screen Architecture from Reference) */
.why-us-split-section {
  width: 100%;
  background: #fbf7f4;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(45, 53, 54, 0.08);
}

.why-us-split-container {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 0;
  width: 100%;
  position: relative;
}

.why-us-left-col {
  background: #B3C9D6;
  color: #2D3536;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 50px 48px 6vw;
  position: relative;
}

.why-us-left-content {
  max-width: 420px;
  width: 100%;
}

.why-us-headline {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #2D3536;
  margin-bottom: 18px;
}

.why-us-tagline {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  color: #2D3536;
  opacity: 0.9;
  line-height: 1.45;
  max-width: 320px;
  margin: 0;
}

.why-us-right-col {
  --why-pad-left: 70px;
  background: #fbf7f4;
  display: flex;
  align-items: center;
  padding: 48px 6vw 48px var(--why-pad-left);
  position: relative;
}

.why-us-spine-track {
  position: absolute;
  left: 0;
  top: 55px;
  bottom: 55px;
  width: 2px;
  background: rgba(45, 53, 54, 0.15);
  z-index: 2;
  transform: translateX(-50%);
}

.why-us-items-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 3;
}

.why-us-item-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

/* Overlapping circular badges placed right on the vertical seam boundary (50% left / 50% right) */
.why-us-node-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 7px solid #fbf7f4;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
  position: absolute;
  left: calc(-1 * var(--why-pad-left, 70px) - 44px);
  top: -4px;
  z-index: 5;
  perspective: 600px;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  animation: coinFlipLoop 6.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  transition: box-shadow 0.3s ease;
}

.why-us-node-badge.node-delay-1 {
  animation-delay: 0s;
}

.why-us-node-badge.node-delay-2 {
  animation-delay: 1.4s;
}

.why-us-node-badge.node-delay-3 {
  animation-delay: 2.8s;
}

.why-us-node-badge.node-delay-4 {
  animation-delay: 4.2s;
}

/* Keyframe for smooth 3D coin flip */
@keyframes coinFlipLoop {
  0%, 65% {
    transform: rotateY(0deg);
  }
  80% {
    transform: rotateY(180deg) scale(1.06);
  }
  95%, 100% {
    transform: rotateY(360deg) scale(1);
  }
}

.why-us-item-row:hover .why-us-node-badge {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.why-us-node-badge span {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif !important;
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  backface-visibility: visible;
}

/* 4 Distinct Original Badge Colors */
.why-us-node-badge.node-marine,
.why-us-node-badge.node-dark {
  background: #1b5870; /* Deep Marine Peacock */
}

.why-us-node-badge.node-terracotta,
.why-us-node-badge.node-steel {
  background: #a64b36; /* Rich Terracotta Rust */
}

.why-us-node-badge.node-gold {
  background: #c59b38; /* Warm Regal Gold / Ochre */
}

.why-us-node-badge.node-clove {
  background: #543d32; /* Deep Walnut Clove */
}

.why-us-text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}

.why-us-item-title {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 700;
  color: #2D3536;
  line-height: 1.25;
  margin: 0;
  transition: color 0.25s ease;
}

.why-us-item-row:hover .why-us-item-title {
  color: #697C70;
}

.why-us-stat-num {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700;
  color: #2D3536;
  margin-right: 4px;
}

.why-us-item-desc {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14.5px;
  color: #697C70;
  line-height: 1.65;
  margin: 0;
  max-width: 520px;
}

@media (max-width: 1080px) {
  .why-us-split-container {
    grid-template-columns: 46% 54%;
  }
  .why-us-left-col {
    padding: 80px 40px 80px 4vw;
  }
  .why-us-right-col {
    --why-pad-left: 60px;
    padding: 80px 4vw 80px var(--why-pad-left);
  }
  .why-us-node-badge {
    width: 76px;
    height: 76px;
    border-width: 6px;
    left: calc(-1 * var(--why-pad-left, 60px) - 38px);
  }
  .why-us-node-badge span {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .why-us-split-container {
    grid-template-columns: 1fr;
  }
  .why-us-left-col {
    padding: 48px 20px 32px;
    justify-content: flex-start;
  }
  .why-us-headline {
    font-size: clamp(34px, 8vw, 44px);
    margin-bottom: 10px;
  }
  .why-us-tagline {
    font-size: 15px;
  }
  .why-us-spine-track {
    display: none;
  }
  .why-us-right-col {
    --why-pad-left: 0px;
    padding: 32px 20px 48px;
  }
  .why-us-items-list {
    gap: 24px;
  }
  .why-us-item-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    position: static;
  }
  .why-us-node-badge {
    position: static;
    left: auto;
    top: auto;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-width: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  }
  .why-us-node-badge span {
    font-size: 20px;
  }
  .why-us-text-block {
    padding-left: 0;
  }
  .why-us-item-title {
    font-size: 17px;
    line-height: 1.3;
  }
  .why-us-item-desc {
    font-size: 12.5px;
    line-height: 1.55;
  }
}

/* ==========================================================================
   Careers Section (Soot #2D3536 Card on Plaster Background)
   ========================================================================== */
.careers-section-wrapper {
  background: #F2EFE2;
  border-top: 1px solid rgba(45, 53, 54, 0.08);
  border-bottom: 1px solid rgba(45, 53, 54, 0.08);
}

.careers-section-container {
  padding: 38px 28px;
}

.careers-banner-box {
  background: #1c2223;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.careers-banner-box .careers-tag {
  color: #98AA9D;
}

.careers-banner-box .careers-title {
  color: #ffffff;
}

.careers-banner-box .careers-desc {
  color: rgba(242, 239, 226, 0.85);
}

.btn-apply-career {
  background: #98AA9D;
  color: #2D3536 !important;
  border: 1px solid #98AA9D;
  border-radius: 8px;
  padding: 13px 28px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(152, 170, 157, 0.28);
  transition: all 0.25s ease;
}

.btn-apply-career:hover {
  background: #879a8d;
  border-color: #879a8d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(152, 170, 157, 0.4);
}

/* ==========================================================================
   Consultation & Contact Section (Solid Deep Dark Suite with Crisp White Typography)
   ========================================================================== */
.contact-editorial-section {
  background: #1c2223;
  padding: 42px 0 48px 0;
  position: relative;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-editorial-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Contact Section Header */
.contact-editorial-section .section-header-center {
  text-align: center;
  margin-bottom: 28px;
}

.contact-editorial-section .section-tag {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-editorial-section .section-tag::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 2px;
  background: #ffffff !important;
}

.contact-editorial-section .section-title,
.contact-editorial-section h2.section-title {
  color: #ffffff !important;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  margin: 10px 0 12px;
  line-height: 1.2;
}

.contact-editorial-section .section-description {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Two Column Grid */
.contact-editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 80px;
  align-items: flex-start;
  margin-top: 20px;
}

/* Form Column Header */
.contact-form-header {
  margin-bottom: 22px;
}

.contact-form-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 5px;
}

.form-heading-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
}

.contact-sla-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.form-subtext {
  font-size: 13.5px;
  color: #c59b38 !important;
  margin: 0;
  line-height: 1.5;
  font-weight: 600 !important;
  opacity: 1 !important;
}

/* Form Styling - Underline Only */
.contact-editorial-form {
  display: flex;
  flex-direction: column;
}

.editorial-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
}

.editorial-form-group {
  margin-bottom: 22px;
  position: relative;
}

.editorial-form-row .editorial-form-group {
  margin-bottom: 0;
}

.editorial-label {
  display: block;
  font-size: 12.5px;
  color: #ffffff !important;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.3px;
}

.editorial-input,
.editorial-select,
.editorial-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 8px 0 10px 0;
  color: #ffffff;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.editorial-input:focus,
.editorial-select:focus,
.editorial-textarea:focus {
  border-bottom-color: #ffffff;
}

.editorial-input::placeholder,
.editorial-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.editorial-textarea {
  height: 52px;
  min-height: 44px;
  resize: vertical;
}

.editorial-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 13px;
  padding-right: 20px;
  cursor: pointer;
}

.editorial-select option {
  background: #1c2223;
  color: #ffffff;
}

.editorial-submit-btn {
  width: 100%;
  background: #ffffff;
  color: #1c2223;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.editorial-submit-btn svg {
  width: 16px;
  height: 16px;
  stroke: #1c2223;
  transition: transform 0.25s ease;
}

.editorial-submit-btn:hover {
  background: #F2EFE2;
  border-color: #F2EFE2;
  color: #1c2223;
  transform: translateY(-1px);
}

.editorial-submit-btn:hover svg {
  transform: translateX(3px);
}

/* Right Column - Headquarters & Advisory Desks */
.contact-editorial-info-col {
  padding-top: 0;
}

.editorial-info-block {
  margin-bottom: 24px;
}

.editorial-info-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: 0.2px;
}

.editorial-info-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.editorial-info-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.editorial-info-text a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.editorial-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.editorial-social-link {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.editorial-social-link:hover {
  color: #c59b38;
  transform: translateY(-2px);
}

.contact-trust-pill {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #c59b38;
  font-weight: 500;
}

.contact-trust-pill svg {
  color: #c59b38;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.editorial-social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-trust-pill {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #c59b38;
  font-weight: 500;
}

.contact-trust-pill svg {
  color: #c59b38;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Integrated Directory & Accreditation Section */
.contact-directory-footer {
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-directory-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-dir-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}

.contact-dir-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #ffffff;
  display: block;
}

.contact-dir-about-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0 0 16px 0;
  max-width: 360px;
}

.contact-dir-accred-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-dir-accred-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-dir-accred-item .accred-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.contact-dir-accred-item .accred-val {
  color: #ffffff;
  font-weight: 700;
}

.contact-dir-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px 0;
  position: relative;
  padding-bottom: 8px;
}

.contact-dir-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: #c59b38;
}

.contact-dir-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-dir-nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.contact-dir-nav a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.contact-dir-bottom-bar {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  gap: 14px;
}

.contact-dir-copy {
  color: rgba(255, 255, 255, 0.7);
}

.contact-dir-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-dir-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-dir-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-dir-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

@media (max-width: 900px) {
  .contact-editorial-section {
    padding: 42px 0 48px 0;
  }
  .contact-editorial-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-form-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 540px) {
  .contact-editorial-section {
    padding: 34px 0 40px 0;
  }
  .contact-editorial-container {
    padding: 0 14px;
  }
  .form-heading-title {
    font-size: 21px;
  }
  .form-subtext {
    font-size: 12.5px;
  }
  .editorial-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .editorial-form-row .editorial-form-group {
    margin-bottom: 16px;
  }
  .editorial-form-group {
    margin-bottom: 16px;
  }
  .editorial-submit-btn {
    padding: 12px 20px;
    font-size: 13.5px;
    margin-top: 8px;
  }
  .editorial-info-block {
    margin-bottom: 18px;
  }
  .editorial-info-heading {
    font-size: 13.5px;
  }
  .editorial-info-text {
    font-size: 12.5px;
  }
  .editorial-social-row {
    gap: 16px;
    margin-top: 18px;
  }
  .contact-directory-footer {
    margin-top: 24px;
    padding-top: 20px;
  }
  .contact-directory-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 18px;
  }
  .contact-dir-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
    padding-top: 18px;
  }
  .contact-dir-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

@media (max-width: 860px) {
  .contact-directory-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Comprehensive Responsive Media Queries */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid, .knowledge-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ca-showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ca-character-card {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .site-content {
    border-radius: 0;
    margin-top: 0;
  }
  .ca-solution-showcase {
    padding: 50px 18px 30px;
  }
  .ca-showcase-title {
    font-size: 26px;
  }
  .ca-showcase-intro {
    font-size: 14px;
  }
  .ca-showcase-item {
    font-size: 13px;
    padding: 10px 14px;
  }
  .section-container {
    padding: 55px 18px;
  }
  .section-title {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 26px;
  }
  .section-description {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-box {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-box, .calendar-card, .tools-card {
    padding: 22px 16px;
  }
  .calendar-table th, .calendar-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  .careers-banner-box {
    padding: 26px 18px;
    text-align: center;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 18px 18px 0;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .sectors-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    padding: 0 16px;
  }
  .stat-number {
    font-size: 32px;
  }
  .brand-title {
    font-size: 16px;
  }
  .brand-subtitle {
    font-size: 8.5px;
  }
  .btn-consultation, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .ca-showcase-actions {
    flex-direction: column;
    width: 100%;
  }
  .about-cta-group {
    flex-direction: column;
    width: 100%;
  }
}

/* Reusable Utility Classes */
.hero-mini-badge {
  width: 32px;
  height: 32px;
  font-size: 13px;
}

.about-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag-center {
  justify-content: center;
}

.section-desc-center {
  margin: 0 auto;
}

.card-heading-serif {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.card-heading-serif-md {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 12px;
}

.card-subtext {
  font-size: 13.5px;
  color: rgba(242, 239, 226, 0.75);
  margin-bottom: 20px;
}

.text-highlight-white {
  color: #ffffff;
}

.tools-list-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-item-card {
  padding: 16px;
}

.tool-emoji-icon {
  font-size: 24px;
}

.tool-item-title {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
}

.tool-item-desc {
  font-size: 12px;
  color: rgba(242, 239, 226, 0.65);
  margin-top: 2px;
}

.btn-submit-form {
  padding: 12px 24px;
  font-size: 14px;
}

.careers-content-col {
  max-width: 650px;
}

.careers-tag {
  margin-bottom: 8px;
}

.careers-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 8px;
}

.careers-desc {
  font-size: 14px;
  color: rgba(242, 239, 226, 0.8);
  line-height: 1.6;
}

.footer-brand-wrap {
  margin-bottom: 16px;
}

/* Minimal loading bar */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(152, 170, 157, 0.2);
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#loader-bar {
  width: 0%;
  height: 100%;
  background: #98AA9D;
  transition: width 0.1s ease-out;
}

.hidden {
  opacity: 0 !important;
  visibility: hidden;
}

/* ==========================================================================
   GLOBAL DISPLAY & BODY FONT SYSTEM (Josefin Sans Headings + Proxima Nova Body)
   ========================================================================== */

/* Global Display Font Override for Headings, Titles & Bold Labels */
h1, h2, h3, h4, h5, h6,
.brand-title,
.hero-title,
.hero-title-main,
.section-title,
.services-section-title,
.sectors-matrix-title,
.knowledge-ledger-title,
.ledger-title,
.careers-title,
.contact-editorial-title,
.form-heading-title,
.contact-dir-title,
.service-card-title,
.sector-modal-title,
.manifesto-stat-num,
.stat-number,
.matrix-stat-number,
.counter-number,
.stat-digit-block,
.banner-huge-title,
.why-us-headline,
.why-us-item-title,
.why-us-stat-num,
.why-us-node-badge span,
.ledger-item-name,
.ledger-tool-title,
.ledger-day,
.service-card-num,
.nav-num,
.sector-card-title,
.career-item-title,
.contact-office-city {
  font-family: 'Josefin Sans', 'Plus Jakarta Sans', sans-serif !important;
}

/* Global Text Font Override for Body, Paragraphs, Subtitles & Utilities */
body, p, span, a, input, select, textarea, button, label, li,
.section-tag, .section-description, .editorial-label, .editorial-info-text,
.contact-dir-about-text, .nav-link, .service-card-desc, .ledger-subtitle,
.ledger-item-desc, .ledger-tool-text, .ledger-tool-btn, .ledger-act,
.ledger-kicker, .ledger-status, .ledger-freq, .ledger-badge, .ledger-tool-category,
.why-us-tagline, .why-us-item-desc, .career-desc, .contact-desc,
.sector-card-desc, .service-feature-item {
  font-family: 'Proxima Nova', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   STRICT EXCEPTION: Hero Narrative & About Us Section
   ========================================================================== */
.hero-narrative-text {
  font-family: 'Heading Now', 'Bebas Neue', 'Anton', 'Big Shoulders Display', 'Barlow Condensed', sans-serif !important;
}

.about-backdrop-text {
  font-family: 'Hanson', 'Plus Jakarta Sans', sans-serif !important;
}

.about-coach-title {
  font-family: 'Voces', 'Shanghai Voces', sans-serif !important;
}

#about,
.about-coach-card,
.about-coach-desc,
.about-coach-desc strong,
.about-social-badge,
.about-badge-text,
.avatar-pill,
.btn-coach-primary,
.btn-coach-primary *,
.btn-coach-secondary,
.btn-coach-secondary *,
.about-stats-bare,
.about-stats-bare *,
.stat-bare-item,
.stat-bare-number,
.stat-bare-label,
.stat-counter-num {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ==========================================================================
   Floating Back To Top / Scroll to Home Button (Compact Delicate Circle)
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2D3536;
  color: #ffffff;
  border: 1.5px solid rgba(152, 170, 157, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              border-color 0.25s ease,
              box-shadow 0.25s ease;
  outline: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: #F2EFE2;
  stroke-width: 2.5;
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #3d4748;
  border-color: #98AA9D;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38), 0 0 12px rgba(152, 170, 157, 0.4);
  transform: translateY(-3px) scale(1.08);
}

.back-to-top:hover svg {
  stroke: #ffffff;
  transform: translateY(-2px);
}

.back-to-top:active {
  transform: translateY(-1px) scale(0.96);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
  }
  .back-to-top svg {
    width: 14px;
    height: 14px;
  }
}

