/* ============================================================
   A-Brokers v2 — Premium Corporate Stylesheet
   Brand: #ce1212 Red · #1f1f24 Dark · #37373f Headings
   Fonts: Copperplate (logo) · Inter (heads) · Roboto (body)
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Brand Red */
  --red:         #ce1212;
  --red-dark:    #9E0B0F;
  --red-logo:    #ED1C24;
  --red-dim:     rgba(206,18,18,.10);
  --red-dim2:    rgba(206,18,18,.06);

  /* Dark backgrounds */
  --dark:        #1f1f24;
  --dark-mid:    #2a2a30;
  --dark-light:  #333338;

  /* Text & heading */
  --head:        #37373f;
  --text:        #212529;
  --muted:       #6b7280;
  --logo-gray:   #58595B;

  /* Neutrals */
  --white:       #FFFFFF;
  --gray-50:     #f8fafc;
  --gray-100:    #f2f2f2;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-800:    #1f2933;

  /* Fonts */
  --font-logo:  'Copperplate', 'Copperplate Gothic Bold', 'Copperplate Gothic Light', Georgia, serif;
  --font-head:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:  'Roboto', 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --sec-py:    56px;
  --sec-py-sm: 36px;

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs:  0 1px 4px  rgba(0,0,0,.06);
  --sh-sm:  0 2px 12px rgba(0,0,0,.08);
  --sh-md:  0 6px 28px rgba(0,0,0,.11);
  --sh-lg:  0 12px 48px rgba(0,0,0,.15);
  --sh-xl:  0 20px 64px rgba(31,31,36,.24);

  /* Transitions */
  --ease:   cubic-bezier(.4,0,.2,1);
  --t:      .28s var(--ease);
  --t-fast: .18s var(--ease);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:visited { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.sec-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3vw, 2.375rem);
  font-weight: 800;
  color: var(--head);
  line-height: 1.22;
  margin-bottom: 1rem;
}

.sec-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.sec-body {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.sec-pad { padding: var(--sec-py) 0; }
.bg-light-section { background: var(--gray-100); }
.sec-header { margin-bottom: .5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--r-sm);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.btn-brand-primary {
  background: var(--red);
  color: var(--white);
  padding: .75rem 1.625rem;
  border: 2px solid var(--red);
}
.btn-brand-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206,18,18,.35);
}

.btn-outline-brand {
  background: transparent;
  color: var(--head);
  padding: .75rem 1.625rem;
  border: 2px solid var(--head);
}
.btn-outline-brand:hover {
  background: var(--head);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(55,55,63,.2);
}

.btn-nav-cta {
  background: var(--red);
  color: var(--white);
  padding: .55rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 700;
  border: 2px solid var(--red);
}
.btn-nav-cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(206,18,18,.35);
}

