/* ============================================================
   OMNISAGE CONSULTANCY GROUP — IBM Carbon Design Language
   Primary Green  : #48513f  |  Primary Dark : #363c2e
   Secondary Gold : #edba2a  |  Light Gold   : #f0dd97
   Heading Font   : IBM Plex Serif
   Body Font      : IBM Plex Sans
   Design System  : IBM Carbon (square geometry, flat tiles,
                    ruled dividers, expressive type scale)
   ============================================================ */

:root {
  /* Brand colors — untouched */
  --primary:        #48513f;
  --primary-dark:   #363c2e;
  --primary-light:  #5a6650;
  --secondary-gold: #edba2a;
  --secondary-dark: #c99c1a;
  --gold-light:     #f0dd97;
  --gold-pale:      #fdf8e8;

  /* IBM Carbon neutrals */
  --text-dark:     #161616;
  --text-body:     #393939;
  --text-muted:    #6f6f6f;
  --bg-light:      #f4f4f4;
  --bg-lighter:    #ffffff;
  --border-light:  #e0e0e0;
  --border-strong: #8d8d8d;
  --white:         #ffffff;

  /* IBM type fonts */
  --font-heading: 'IBM Plex Serif', Georgia, serif;
  --font-body:    'IBM Plex Sans', system-ui, sans-serif;

  /* IBM geometry — square, no rounding */
  --radius:    0px;
  --radius-lg: 0px;

  /* IBM spacing scale (4px base) */
  --space-01: 0.125rem;  /* 2px  */
  --space-02: 0.25rem;   /* 4px  */
  --space-03: 0.5rem;    /* 8px  */
  --space-04: 0.75rem;   /* 12px */
  --space-05: 1rem;      /* 16px */
  --space-06: 1.5rem;    /* 24px */
  --space-07: 2rem;      /* 32px */
  --space-08: 2.5rem;    /* 40px */
  --space-09: 3rem;      /* 48px */
  --space-10: 4rem;      /* 64px */
  --space-11: 5rem;      /* 80px */
  --space-12: 6rem;      /* 96px */

  /* IBM transitions — fast & functional */
  --transition: all 0.15s cubic-bezier(0, 0, 0.38, 0.9);
  --transition-slow: all 0.3s cubic-bezier(0, 0, 0.38, 0.9);

  /* No shadows — IBM uses borders */
  --shadow:    none;
  --shadow-lg: none;
}

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

html { scroll-behavior: smooth; max-width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-gold); }
img { max-width: 100%; }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.fw-600 { font-weight: 600; }

/* IBM rule divider */
.ibm-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}
.ibm-rule--gold {
  background: var(--secondary-gold);
  height: 2px;
}

/* ============================================================
   FULL-WIDTH SECTION RULE
   ============================================================ */
section,
.hero-section,
.hero-banner,
.stats-section,
.why-choose-section,
.reviews-section,
.cta-section,
.contact-promise-strip,
.contact-main-section,
.footer-info-bar,
.site-footer,
.footer-bottom,
.footer-main,
.page-header,
.sd-hero,
.sd-quote,
.sd-stats,
.sd-cta,
.bg-light-custom,
.bg-primary-dark,
.bg-secondary-light,
.hero-trust-strip,
.main-navbar {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
}

.container {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  max-width: 1584px;
}
@media (max-width: 576px) {
  .container { padding-left: 1rem !important; padding-right: 1rem !important; }
}

/* ============================================================
   NAVBAR — IBM Carbon style: white, flat, strong border-bottom
   ============================================================ */
.main-navbar {
  background: var(--white) !important;
  padding: 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: var(--transition);
}
.main-navbar.scrolled {
  background: var(--white) !important;
  border-bottom-color: var(--border-strong);
}
.main-navbar .container {
  height: 48px;
  display: flex;
  align-items: center;
}

/* Logo */
.navbar-logo-img { height: 40px; width: auto; object-fit: contain; max-width: 180px; }
.brand-logo-text { display: flex; flex-direction: column; line-height: 1; }
.brand-omni {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary) !important;
  letter-spacing: -0.02em;
}
.brand-sage {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-gold) !important;
  letter-spacing: -0.02em;
}
.brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--text-muted) !important;
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

/* Nav links — IBM style */
.nav-link {
  color: var(--text-body) !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0 1rem !important;
  height: 48px;
  display: flex !important;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  text-transform: none;
  border-radius: 0;
}
.nav-link:hover { color: var(--primary) !important; background: var(--bg-light); border-bottom-color: var(--border-light); }
.nav-link.active { color: var(--primary) !important; border-bottom-color: var(--primary); font-weight: 600; }

/* Dropdown — IBM flat panel */
.dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  padding: 0;
  min-width: 260px;
  margin-top: 0;
  background: var(--white);
}
.dropdown-item {
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-body);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); border-left-color: var(--primary); }
.dropdown-divider { border-color: var(--border-light); margin: 0; }
.text-secondary-gold { color: var(--secondary-gold); }

/* Icon button (search) */
.btn-icon-nav {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  padding: 0;
}
.btn-icon-nav:hover { background: var(--bg-light); color: var(--primary); }

/* CTA Button — IBM Primary */
.btn-cta {
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0 1rem;
  height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta:hover { background: var(--primary-dark); color: var(--white) !important; }
.btn-cta-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  height: 48px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
}
.btn-cta-outline:hover { background: var(--primary); color: var(--white) !important; }

.navbar-actions { gap: 0; }

/* Navbar toggler */
.navbar-toggler { border: none; padding: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(57,57,57,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  }
  .nav-link { height: 44px; border-bottom: 1px solid var(--border-light); border-left: none; padding-left: 1rem !important; }
  .navbar-actions { padding: 0.5rem; border-top: 1px solid var(--border-light); margin-top: 0; }
}

/* ============================================================
   SEARCH MODAL — IBM style
   ============================================================ */
.search-modal-dialog { max-width: 640px; margin: 0 auto; }
.search-modal-content { background: transparent; border: none; box-shadow: none; border-radius: 0; }
.search-modal-inner {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: none;
  padding: 2rem;
  position: relative;
}
.search-form { width: 100%; }
.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: none;
  border-bottom: 2px solid var(--primary);
  padding: 0 1rem;
  transition: var(--transition);
  overflow: hidden;
}
.search-input-wrap:focus-within {
  border-bottom-color: var(--secondary-gold);
  background: var(--bg-light);
}
.search-icon { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; margin-right: 0.75rem; }
.search-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  padding: 1rem 0;
  outline: none;
}
.search-input::placeholder { color: var(--text-muted); }
.search-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.search-btn:hover { background: var(--primary-dark); }
.search-quick-links { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.search-quick-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.search-quick-links a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-body);
  transition: var(--transition);
}
.search-quick-links a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 0.25rem 0.5rem;
}
.btn-search-close:hover { color: var(--primary); }

