/* ============================================================
   AFRICAN COUNCIL OF CUSTOMER EXPERIENCE ORGANIZATIONS (ACXO)
   Master Stylesheet v1.0
   Palette: Deep Navy #061C55 + Signal Orange #E86900 + White
   ============================================================ */

/* -------- CSS RESET & TOKENS -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; padding: 0; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; }

:root {
  /* === ACXO BRAND ===
     Primary accent = Signal Orange (from the fingerprint mark)
     Dark base       = Deep Navy (from the wordmark + CICMA navy) */
  --red:        #e86900;   /* accent orange (token name kept for compatibility) */
  --red-dark:   #c85600;
  --red-light:  #fff0e2;
  --red-glow:   rgba(232, 105, 0, 0.4);

  /* Dark surfaces now use ACXO deep navy instead of pure black */
  --black:      #061c55;
  --ink:        #08205e;
  --ink-soft:   #0d2a6e;
  --ink-line:   #1b3a7a;

  --white:      #ffffff;
  --paper:      #fafafa;
  --paper-2:    #f5f5f5;
  --paper-3:    #ededed;

  --text:       #18181b;
  --text-soft:  #52525b;
  --text-mute:  #a1a1aa;

  --border:     #e4e4e7;
  --border-d:   #27272a;

  /* Accent colors used sparingly */
  --gold:       #f59e0b;
  --success:    #16a34a;

  /* Typography — Montserrat (display) + Source Sans 3 (body) — matches ESWUZ pairing */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', Menlo, monospace;

  /* ACXO navy accent family (aligned with CICMA Global navy) */
  --blue:        #1e40af;
  --blue-dark:   #0f2744;
  --blue-light:  #e6edff;
  --blue-deep:   #061c55;

  /* Spacing & sizing */
  --container: 1240px;
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow:    0 4px 14px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
  --shadow-red:0 12px 36px rgba(232, 105, 0,0.30);

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-bouncy: cubic-bezier(.34, 1.56, .64, 1);

  /* Z-index scale */
  --z-fab: 60;
  --z-fixed: 70;
  --z-nav: 80;
  --z-modal: 90;
  --z-toast: 100;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .6em 0;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { margin: 0 0 1em 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-grad {
  background: linear-gradient(135deg, var(--red), #f6821f 60%, #ff9d4d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.w-full { width: 100%; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.btn i { transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(3px); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(232, 105, 0,0.45);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { background: var(--paper-2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.4); }

/* ============================================================
   TOPBAR — BPO-Zim inspired dark navy
============================================================ */
.topbar {
  background: #0f1e2e;
  color: rgba(255,255,255,0.85);
  font-size: .82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tb-left, .tb-right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  transition: color .2s;
}
.tb-item:hover { color: var(--white); }
.tb-item i { color: var(--red); font-size: .85em; }
.tb-divider { width: 1px; height: 12px; background: rgba(255,255,255,0.12); }
.tb-social {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all .2s;
  font-size: .8rem;
}
.tb-social:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }
.tb-social.tb-social-disabled { opacity: .25; cursor: default; }

/* ============================================================
   NAVBAR — BPO-Zim inspired (slim white nav, red CTA pill)
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid transparent;
  z-index: var(--z-nav);
  transition: all .3s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  height: 70px;
}
.brand-img { height: 46px; width: auto; max-width: 340px; display: block; }
.brand-img-footer { height: 62px; width: auto; max-width: 320px; }
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), var(--red));
  color: var(--white);
  border-radius: 12px;
  font-size: 1.2rem;
  position: relative;
  box-shadow: 0 6px 16px rgba(232, 105, 0,0.25);
}
.logo-mark .logo-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 6px; height: 6px;
  background: var(--red);
  border: 1.5px solid var(--white);
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
.logo-mark-lg { width: 64px; height: 64px; font-size: 1.6rem; border-radius: 16px; }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 105, 0,.6); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(232, 105, 0,0); }
}
.logo-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.logo-text-accent { color: var(--red); }
.logo-text-sub {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0; padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: .94rem;
  color: var(--text);
  border-radius: 10px;
  transition: all .2s;
}
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--red-light); }
.nav-caret { font-size: .65em; transition: transform .25s; }
.nav-has-drop:hover .nav-caret { transform: rotate(180deg); }

.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  min-width: 880px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
  z-index: var(--z-nav);
}
.nav-has-drop:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nav-drop-col h6 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px 0;
  font-family: var(--font-display);
}
.nav-drop-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: all .15s;
  margin-bottom: 2px;
}
.nav-drop-col a i {
  width: 18px;
  color: var(--text-mute);
  transition: color .15s;
}
.nav-drop-col a:hover { background: var(--paper-2); color: var(--red); }
.nav-drop-col a:hover i { color: var(--red); }
.nav-drop-all { font-weight: 700 !important; color: var(--red) !important; margin-top: 8px; }

.nav-cta-wrap { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

.nav-spacer { height: 70px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: clamp(660px, 94vh, 900px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-color: var(--blue-deep);
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
  display: flex;
  align-items: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 28, 85,.92) 0%, rgba(6, 28, 85,.78) 45%, rgba(232, 105, 0,.35) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(232, 105, 0,.25), transparent 60%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 150px 24px 90px;
  animation: heroIn 1s var(--ease);
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(232, 105, 0,.18);
  border: 1px solid rgba(232, 105, 0,.4);
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(232, 105, 0,1);
  animation: pulse 2s var(--ease) infinite;
}
.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px 0;
  color: var(--white);
  letter-spacing: -0.035em;
}
.hero-title .text-grad {
  background: linear-gradient(135deg, #ff9d4d 0%, var(--red) 50%, #f6821f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hm-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.hm-item i { color: var(--red); }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  z-index: 5;
  transition: all .25s;
  display: none;
}
@media (min-width: 1024px) { .hero-arrow { display: flex; align-items: center; justify-content: center; } }
.hero-arrow:hover { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.08); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 36px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 2px;
  transition: all .3s;
}
.hero-dot.active { background: var(--red); width: 56px; }

/* ============================================================
   SECTIONS
============================================================ */
.section {
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
}
.section-alt { background: var(--paper); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-head { max-width: 780px; margin: 0 auto 40px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--red-light);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.section-eyebrow-light { background: rgba(232, 105, 0,.15); color: #fda4af; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.section-title-light { color: var(--white); }
.section-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--text-soft);
}
.section-lead-light { color: rgba(255,255,255,.75); }

/* ============================================================
   STATS BAR — BOSAG blue, trimmed height
============================================================ */
.stats {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 38px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.10), transparent 50%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; color: var(--white); }
.stat-ico {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  border-radius: 12px;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
}
.stat-lab { color: rgba(255,255,255,.85); font-size: .82rem; margin-top: 6px; font-weight: 500; }

/* ============================================================
   ABOUT PREVIEW
============================================================ */
.about-pre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-pre-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-pre-img img { width: 100%; height: 100%; object-fit: cover; }
.ap-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ap-badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.ap-badge-lab { font-size: .82rem; font-weight: 600; line-height: 1.3; }

.ap-deco-1, .ap-deco-2 {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  filter: blur(80px);
  opacity: .3;
  z-index: -1;
}
.ap-deco-1 { width: 200px; height: 200px; top: -40px; right: -40px; }
.ap-deco-2 { width: 160px; height: 160px; bottom: -20px; left: -40px; background: var(--black); }

.about-pre-features { margin: 32px 0; }
.apf {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.apf i {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.apf strong { display: block; margin-bottom: 4px; font-family: var(--font-display); }
.apf div { font-size: .94rem; color: var(--text-soft); }
.about-pre-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   SERVICES GRID
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* "Other services you may need" — 6-card row, evenly distributed across full width */
.services-grid-six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  width: 100%;
}
.services-grid-six .svc-card {
  padding: 18px 14px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.services-grid-six .svc-card .svc-ico {
  width: 42px; height: 42px; font-size: 1.05rem; margin-bottom: 12px; border-radius: 11px;
}
.services-grid-six .svc-card .svc-title {
  font-size: .94rem;
  margin-bottom: 6px;
  line-height: 1.25;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}
.services-grid-six .svc-card .svc-summary {
  font-size: .78rem;
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.services-grid-six .svc-card .svc-more { font-size: .76rem; }

/* "How we deliver" — 4-step grid, evenly spread across full container width */
.process-grid-centered {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.process-grid-centered .process-card {
  min-height: 100%;
  padding: 28px 18px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .35s var(--ease);
  display: block;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--black));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-light), rgba(232, 105, 0,.15));
  color: var(--red);
  border-radius: 16px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all .3s;
}
.svc-card:hover .svc-ico {
  background: linear-gradient(135deg, var(--red), var(--black));
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}
.svc-title { font-size: 1.25rem; margin-bottom: 10px; }
.svc-summary { color: var(--text-soft); font-size: .94rem; margin-bottom: 18px; }
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: .88rem;
}