.btn-hero-primary {
  background: var(--red);
  color: var(--white);
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: 2px solid var(--red);
}
.btn-hero-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(206,18,18,.4);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-cta-white {
  background: var(--white);
  color: var(--red);
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  border: 2px solid var(--white);
}
.btn-cta-white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: .875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,.55);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .8125rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.topbar-left i  { color: var(--red); font-size: .75rem; }
.topbar-sep     { color: rgba(255,255,255,.22); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar-right a {
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--t-fast);
}
.topbar-right a:hover { color: var(--white); }
.topbar-right i { color: var(--red); font-size: .75rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.navbar {
  padding: .875rem 0;
  background: transparent !important;
  /* Override Bootstrap 5.3 navbar CSS variables */
  --bs-navbar-color:              var(--gray-700);
  --bs-navbar-hover-color:        var(--head);
  --bs-navbar-active-color:       var(--head);
  --bs-navbar-brand-color:        var(--dark);
  --bs-navbar-brand-hover-color:  var(--dark);
  --bs-nav-link-color:            var(--gray-700);
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.logo-mark {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.logo-a    { color: var(--red); }
.logo-rest { color: var(--logo-gray); }

.logo-ltd {
  font-family: var(--font-head);
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-left: .35rem;
  align-self: center;
}

/* ── Nav Links ── */
.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: .5rem .75rem !important;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.navbar-nav .nav-link:visited {
  color: var(--gray-700) !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.nav-link-active {
  color: var(--head) !important;
  background: var(--gray-100);
}
.navbar-nav .nav-link.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: var(--r-pill);
}

.navbar-nav .dropdown-toggle::after {
  border: none;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: .6rem;
  margin-left: .35rem;
  vertical-align: middle;
}

/* Mobile Toggler */
.nav-toggler-icon { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.nav-toggler-icon span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--t); }
.navbar-toggler:focus { box-shadow: none; }

/* ── Mega Menu ── */
.has-megamenu { position: static !important; }

.megamenu {
  left: 0 !important;
  right: 0 !important;
  width: 100%;
  border: none;
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 0;
  background: var(--white);
  margin-top: 0 !important;
}

.mega-item { padding: .25rem .5rem; }

.mega-item .mega-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--red-dim);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  margin-bottom: .75rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.mega-item:hover .mega-icon { background: var(--red); color: var(--white); }

.mega-item h6 { font-size: .9375rem; font-weight: 700; color: var(--head); margin-bottom: .35rem; }
.mega-item h6 a { color: inherit; }
.mega-item h6 a:hover { color: var(--red); }
.mega-item p  { font-size: .8125rem; color: var(--muted); line-height: 1.6; margin-bottom: .6rem; }

.mega-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.mega-tags span {
  font-size: .7rem; font-weight: 600;
  background: var(--gray-100); color: var(--gray-700);
  border-radius: var(--r-pill); padding: .15rem .6rem;
}

.mega-footer {
  border-top: 1px solid var(--gray-200);
  padding: .875rem 1.5rem;
  margin: 0 -1rem;
}
.mega-all-link {
  font-size: .875rem; font-weight: 600; color: var(--head);
  display: inline-flex; align-items: center; gap: .5rem;
  transition: gap var(--t-fast), color var(--t-fast);
}
.mega-all-link:hover { color: var(--red); gap: .75rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero-bg-layer { position: absolute; inset: 0; pointer-events: none; }

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Accent shapes - red tones */
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero-shape-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(206,18,18,.30) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.hero-shape-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(158,11,15,.18) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}
.hero-shape-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(206,18,18,.12) 0%, transparent 70%);
  top: 50%; left: 30%;
}
.hero-shape-4 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  top: 20%; right: 35%;
}

.hero-container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(206,18,18,.15);
  border: 1px solid rgba(206,18,18,.35);
  color: rgba(255,200,200,.9);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .45rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--red); font-size: .9rem; }

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.375rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.hero-heading-em {
  font-style: italic;
  color: var(--red);
}

.hero-subtext {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.75rem; }

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-stat { display: flex; flex-direction: column; flex: 1; min-width: 80px; padding: 0 1.25rem; }
.hero-stat strong {
  font-size: 1.625rem; font-weight: 800; color: var(--white); line-height: 1;
  font-family: var(--font-head);
}
.hero-stat span { font-size: .75rem; color: rgba(255,255,255,.52); font-weight: 500; margin-top: .25rem; }
.stat-sup { font-size: .875rem; font-family: var(--font-body); color: var(--red); }
.hero-stat-line { width: 1px; height: 40px; background: rgba(255,255,255,.14); flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; width: 380px; height: 340px; }

.hv-card {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.125rem 1.375rem;
  display: flex; align-items: center; gap: .875rem;
  color: var(--white);
  box-shadow: var(--sh-xl);
  transition: transform var(--t);
}
.hv-card:hover { transform: translateY(-4px); }

.hv-card-main { bottom: 20px; left: 0; right: 0; max-width: 320px; margin: 0 auto; }
.hv-card-main .hv-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.25rem; flex-shrink: 0;
}
.hv-card-main .hv-card-text strong { display: block; font-size: .9375rem; font-weight: 700; }
.hv-card-main .hv-card-text span  { font-size: .8125rem; color: rgba(255,255,255,.6); }

.hv-card-top    { top: 0;    left: 0;  width: 200px; font-size: .8125rem; gap: .75rem; }
.hv-card-bottom { top: 110px; right: 0; width: 200px; font-size: .8125rem; gap: .75rem; }
.hv-card-float  { top: 60px; left: 20px; width: 185px; font-size: .8125rem; gap: .75rem;
                  animation: float 4s ease-in-out infinite; }

.hv-card-top i, .hv-card-bottom i, .hv-card-float i { color: var(--red); font-size: 1.375rem; flex-shrink: 0; }
.hv-card-top strong, .hv-card-bottom strong, .hv-card-float strong { display: block; font-size: .875rem; font-weight: 700; }
.hv-card-top span, .hv-card-bottom span, .hv-card-float span { font-size: .75rem; color: rgba(255,255,255,.58); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; transition: opacity var(--t); z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--red);
  border-radius: var(--r-pill); animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(10px); opacity: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.125rem 0;
}