/* ============================================================
   LIVE SEARCH RESULTS
   ============================================================ */
.search-spinner { color: var(--text-muted); font-size: 1rem; margin-left: 0.5rem; }
.search-results-box {
  margin-top: 0.75rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--white);
  max-height: 360px;
  overflow-y: auto;
}
.sr-list { display: flex; flex-direction: column; }
.sr-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
  border-left: 3px solid transparent;
}
.sr-item:last-child { border-bottom: none; }
.sr-item:hover { background: var(--bg-light); border-left-color: var(--primary); }
.sr-icon {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: var(--primary);
  color: var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.sr-content { flex: 1; min-width: 0; }
.sr-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-gold);
  margin-bottom: 2px;
}
.sr-title { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-sub { display: block; font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-arrow { color: var(--text-muted); font-size: 0.75rem; flex-shrink: 0; }
.sr-item:hover .sr-arrow { color: var(--primary); }
.sr-empty { padding: 1.5rem; text-align: center; color: var(--text-muted); font-size: 0.875rem; }

/* ============================================================
   GLOBAL BUTTONS — IBM Carbon square geometry
   ============================================================ */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); }

.btn-outline-primary-custom {
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: 1px solid var(--primary);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white); }

.btn-secondary-custom {
  background: var(--secondary-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-secondary-custom:hover { background: var(--secondary-dark); color: var(--primary-dark); }

/* ============================================================
   SECTION TYPOGRAPHY — IBM expressive type scale
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-gold);
  margin-bottom: 0.75rem;
  border-left: 2px solid var(--secondary-gold);
  padding-left: 0.75rem;
}
.section-eyebrow-light {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  border-left: 2px solid var(--gold-light);
  padding-left: 0.75rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.6; }
.section-text { color: var(--text-body); line-height: 1.75; }
.highlight { color: var(--primary); }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--primary-dark);
  position: relative;
  padding: 5rem 0 3.5rem;
  overflow: hidden;
  width: 100%;
  border-bottom: 3px solid var(--secondary-gold);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?w=1600&q=60') center/cover no-repeat;
  opacity: 0.04;
}
.page-header-overlay { position: absolute; inset: 0; background: var(--primary-dark); opacity: 0.95; }
.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.page-header-sub { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 600px; }
.page-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(237,186,42,0.12);
  border: 1px solid rgba(237,186,42,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary-gold);
}
.breadcrumb-light .breadcrumb-item a { color: rgba(255,255,255,0.45); }
.breadcrumb-light .breadcrumb-item a:hover { color: var(--secondary-gold); }
.breadcrumb-light .breadcrumb-item.active { color: rgba(255,255,255,0.3); }
.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.2); }

/* ============================================================
   HERO — IBM expressive, full bleed
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(22,28,18,0.82); }
.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-left: 2px solid var(--secondary-gold);
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-highlight { color: var(--secondary-gold); }
.hero-subtitle { color: rgba(255,255,255,0.65); font-size: 1.125rem; max-width: 520px; line-height: 1.75; }

.btn-hero-primary {
  background: var(--secondary-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-hero-primary:hover { background: var(--gold-light); color: var(--primary-dark); }

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-hero-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

.trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.8125rem; font-weight: 400; }
.trust-badge i { color: var(--secondary-gold); font-size: 0.875rem; }

.hero-card-stack { position: relative; width: 280px; height: 360px; }
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--secondary-gold);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-float-card i { font-size: 1.25rem; }
.hero-float-card strong { display: block; font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600; color: var(--primary-dark); line-height: 1; }
.hero-float-card span { font-size: 0.75rem; color: var(--text-muted); }
.hero-float-card { top: 40px; right: 0; }
.hero-float-card-2 { top: 160px; right: 40px; }
.hero-float-card-3 { top: 280px; right: 10px; }

.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; }
.hero-scroll-indicator span { color: rgba(255,255,255,0.3); font-size: 0.625rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(237,186,42,0.5), transparent); animation: scrollPulse 1.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ============================================================
   HERO BANNER — IBM editorial split-layout
   ============================================================ */
.hero-banner { position: relative; width: 100%; display: block; }
.hero-banner .carousel,
.hero-banner .carousel-inner { width: 100%; }

/* Slide: full viewport, image fills right side */
.hero-banner-slide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

/* Directional gradient — dark left, transparent right */
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(22,28,18,0.88) 0%,
    rgba(22,28,18,0.84) 30%,
    rgba(22,28,18,0.68) 50%,
    rgba(22,28,18,0.38) 68%,
    rgba(22,28,18,0.10) 82%,
    rgba(22,28,18,0.01) 100%
  );
  z-index: 1;
}

/* Subtle dot-grid texture on the dark left half */
.hb-dot-grid {
  position: absolute;
  left: 0;
  top: 0;
  width: 58%;
  height: 100%;
  background-image: radial-gradient(rgba(237,186,42,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 2;
}

/* 2px gold rule at the very top */
.hb-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary-gold);
  z-index: 10;
}

/* Vertical editorial label on the far left */
.hb-side-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 56px; /* above bottom bar */
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  z-index: 5;
}
.hb-side-label span {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  font-weight: 400;
  white-space: nowrap;
}

/* Content wrapper — takes remaining height */
.hero-banner-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Main grid row */
.hb-main-row {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 4rem;
  min-height: calc(100vh - 56px); /* minus bottom bar */
  align-items: center;
}

/* ── Content column (left) ── */
.hb-content-col { padding-right: 3rem; }

/* Eyebrow — small gold dot + uppercase label */
.hb-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hb-eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--secondary-gold);
  flex-shrink: 0;
}
.hb-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Headline — IBM expressive display size */
.hero-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 1rem, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero-banner-em {
  font-style: normal;
  color: var(--secondary-gold);
  font-weight: 400;
}

/* Subtitle */
.hero-banner-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* CTA row */
.hero-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Trust row */
.hb-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.hb-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 0.8125rem;
  font-family: var(--font-body);
}
.hb-trust-item i { color: var(--secondary-gold); font-size: 0.75rem; }
.hb-trust-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.14);
}

/* ── Stats column (right) ── */
.hb-stats-col {
  flex-direction: column;
  gap: 2px;
  padding-left: 2rem;
  align-items: stretch;
}