/* ============================================================
   SERVICES DEEP (full list w/ cost-of-inaction)
============================================================ */
.svc-deep-list { display: flex; flex-direction: column; gap: 64px; }
.svc-deep {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.svc-deep-reverse { grid-template-columns: 1.3fr 1fr; }
.svc-deep-reverse .svc-deep-img { order: 2; }
.svc-deep-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.svc-deep-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-deep:hover .svc-deep-img img { transform: scale(1.05); }
.svc-deep-ico {
  position: absolute;
  bottom: 18px; left: 18px;
  width: 60px; height: 60px;
  background: var(--white);
  color: var(--red);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}
.svc-deep-title { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 14px; }
.svc-deep-desc { color: var(--text-soft); line-height: 1.75; margin-bottom: 24px; }
.svc-deep-deliv h6 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.deliv-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
}
.deliv-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
}
.deliv-chips li i { color: var(--red); font-size: .75em; }

.cost-warn {
  background: linear-gradient(135deg, rgba(232, 105, 0,.06) 0%, rgba(232, 105, 0,.02) 100%);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 22px;
  margin-bottom: 24px;
}
.cw-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--red);
  margin-bottom: 8px;
}
.cw-head i { font-size: 1.1em; }
.cost-warn p { color: var(--text); margin: 0; font-size: .94rem; }
.cost-warn-lg { padding: 28px; }
.cost-warn-lg p { font-size: 1.02rem; line-height: 1.7; }

.svc-deep-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   SECTOR CAROUSEL
============================================================ */
.sectors-section { background: var(--paper); overflow: hidden; }
.sectors-marquee {
  margin-top: 40px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.sectors-track {
  display: flex;
  gap: 20px;
  animation: marquee 44s linear infinite;
  width: max-content;
}
.sectors-track-rev { animation: marquee-rev 52s linear infinite; }
.sectors-marquee-rev { margin-top: 20px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.sector-card {
  width: 280px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.sector-card:hover { transform: translateY(-5px); }
.sector-card img { width: 100%; height: 100%; object-fit: cover; }
.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 28, 85,.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  color: var(--white);
}
.sector-overlay i {
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 6px;
}
.sector-overlay span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

/* ============================================================
   WHY GRID
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: all .3s var(--ease);
}
.why-card:hover {
  background: rgba(232, 105, 0,.08);
  border-color: rgba(232, 105, 0,.4);
  transform: translateY(-5px);
}
.why-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.why-card-light:hover { background: var(--white); border-color: var(--red); box-shadow: var(--shadow-md); }
.why-ico {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 105, 0,.18);
  color: var(--red);
  border-radius: 14px;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.why-card-light .why-ico { background: var(--red-light); }
.why-card h3 { margin-bottom: 8px; }
.why-card-light h3 { color: var(--ink); }
.why-card p { font-size: .94rem; color: rgba(255,255,255,.7); margin: 0; }
.why-card-light p { color: var(--text-soft); }

/* ============================================================
   PROCESS
============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all .3s;
}
.process-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.proc-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--black));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}
.proc-ico {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  color: var(--red);
  border-radius: 12px;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-card p { color: var(--text-soft); font-size: .92rem; margin: 0; }

/* ============================================================
   TESTIMONIALS — single-row auto-sliding carousel
============================================================ */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 4px 0 8px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: testiSlide 50s linear infinite;
  width: max-content;
  padding: 12px 0;
}
.testimonials-carousel:hover .testimonials-track { animation-play-state: paused; }
@keyframes testiSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all .3s;
  width: 380px;
  flex-shrink: 0;
}
.t-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red-light);
  line-height: 1;
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.t-stars { color: var(--gold); margin-bottom: 14px; display: flex; gap: 2px; }
.t-quote { font-size: .96rem; line-height: 1.7; color: var(--text); margin-bottom: 20px; min-height: 110px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--red), var(--black));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-author strong { display: block; font-family: var(--font-display); }
.t-author span { font-size: .85rem; color: var(--text-mute); }