.trust-items {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}

.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: var(--gray-700);
  padding: .35rem 1.375rem; white-space: nowrap;
}
.trust-item i { color: var(--red); font-size: 1rem; }

.trust-sep { width: 1px; height: 22px; background: var(--gray-200); flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.svc-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.625rem;
  height: 100%;
  transition: all var(--t);
  position: relative; overflow: hidden;
  text-decoration: none; color: var(--text);
}
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.svc-card:hover {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
  color: var(--text);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-card-featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.svc-card-featured::before { background: var(--red); }
.svc-card-featured h3 { color: var(--white); }
.svc-card-featured p  { color: rgba(255,255,255,.72); }
.svc-card-featured:hover { color: var(--white); background: var(--dark-mid); }
.svc-card-featured .svc-tags li { background: rgba(255,255,255,.1); color: rgba(255,255,255,.78); }
.svc-card-featured .svc-arrow   { background: rgba(255,255,255,.08); color: var(--red); }
.svc-card-featured:hover .svc-arrow { background: var(--red); color: var(--white); }

.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.125rem; flex-shrink: 0;
}
.svc-icon-red   { background: var(--red-dim); color: var(--red); }
.svc-icon-dark  { background: rgba(31,31,36,.08); color: var(--dark); }
.svc-icon-muted { background: var(--gray-100); color: var(--gray-700); }

/* Re-map icon classes to brand palette */
.svc-icon-blue  { background: var(--red-dim);  color: var(--red); }
.svc-icon-navy  { background: rgba(31,31,36,.08); color: var(--dark); }
.svc-icon-gold  { background: var(--red-dim2); color: var(--red-dark); }
.svc-icon-green { background: rgba(31,31,36,.06); color: var(--gray-700); }

.svc-card h3 { font-size: 1.075rem; font-weight: 700; color: var(--head); margin-bottom: .55rem; }
.svc-card p  { font-size: .9375rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; flex: 1; }

.svc-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.25rem; }
.svc-tags li {
  font-size: .7rem; font-weight: 600;
  background: var(--gray-100); color: var(--gray-700);
  border-radius: var(--r-pill); padding: .2rem .65rem;
}

.svc-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); color: var(--head);
  font-size: .8rem; margin-top: auto; align-self: flex-start;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.svc-card:hover .svc-arrow { background: var(--red); color: var(--white); transform: translateX(4px); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-visual { position: relative; }

.about-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.about-img { width: 100%; height: 420px; object-fit: cover; }

.about-img-fallback {
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: .75rem;
  height: 420px;
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  color: var(--white); border-radius: var(--r-xl);
}
.about-img-fallback i     { font-size: 4rem; color: var(--red); opacity: .7; }
.about-img-fallback span  { font-size: 1.25rem; font-weight: 700; }
.about-img-fallback small { color: rgba(255,255,255,.55); font-size: .875rem; }

.about-badge {
  position: absolute;
  display: flex; align-items: center; gap: .75rem;
  background: var(--white); border-radius: var(--r-md);
  padding: .875rem 1.25rem; box-shadow: var(--sh-lg);
}

.about-badge-fsc {
  bottom: -24px; left: 24px;
  border-left: 4px solid var(--red);
}
.about-badge-fsc i      { color: var(--red); font-size: 1.5rem; }
.about-badge-fsc strong { display: block; font-size: .9rem; font-weight: 700; color: var(--head); }
.about-badge-fsc span   { font-size: .75rem; color: var(--muted); }

.about-badge-years {
  top: -20px; right: 24px;
  flex-direction: column; align-items: center; gap: .2rem; text-align: center;
  border-top: 4px solid var(--red); min-width: 80px;
}
.about-badge-years strong {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--head); line-height: 1;
}
.about-badge-years sup  { font-size: 1rem; color: var(--red); }
.about-badge-years span { font-size: .75rem; color: var(--muted); font-weight: 600; }

.about-checklist { display: flex; flex-direction: column; gap: .625rem; margin: 1.25rem 0; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .9375rem; color: var(--gray-700);
}
.about-checklist li i { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: .15rem; }

.about-ctas { display: flex; flex-wrap: wrap; gap: .875rem; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.625rem;
  height: 100%;
  transition: all var(--t);
}
.why-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(206,18,18,.1);
  transform: translateY(-5px);
}

.why-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; margin-bottom: 1.25rem;
}
.why-blue  { background: var(--red-dim);           color: var(--red); }
.why-green { background: rgba(31,31,36,.07);        color: var(--dark); }
.why-gold  { background: var(--red-dim2);           color: var(--red-dark); }
.why-red   { background: rgba(206,18,18,.12);       color: var(--red); }