/* Floating stat tile — IBM tile, dark glass */
.hb-stat-tile {
  background: rgba(14,18,12,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 3px solid var(--secondary-gold);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  transition: var(--transition);
}
.hb-stat-tile:hover {
  background: rgba(14,18,12,0.88);
  border-left-color: var(--gold-light);
}
.hb-stat-icon {
  color: var(--secondary-gold);
  font-size: 1rem;
  margin-bottom: 0.875rem;
  opacity: 0.8;
}
.hb-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}
.hb-stat-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── CTA Buttons ── */
.btn-hb-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.9375rem 1.75rem;
  border-radius: 0;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.01em;
}
.btn-hb-primary:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
}

.btn-hb-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.9375rem 1.75rem;
  border-radius: 0;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-hb-secondary:hover {
  border-color: var(--secondary-gold);
  color: var(--secondary-gold);
}

/* ── Bottom bar ── */
.hb-bottom-bar {
  position: relative;
  z-index: 5;
  height: 56px;
  background: rgba(14,18,12,0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}
.hb-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

/* Scroll hint */
.hb-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.hb-scroll-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.hb-scroll-text {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* Slide counter + progress */
.hb-progress-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  max-width: 360px;
}
.hb-slide-counter {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-shrink: 0;
}
.hb-count-current {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hb-count-sep {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  margin: 0 0.125rem;
}
.hb-count-total {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}
.hb-progress-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hb-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--secondary-gold);
}
.carousel-item.active .hb-progress-fill {
  animation: hbFill 4s linear forwards;
}
.hb-progress-full { width: 100% !important; animation: none !important; }
@keyframes hbFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Prev / Next controls */
.hb-controls {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}
.hb-ctrl-btn {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hb-ctrl-btn:hover {
  background: var(--secondary-gold);
  border-color: var(--secondary-gold);
  color: var(--primary-dark);
}

/* Mobile overlay — solid dark, no split */
@media (max-width: 991px) {
  .hero-banner-overlay {
    background: rgba(22,28,18,0.88);
  }
  .hb-dot-grid { width: 100%; }
  .hb-main-row { padding-top: 4rem; padding-bottom: 3rem; }
  .hb-content-col { padding-right: 0; }
  .hero-banner-sub { max-width: 100%; }
}
@media (max-width: 575px) {
  .hero-banner-sub { font-size: 0.9375rem; }
  .hb-trust-row { gap: 0.5rem; }
  .hb-trust-divider { display: none; }
  .btn-hb-primary, .btn-hb-secondary { width: 100%; justify-content: center; }
}

/* ============================================================
   HERO TRUST STRIP
   ============================================================ */
.hero-trust-strip {
  background: var(--primary-dark);
  border-top: 2px solid var(--secondary-gold);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  width: 100%;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 0.25rem 0;
}
.trust-strip-item i { color: var(--secondary-gold); font-size: 0.875rem; width: 18px; text-align: center; }
.trust-strip-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.12); }

/* ============================================================
   STATS — full bleed primary background
   ============================================================ */
.stats-section { background: var(--primary); width: 100%; }
.stat-item {
  text-align: left;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.25rem; color: var(--secondary-gold); margin-bottom: 1rem; }
.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-img-wrap { position: relative; }
.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--secondary-gold);
  color: var(--primary-dark);
  padding: 0.875rem 1.25rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  border-top: 3px solid var(--primary-dark);
}
.about-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.75rem; font-size: 0.875rem; }

/* ============================================================
   SERVICE CARDS — IBM tile pattern
   ============================================================ */
.service-card-link { display: block; text-decoration: none; height: 100%; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  border-bottom-color: var(--secondary-gold);
  background: var(--bg-light);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(72,81,63,0.06);
  border: 1px solid var(--border-light);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--primary); color: var(--secondary-gold); border-color: var(--primary); }
.service-card-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.service-card-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.service-card-cta { font-size: 0.8125rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.service-card:hover .service-card-cta { color: var(--secondary-gold); }
.service-card-lg { display: flex; flex-direction: column; }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.service-card-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 600; color: rgba(72,81,63,0.06); line-height: 1; }

/* ============================================================
   BACKGROUNDS
   ============================================================ */
.bg-light-custom { background: var(--bg-light); width: 100%; }
.bg-primary-dark { background: var(--primary-dark); width: 100%; }
.bg-secondary-light { background: var(--gold-pale); width: 100%; }
.text-white-70 { color: rgba(255,255,255,0.7); }

/* ============================================================
   HOW IT WORKS — IBM numbered steps
   ============================================================ */
.how-step { padding: 2rem; position: relative; border-top: 3px solid var(--border-light); transition: var(--transition); }
.how-step:hover { border-top-color: var(--secondary-gold); background: var(--bg-light); }
.how-step-number {
  width: 32px;
  height: 32px;
  background: var(--secondary-gold);
  color: var(--primary-dark);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.how-step-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; }
.how-step-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); }
.how-step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.how-connector { display: none; }

/* ============================================================
   WHY CHOOSE US — IBM dark tile pattern
   ============================================================ */
.why-choose-section {
  background: var(--primary-dark);
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.why-choose-overlay { position: absolute; inset: 0; background: rgba(22,28,18,0.78); pointer-events: none; }
.why-card {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid rgba(237,186,42,0.4);
  border-radius: 0;
  padding: 2rem;
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.04); border-top-color: var(--secondary-gold); }
.why-card-icon { font-size: 1.25rem; color: var(--secondary-gold); margin-bottom: 1rem; }
.why-card-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.why-card-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.6; }

/* ============================================================
   REVIEWS — IBM tile layout
   ============================================================ */
