/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand palette */
   --navy: #0D2261; 
  --navy-deep: #071540;
  --navy-mid: #1a3485;
  --green: #4CAF50;
  --green-bright: #56C75A;
  --gold: #F5C518;
  --gold-light: #FFD740;

  /* Neutral */
   --white: #FFFFFF;
  --off-white: #F4F6FA;
  --gray-soft: #E8ECF4;
  --gray-mid: #8898B8;
  
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebe5d;

  / --text-dark: #0A1836;
  --text-body: #3D4F72;
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 16px;

  /* Motion */
  --ease:   cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 16px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes gridShift {
  to { transform: translateY(60px); }
}

@keyframes glowPulse {
  from { transform: scale(1);    opacity: 0.7; }
  to   { transform: scale(1.15); opacity: 1;   }
}

@keyframes scrollDown {
  0%, 100% { transform: translateY(0);   opacity: 1; }
  60%       { transform: translateY(12px); opacity: 0; }
}

@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes aiPulse {
  0%, 100% { opacity: 0.6; transform: scale(1);   }
  50%       { opacity: 0;   transform: scale(1.3); }
}

/* ============================================================
   HEADER
   ============================================================ */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 21, 64, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

header.scrolled {
  background: rgba(7, 21, 64, 0.98);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-wrap img {
  height: 44px;
  filter: drop-shadow(0 0 8px rgba(245, 197, 24, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1.5px;
}

.logo-text span:last-child {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Primary nav */
nav { flex: 1; display: flex; justify-content: center; }

.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.main-menu > li { position: relative; }

.main-menu > li > a,
.main-menu > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-menu > li > a:hover,
.main-menu > li > button:hover,
.main-menu > li > a.active,
.main-menu > li > button.active {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.chevron {
  font-size: 10px;
  transition: transform 0.3s;
}

.main-menu > li:hover > button .chevron { transform: rotate(180deg); }

/* Mega-menu */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;          /* was calc(100% + 12px) */
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  background: var(--navy-deep);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 20px;
  padding-top: 18px;  /* visual spacing moves inside the element */
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  animation: megaFadeIn 0.25s var(--ease);
  z-index: 999;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(245, 197, 24, 0.2);
  border-left: 1px solid rgba(245, 197, 24, 0.2);
  transform: translateX(-50%) rotate(45deg);
}

.main-menu > li:hover .mega-menu { display: block; }
/* Bridge the dead zone with a transparent pseudo-element */
.main-menu > li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 18px; /* matches the visual gap */
}
.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
}

.mega-header span {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-size: 12.5px;
  font-weight: 500;
}

.mega-item:hover {
  background: rgba(245, 197, 24, 0.07);
  border-color: rgba(245, 197, 24, 0.2);
  color: var(--white);
}

.mega-item:hover .mega-icon {
  background: var(--gold);
  color: var(--navy-deep);
}

.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}

/* Standard dropdown */
.dropdown {
  display: none;
  position: absolute;
   top: 100%;          /* was calc(100% + 12px) */
  padding-top: 8px;
  left: 0;
  min-width: 200px;
  background: var(--navy-deep);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 14px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: megaFadeIn 0.2s var(--ease);
  z-index: 999;
}

.main-menu > li:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold);
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* ============================================================
   BUTTON SYSTEM
   ============================================================

   Sizing scale:
     sm   — 9px/18px pad  → header & inline uses
     md   — 13px/28px pad → default
     lg   — 14px/32px pad → hero, primary CTAs

   Variants:
     .btn-primary   gold fill      (all sizes)
     .btn-ghost     transparent    (sm/md)
     .btn-outline   transparent    (md/lg)
     .btn-solid     navy fill      (md/lg)
     .btn-whatsapp  brand fill     (md/lg)

   Sizes via modifier:
     (none) → md
     .btn-sm → sm
     .btn-lg → lg
   ============================================================ */

/* ── Shared foundation ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color  0.2s ease,
    border-color      0.2s ease,
    color             0.2s ease,
    transform         0.2s ease,
    box-shadow        0.2s ease,
    opacity           0.2s ease;

  /* Default (md) sizing */
  padding: 13px 28px;
}

/* Focus ring — keyboard accessible */
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Disabled state — applies to all variants */
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Size modifiers ── */
.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 10px;
}