.why-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--head); margin-bottom: .625rem; }
.why-card p  { font-size: .9375rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--dark);
  padding: 3rem 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.stats-grid {
  position: relative;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}

.stat-item { flex: 1; min-width: 160px; text-align: center; padding: 1.5rem 2rem; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-sfx  { font-size: 1.75rem; color: var(--red); font-weight: 700; }
.stat-lbl  {
  display: block; font-size: .8125rem; color: rgba(255,255,255,.5);
  font-weight: 500; margin-top: .5rem; letter-spacing: .04em; text-transform: uppercase;
}
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ============================================================
   GOVERNANCE SECTION
   ============================================================ */
.gov-items { display: flex; flex-direction: column; gap: 1.125rem; margin-top: 1.5rem; }

.gov-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.gov-item:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(206,18,18,.1); }

.gov-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--red-dim); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.0625rem; flex-shrink: 0;
}

.gov-item h4 { font-size: .9375rem; font-weight: 700; color: var(--head); margin-bottom: .2rem; }
.gov-item p  { font-size: .875rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Gov Certificate Card */
.gov-visual { position: relative; display: flex; justify-content: center; padding: 2.5rem 1rem; }

.gov-cert-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  width: 100%; max-width: 360px;
  border: 1.5px solid var(--gray-200);
}
.gov-cert-seal {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 2.25rem; text-align: center;
}
.gov-cert-seal i {
  font-size: 3.75rem; color: var(--red);
  filter: drop-shadow(0 4px 12px rgba(206,18,18,.4));
}
.gov-cert-body { padding: 1.625rem; text-align: center; }
.gov-cert-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.gov-cert-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 800; color: var(--head); margin: .5rem 0 1rem;
}
.gov-cert-badge {
  display: inline-block;
  background: var(--red-dim); border: 1px solid rgba(206,18,18,.25);
  border-radius: var(--r-pill); padding: .4rem 1.25rem; margin-bottom: .875rem;
}
.gov-cert-badge strong { font-size: .875rem; color: var(--head); font-weight: 700; }
.gov-cert-body p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.gov-cert-dots { display: flex; justify-content: center; gap: .375rem; margin-top: 1rem; }
.gov-cert-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); }
.gov-cert-dots span:nth-child(2) { background: var(--red); }

.gov-floating-badge {
  position: absolute; top: 1.5rem; right: 0;
  display: flex; align-items: center; gap: .5rem;
  background: var(--dark); color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  font-size: .75rem; font-weight: 700; box-shadow: var(--sh-md);
}
.gov-floating-badge i { color: var(--red); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  background: var(--dark);
  padding: 3rem 0;
  overflow: hidden;
}
.cta-bg-layer {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(206,18,18,.18) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(158,11,15,.1) 0%, transparent 60%);
}

.cta-icon {
  font-size: 2.25rem; color: var(--red); margin-bottom: .75rem;
  filter: drop-shadow(0 4px 16px rgba(206,18,18,.45));
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800; color: var(--white); margin-bottom: .75rem;
}
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,.68);
  max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.7;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-bottom: 1.75rem;
}
.cta-note { font-size: .85rem; color: rgba(255,255,255,.45); }
.cta-note i { color: var(--red); }

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insight-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  height: 100%;
  display: flex; flex-direction: column;
  transition: all var(--t);
}
.insight-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(206,18,18,.1);
  transform: translateY(-5px);
}

.insight-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--red-dim); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; margin-bottom: 1rem;
}
.insight-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-dim); border-radius: var(--r-pill);
  padding: .2rem .65rem; margin-bottom: .875rem; display: inline-block;
}
.insight-card h3 {
  font-size: .9375rem; font-weight: 700; color: var(--head);
  line-height: 1.45; margin-bottom: .75rem;
}
.insight-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.insight-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 700; color: var(--red);
  transition: gap var(--t-fast), color var(--t-fast); margin-top: auto;
}
.insight-link:hover { color: var(--red-dark); gap: .65rem; }

/* ============================================================
   TIMELINE  (about.php)
   ============================================================ */