/* ============================================================
   FAQ
============================================================ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .25s;
}
.faq-item[open] { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-weight: 600;
  font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
  width: 28px; height: 28px;
  background: var(--paper-2);
  color: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  transition: all .25s;
  flex-shrink: 0;
}
.faq-item[open] summary i { background: var(--red); color: var(--white); transform: rotate(180deg); }
.faq-ans { padding: 0 24px 24px; }
.faq-ans p { color: var(--text-soft); margin: 0; line-height: 1.7; }
.link-red, .link-green { color: var(--red); font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232, 105, 0,.3), transparent 60%);
}
.page-hero > .container { position: relative; z-index: 1; }
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232, 105, 0,.2);
  border: 1px solid rgba(232, 105, 0,.4);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  color: var(--white);
}
.ph-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.text-grad-red {
  background: linear-gradient(135deg, #fda4af, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ph-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  line-height: 1.7;
}
.ph-crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.ph-crumbs a { color: rgba(255,255,255,.8); transition: color .2s; }
.ph-crumbs a:hover { color: var(--red); }
.ph-crumbs i { font-size: .7em; opacity: .5; }

/* ============================================================
   ABOUT — MV grid + Timeline
============================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all .3s;
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mv-ico {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.mv-ico-red { background: var(--red-light); color: var(--red); }
.mv-ico-dark { background: var(--ink); color: var(--white); }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.as-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.as-img img { width: 100%; height: 100%; object-fit: cover; }
.as-img-deco {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: var(--red);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
  z-index: -1;
}

.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--black));
}
.tl-item { position: relative; padding-left: 70px; margin-bottom: 32px; }
.tl-dot {
  position: absolute;
  left: 17px; top: 20px;
  width: 16px; height: 16px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 105, 0,.2);
}
.tl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all .3s;
}
.tl-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.tl-year {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  margin-bottom: 8px;
}
.tl-card h4 { margin-bottom: 6px; }
.tl-card p { color: var(--text-soft); margin: 0; font-size: .94rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--red); }
.tc-ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--black));
  color: var(--white);
  border-radius: 16px;
  font-size: 1.6rem;
}
.tc-count { color: var(--red); font-weight: 700; font-family: var(--font-display); }

/* ============================================================
   INDUSTRIES GRID
============================================================ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s var(--ease);
}
.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.ind-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ind-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ind-card:hover .ind-img img { transform: scale(1.1); }
.ind-ico {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 48px; height: 48px;
  background: var(--white);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}
.ind-body { padding: 24px; }
.ind-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ind-body p { color: var(--text-soft); font-size: .92rem; margin-bottom: 14px; }
.ind-body h6 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.ind-body ul { list-style: none; padding: 0; margin: 0 0 16px; }
.ind-body li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 6px;
}
.ind-body li i { color: var(--red); margin-top: 4px; font-size: .8em; }
.ind-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--red);
  font-size: .9rem;
}

/* Regulatory grid (industries page) */
.reg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reg-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all .3s;
}
.reg-card:hover { background: rgba(232, 105, 0,.08); border-color: rgba(232, 105, 0,.4); }
.reg-card i {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(232, 105, 0,.2);
  color: var(--red);
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.reg-card h4 { color: var(--white); margin-bottom: 8px; }
.reg-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

/* ============================================================
   CONTACT
============================================================ */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.ch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
  display: block;
}
.ch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--red); }
.ch-ico {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--white);
}
.ch-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.ch-dark { background: linear-gradient(135deg, var(--black), var(--ink-soft)); }
.ch-wa { background: linear-gradient(135deg, #25D366, #1ebe5a); }
.ch-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.ch-card p { font-size: .92rem; color: var(--text-soft); margin-bottom: 12px; }
.ch-cta { color: var(--red); font-weight: 700; font-size: .88rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { margin-bottom: 18px; }
.cf-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: all .2s;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(232, 105, 0,.1);
}
.cf-field textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.cf-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cf-note { font-size: .82rem; color: var(--text-mute); display: flex; align-items: center; gap: 6px; }
.cf-note i { color: var(--red); }
.cf-result {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  display: none;
}
.cf-result.success {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(22, 163, 74, .1);
  color: #14532d;
  border: 1px solid rgba(22, 163, 74, .3);
}
.cf-result.error {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--red-light);
  color: var(--red-dark);
  border: 1px solid rgba(232, 105, 0,.3);
}

.contact-offices > .section-title { margin-top: 16px; }
.office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  transition: all .3s;
}
.office-card:hover { box-shadow: var(--shadow-sm); border-color: var(--red); }
.oc-flag { font-size: 1.8rem; margin-bottom: 8px; }
.office-card h4 { margin-bottom: 10px; }
.office-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: .92rem;
  color: var(--text-soft);
}
.office-card p i { color: var(--red); margin-top: 4px; flex-shrink: 0; }
.office-card a { color: var(--text); transition: color .2s; }
.office-card a:hover { color: var(--red); }
.office-hours { background: var(--paper); }
.oc-hours-sla { font-size: .85rem !important; color: var(--red) !important; margin-top: 12px !important; }

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }
.map-label {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: var(--shadow);
}