.btn-lg {
  padding: 14px 32px;
  font-weight: 700;
}

/* Icon-only square variant */
.btn-icon {
  padding: 10px;
  border-radius: 10px;
}

/* ── Primary — gold fill ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-primary:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary.btn-lg:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.4);
}

/* ── Ghost — transparent, white border ── */
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Outline — transparent, heavier border (hero contexts) ── */
.btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-outline:active:not(:disabled) {
  transform: translateY(0);
}

/* ── Solid — navy fill ── */
.btn-solid {
  background: var(--navy);
  color: var(--white);
  border: 1px solid transparent;
}

.btn-solid:hover:not(:disabled) {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 34, 97, 0.3);
}

.btn-solid:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

/* ── WhatsApp ── */
.btn-whatsapp {
  background: var(--whatsapp, #25D366);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-whatsapp:hover:not(:disabled) {
  background: var(--whatsapp-dark, #1DA851);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

/* ── Loading state ── */
.btn.loading {
  pointer-events: none;
  opacity: 0.75;
  position: relative;
}

.btn.loading > *:not(.btn-spinner) {
  visibility: hidden;
}

.btn-spinner {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ── Legacy class aliases ─────────────────────────────────────
   Maps the old class names used in the existing HTML to the
   new .btn base so both systems work without a find-replace.
   Safe to remove once templates are updated.
   ──────────────────────────────────────────────────────────── */
.btn-hero-primary { composes: btn btn-primary btn-lg from global; }
.btn-hero-ghost   { composes: btn btn-outline  btn-lg from global; }
.btn-cta          { composes: btn btn-primary  btn-lg from global; }

/* If the project doesn't use CSS Modules, use this plain-CSS
   fallback instead of composes: */
.btn-hero-primary,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy-deep);
  transition:
    background-color 0.2s ease,
    transform        0.2s ease,
    box-shadow       0.2s ease;
}

.btn-hero-primary:hover:not(:disabled),
.btn-cta:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.4);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  transition:
    border-color 0.2s ease,
    color        0.2s ease,
    transform    0.2s ease;
}

.btn-hero-ghost:hover:not(:disabled) {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .btn-hero-primary,
  .btn-hero-ghost,
  .btn-cta {
    transition: none;
  }

  .btn:hover:not(:disabled),
  .btn-hero-primary:hover:not(:disabled),
  .btn-hero-ghost:hover:not(:disabled),
  .btn-cta:hover:not(:disabled) {
    transform: none;
  }

  .btn-spinner {
    animation: none;
  }
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

/* Animated background grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero-glow2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  bottom: -150px; left: 10%;
  animation: glowPulse 8s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.15); opacity: 1; }
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.8s var(--transition) forwards;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 6vw, 88px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 12px;
  animation: fadeUp 0.9s 0.1s var(--transition) both;
}
.hero-title .accent { color: var(--gold); }
.hero-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  animation: fadeUp 0.9s 0.2s var(--transition) both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s var(--transition) both;
}
.btn-hero-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,197,24,0.4); }
.btn-hero-ghost {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.9s 0.4s var(--transition) both;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-num .unit { color: var(--gold); }
.hero-stat-label {
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* RIGHT side — business cards */
.hero-right {
  position: relative;
  animation: fadeUp 0.9s 0.25s var(--transition) both;
}
.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-biz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  cursor: pointer;
  transition: all 0.3s var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.hero-biz-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76,175,80,0.06), rgba(245,197,24,0.03));
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-biz-card:hover {
  border-color: rgba(245,197,24,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.hero-biz-card:hover::before { opacity: 1; }
.hero-biz-card.featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(76,175,80,0.12), rgba(13,34,97,0.5));
  border-color: rgba(76,175,80,0.25);
}
.biz-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.biz-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.biz-card-desc {
  font-size: 11.5px;
  color: var(--gray-mid);
  line-height: 1.5;
}
.biz-card-arrow {
  margin-top: auto;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--gold);
  transition: all 0.2s;
}
.hero-biz-card:hover .biz-card-arrow { background: var(--gold); color: var(--navy-deep); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1s 0.8s var(--transition) both;
}
.scroll-hint span {
  font-size: 10px;
  color: var(--gray-mid);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-wheel {
  width: 24px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}

/* ─── TICKER ─── */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.ticker-inner {
  display: flex;
  gap: 60px;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--navy-deep);
}
.ticker-item i { font-size: 12px; color: var(--navy-mid); }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.section    { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-alt { background: var(--off-white); }

/* Inner page alias */
.section.section-alt { background: var(--off-white); }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Eyebrow label — shared across homepage & inner pages */
.section-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Section title */
.section-title-lg,
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  color: var(--text-dark);
  line-height: 1.0;
  letter-spacing: 1px;
}