.ab-timeline { position: relative; padding-left: 2rem; }
.ab-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--dark));
  border-radius: 3px;
}
.ab-tl-item {
  position: relative;
  margin-bottom: 2.25rem;
  padding-left: 1.5rem;
}
.ab-tl-item::before {
  content: '';
  position: absolute;
  left: -2.15rem; top: .35rem;
  width: 14px; height: 14px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--red);
}
.ab-tl-year {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 20px;
  margin-bottom: .5rem;
}
.ab-tl-body h4 { font-size: 1rem; font-weight: 700; color: var(--head); margin-bottom: .35rem; }
.ab-tl-body p  { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ============================================================
   FAQ  (index.php, service pages)
   ============================================================ */
.faq-section .accordion-button { font-weight: 600; color: var(--head); }
.faq-section .accordion-button:not(.collapsed) { color: var(--red); background: var(--red-dim2); }
.faq-section .accordion-button::after { filter: none; }
.faq-section .accordion-button:not(.collapsed)::after { filter: invert(22%) sepia(90%) saturate(3000%) hue-rotate(340deg); }
.faq-section .accordion-body { font-size: .95rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); }
.footer-body { padding: 5rem 0 3rem; }

/* Footer Logo — text version matching topbar brand */
.footer-logo { display: inline-block; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-mark {
  font-family: var(--font-logo);
  font-size: 1.375rem; font-weight: bold;
  letter-spacing: .14em; text-transform: uppercase; line-height: 1;
}
.footer-logo-mark .logo-a    { color: var(--red); }
.footer-logo-mark .logo-rest { color: rgba(255,255,255,.7); }

.footer-tagline {
  font-style: italic; font-size: 1rem;
  color: rgba(255,255,255,.62); line-height: 1.5; margin-bottom: .875rem;
}
.footer-desc {
  font-size: .875rem; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 1.25rem;
}
.footer-fsc-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: .875rem 1.125rem;
}
.footer-fsc-badge i      { color: var(--red); font-size: 1.25rem; }
.footer-fsc-badge strong { display: block; font-size: .8125rem; font-weight: 700; color: var(--white); }
.footer-fsc-badge small  { font-size: .75rem; color: rgba(255,255,255,.42); }

.footer-col-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.52);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-links a:hover { color: var(--white); padding-left: .35rem; }

.footer-contact { display: flex; flex-direction: column; gap: .875rem; }
.fc-item { display: flex; align-items: flex-start; gap: .875rem; }
.fc-item i { color: var(--red); font-size: 1rem; margin-top: .2rem; width: 18px; flex-shrink: 0; }
.fc-item strong { display: block; font-size: .8125rem; font-weight: 700; color: var(--white); margin-bottom: .1rem; }
.fc-item span, .fc-item a { font-size: .875rem; color: rgba(255,255,255,.52); line-height: 1.55; }
.fc-item a:hover { color: var(--red); }