.reviews-section { background: var(--bg-light); width: 100%; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid transparent;
  border-radius: 0;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover { border-top-color: var(--secondary-gold); background: var(--bg-light); }
.review-stars { color: var(--secondary-gold); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-stars .far { color: var(--border-light); }
.review-quote-icon { font-size: 1.375rem; color: rgba(72,81,63,0.07); margin-bottom: 0.75rem; }
.review-text { font-size: 0.9375rem; color: var(--text-body); line-height: 1.75; flex-grow: 1; font-style: italic; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar { width: 40px; height: 40px; border-radius: 0; object-fit: cover; border: 1px solid var(--border-light); }
.review-avatar-placeholder { width: 40px; height: 40px; border-radius: 0; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; }
.review-name { display: block; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; color: var(--text-dark); }
.review-role { display: block; font-size: 0.75rem; color: var(--text-muted); }
.btn-carousel { width: 40px; height: 40px; border-radius: 0; background: var(--primary); color: var(--white); border: none; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; transition: var(--transition); padding: 0; }
.btn-carousel:hover { background: var(--secondary-gold); color: var(--primary-dark); }
.carousel-indicators-custom { display: flex; gap: 4px; align-items: center; }
.carousel-indicators-custom button { width: 24px; height: 3px; border-radius: 0; background: var(--border-light); border: none; padding: 0; transition: var(--transition); cursor: pointer; }
.carousel-indicators-custom button.active { background: var(--primary); width: 40px; }

/* Single review card */
.review-card-single { padding: 2.5rem 3rem; text-align: center; }
.review-card-single .review-stars { justify-content: center; display: flex; gap: 4px; }
.review-card-single .review-quote-icon { font-size: 2.25rem; color: rgba(72,81,63,0.07); }
.review-text-lg { font-size: 1rem; line-height: 1.85; }
.review-card-single .review-author { justify-content: center; }

/* ============================================================
   INSIGHTS — IBM editorial cards
   ============================================================ */
.insight-card-link { display: block; text-decoration: none; height: 100%; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}
.insight-card:hover { border-bottom-color: var(--primary); background: var(--bg-light); }
.insight-img-wrap { position: relative; height: 200px; overflow: hidden; }
.insight-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.insight-card:hover .insight-img { transform: scale(1.03); }
.insight-img-placeholder { width: 100%; height: 100%; background: var(--primary); }
.insight-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--secondary-gold);
  color: var(--primary-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
}
.insight-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.insight-topic { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.insight-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.35; }
.insight-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; flex-grow: 1; margin-bottom: 1rem; }
.insight-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-muted); }
.insight-read-more { color: var(--primary); font-weight: 600; }
.insight-badge-lg { background: var(--secondary-gold); color: var(--primary-dark); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 0; }
.insight-topic-lg { background: rgba(72,81,63,0.14); color: rgba(255,255,255,0.9); font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 0; }
.insight-lead { font-size: 1rem; color: var(--text-body); line-height: 1.8; border-left: 3px solid var(--secondary-gold); padding-left: 1.25rem; }
.insight-detail-meta { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }
.related-insight-list { list-style: none; padding: 0; margin: 0; }
.related-insight-list li { margin-bottom: 0; }
.related-insight-list a { display: flex; flex-direction: column; padding: 1rem 0; border-bottom: 1px solid var(--border-light); text-decoration: none; transition: var(--transition); }
.related-insight-list a:hover .related-insight-title { color: var(--primary); }
.related-insight-topic { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary-gold); margin-bottom: 0.25rem; }
.related-insight-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-dark); line-height: 1.35; margin-bottom: 0.25rem; transition: var(--transition); }
.related-insight-time { font-size: 0.6875rem; color: var(--text-muted); }

/* Insight filters */
.filter-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  background: var(--bg-light);
  color: var(--text-body);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.filter-btn-sm { font-size: 0.75rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-quote { border-left: 3px solid var(--secondary-gold); padding-left: 1.5rem; color: var(--text-body); font-style: italic; font-size: 0.9375rem; }
.about-quote-footer { margin-top: 0.75rem; font-style: normal; font-size: 0.8125rem; font-weight: 600; color: var(--primary); display: block; }
.vm-card { background: transparent; border: 1px solid rgba(255,255,255,0.1); border-top: 3px solid rgba(237,186,42,0.5); border-radius: 0; padding: 2.5rem; text-align: center; height: 100%; }
.vm-icon { width: 56px; height: 56px; background: rgba(237,186,42,0.1); border: 1px solid rgba(237,186,42,0.25); border-radius: 0; display: flex; align-items: center; justify-content: center; font-size: 1.375rem; color: var(--secondary-gold); margin: 0 auto 1.25rem; }
.vm-title { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.vm-text { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.75; margin: 0; }
.principle-card { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid transparent; border-radius: 0; padding: 2rem; height: 100%; transition: var(--transition); }
.principle-card:hover { border-top-color: var(--primary); background: var(--bg-light); }
.principle-num { display: block; font-family: var(--font-heading); font-size: 3rem; font-weight: 600; color: rgba(72,81,63,0.06); line-height: 1; margin-bottom: 0.5rem; }
.principle-card h5 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--primary); font-weight: 600; }
.principle-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.engagement-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 0; padding: 2rem; text-align: center; height: 100%; transition: var(--transition); }
.engagement-card:hover { border-bottom: 3px solid var(--secondary-gold); }
.engagement-card i { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; display: block; }
.engagement-card h5 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.engagement-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-card { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid transparent; border-radius: 0; overflow: hidden; text-align: center; transition: var(--transition); }
.team-card:hover { border-top-color: var(--secondary-gold); }
.team-img-wrap { height: 220px; overflow: hidden; background: var(--bg-light); }
.team-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.team-card:hover .team-img { transform: scale(1.03); }
.team-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--primary); color: rgba(255,255,255,0.3); font-size: 2.5rem; }
.team-info { padding: 1.5rem; }
.team-name { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.team-title { font-size: 0.6875rem; color: var(--secondary-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.75rem; }
.team-bio { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.team-linkedin { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--primary); color: var(--white); border-radius: 0; font-size: 0.75rem; transition: var(--transition); }
.team-linkedin:hover { background: var(--secondary-gold); color: var(--primary-dark); }

/* ============================================================
   SERVICE DETAIL / SIDEBAR
   ============================================================ */
.service-detail-body { font-size: 0.9375rem; line-height: 1.85; color: var(--text-body); }
.rich-content h2, .rich-content h3 { font-family: var(--font-heading); color: var(--text-dark); font-weight: 600; margin-top: 2rem; }
.rich-content p { margin-bottom: 1.25rem; }
.rich-content ul, .rich-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-content li { margin-bottom: 0.5rem; }
.capabilities-box { background: var(--bg-light); padding: 2rem; border: 1px solid var(--border-light); border-top: 3px solid var(--primary); }
.capabilities-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1.25rem; }
.capabilities-list { list-style: none; padding: 0; margin: 0; }
.capabilities-list li { padding: 0.5rem 0; font-size: 0.875rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--border-light); }
.capabilities-list li:last-child { border-bottom: none; }
.sticky-sidebar { position: sticky; top: 80px; }
.service-sidebar { display: flex; flex-direction: column; gap: 1px; background: var(--border-light); }
.sidebar-cta-card { background: var(--primary); color: var(--white); padding: 2rem; }
.sidebar-cta-card h5 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.sidebar-cta-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.25rem; }
.btn-sidebar-email { background: rgba(255,255,255,0.1); color: var(--white) !important; font-family: var(--font-body); font-size: 0.875rem; font-weight: 400; padding: 0.75rem 1rem; border-radius: 0; border: 1px solid rgba(255,255,255,0.2); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-sidebar-email:hover { background: rgba(255,255,255,0.18); }
.sidebar-related { background: var(--white); padding: 1.5rem; border: 1px solid var(--border-light); }
.sidebar-related-title { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; border-bottom: 1px solid var(--border-light); padding-bottom: 0.75rem; }
.related-service-list { list-style: none; padding: 0; margin: 0; }
.related-service-list li { margin-bottom: 0; }
.related-service-list a { display: flex; align-items: center; gap: 10px; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); text-decoration: none; color: var(--text-body); font-size: 0.875rem; transition: var(--transition); border-left: 3px solid transparent; padding-left: 0.5rem; }
.related-service-list li:last-child a { border-bottom: none; }
.related-service-list a:hover { color: var(--primary); border-left-color: var(--primary); background: var(--bg-light); padding-left: 0.75rem; }
.related-svc-icon { width: 28px; height: 28px; background: rgba(72,81,63,0.07); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--primary); flex-shrink: 0; }
.related-svc-text { flex-grow: 1; font-weight: 400; color: var(--text-body); }
.related-svc-arrow { font-size: 0.65rem; color: var(--text-muted); margin-left: auto; transition: var(--transition); }
.related-service-list a:hover .related-svc-arrow { color: var(--primary); transform: translateX(2px); }
.sidebar-contact-strip { background: var(--bg-light); padding: 1rem 1.25rem; border: 1px solid var(--border-light); }
.contact-strip-item { display: flex; align-items: center; gap: 10px; padding: 0.4rem 0; font-size: 0.8125rem; }
.contact-strip-item i { color: var(--primary); width: 16px; text-align: center; }
.contact-strip-item a { color: var(--text-body); font-weight: 400; }
.contact-strip-item a:hover { color: var(--primary); }