/* ============================================================
   CTA BAND — BOSAG blue
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  filter: blur(120px);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 500px; height: 500px;
  background: var(--red);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .25;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin: 0; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  position: relative;
}
.footer-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--red), #f6821f, var(--red-dark), var(--red));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 32px;
  padding: 44px 24px 28px;
}
.footer-brand-link { margin-bottom: 16px; display: inline-flex; }
.footer-brand-link, .footer-brand-link .logo-text { color: var(--white); }
.footer-tag { color: rgba(255,255,255,.65); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white);
  transition: all .2s;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-socials a.disabled { opacity: .35; }

.footer-col h6 {
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--red); }

.footer-contact .fc-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
}
.fc-item i {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 105, 0,.15);
  color: var(--red);
  border-radius: 10px;
  flex-shrink: 0;
}
.fc-item strong { color: var(--white); display: block; font-size: .85rem; font-weight: 700; margin-bottom: 2px; }
.fc-item span, .fc-item a { color: rgba(255,255,255,.65); font-size: .88rem; }
.fc-item a:hover { color: var(--red); }
/* Stack the three routed addresses one per line */
.fc-emails { display: flex; flex-direction: column; gap: 4px; }
.fc-emails a { display: block; width: fit-content; word-break: break-word; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  background: rgba(0,0,0,.4);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.fb-dev { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.75); }
.dev-credit {
  color: var(--red) !important;
  font-weight: 800 !important;
  font-size: 1.04em !important;
  text-decoration: none;
  transition: color .2s;
}
.dev-credit:hover { color: #ff9d4d !important; }
.fb-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.fb-legal a { color: rgba(255,255,255,.5); }
.fb-legal a:hover { color: var(--red); }
.fb-sep { opacity: .4; }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.fwa {
  position: fixed;
  bottom: 24px; right: 100px; /* sits to the LEFT of the live-chat launcher */
  z-index: 92;
}
.fwa-btn {
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  position: relative;
  transition: all .25s;
}
.fwa-btn:hover { transform: scale(1.08); }
.fwa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: fwaPulse 2s var(--ease) infinite;
  z-index: -1;
}
@keyframes fwaPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.fwa-panel {
  position: absolute;
  bottom: 76px; right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #efeae2;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: fwaPop .28s var(--ease);
}
@keyframes fwaPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.fwa-head {
  background: #075e54;
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fwa-avatar {
  width: 40px; height: 40px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.fwa-head-meta { flex: 1; min-width: 0; }
.fwa-head strong { display: block; font-size: .94rem; }
.fwa-status { font-size: .74rem; opacity: .85; display: flex; align-items: center; gap: 6px; }
.fwa-dot { width: 7px; height: 7px; background: #25D366; border-radius: 50%; box-shadow: 0 0 0 2px rgba(37,211,102,.3); }
.fwa-close {
  background: rgba(255,255,255,.15);
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fwa-thread {
  padding: 16px 14px;
  background:
    linear-gradient(rgba(229,221,213,.92), rgba(229,221,213,.92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='6' cy='6' r='1.2' fill='%23000' opacity='.04'/%3E%3C/svg%3E");
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fwa-bubble {
  max-width: 85%;
  padding: 9px 12px 18px;
  border-radius: 10px;
  font-size: .88rem;
  line-height: 1.45;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.fwa-in { background: var(--white); align-self: flex-start; border-top-left-radius: 2px; }
.fwa-out { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 2px; }
.fwa-bubble-name { display: block; font-size: .72rem; font-weight: 700; color: #075e54; margin-bottom: 2px; }
.fwa-time { position: absolute; right: 10px; bottom: 5px; font-size: .62rem; color: #667781; }
.fwa-form { background: #f0f2f5; padding: 10px; }
.fwa-fields { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.fwa-fields input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: 20px; font-size: .85rem; font-family: inherit; background: var(--white);
}
.fwa-fields.hidden { display: none; }
.fwa-inputrow { display: flex; align-items: flex-end; gap: 8px; }
.fwa-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .88rem;
  font-family: inherit;
  resize: none;
  max-height: 90px;
  background: var(--white);
}
.fwa-send-btn {
  width: 42px; height: 42px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: transform .15s, background .15s;
}
.fwa-send-btn:hover { background: #1da851; transform: scale(1.06); }
.fwa-send-btn:disabled { opacity: .6; cursor: not-allowed; }
.fwa-foot { text-align: center; font-size: .68rem; color: #667781; padding: 6px 0 9px; background: #f0f2f5; }

/* ============================================================
   LIVE CHAT — right side, stacked above WhatsApp
============================================================ */
.livechat-widget {
  position: fixed;
  z-index: 92;
  bottom: 24px;
  right: 24px;
}
.lc-launcher {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--red), var(--black));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(232, 105, 0,.4);
  position: relative;
  transition: transform .25s;
}
.lc-launcher:hover { transform: scale(1.08); }
.lc-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.lc-panel {
  position: absolute;
  bottom: 76px; right: 0;
  width: 340px;
  max-height: 540px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lc-head {
  background: linear-gradient(135deg, var(--black), var(--red));
  color: var(--white);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lc-avatar {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.lc-head > div:nth-child(2) { flex: 1; }
.lc-head strong { display: block; font-size: .94rem; }
.lc-sub { font-size: .76rem; opacity: .8; display: flex; align-items: center; gap: 6px; }
.lc-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s var(--ease) infinite;
}
.lc-close {
  background: rgba(255,255,255,.18);
  width: 30px; height: 30px;
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  font-size: .85rem;
  flex-shrink: 0;
}
.lc-close:hover { background: rgba(255,255,255,.32); transform: rotate(90deg); }
.lc-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  max-height: 360px;
}
.lc-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .92rem;
  line-height: 1.5;
  max-width: 86%;
  word-wrap: break-word;
}
.lc-msg-bot {
  background: var(--white);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.lc-msg-user {
  background: var(--red);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.lc-suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.lc-chip {
  padding: 6px 12px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(232, 105, 0,.25);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.lc-chip:hover { background: var(--red); color: var(--white); }
.lc-form {
  display: flex;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.lc-form input {
  flex: 1;
  padding: 12px 14px;
  border: 0;
  outline: none;
  font-size: .92rem;
  background: transparent;
}
.lc-form button {
  width: 48px;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
}
.lc-foot {
  padding: 8px 16px;
  background: var(--paper);
  font-size: .72rem;
  color: var(--text-mute);
  text-align: center;
  border-top: 1px solid var(--border);
}
.lc-foot a { color: var(--red); font-weight: 600; }

/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  transition: transform .4s var(--ease);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
.cookie-ico { font-size: 1.4rem; color: var(--red); }
.cookie-inner p { margin: 0; flex: 1; font-size: .88rem; min-width: 240px; }
.cookie-actions { display: flex; gap: 10px; }

/* Back to top */
.back-top {
  position: fixed;
  bottom: 24px; left: 24px;
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: var(--z-fab);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-md);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--red); transform: translateY(-3px); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal, .reveal-l, .reveal-r, .reveal-z {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal { transform: translateY(40px); }
.reveal-l { transform: translateX(-40px); }
.reveal-r { transform: translateX(40px); }
.reveal-z { transform: scale(.95); }
.reveal.in, .reveal-l.in, .reveal-r.in, .reveal-z.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   404 + MAINTENANCE
============================================================ */
.err-hero { min-height: 70vh; }
.err-content { text-align: center; }
.err-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.err-zero { color: var(--red); -webkit-text-fill-color: var(--red); }
.err-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.maintenance-body {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.maintenance-wrap {
  max-width: 540px;
  padding: 60px 24px;
  text-align: center;
}
.maintenance-wrap h1 { color: var(--white); margin-bottom: 16px; }
.maintenance-wrap p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; }
.m-contact a { color: var(--red); font-weight: 700; }
.m-bars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.m-bars span {
  width: 6px; height: 24px;
  background: var(--red);
  border-radius: 3px;
  animation: mBar 1.4s var(--ease) infinite;
}
.m-bars span:nth-child(2) { animation-delay: .15s; }
.m-bars span:nth-child(3) { animation-delay: .3s; }
.m-bars span:nth-child(4) { animation-delay: .45s; }
.m-bars span:nth-child(5) { animation-delay: .6s; }
@keyframes mBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(2); }
}

/* ============================================================
   ADMIN — login + dashboard
============================================================ */
.admin-login-body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}
.al-bg { position: fixed; inset: 0; pointer-events: none; }
.al-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.al-glow-1 {
  width: 400px; height: 400px;
  background: var(--red);
  top: -100px; left: -100px;
  opacity: .3;
}
.al-glow-2 {
  width: 360px; height: 360px;
  background: var(--red-dark);
  bottom: -100px; right: -100px;
  opacity: .25;
}
.al-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}
.al-wrap { position: relative; z-index: 1; width: 100%; max-width: 460px; }
.al-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 24px;
}
.al-back:hover { color: var(--white); }
.al-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
}
.al-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.al-brand h1 { color: var(--white); font-size: 1.3rem; margin: 0; }
.al-brand p { color: rgba(255,255,255,.6); font-size: .82rem; margin: 2px 0 0; }
.al-error {
  background: rgba(232, 105, 0,.12);
  border: 1px solid rgba(232, 105, 0,.4);
  color: #fda4af;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.al-form { display: flex; flex-direction: column; gap: 16px; }
.al-field label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  font-weight: 600;
}
.al-input-wrap { position: relative; }
.al-input-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
  font-size: .9rem;
}
.al-field input {
  width: 100%;
  padding: 14px 16px 14px 42px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .95rem;
}
.al-field input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,.06);
}
.al-show {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.4);
}
.al-help {
  margin-top: 20px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}
.al-help i { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.al-foot {
  margin-top: 24px;
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
}
.al-foot .dev-credit { color: var(--red) !important; }

/* ---------- ADMIN DASHBOARD ---------- */
.admin-body {
  background: var(--paper-2);
  color: var(--text);
  min-height: 100vh;
  font-family: var(--font-body);
}
.adm-sidebar {
  position: fixed;
  top: 0; left: 0;
  bottom: 0;
  width: 270px;
  background: var(--black);
  color: rgba(255,255,255,.8);
  padding: 24px 0;
  overflow-y: auto;
  z-index: 100;
}
.adm-sidebar::-webkit-scrollbar { width: 4px; }
.adm-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); }
.adm-brand {
  padding: 0 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.adm-brand strong { color: var(--white); font-family: var(--font-display); font-size: 1.1rem; line-height: 1; }
.adm-brand-sub { font-size: .72rem; color: rgba(255,255,255,.5); display: block; margin-top: 2px; }
.adm-nav { padding: 0 12px; }
.adm-nav-group { margin-bottom: 16px; }
.adm-nav-label {
  padding: 8px 12px 4px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
}
.adm-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  transition: all .15s;
  margin-bottom: 1px;
  cursor: pointer;
}
.adm-nav-item i { width: 18px; font-size: .9em; }
.adm-nav-item:hover { background: rgba(255,255,255,.05); color: var(--white); }
.adm-nav-item.active {
  background: var(--red);
  color: var(--white);
}
.adm-badge {
  margin-left: auto;
  background: var(--red);
  color: var(--white);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 700;
}
.adm-nav-item.active .adm-badge { background: var(--white); color: var(--red); }
.adm-nav-foot {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 16px;
  padding-top: 16px;
}
.adm-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  border-radius: 8px;
}
.adm-logout:hover { background: rgba(232, 105, 0,.15); color: var(--red); }

.adm-topbar {
  position: fixed;
  top: 0;
  left: 270px;
  right: 0;
  height: 66px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  z-index: 50;
}
.adm-side-toggle { display: none; width: 36px; height: 36px; border-radius: 8px; color: var(--text); font-size: 1.1rem; }
.adm-search { flex: 1; max-width: 480px; position: relative; }
.adm-search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-mute);
  font-size: .9rem;
}
.adm-search input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1px solid var(--border);
  background: var(--paper-2);
  border-radius: var(--radius-pill);
  font-size: .9rem;
}
.adm-search input:focus { outline: none; border-color: var(--red); background: var(--white); }
.adm-top-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.adm-top-btn {
  width: 36px; height: 36px;
  background: var(--paper-2);
  border-radius: 50%;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: .94rem;
  position: relative;
}
.adm-top-btn:hover { background: var(--paper-3); }
.adm-bell-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
}
.adm-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.adm-user-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red), var(--black));
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
}
.adm-user-meta strong { display: block; font-size: .88rem; }
.adm-user-meta span { font-size: .72rem; color: var(--text-mute); }

.adm-main {
  margin-left: 270px;
  padding: 90px 32px 40px;
  min-height: 100vh;
}
.adm-tab { display: none; }
.adm-tab.active { display: block; }

.adm-page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.adm-page-head h1 { font-size: 1.7rem; margin: 0 0 4px; }
.adm-page-head p { color: var(--text-soft); margin: 0; font-size: .92rem; }
.page-actions { display: flex; gap: 10px; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.kpi::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}
.kpi-green::before { background: var(--success); }
.kpi-blue::before  { background: var(--blue); }
.kpi-amber::before { background: var(--gold); }
.kpi-red::before   { background: var(--red); }
.kpi-purple::before{ background: #9333ea; }
.kpi-dark::before  { background: var(--black); }
.kpi-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--paper-2);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.kpi-green .kpi-ico { color: var(--success); }
.kpi-blue .kpi-ico  { color: var(--blue); }
.kpi-amber .kpi-ico { color: var(--gold); }
.kpi-purple .kpi-ico{ color: #9333ea; }
.kpi-dark .kpi-ico  { color: var(--black); }
.kpi-val { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.kpi-lab { font-size: .82rem; color: var(--text-soft); }

.adm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.card-head h3 {
  margin: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-head i { color: var(--red); }
.card-link { font-size: .82rem; color: var(--red); font-weight: 600; }
.card-body { padding: 22px; }
.card-foot { padding: 16px 22px; border-top: 1px solid var(--border); background: var(--paper); display: flex; justify-content: flex-end; gap: 10px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Kanban */
.pipe-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.pipe-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}
.pipe-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pipe-tab-count {
  background: var(--paper-2);
  color: var(--text);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: .72rem;
}
.pipe-tab.active .pipe-tab-count { background: rgba(255,255,255,.2); color: var(--white); }
.pipe-hint { color: var(--text-soft); font-size: .88rem; margin-bottom: 18px; }

.kanban {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.kb-col {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: 14px;
  min-height: 200px;
}
.kb-col[data-stage="new_lead"]  { border-top: 3px solid var(--success); }
.kb-col[data-stage="contacted"] { border-top: 3px solid var(--blue); }
.kb-col[data-stage="requested"] { border-top: 3px solid var(--gold); }
.kb-col[data-stage="quoted"]    { border-top: 3px solid var(--red); }
.kb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.kb-title { font-weight: 700; font-family: var(--font-display); font-size: .92rem; }
.kb-count {
  background: var(--white);
  padding: 2px 10px;
  border-radius: 10px;
  font-size: .76rem;
  font-weight: 700;
}
.kb-list { min-height: 80px; }
.kb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
  cursor: grab;
  transition: all .2s;
}
.kb-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.kb-card-name { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.kb-card-meta { font-size: .76rem; color: var(--text-mute); display: flex; gap: 6px; flex-wrap: wrap; }
.kb-card-meta span { background: var(--paper); padding: 2px 8px; border-radius: 10px; }

/* Tables */
.table-wrap { overflow-x: auto; }
.data-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.data-tbl th, .data-tbl td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.data-tbl th {
  background: var(--paper);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-soft);
}
.data-tbl tr:hover td { background: var(--paper); }
.status-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  background: var(--paper-2);
  color: var(--text);
}
.status-pill.new_lead, .status-pill.draft, .status-pill.unpaid { background: var(--red-light); color: var(--red); }
.status-pill.contacted, .status-pill.sent, .status-pill.in_progress { background: rgba(37,99,235,.12); color: var(--blue); }
.status-pill.requested, .status-pill.pending { background: rgba(245,158,11,.15); color: var(--gold); }
.status-pill.paid, .status-pill.accepted, .status-pill.completed { background: rgba(22,163,74,.15); color: var(--success); }
.tbl-act { display: inline-flex; gap: 6px; }
.tbl-act button {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--paper-2);
  font-size: .76rem;
  color: var(--text);
}
.tbl-act button:hover { background: var(--red); color: var(--white); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-head h3 { margin: 0; }
.modal-close {
  width: 32px; height: 32px;
  background: var(--paper-2);
  border-radius: 50%;
  font-size: .9rem;
}
.modal-body { padding: 24px; overflow-y: auto; }
.modal-footer { padding: 16px 24px; background: var(--paper); border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

/* Toast */
.toast-wrap {
  position: fixed;
  top: 24px; right: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  animation: toastIn .25s var(--ease);
}
.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--red); }
.toast.info { border-left: 4px solid var(--blue); }
.toast i { font-size: 1.1rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--red); }
.toast.info i { color: var(--blue); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Toggle switch */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.toggle-row p { margin: 0; color: var(--text-soft); font-size: .88rem; }
.switch {
  position: relative;
  width: 50px; height: 28px;
  flex-shrink: 0;
}
.switch input { display: none; }
.switch span {
  display: block;
  width: 100%; height: 100%;
  background: var(--paper-3);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: all .2s;
}
.switch span::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.switch input:checked + span { background: var(--red); }
.switch input:checked + span::after { transform: translateX(22px); }
.hr-soft { border: 0; border-top: 1px solid var(--border); margin: 24px 0; }

/* Reports cards */
.report-card { padding: 28px; text-align: center; }
.report-ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}
.report-ico-red { background: var(--red); }
.report-ico-green { background: var(--success); }
.report-card h3 { margin-bottom: 8px; }
.report-card p { color: var(--text-soft); margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .services-grid, .testimonials-grid, .why-grid, .ind-grid, .team-grid, .mv-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-six { grid-template-columns: repeat(3, 1fr); }
  .process-grid-centered { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-pre, .about-story, .contact-grid, .faq-wrap, .cta-inner { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
  .kanban { grid-template-columns: repeat(2, 1fr); }
  .adm-grid-2 { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 86px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
  }
  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
  }
  .nav-link { padding: 14px; }
  .nav-drop {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    min-width: 0;
    padding: 0 0 0 16px;
    display: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }
  .nav-has-drop.open .nav-drop { display: block; }
  .nav-drop-inner { grid-template-columns: 1fr; gap: 16px; }
  .nav-has-drop:hover .nav-drop { transform: none; }
  .nav-cta-wrap { padding: 8px 14px; }
  .nav-cta-wrap .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }

  .adm-sidebar {
    transform: translateX(-100%);
    transition: transform .25s var(--ease);
  }
  .adm-sidebar.open { transform: translateX(0); }
  .adm-topbar { left: 0; }
  .adm-main { margin-left: 0; padding: 90px 20px 40px; }
  .adm-side-toggle { display: inline-flex; }
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .topbar { display: none; }
  .nav-spacer { height: 70px; }
  .hero-content { padding: 60px 20px; }
  .hero-meta { gap: 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .services-grid, .testimonials-grid, .why-grid, .ind-grid,
  .team-grid, .mv-grid, .process-grid, .process-grid-centered, .reg-grid, .footer-grid,
  .contact-channels, .kpi-grid { grid-template-columns: 1fr; }
  .services-grid-six { grid-template-columns: repeat(2, 1fr); }
  .kanban { grid-template-columns: 1fr; }
  .svc-deep { grid-template-columns: 1fr; gap: 28px; }
  .svc-deep-reverse .svc-deep-img { order: 0; }
  .cta-actions { justify-content: flex-start; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .lc-panel, .fwa-panel { width: calc(100vw - 32px); max-width: 320px; }
  .nav-brand .logo-text-sub { display: none; }
}

/* ============================================================
   ENHANCEMENTS — modal fix, brand image, sidebar buttons, etc
============================================================ */

/* CRITICAL: hide modal/cookie banner when [hidden] attribute is present */
[hidden] { display: none !important; }

/* Brand image filter for footer (logo dark variant) */
.brand-img-footer-light { filter: brightness(0) invert(1); }
.brand-img-login { height: 64px; width: auto; }

/* Service detail sidebar: outlined white buttons need to keep white BG on hover with red text */
.btn-outline-white-stay {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
}
.btn-outline-white-stay:hover {
  background: var(--white);
  color: var(--red-dark);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,255,.25);
}

/* Hero arrows always visible */
@media (max-width: 1023px) {
  .hero-arrow { display: flex !important; align-items: center; justify-content: center; width: 42px; height: 42px; font-size: .9rem; }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
}

/* ============================================================
   ADMIN — shadcn-style polish
============================================================ */
.adm-sidebar {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.adm-brand {
  background: linear-gradient(135deg, rgba(232, 105, 0,0.08), transparent);
}
.adm-nav-item {
  position: relative;
  margin-bottom: 2px;
}
.adm-nav-item.active {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  box-shadow: 0 6px 18px rgba(232, 105, 0,0.35);
}
.adm-nav-item.active::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--white);
  border-radius: 0 4px 4px 0;
}

.kpi {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: all .25s var(--ease);
  cursor: default;
}
.kpi:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-light);
}
.kpi-trend {
  position: absolute;
  top: 18px; right: 18px;
  font-size: .72rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(22,163,74,.1);
  color: var(--success);
  font-weight: 700;
}

.card {
  border-radius: 12px;
  transition: all .25s var(--ease);
  background: var(--white);
}
.card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.data-tbl thead th {
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  z-index: 2;
}
.data-tbl tbody tr {
  transition: background .15s;
}

.adm-search input {
  transition: all .2s;
}
.adm-search input:focus {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 105, 0,0.1);
}

/* Toast: slide in from right */
.toast {
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Modal: ensure proper overlay */
.modal-overlay:not([hidden]) {
  display: flex;
  animation: modalFade .2s ease-out;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  animation: modalSlide .25s var(--ease-bouncy);
}
@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-body .cf-field { margin-bottom: 14px; }

/* Industries editor — same look as hero editor */
.cms-editor-card { margin-bottom: 14px; }
.cms-row-actions { display: flex; gap: 8px; align-items: center; margin-top: 8px; }

/* Pipe Kanban — tighter borders */
.kb-col[data-stage="new_lead"]   { border-top: 3px solid var(--success); }
.kb-col[data-stage="contacted"]  { border-top: 3px solid var(--blue); }
.kb-col[data-stage="requested"]  { border-top: 3px solid var(--gold); }
.kb-col[data-stage="quoted"]     { border-top: 3px solid var(--red); }
.kb-card {
  transition: all .15s var(--ease);
}
.kb-card:hover {
  border-color: var(--red);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.kb-card.dragging {
  opacity: 0.4;
  transform: rotate(2deg);
}
.kb-col.drag-over {
  background: rgba(232, 105, 0,0.08);
  border: 2px dashed var(--red);
}

/* Card title icons (admin) */
.card-head h3 i { color: var(--red); }

/* Tab content fade in */
.adm-tab.active {
  animation: tabIn .25s var(--ease);
}
@keyframes tabIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }


/* ---- Floating widgets above the fixed navbar + viewport-safe height ---- */
.fwa, .livechat-widget { z-index: 92 !important; }
.lc-panel { max-height: min(540px, calc(100vh - 130px)) !important; }
.fwa-panel { max-height: min(560px, calc(100vh - 130px)) !important; overflow-y: auto; }

/* ============================================================
   EVENTS PAGE (ACXO)
============================================================ */
.evl-hero { position: relative; min-height: 620px; display: flex; align-items: center;
  background-size: cover; background-position: center; background-color: var(--blue-deep);
  color: #fff; padding: 150px 0 70px; overflow: hidden; }
.evl-hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(120deg, rgba(6,28,85,.94) 0%, rgba(6,28,85,.80) 46%, rgba(232,105,0,.32) 100%); }
.evl-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.evl-kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: rgba(232,105,0,.2); border: 1px solid rgba(232,105,0,.45); font-weight: 600; font-size: .82rem; letter-spacing: .03em; margin-bottom: 18px; }
.evl-kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.evl-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: 1.08; margin-bottom: 16px; }
.evl-sub { font-size: 1.1rem; opacity: .92; max-width: 620px; margin-bottom: 26px; }
.evl-meta { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-bottom: 28px; }
.evl-meta-item { display: flex; align-items: center; gap: 10px; }
.evl-meta-item > i { color: var(--red); font-size: 1.1rem; }
.evl-meta-item span { display: block; font-weight: 700; font-size: .96rem; }
.evl-meta-item small { display: block; opacity: .7; font-size: .74rem; }
.evl-meta-chip { background: rgba(255,255,255,.1); padding: 8px 14px; border-radius: 999px; }
.evl-meta-chip span { font-weight: 600; font-size: .84rem; }
.evl-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.evl-host { opacity: .85; font-size: .9rem; }
.evl-hero-media { display: flex; flex-direction: column; gap: 18px; }
.evl-media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.evl-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.evl-countdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.cd-item { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 12px 6px; text-align: center; }
.cd-num { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: #fff; }
.cd-lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.evl-about-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: start; }
.evl-highlights { background: var(--red-light); border-radius: var(--radius-lg); padding: 30px; }
.evl-highlights h3 { margin-bottom: 16px; }
.evl-highlights ul { list-style: none; margin-bottom: 20px; }
.evl-highlights li { display: flex; gap: 10px; padding: 8px 0; font-weight: 500; }
.evl-highlights li i { color: var(--red); margin-top: 3px; }
.evl-tickets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.evl-ticket-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.evl-ticket-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.evl-ticket-price { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--red); margin-bottom: 8px; }
.evl-ticket-card p { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.evl-pay-note { max-width: 680px; margin: 0 auto 30px; color: var(--muted); }
.evl-pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.evl-bank { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.evl-bank-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.evl-bank-head i { font-size: 1.5rem; color: var(--red); }
.evl-bank-list { list-style: none; }
.evl-bank-list li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--border); }
.evl-bank-list li span { color: var(--muted); }
.evl-pay-cta { background: linear-gradient(135deg, var(--black), var(--ink-soft)); color: #fff; border-radius: var(--radius-lg); padding: 34px; }
.evl-pay-cta h3 { color: #fff; margin-bottom: 12px; }
.evl-pay-cta p { opacity: .85; margin-bottom: 18px; }
.evl-enq { font-size: .88rem; }
.evl-enq a { color: var(--red-light); text-decoration: underline; }
.empty-events { text-align: center; padding: 60px 20px; }
.empty-events i { font-size: 3rem; color: var(--red); margin-bottom: 18px; }
.empty-events h3 { margin-bottom: 10px; }
.empty-events p { color: var(--muted); margin-bottom: 24px; }
@media (max-width: 900px){
  .evl-hero-inner, .evl-about-inner, .evl-pay-grid { grid-template-columns: 1fr; }
  .evl-hero-media { order: -1; }
}

/* Registration modal */
.reg-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(6,28,85,.6); backdrop-filter: blur(4px); }
.reg-modal.open { display: flex; }
.reg-dialog { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-lg); animation: fwaPop .3s var(--ease); }
.reg-x { position: absolute; top: 14px; right: 16px; font-size: 1.6rem; line-height: 1; color: var(--muted); background: none; z-index: 3; }
.reg-head { display: flex; align-items: center; gap: 14px; padding: 26px 28px 16px; }
.reg-kicker { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--red); font-weight: 700; }
.reg-event-title { font-size: 1.15rem; }
.reg-steps-wrap { padding: 0 28px 28px; }
.reg-progress { display: flex; gap: 8px; margin-bottom: 22px; }
.reg-dot { flex: 1; height: 5px; border-radius: 3px; background: var(--border); transition: background .3s; }
.reg-dot.active { background: var(--red); }
.reg-step { display: none; }
.reg-step.active { display: block; animation: fadeIn .3s var(--ease); }
.reg-step-title { margin-bottom: 16px; }
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reg-steps-wrap .fg { margin-bottom: 14px; }
.reg-steps-wrap .fg label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.reg-steps-wrap .fg input, .reg-steps-wrap .fg select, .reg-steps-wrap .fg textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .92rem; }
.reg-label-block { display: block; font-size: .82rem; font-weight: 600; margin: 6px 0 10px; }
.reg-tickets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.reg-ticket { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: all .2s; }
.reg-ticket:hover { border-color: var(--red); }
.reg-ticket.sel { border-color: var(--red); background: var(--red-light); }
.reg-ticket b { display: block; font-size: .94rem; }
.reg-ticket small { color: var(--muted); }
.reg-ticket-price { font-weight: 800; color: var(--red); }
.reg-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; }
.reg-consent { display: flex; gap: 10px; align-items: flex-start; background: var(--bg-alt); padding: 12px 14px; border-radius: var(--radius-sm); font-size: .82rem; color: var(--muted); margin-top: 6px; }
.reg-consent i { color: var(--success); margin-top: 2px; }
.reg-done { text-align: center; padding: 44px 30px; }
.reg-done-ico { font-size: 3.4rem; color: var(--success); margin-bottom: 16px; }
.reg-done h3 { margin-bottom: 10px; }
.reg-done p { color: var(--muted); margin-bottom: 22px; }
@media (max-width: 560px){ .reg-grid { grid-template-columns: 1fr; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Analytics period toggle */
.ana-period { display: inline-flex; gap: 4px; background: var(--bg-alt); padding: 4px; border-radius: 999px; }
.ana-per-btn { padding: 5px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--muted); background: transparent; transition: all .2s; }
.ana-per-btn.active { background: var(--red); color: #fff; }