.footer-bottom {
  background: rgba(0,0,0,.28); padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem; margin-bottom: .875rem;
}
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.38); margin: 0; }
.footer-bottom-nav { display: flex; gap: 1.5rem; }
.footer-bottom-nav a { font-size: .8125rem; color: rgba(255,255,255,.38); transition: color var(--t-fast); }
.footer-bottom-nav a:hover { color: var(--red); }
.footer-disclaimer {
  font-size: .75rem; color: rgba(255,255,255,.22); line-height: 1.6; margin: 0;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: .875rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; right: 1.5rem; bottom: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--t); z-index: 900;
  border: 2px solid transparent;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  background: var(--red-dark); color: var(--white);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(206,18,18,.4);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 991.98px) {
  .sec-pad { padding: var(--sec-py-sm) 0; }
  .hero-section { padding: 80px 0 60px; min-height: auto; }
  .hero-heading { font-size: clamp(2rem, 6vw, 2.75rem); }
  .hero-stats   { padding: 1rem 1.25rem; }
  .hero-stat    { padding: 0 .75rem; }
  .hero-stat strong { font-size: 1.375rem; }
  .about-visual { margin-bottom: 2.5rem; }
  .about-badge-fsc   { bottom: -20px; left: 12px; }
  .about-badge-years { top: -16px; right: 12px; }
  .stats-section { padding: 3.5rem 0; }
  .stat-item { padding: 1rem 1.5rem; min-width: 140px; }
  .gov-visual  { display: none; }
  .trust-sep   { display: none; }
  .trust-items { justify-content: flex-start; gap: .25rem 0; }
  .megamenu .container { padding: 0 1.25rem; }

  /* Leadership: 3 across on tablet */
  .leader-photo-wrap { height: 180px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 767.98px) {
  :root { --sec-py: 32px; }

  .topbar-left { font-size: .75rem; }
  .navbar { padding: .625rem 0; }

  #navMenu {
    background: var(--white);
    border-top: 2px solid var(--gray-200);
    padding: 1rem 0; margin-top: .5rem;
  }
  .navbar-nav .nav-link { padding: .625rem 1rem !important; }
  .btn-nav-cta { margin: .5rem 1rem 0; width: fit-content; }

  .hero-section   { padding: 72px 0 48px; }
  .hero-heading   { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .hero-subtext   { font-size: .9375rem; }
  .btn-hero-primary,
  .btn-hero-outline { padding: .75rem 1.5rem; font-size: .9375rem; width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat  { flex: 0 1 calc(50% - .5px); padding: .875rem 1rem; }
  .hero-stat-line { display: none; }

  .stat-divider { display: none; }
  .stats-grid   { flex-wrap: wrap; }
  .stat-item    { flex: 0 1 50%; padding: 1.5rem 1rem; }

  .trust-items  { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .trust-item   { padding: .25rem .5rem; }

  .about-img          { height: 280px; }
  .about-badge-fsc    { position: static; margin-top: 1rem; }
  .about-badge-years  { display: none; }

  .cta-section { padding: 2.5rem 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-cta-white,
  .btn-cta-outline { width: 100%; max-width: 320px; justify-content: center; }

  .footer-body { padding: 3rem 0 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-nav   { justify-content: center; }
  .back-to-top { right: 1rem; bottom: 1.25rem; }

  /* Leadership: 1 column on mobile */
  .leader-photo-wrap { height: 220px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE
   ============================================================ */
@media (max-width: 479.98px) {
  .hero-badge { font-size: .7rem; }
  .hero-stat  { flex: 0 1 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .hero-shape { display: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .topbar, .site-header, .hero-section, .cta-section, .back-to-top, .site-footer { display: none; }
  body { color: #000; background: #fff; }
}

/* ============================================================
   NAV ADDITIONS — Get a Quote + Online Dropdown
   ============================================================ */
.btn-nav-quote {
  background: transparent;
  color: var(--red);
  padding: .55rem 1.125rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 700;
  border: 2px solid var(--red);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--t-fast);
}
.btn-nav-quote:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(206,18,18,.3);
}

/* Online Apps dropdown */
.online-dropdown {
  min-width: 260px;
  border: none;
  border-top: 3px solid var(--red);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--sh-lg);
  padding: .5rem;
}

.xenial-item {
  display: flex !important;
  align-items: center;
  gap: .875rem;
  padding: .75rem 1rem !important;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.xenial-item:hover { background: var(--gray-100) !important; }

.xenial-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.xenial-text { display: flex; flex-direction: column; }
.xenial-text strong { font-size: .9375rem; font-weight: 700; color: var(--head); }
.xenial-text span   { font-size: .78rem; color: var(--muted); }

/* ============================================================
   HERO — Red Square Icon + Video Button
   ============================================================ */
/* Shield icon on red square */
.hv-icon-shield {
  background: var(--red);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 1.4rem;
}

.btn-video-trigger {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ============================================================
   ABOUT — hero-img float animation
   ============================================================ */
.about-img-dark {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 380px;
}

.about-img-float {
  width: auto;
  max-height: 360px;
  object-fit: contain;
  animation: heroFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(206,18,18,.25));
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  30%       { transform: translateY(-14px) rotate(.4deg); }
  60%       { transform: translateY(-6px) rotate(-.3deg); }
}

/* ============================================================
   LEADERSHIP — Team cards (identical structure to original)
   ============================================================ */

.team-card {
  background: var(--white);
  box-shadow: 0 0 30px rgba(0,0,0,.08);
  overflow: hidden;
  text-align: center;
  border-radius: var(--r-md);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 40px rgba(206,18,18,.15);
}

/* Photo area */
.team-photo {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.team-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform var(--t);
}
.team-card:hover .team-photo img { transform: scale(1.05); }

/* Wave mask — same SVG file as original site */
.team-photo::after {
  position: absolute;
  content: "";
  left: -1px; right: -1px; bottom: -1px;
  height: 100%;
  background-color: var(--white);
  -webkit-mask: url("../../assets/img/team-shape.svg") no-repeat center bottom;
          mask: url("../../assets/img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
          mask-size: contain;
  z-index: 1;
  pointer-events: none;
}

/* Social icons — slide in from right on hover */
.team-social {
  position: absolute;
  right: -100%;
  top: 24px;
  opacity: 0;
  border-radius: var(--r-sm);
  transition: right .45s var(--ease), opacity .45s var(--ease);
  background: rgba(31,31,36,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 4px 2px;
}
.team-card:hover .team-social { right: 8px; opacity: 1; }

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  color: rgba(255,255,255,.72);
  font-size: .9375rem;
  transition: color var(--t-fast);
}
.team-social a:hover { color: var(--red); }

/* Info section */
.team-info {
  padding: 1.125rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.team-info h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--head);
  margin-bottom: .25rem;
}
.team-info > span {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--red);
  margin-bottom: .75rem;
}
.team-info p {
  font-size: .875rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1rem;
  flex: 1;
}
.team-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--red);
  transition: gap var(--t-fast), color var(--t-fast);
  align-self: center;
}
.team-more:hover { color: var(--red-dark); gap: .65rem; }

/* Bio collapse/expand */
.bio {
  overflow: hidden;
  transition: max-height .4s ease;
}
.bio.collapsed {
  max-height: 4.8em;
}
.bio p { margin-bottom: .625rem; }
.bio p:last-child { margin-bottom: 0; }

.read-more {
  cursor: pointer;
  user-select: none;
}

/* ============================================================
   COMPLIANCE SECTION
   ============================================================ */
.compliance-section {
  background: var(--white);
  padding: 5rem 0 4rem;
}

.compliance-section .testimonial-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  border: 1px solid var(--gray-200);
}

.compliance-section .testimonial-content {
  border-left: 4px solid var(--red);
  padding-left: 1.5rem;
}

.compliance-section .testimonial-content p {
  font-style: italic;
  color: var(--muted);
  font-size: .9375rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.compliance-section .testimonial-content h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--head);
  margin: 0;
}

.compliance-section .quote-icon-left,
.compliance-section .quote-icon-right {
  color: var(--red);
  opacity: .4;
  font-size: 1.5rem;
  line-height: 0;
}
.compliance-section .quote-icon-left { position: relative; left: -4px; }
.compliance-section .quote-icon-right { position: relative; right: -4px; transform: scale(-1,-1); }

/* Oval image */
.compliance-section .testimonial-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--red);
  display: block;
  margin: 0 auto;
}

/* Pagination */
.compliance-section .swiper-pagination {
  margin-top: 2rem;
  position: relative !important;
  bottom: auto !important;
}
.compliance-section .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(0,0,0,.18);
  opacity: 1;
}
.compliance-section .swiper-pagination-bullet-active {
  background: var(--red);
}
.comp-nav-btn::after { font-size: .875rem !important; font-weight: 700 !important; }
.comp-nav-btn:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.swiper-button-prev.comp-nav-btn { left: -58px !important; }
.swiper-button-next.comp-nav-btn { right: -58px !important; }