.section-title-lg .accent,
.sec-title .a { color: var(--navy); }

.section-title-lg .green,
.sec-title .g { color: var(--green); }

.sec-sub {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 640px;
  margin-top: 12px;
}

/* SEO badge */
.seo-schema-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}

/* ============================================================
   BUSINESSES GRID
   ============================================================ */
.businesses-section { background: var(--off-white); padding: 100px 0; }

.biz-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.biz-header-left { flex: 1; }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.biz-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  position: relative;
}

.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13, 34, 97, 0.12);
  border-color: rgba(13, 34, 97, 0.15);
}

.biz-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
}

.biz-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s var(--ease);
}

.biz-card:hover .biz-card-img img { transform: scale(1.06); }

.biz-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 64, 0.7) 100%);
}

.biz-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.biz-card-body {
  padding: 22px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.biz-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.biz-card-body p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}

.biz-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-soft);
}

.biz-card-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.biz-card-icon-sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 12px;
  transition: background 0.2s, color 0.2s;
}

.biz-card:hover .biz-card-icon-sm {
  background: var(--gold);
  color: var(--navy-deep);
}

/* Featured card variant */
.biz-card.featured-card {
  grid-column: span 2;
  flex-direction: row;
}

.biz-card.featured-card .biz-card-img {
  width: 50%;
  height: auto;
  flex-shrink: 0;
}

.biz-card.featured-card .biz-card-body { padding: 32px 28px; }
.biz-card.featured-card .biz-card-body h3 { font-size: 20px; }
.biz-card.featured-card .biz-card-body p  { font-size: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-main {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  height: 520px;
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(13, 34, 97, 0.3);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.about-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
}

.about-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-badge-text strong { color: var(--white); font-size: 14px; }
.about-badge-text span   { color: var(--gray-mid); font-size: 12px; }

.about-award {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--gold);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
}

.about-award i   { font-size: 22px; color: var(--navy-deep); }
.about-award span {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.about-content { padding-right: 20px; }
.about-content .section-title-lg { margin-bottom: 24px; }

.about-lead {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-body {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-soft);
  transition: border-color 0.2s, background 0.2s;
}

.pillar:hover {
  border-color: var(--navy);
  background: rgba(13, 34, 97, 0.03);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}

.pillar-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.pillar-text span { font-size: 12px; color: var(--text-body); }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
}

.stats-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

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

.stats-headline h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stats-headline p {
  font-size: 15px;
  color: var(--gray-mid);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-block {
  background: rgba(255, 255, 255, 0.03);
  padding: 44px 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.stat-block:last-child { border-right: none; }

.stat-block::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-block:hover { background: rgba(255, 255, 255, 0.06); }
.stat-block:hover::before { opacity: 1; }

.stat-icon-lg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--gold);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-num .unit { color: var(--gold); }

.stat-lbl {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 8px;
  font-weight: 500;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership-section { background: var(--off-white); padding: 100px 0; }

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.leader-content .section-title-lg { margin-bottom: 10px; }

.leader-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.leader-title-text {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}

.leader-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.leader-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.award-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.award-pill i { color: var(--gold); font-size: 14px; }

.leader-img-wrap { position: relative; }

.leader-img-wrap img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  height: 560px;
  filter: grayscale(10%);
  transition: filter 0.4s;
}

.leader-img-wrap:hover img { filter: grayscale(0%); }

.leader-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 21, 64, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.leader-img-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* ============================================================
   CTA STRIP (homepage)
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 3.5vw, 52px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.cta-left h2 .gold { color: var(--gold); }

.cta-left p { font-size: 15px; color: rgba(255, 255, 255, 0.6); }

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 62vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: var(--navy-deep);
}