/* ============================================================
   SECTORS
   ============================================================ */
.sector-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid transparent;
  border-radius: 0;
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}
.sector-card:hover { border-top-color: var(--primary); background: var(--bg-light); }
.sector-icon { font-size: 1.75rem; color: var(--primary); margin-bottom: 1rem; }
.sector-card:hover .sector-icon { color: var(--secondary-gold); }
.sector-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.sector-desc { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; color: var(--text-dark); }
.contact-info-items { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item strong { display: block; font-size: 0.75rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-info-item p { margin: 0; font-size: 0.875rem; color: var(--text-body); }
.contact-info-item a { color: var(--text-body); }
.contact-info-item a:hover { color: var(--primary); }
.contact-icon-wrap { width: 40px; height: 40px; background: var(--primary); color: var(--secondary-gold); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; flex-shrink: 0; border-radius: 0; }
.contact-form-card { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--primary); padding: 2rem 2.5rem 2.5rem; }
@media (max-width: 576px) { .contact-form-card { padding: 1.5rem 1.25rem; } }
.contact-form-card-header { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-light); }
.cfh-icon { width: 48px; height: 48px; background: var(--primary); color: var(--secondary-gold); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; flex-shrink: 0; border-radius: 0; }
.form-card-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.form-card-sub { font-size: 0.8125rem; color: var(--text-muted); margin: 2px 0 0; }
.form-label { font-size: 0.75rem; font-weight: 600; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.35rem; display: block; }
.form-control, .form-select { font-family: var(--font-body); font-size: 0.875rem; border: none; border-bottom: 1px solid var(--border-strong); border-radius: 0; padding: 0.75rem 0; background: var(--bg-light); color: var(--text-dark); transition: border-color 0.15s; }
.form-control:focus, .form-select:focus { border-bottom-color: var(--primary); box-shadow: none; outline: none; background: var(--bg-light); }
.form-note { font-size: 0.75rem; color: var(--text-muted); }
.contact-feature i { font-size: 1.75rem; color: var(--primary); margin-bottom: 0.75rem; display: block; }
.contact-feature h6 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; }
.contact-feature p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Contact promise strip */
.contact-promise-strip { background: var(--primary); width: 100%; border-top: 1px solid rgba(255,255,255,0.06); }
.contact-promise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.contact-promise-item:hover { background: rgba(255,255,255,0.04); }
.contact-promise-item i { font-size: 1.25rem; color: var(--secondary-gold); flex-shrink: 0; }
.contact-promise-item strong { display: block; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; color: var(--white); margin-bottom: 0.125rem; }
.contact-promise-item span { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* Contact main section */
.contact-main-section { background: var(--bg-light); width: 100%; }

/* Office hours */
.office-hours-card { overflow: hidden; border: 1px solid var(--border-light); border-radius: 0; }
.office-hours-header { background: var(--primary); color: var(--white); padding: 0.75rem 1rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.office-hours-body { padding: 0.75rem 1rem; background: var(--white); }
.oh-row { display: flex; justify-content: space-between; padding: 0.375rem 0; font-size: 0.875rem; border-bottom: 1px solid var(--border-light); }
.oh-row:last-of-type { border-bottom: none; }
.oh-day { color: var(--text-body); }
.oh-time { font-weight: 600; color: var(--primary); }
.oh-closed { color: var(--text-muted); font-weight: 400; font-style: italic; }
.oh-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Contact social block */
.contact-social-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); display: block; margin-bottom: 0.6rem; }
.contact-social-icons { display: flex; gap: 0.375rem; }
.contact-social-icons a { width: 36px; height: 36px; border-radius: 0; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; transition: var(--transition); }
.contact-social-icons a:hover { background: var(--secondary-gold); color: var(--primary-dark); }