@media (max-width: 1199px) {
  .swiper-button-prev.comp-nav-btn { left: 0 !important; }
  .swiper-button-next.comp-nav-btn { right: 0 !important; }
  .comp-card { padding: 2rem; }
}
@media (max-width: 991px) {
  .comp-card { grid-template-columns: 1fr; }
  .comp-card-right { height: 200px; }
}
@media (max-width: 575px) {
  .compliance-section { padding: 3.5rem 0 3rem; }
  .comp-card { padding: 1.5rem; gap: 1rem; }
  .comp-slide-num { font-size: 4.5rem; }
  .comp-card-left h3 { font-size: 1.125rem; }
}

/* ============================================================
   SERVICES SHOWCASE SWIPER
   ============================================================ */
.svc-swiper-section {
  background: var(--dark);
  padding: 2rem 0 0;
  overflow: hidden;
}
.svc-swiper-track { position: relative; margin-top: 1rem; }

.event-item {
  background-size: cover;
  background-position: center;
  min-height: 380px;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.event-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.90) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.1) 100%
  );
  transition: background .4s ease;
}
.event-item:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.95) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.15) 100%
  );
}

.event-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  transition: transform .35s ease;
}
.event-item:hover .event-content { transform: translateY(-4px); }

.event-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.event-item h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.3;
}
.event-item .description {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.event-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(206,18,18,.35);
  padding-bottom: 2px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.event-link:hover { color: #fff; gap: .75rem; }

/* Pagination */
.svc-pagination.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  padding: 1.75rem 0;
  display: flex;
  justify-content: center;
  gap: .4rem;
}
.svc-swiper-section .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.25);
  opacity: 1;
  border-radius: 4px;
  transition: width .3s ease, background .3s ease;
}
.svc-swiper-section .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--red);
}