/* Diagonal accent */
.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(76, 175, 80, 0.04) 100%);
  border-left: 1px solid rgba(76, 175, 80, 0.12);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* Inner page hero inner */
.page-hero .hero-inner {
  padding: 70px 32px;
  grid-template-columns: 1.1fr 0.9fr;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--gray-mid);
}

.breadcrumb a {
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .bc-cur { color: var(--gold); }
.breadcrumb i       { font-size: 9px; }

.page-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(76,175,80,0.12);border:1px solid rgba(76,175,80,0.35);color:var(--green-bright);padding:6px 16px;border-radius:50px;font-size:11px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:20px}
.page-badge i{font-size:10px}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 22px;
  animation: fadeUp 0.8s both;
}

.page-title .accent { color: var(--gold); }
.page-title .green  { color: var(--green-bright); }

.page-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 580px;
  font-weight: 300;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.1s both;
}

/* Hero pills row (inner pages) */
.hero-pills {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s both;
}

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

.pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.pill-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.pill-lbl {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Audit scorecard widget */
.audit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.audit-card-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.audit-card-hdr h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green-bright);
  font-weight: 600;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.8s infinite;
}

.audit-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.audit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.audit-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.audit-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ar-gold   { background: rgba(245, 197, 24, 0.12); color: var(--gold); }
.ar-green  { background: rgba(76, 175, 80, 0.12);  color: var(--green); }
.ar-blue   { background: rgba(26, 52, 133, 0.4);   color: #7eb3ff; }
.ar-orange { background: rgba(255, 150, 50, 0.12); color: #ff9632; }

.audit-row-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.audit-row-name small {
  display: block;
  font-size: 10.5px;
  color: var(--gray-mid);
  font-weight: 400;
}

.audit-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.s-active { background: rgba(76, 175, 80, 0.15); color: var(--green-bright); }
.s-ready  { background: rgba(245, 197, 24, 0.12); color: var(--gold); }
.s-new    { background: rgba(100, 150, 255, 0.12); color: #7eb3ff; }

.audit-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 4px 0;
}

.audit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-footer span    { font-size: 12px; color: rgba(255, 255, 255, 0.4); }
.audit-footer strong  { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold); }

/* ============================================================
   INNER PAGE — TWO-COLUMN TEXT LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
}

.body-txt {
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text-body);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}

.check-list li i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* RBA visual card */
.rba-visual  { position: relative; }

.rba-big-card {
  background: var(--navy-deep);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(245, 197, 24, 0.15);
  position: relative;
  overflow: hidden;
}

.rba-big-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.rba-version {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.rba-version h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 2px;
}

.rba-version span {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: var(--green-bright);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.rba-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rba-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.rba-pillar:hover {
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(245, 197, 24, 0.04);
}

.rba-pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.rba-pillar-name { font-size: 12.5px; font-weight: 600; color: var(--white); }
.rba-pillar-desc { font-size: 11px; color: var(--gray-mid); line-height: 1.4; }

.float-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  border-radius: 14px;
  padding: 16px 20px;
}

.float-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--navy-deep);
  line-height: 1;
}

.float-stat .lbl {
  font-size: 10px;
  color: var(--navy-deep);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 2px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--gray-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--navy);
  transition: width 0.3s, background 0.3s;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13, 34, 97, 0.1);
  border-color: rgba(13, 34, 97, 0.15);
}

.svc-card:hover::before {
  width: 5px;
  background: var(--gold);
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.svc-card:hover .svc-icon {
  background: var(--gold);
  color: var(--navy-deep);
}

.svc-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-body);
}

.svc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.svc-tag {
  background: var(--off-white);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   DARK BAND — AUDIT TYPES
   ============================================================ */
.dark-band {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.dark-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.dark-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.dark-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.0;
}

.dark-text h2 .g { color: var(--gold); }

.dark-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.audit-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.audit-type-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 20px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.audit-type-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.audit-type-card:hover {
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(245, 197, 24, 0.04);
  transform: translateY(-3px);
}

.audit-type-card:hover::after { transform: scaleX(1); }

.at-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}

.at-name  { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.at-desc  { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

.at-badge {
  display: inline-flex;
  margin-top: 10px;
  padding: 3px 10px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: var(--green-bright);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ============================================================
   ESG CARDS
   ============================================================ */
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.esg-card {
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.esg-card:hover { transform: translateY(-5px); }

.esg-e { background: linear-gradient(135deg, #0a3d2c, #0d5c3a); border: 1px solid rgba(76, 175, 80, 0.25); }
.esg-s { background: linear-gradient(135deg, #1a2a6c, #233580); border: 1px solid rgba(100, 140, 255, 0.25); }
.esg-g { background: linear-gradient(135deg, #4a2800, #6b3a00); border: 1px solid rgba(245, 197, 24, 0.25); }

.esg-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: -10px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
}

.esg-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.esg-e .esg-icon { color: #4ade80; }
.esg-s .esg-icon { color: #7eb3ff; }
.esg-g .esg-icon { color: var(--gold); }

.esg-card h3  { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.esg-card p   { font-size: 13px; color: rgba(255, 255, 255, 0.55); line-height: 1.65; }

.esg-items {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.esg-items li {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.esg-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

/* ============================================================
   COMPLIANCE STANDARDS
   ============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.std-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}

.std-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 34, 97, 0.1);
  border-color: rgba(13, 34, 97, 0.15);
}

.std-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 1px;
}

.std-card h4 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.std-card p  { font-size: 11.5px; color: var(--text-body); line-height: 1.6; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-soft);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gray-mid);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.step.done .step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.step h4 { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.step p  { font-size: 12px; color: var(--text-body); line-height: 1.5; }

/* ============================================================
   SMETA SPOTLIGHT
   ============================================================ */
.smeta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.smeta-content .eyebrow        { color: var(--gold); }
.smeta-content .eyebrow::before { background: var(--gold); }

.smeta-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.smeta-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--off-white);
  border: 1px solid var(--gray-soft);
  border-radius: 14px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.smeta-pillar:hover {
  border-color: rgba(13, 34, 97, 0.2);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(13, 34, 97, 0.07);
}

.smeta-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.smeta-pillar strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 4px; }
.smeta-pillar span   { font-size: 13px; color: var(--text-body); line-height: 1.5; }

.smeta-visual {
  background: var(--navy-deep);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(245, 197, 24, 0.15);
  position: relative;
  overflow: hidden;
}

.smeta-visual::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.smeta-hdr { margin-bottom: 24px; }

.smeta-hdr h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
}

.smeta-hdr p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.smeta-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.smeta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.smeta-item:hover {
  border-color: rgba(245, 197, 24, 0.2);
  background: rgba(245, 197, 24, 0.04);
}

.smeta-item-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
}

.smeta-item-name { font-size: 13.5px; color: rgba(255, 255, 255, 0.8); font-weight: 500; }

.smeta-item-name small {
  display: block;
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 400;
}

.smeta-item i {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  transition: color 0.2s;
}

.smeta-item:hover i { color: var(--gold); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--navy); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  gap: 16px;
  user-select: none;
}

.faq-q i {
  color: var(--navy);
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-body { max-height: 400px; }

.faq-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================================
   CTA BAND (inner pages)
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-row2 h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-row2 h2 .g { color: var(--gold); }
.cta-row2 p     { font-size: 15px; color: rgba(255, 255, 255, 0.6); }

.cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: var(--gray-mid);
  padding-top: 80px;
}

.footer-grid,
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img { height: 48px; margin-bottom: 20px; }

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============================================================
   AI ASSISTANT WIDGET
   ============================================================ */
.ai-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.ai-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(13, 34, 97, 0.4);
  transition: transform 0.3s var(--ease);
  position: relative;
}

.ai-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: aiPulse 2.5s infinite;
}

.ai-toggle:hover { transform: scale(1.08); }

.ai-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy-deep);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(245, 197, 24, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.ai-widget:hover .ai-tooltip { opacity: 1; }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
/* Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
}

.mobile-overlay.open {
  display: block;
}

/* Drawer */
.mobile-drawer {
  position: fixed;
  
  right: -100%;          /* hidden off-screen to the right */
  width: 300px;
  
  background: var(--navy-deep, #07153f);
  z-index: 1200;
  overflow-y: auto;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
   top: 72px;        /* match your header height exactly */
  height: calc(100% - 72px);
}

.mobile-drawer.open {
  right: 0;              /* slides in */
}

/* Drawer header */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
  color: var(--gold, #f5c518);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}

.mobile-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.mobile-close:hover {
  color: var(--gold, #f5c518);
}

/* Nav links and buttons */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 2px;
}

.mobile-nav > a,
.mobile-nav > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav > a:hover,
.mobile-nav > button:hover {
  background: rgba(245, 197, 24, 0.08);
  color: var(--gold, #f5c518);
}

/* Sub-menu */
.mobile-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px 16px;
  gap: 2px;
}

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

.mobile-sub a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.mobile-sub a:hover {
  background: rgba(245, 197, 24, 0.08);
  color: var(--gold, #f5c518);
}

/* Chevron rotation on open */
.mobile-nav button i {
  transition: transform 0.3s;
  font-size: 11px;
}

.mobile-nav button:has(+ .mobile-sub.open) i {
  transform: rotate(180deg);
}
.mobile-footer,
.mob-ft {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-footer .btn-primary { width: 100%; text-align: center; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .biz-grid          { grid-template-columns: repeat(2, 1fr); }
  .biz-card.featured-card { grid-column: span 2; }
  .mega-menu         { width: 600px; }
  .mega-grid         { grid-template-columns: repeat(3, 1fr); }
  .svc-grid,
  .audit-types-grid  { grid-template-columns: repeat(2, 1fr); }
  .standards-grid    { grid-template-columns: repeat(2, 1fr); }
  .dark-band-inner   { grid-template-columns: 1fr; }
  .page-hero .hero-inner { grid-template-columns: 1fr; }
  .hero-right        { display: none; }
}

@media (max-width: 900px) {
  nav,
  .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }

  .hero-inner        { grid-template-columns: 1fr; gap: 50px; }
  .hero-right        { display: none; }
  .about-grid,
  .leadership-grid,
  .two-col,
  .smeta-wrap        { grid-template-columns: 1fr; }
  .about-badge-float { bottom: -16px; right: 16px; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .cta-inner,
  .cta-row2          { flex-direction: column; text-align: center; }
  .cta-buttons,
  .cta-btns          { flex-wrap: wrap; justify-content: center; }
  .footer-grid,
  .ft-grid           { grid-template-columns: 1fr 1fr; gap: 40px; }
  .header-cta        { gap: 8px; }
  .esg-grid          { grid-template-columns: 1fr; }
  .steps             { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps::before     { display: none; }
}
@media (max-width: 768px) {
  .biz-card-body {
    padding: 16px;
  }

  /* Push Learn More to bottom */
  .biz-card-body > *:last-child {
    margin-top: auto;
  }

  /* OR if cards are too tall, remove fixed height forcing */
  .biz-card {
    height: auto;
    min-height: unset;
  }
}
@media (max-width: 600px) {
  .biz-grid,
  .svc-grid,
  .audit-types-grid,
  .standards-grid    { grid-template-columns: 1fr; }
  .biz-card.featured-card { flex-direction: column; }
  .biz-card.featured-card .biz-card-img { width: 100%; height: 200px; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .footer-grid,
  .ft-grid,
  .rba-pillars       { grid-template-columns: 1fr; }
  .hero-stats        { flex-wrap: wrap; gap: 24px; }
  .cta-buttons       { flex-direction: column; }
}

/* Schema / SEO structured data hint visual */
.seo-schema-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-bright);
  background: rgba(76,175,80,0.08);
  border: 1px solid rgba(76,175,80,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}#whatsapp-float-icon {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: var(--whatsapp);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
} /* Hover Effects */
#whatsapp-float-icon:hover {
  transform: scale(1.1);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.3);
}
#whatsapp-float-icon i {
  transition: transform 0.3s ease;
}
#whatsapp-float-icon:hover i {
  transform: rotate(15deg);
} /* Pulsating Effect */
#whatsapp-float-icon::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}
.notification-badge {
  position:absolute;
  top:-5px;
  right:-5px;
  background-color:red;
  color:#fff;
  font-size:12px;
  font-weight:700;
  width:20px;
  height:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:1s infinite bounce
}
@keyframes bounce {
  0%,
  100% {
    transform:translateY(0)
  }
  50% {
    transform:translateY(-5px)
  }
}
 