/* Engagement option cards */
.engagement-opt-card { background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid transparent; border-radius: 0; padding: 1.5rem 1.25rem; text-align: center; height: 100%; transition: var(--transition); }
.engagement-opt-card:hover { border-top-color: var(--primary); background: var(--bg-light); }
.eoc-icon { width: 48px; height: 48px; background: rgba(72,81,63,0.06); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; color: var(--primary); margin: 0 auto 1rem; transition: var(--transition); border-radius: 0; }
.engagement-opt-card:hover .eoc-icon { background: var(--primary); color: var(--secondary-gold); border-color: var(--primary); }
.engagement-opt-card h6 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.engagement-opt-card p { font-size: 0.8125rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Map section */
.contact-map-section { position: relative; height: 420px; overflow: hidden; width: 100%; }
.map-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.contact-map-placeholder { position: relative; width: 100%; height: 420px; }
.contact-map-placeholder::after { content: ''; position: absolute; inset: 0; background: rgba(54,60,46,0.55); }
.map-overlay-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; background: var(--white); border: 1px solid var(--border-light); border-top: 3px solid var(--secondary-gold); padding: 2rem 2.5rem; text-align: center; min-width: 280px; }
.map-pin-icon { width: 48px; height: 48px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--secondary-gold); margin: 0 auto 1rem; border-radius: 0; }
.map-overlay-card h4 { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.map-overlay-card p { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   FAQ — IBM accordion
   ============================================================ */
.faq-item { background: var(--white); border: 1px solid var(--border-light) !important; border-radius: 0 !important; margin-bottom: 2px; overflow: hidden; }
.faq-button { background: var(--white) !important; color: var(--text-dark) !important; font-family: var(--font-body); font-weight: 400; font-size: 0.9375rem; display: flex; align-items: center; gap: 12px; padding: 1.25rem 1.5rem; box-shadow: none !important; border: none; border-left: 3px solid transparent; }
.faq-button:not(.collapsed) { color: var(--primary) !important; background: var(--bg-light) !important; border-left-color: var(--primary); font-weight: 600; }
.faq-button::after { filter: none; }
.faq-q-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(72,81,63,0.07); font-size: 0.75rem; color: var(--primary); flex-shrink: 0; font-weight: 600; border-radius: 0; }
.faq-button:not(.collapsed) .faq-q-num { background: var(--secondary-gold); color: var(--primary-dark); }
.faq-answer { padding: 1rem 1.5rem 1.5rem 3.5rem; color: var(--text-body); font-size: 0.9375rem; line-height: 1.75; }

/* ============================================================
   STAR RATING INPUT
   ============================================================ */
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-label { cursor: pointer; font-size: 1.5rem; color: #ddd; transition: color 0.15s; }
.star-label input { display: none; }
.star-label:hover, .star-label:hover ~ .star-label { color: var(--secondary-gold); }

/* ============================================================
   CTA SECTION — IBM dark band
   ============================================================ */
.cta-section {
  background: var(--primary-dark);
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  width: 100%;
  border-top: 3px solid var(--secondary-gold);
}
.cta-overlay { position: absolute; inset: 0; background: rgba(22,28,18,0.82); }
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-subtitle { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.6; }
.btn-cta-main {
  background: var(--secondary-gold);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-main:hover { background: var(--gold-light); color: var(--primary-dark); }
.btn-cta-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.mini-cta h3 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; color: var(--text-dark); }

/* ============================================================
   FOOTER INFO BAR
   ============================================================ */
.footer-info-bar {
  background: var(--primary-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}
.footer-info-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--secondary-gold); font-size: 1rem; flex-shrink: 0; border-radius: 0; }
.footer-info-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.125rem; }
.footer-info-val { font-size: 0.875rem; color: rgba(255,255,255,0.8); font-weight: 400; }
.footer-info-val a { color: rgba(255,255,255,0.8); }
.footer-info-val a:hover { color: var(--secondary-gold); }

/* ============================================================
   FOOTER MAIN — IBM dark grid footer
   ============================================================ */
.site-footer { background: var(--primary-dark); width: 100%; }
.footer-main { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; max-width: 160px; }
.brand-omni-footer { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.brand-sage-footer { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--secondary-gold); letter-spacing: -0.02em; }
.footer-brand-sub { font-size: 0.55rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.3); margin-top: 4px; text-transform: uppercase; font-weight: 400; display: block; }
.footer-about-text { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.75; }
.footer-heading { font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary-gold); font-weight: 600; margin-bottom: 1.25rem; font-family: var(--font-body); border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 0.75rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.875rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; padding: 0.45rem 0; font-weight: 400; }
.footer-links a:hover { color: var(--secondary-gold); padding-left: 6px; }
.footer-links a i { font-size: 0.5rem; }
.footer-cta-text { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--secondary-gold); color: var(--primary-dark); font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; padding: 0.75rem 1.25rem; border-radius: 0; transition: var(--transition); }
.btn-footer-cta:hover { background: var(--gold-light); color: var(--primary-dark); }
.footer-social-icons { display: flex; gap: 2px; flex-wrap: wrap; }
.footer-social-icons a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.8125rem; transition: var(--transition); border-radius: 0; }
.footer-social-icons a:hover { background: var(--secondary-gold); border-color: var(--secondary-gold); color: var(--primary-dark); }

/* Footer bottom bar */
.footer-bottom {
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  width: 100%;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }
.developed-by { font-size: 0.8125rem; }
.dusicode-link { color: var(--secondary-gold) !important; font-weight: 600; transition: var(--transition); }
.dusicode-link:hover { color: var(--gold-light) !important; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.sd-page-header { background-size: cover; background-position: center; background-repeat: no-repeat; }
.sd-has-bg .page-header-overlay { background: rgba(54,60,46,0.88); }
.sd-section { position: relative; }
.bg-primary-section { background: var(--primary-dark); color: var(--white); width: 100%; }
.bg-primary-section .section-title, .bg-primary-section h2, .bg-primary-section h3 { color: var(--white); }
.bg-primary-section .section-eyebrow { color: var(--secondary-gold); border-left-color: var(--secondary-gold); }
.bg-primary-section .rich-content, .bg-primary-section p { color: rgba(255,255,255,0.8); }
.bg-gold-section { background: var(--gold-pale); width: 100%; }
.sd-img { width: 100%; object-fit: cover; max-height: 520px; }
.sd-img-wrap { position: relative; }
.sd-img-caption { font-size: 0.8125rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; font-style: italic; }

/* SD Hero */
.sd-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  width: 100%;
}
.sd-hero-overlay { position: absolute; inset: 0; background: rgba(54,60,46,0.85); }
.sd-hero-title { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 600; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
.sd-hero-content { font-size: 1rem; margin-top: 1rem; }

/* SD Full Width Image */
.sd-full-image-wrap { margin: 0; padding: 0; width: 100%; }
.sd-full-image-img { width: 100%; max-height: 600px; object-fit: cover; display: block; }
.sd-full-image-caption { text-align: center; font-size: 0.8125rem; color: var(--text-muted); font-style: italic; padding: 0.75rem 1rem; background: var(--bg-light); border-top: 1px solid var(--border-light); }

/* SD Two Column */
.sd-two-col-img-wrap { overflow: hidden; }
.sd-two-col-img-wrap img { width: 100%; height: 340px; object-fit: cover; transition: transform 0.3s ease; }
.sd-two-col-img-wrap:hover img { transform: scale(1.02); }

/* SD Pull Quote */
.sd-quote { padding: 5rem 0; background: var(--bg-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); width: 100%; }
.sd-quote-wrap { text-align: center; padding: 2.5rem 2rem; }
.sd-quote-icon { font-size: 2.5rem; color: var(--secondary-gold); margin-bottom: 1.25rem; line-height: 1; }
.sd-quote-text { font-family: var(--font-heading); font-size: clamp(1.125rem, 2.5vw, 1.75rem); font-style: italic; color: var(--primary); line-height: 1.5; margin: 0 0 1.5rem; }
.sd-quote-text p { margin: 0; }
.sd-quote-cite { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); font-style: normal; letter-spacing: 0.05em; }

/* SD Stats */
.sd-stats { padding: 4rem 0; background: var(--primary-dark); width: 100%; border-top: 3px solid var(--secondary-gold); }
.sd-stats .stat-item { border-color: rgba(255,255,255,0.06); }
.sd-stats .stat-value { color: var(--secondary-gold); }
.sd-stats .stat-label { color: rgba(255,255,255,0.6); }

/* SD Gallery */
.sd-gallery-item { overflow: hidden; }
.sd-gallery-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.3s ease; display: block; }
.sd-gallery-item:hover .sd-gallery-img { transform: scale(1.03); }

/* SD CTA */
.sd-cta {
  padding: 5rem 0;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  width: 100%;
  border-top: 3px solid var(--secondary-gold);
}
.sd-cta-overlay { position: absolute; inset: 0; background: rgba(54,60,46,0.88); }

/* SD Video */
.sd-video-wrap { overflow: hidden; border: 1px solid var(--border-light); }

/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-code { font-family: var(--font-heading); font-size: clamp(6rem, 18vw, 11rem); font-weight: 600; color: rgba(72,81,63,0.05); line-height: 1; margin-bottom: 0.5rem; }
.error-title { font-family: var(--font-heading); font-size: 2rem; color: var(--text-dark); font-weight: 600; }
.error-sub { color: var(--text-muted); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border: 1px solid var(--primary-dark);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary-gold); border-color: var(--secondary-gold); color: var(--primary-dark); }

/* ============================================================
   TEAM PAGE — cards + profile
   ============================================================ */

/* Grid layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}
.team-grid--compact {
  grid-template-columns: repeat(4, 1fr);
}

/* Card */
.tcard {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.18s;
}
.tcard:hover { background: #f8f9f6; }

/* Photo area */
.tcard-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-light);
}
.tcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.tcard:hover .tcard-img { transform: scale(1.04); }
.tcard-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e8ebe3, #d6dace);
  color: rgba(72,81,63,0.25);
  font-size: 3.5rem;
}

/* Social icons — slide up on hover */
.tcard-socials {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(36,42,28,0.88) 0%, transparent 100%);
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.tcard:hover .tcard-socials { transform: translateY(0); }
.tcard-social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.tcard-social-btn:hover {
  background: var(--secondary-gold);
  border-color: var(--secondary-gold);
  color: var(--primary-dark);
}

/* Card body */
.tcard-body {
  padding: 1.25rem 1.125rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 3px solid transparent;
  transition: border-top-color 0.18s;
}
.tcard:hover .tcard-body { border-top-color: var(--secondary-gold); }
.tcard-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.tcard-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.tcard-bio {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.tcard-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.15s, gap 0.15s;
}
.tcard-profile-btn i { font-size: 0.6rem; transition: transform 0.15s; }
.tcard-profile-btn:hover { color: var(--secondary-gold); }
.tcard-profile-btn:hover i { transform: translateX(3px); }

/* ── Profile page ── */
.tprofile-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-light);
  border-top: 3px solid var(--secondary-gold);
}
.tprofile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tprofile-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e8ebe3, #d6dace);
  color: rgba(72,81,63,0.25);
  font-size: 5rem;
}

/* Socials card below photo */
.tprofile-socials-card {
  border: 1px solid var(--border-light);
  border-top: none;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.tprofile-socials-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.tprofile-socials-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tprofile-social-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 0.625rem;
  border: 1px solid var(--border-light);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.tprofile-social-link i { color: var(--primary); font-size: 0.875rem; width: 16px; }
.tprofile-social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.tprofile-social-link:hover i { color: var(--secondary-gold); }

.tprofile-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.tprofile-back-link:hover { color: var(--primary); }

/* Profile right column */
.tprofile-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.tprofile-title-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  margin-bottom: 2rem;
}
.tprofile-bio {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-left: 3px solid var(--secondary-gold);
  padding-left: 1.5rem;
}
.tprofile-bio p { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 1199px) {
  .team-grid, .team-grid--compact { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .team-grid, .team-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .tprofile-name { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .team-grid, .team-grid--compact { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES MEGA MENU
   ============================================================ */

/* Caret icon */
.mega-caret {
  font-size: 0.6rem;
  opacity: 0.55;
  margin-left: 0.3rem;
  transition: transform 0.2s ease, opacity 0.2s;
  vertical-align: middle;
}

/* ── Desktop: full-width panel via position:fixed ── */
@media (min-width: 992px) {
  .services-mega { position: static; }

  .services-mega > .nav-link { display: flex; align-items: center; }
  .services-mega:hover .mega-caret { transform: rotate(180deg); opacity: 0.9; }

  .services-mega-panel {
    position: fixed;
    top: 48px;
    left: 50%;
    width: calc(100% - 3rem);
    max-width: 1320px;
    z-index: 1020;
    background: var(--white);
    border-top: 2px solid var(--secondary-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s, transform 0.22s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }

  .services-mega:hover .services-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .services-mega-panel:hover { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
}

/* ── Mega Header Strip ── */
.mega-header {
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mega-header-left { display: flex; flex-direction: column; gap: 0.1rem; }
.mega-eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-gold);
}
.mega-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.mega-view-all {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: var(--transition);
}
.mega-view-all:hover { color: var(--secondary-gold); }
.mega-view-all i { font-size: 0.6875rem; }

/* ── Service Cards Grid ── */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  max-height: 55vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.mega-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-left-color 0.15s ease;
  position: relative;
}
.mega-card:hover {
  background: #f5f6f3;
  border-left-color: var(--secondary-gold);
}

.mega-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(72,81,63,0.06);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--primary);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.mega-card:hover .mega-card-icon {
  background: var(--primary);
  color: var(--secondary-gold);
  border-color: var(--primary);
}

.mega-card-body { flex: 1; min-width: 0; }
.mega-card-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  transition: color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-card:hover .mega-card-title { color: var(--primary); }
.mega-card-desc {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-card-arrow {
  flex-shrink: 0;
  font-size: 0.625rem;
  color: var(--border-light);
  transition: color 0.15s ease, transform 0.15s ease;
}
.mega-card:hover .mega-card-arrow { color: var(--secondary-gold); transform: translateX(3px); }

/* ── Mega Footer CTA ── */
.mega-footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 2.5rem;
  background: rgba(237,186,42,0.07);
  border-top: 1px solid rgba(237,186,42,0.18);
}
.mega-footer-icon { color: var(--secondary-gold); font-size: 0.9375rem; }
.mega-footer-text { font-size: 0.8125rem; color: var(--text-muted); }
.mega-footer-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
.mega-footer-cta i { font-size: 0.6875rem; transition: transform 0.15s; }
.mega-footer-cta:hover { color: var(--secondary-gold); }
.mega-footer-cta:hover i { transform: translateX(3px); }

/* ── Mobile: hide panels, direct links navigate ── */
@media (max-width: 991px) {
  .services-mega-panel,
  .insights-mega-panel,
  .sectors-mega-panel { display: none; }
  .mega-caret { display: none; }
}


/* ============================================================
   SECTORS HOVER PANEL
   ============================================================ */
@media (min-width: 992px) {
  .sectors-mega { position: static; }
  .sectors-mega:hover .mega-caret { transform: rotate(180deg); opacity: 0.9; }

  .sectors-mega-panel {
    position: fixed;
    top: 48px;
    left: 50%;
    width: calc(100% - 3rem);
    max-width: 1320px;
    z-index: 1020;
    background: var(--white);
    border-top: 2px solid var(--secondary-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s, transform 0.22s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .sectors-mega:hover .sectors-mega-panel,
  .sectors-mega-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* Sector panel header */
.smega-header {
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Sector cards grid — 3 columns */
.smega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  max-height: 55vh;
  overflow-y: auto;
}

.smega-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  background: var(--white);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-left-color 0.15s;
}
.smega-card:hover {
  background: #f5f6f3;
  border-left-color: var(--secondary-gold);
}

.smega-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(72,81,63,0.06);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.smega-card:hover .smega-card-icon {
  background: var(--primary);
  color: var(--secondary-gold);
  border-color: var(--primary);
}

.smega-card-body { flex: 1; min-width: 0; }
.smega-card-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  transition: color 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smega-card:hover .smega-card-title { color: var(--primary); }
.smega-card-desc {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smega-card-arrow {
  flex-shrink: 0;
  font-size: 0.625rem;
  color: var(--border-light);
  transition: color 0.15s, transform 0.15s;
}
.smega-card:hover .smega-card-arrow { color: var(--secondary-gold); transform: translateX(3px); }

.smega-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Sector footer strip */
.smega-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.75rem;
  background: rgba(72,81,63,0.05);
  border-top: 1px solid var(--border-light);
}
.smega-footer-icon { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.smega-footer-text { font-size: 0.8125rem; color: var(--text-muted); }
.smega-footer-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.smega-footer-arrow { font-size: 0.6rem; transition: transform 0.15s; }
.smega-footer-cta:hover { color: var(--secondary-gold); }
.smega-footer-cta:hover .smega-footer-arrow { transform: translateX(4px); }

/* ============================================================
   INSIGHTS HOVER PANEL
   ============================================================ */
@media (min-width: 992px) {
  .insights-mega { position: static; }
  .insights-mega:hover .mega-caret { transform: rotate(180deg); opacity: 0.9; }

  .insights-mega-panel {
    position: fixed;
    top: 48px;
    left: 50%;
    width: calc(100% - 3rem);
    max-width: 1320px;
    z-index: 1020;
    background: var(--white);
    border-top: 2px solid var(--secondary-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.16);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s, transform 0.22s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .insights-mega:hover .insights-mega-panel,
  .insights-mega-panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

/* Panel header */
.imega-header {
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Card row — 4 columns */
.imega-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
}

/* Single insight card */
.imega-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
}
.imega-card:hover { background: #f8f9f6; }

/* Image area */
.imega-card-img {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: var(--bg-light);
  flex-shrink: 0;
}
.imega-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.imega-card:hover .imega-card-img img { transform: scale(1.04); }

.imega-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8ebe3 100%);
  color: var(--border-light);
  font-size: 2rem;
}

/* Topic badge overlaid on image */
.imega-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: var(--primary-dark);
  color: var(--secondary-gold);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
}

/* Card body */
.imega-card-body {
  padding: 0.875rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.imega-meta {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  display: block;
}
.imega-card-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}
.imega-card:hover .imega-card-title { color: var(--primary); }
.imega-card-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 0.75rem;
}

/* Read button */
.imega-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.15s, gap 0.15s;
}
.imega-read-btn i { font-size: 0.6rem; transition: transform 0.15s; }
.imega-read-btn:hover { color: var(--secondary-gold); }
.imega-read-btn:hover i { transform: translateX(3px); }

.imega-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── Insights panel bottom strip ── */
.imega-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1.75rem;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.imega-footer-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

.imega-footer-topics {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.imega-topic-pill {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.imega-topic-pill:hover {
  color: var(--secondary-gold);
  border-color: rgba(237,186,42,0.4);
  background: rgba(237,186,42,0.06);
}

.imega-footer-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary-gold);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.15s;
}
.imega-footer-cta .fa-book-open { font-size: 0.8rem; }
.imega-footer-arrow { font-size: 0.6rem; transition: transform 0.15s; }
.imega-footer-cta:hover { color: var(--white); }
.imega-footer-cta:hover .imega-footer-arrow { transform: translateX(4px); }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 991px) {
  .hero-section { min-height: 90vh; }
  .py-6 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sticky-sidebar { position: relative; top: 0; }
  .service-sidebar { gap: 0; background: none; }
}
@media (max-width: 767px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); text-align: center; padding: 2rem 1rem; }
  .stat-item:last-child { border-bottom: none; }
  .hero-title { font-size: 2.25rem; }
  .contact-form-card { padding: 1.5rem; }
  .footer-info-bar .row { text-align: center; }
  .footer-info-bar .col-md-4 { justify-content: center; }
  .contact-promise-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .contact-promise-item:last-child { border-bottom: none; }
  .how-step { padding: 1.5rem; }
}