/* Nav arrows */
.svc-nav-btn {
  width: 46px !important; height: 46px !important;
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 50% !important;
  color: rgba(255,255,255,.85) !important;
  transition: background var(--t), border-color var(--t) !important;
  top: calc(50% - 30px) !important;
}
.svc-nav-btn::after { font-size: .875rem !important; font-weight: 700 !important; }
.svc-nav-btn:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.swiper-button-prev.svc-nav-btn { left: 16px !important; }
.swiper-button-next.svc-nav-btn { right: 16px !important; }

@media (max-width: 575px) {
  .event-item { min-height: 300px; }
  .event-content { padding: 1rem 1.125rem 1.25rem; }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal-content {
  background: #000;
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.video-modal-header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-modal-brand {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.video-modal-brand .logo-a    { color: var(--red); }
.video-modal-brand .logo-rest { color: rgba(255,255,255,.75); }

.video-player {
  width: 100%;
  max-height: 75vh;
  display: block;
  background: #000;
}

/* ══════════════════════════════════════════
   INNER PAGE HERO BANNER
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2c34 100%);
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("../img/hero-img.png") center/cover no-repeat;
  opacity: .07;
}
.page-hero .container { position: relative; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(206,18,18,.15);
  border: 1px solid rgba(206,18,18,.3);
  color: var(--red); font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .4rem .9rem; border-radius: 50px; margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.25;
}
.page-hero .lead {
  color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 640px;
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.page-hero-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--red); }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,.3); }
.page-hero-breadcrumb .current { color: rgba(255,255,255,.9); }

/* inner page content area */
.inner-content { padding: 4rem 0; }
.inner-content h2 {
  font-size: 1.6rem; font-weight: 700; color: var(--head);
  margin-top: 2.5rem; margin-bottom: .75rem;
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.inner-content ul { color: var(--text-light); line-height: 1.8; padding-left: 1.5rem; }
.inner-content ul li { margin-bottom: .4rem; }

/* ab-card reuse for inner pages */
.ab-card-v2 {
  background: #fff; border-radius: var(--r-md);
  padding: 1.75rem; border-top: 4px solid var(--red);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.ab-card-v2:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.ab-card-v2 .card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(206,18,18,.1); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.ab-card-v2 h4 { font-size: 1.05rem; font-weight: 700; color: var(--head); margin-bottom: .6rem; }
.ab-card-v2 p, .ab-card-v2 li {
  font-size: .9rem; color: var(--text-light); line-height: 1.65;
}
.ab-card-v2 ul { padding-left: 1.1rem; margin: .5rem 0 0; }
.ab-card-v2 li { margin-bottom: .35rem; }

/* Process steps */
.process-step-v2 { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; margin: 0 auto 1rem;
}
.process-step-v2 h5 { font-weight: 700; color: var(--head); margin-bottom: .4rem; }
.process-step-v2 p { font-size: .88rem; color: var(--text-light); }

/* industry tags */
.ind-tag {
  display: inline-block; background: var(--gray-100);
  padding: .4rem .9rem; border-radius: 25px; font-size: .85rem;
  color: var(--head); transition: all .25s ease; cursor: default;
}
.ind-tag:hover { background: var(--red); color: #fff; }

/* contact form */
.contact-form-wrap {
  background: #fff; border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}
.contact-form-wrap .form-label { font-weight: 600; color: var(--head); font-size: .9rem; }
.contact-form-wrap .form-control, .contact-form-wrap .form-select {
  border-radius: var(--r-sm); border-color: #ddd; padding: .65rem .9rem;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(206,18,18,.1);
}
.contact-info-card {
  background: var(--dark); color: #fff; border-radius: var(--r-lg);
  padding: 2.5rem; height: 100%;
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .ci-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(206,18,18,.2); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; color: rgba(255,255,255,.9); font-size: .9rem; }
.contact-info-item span, .contact-info-item a {
  color: rgba(255,255,255,.6); font-size: .88rem; text-decoration: none;
}
.contact-info-item a:hover { color: var(--red); }

/* Accordion override for inner pages */
.accordion-inner .accordion-button:not(.collapsed) { background: var(--red); color: #fff; }
.accordion-inner .accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-inner .accordion-button { font-weight: 600; font-size: .95rem; }

/* Legal pages */
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; color: var(--head); margin-top: 2rem; }
.legal-content p, .legal-content li { color: var(--text-light); line-height: 1.8; }

/* page CTA mini */
.page-cta-strip {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  padding: 3rem 0; text-align: center;
}
.page-cta-strip h3 { color: #fff; font-size: 1.5rem; margin-bottom: .75rem; }
.page-cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }
