/* ==========================================
   FIVVERTECH — LIGHT / WHITE LUXURY CSS
   Brand Colors: Red #D91E18, Green #439329, Black/White neutrals
   ========================================== */

:root {
  --red: #D91E18;
  --red-dark: #a81410;
  --red-light: #fdf0ef;
  --red-glow: rgba(217, 30, 24, 0.18);
  --gold: #E8960C;
  --gold-light: #FEF3DC;
  --gold-glow: rgba(232, 150, 12, 0.15);
  --cyan: #0097B8;
  --cyan-light: #e6f7fb;
  --green: #439329;
  --green-dark: #326e1f;
  --green-light: #eaf5e6;
  --green-glow: rgba(67, 147, 41, 0.18);

  /* Light palette */
  --bg: #ffffff;
  --bg-2: #f8f9fc;
  --bg-3: #f1f3f8;
  --card: #ffffff;
  --card-2: #f8f9fc;
  --border: rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-xl: 0 32px 90px rgba(0,0,0,0.12);

  /* Text */
  --text: #0d1220;
  --text-2: #2c3349;
  --text-muted: #5a6480;
  --text-dim: #96a0b5;

  --font: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ==========================================
   EVENT TICKER
   ========================================== */
.event-ticker {
  background: var(--red);
  height: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

.ticker-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  gap: 16px;
}

.ticker-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.ticker-track { flex: 1; overflow: hidden; position: relative; }

.ticker-items {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-event { font-size: 12px; color: rgba(255,255,255,0.9); white-space: nowrap; }
.ticker-event strong { color: #fff; }
.ticker-sep { color: rgba(255,255,255,0.4); font-size: 8px; }

.ticker-cta {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 12px;
  border-radius: 20px;
  transition: var(--transition);
}
.ticker-cta:hover { background: rgba(255,255,255,0.15); color: #fff; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   NAVBAR
   ========================================== */
.fivver-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.fivver-nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-logo { width: 38px; height: 38px; object-fit: contain; margin-right: 10px; }

.brand-text {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand-accent { color: var(--red); }

.nav-link {
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted) !important;
  letter-spacing: 0.02em;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text) !important; background: var(--bg-2); }

.fivver-dropdown {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
}
.fivver-dropdown .dropdown-item {
  color: var(--text-muted);
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.fivver-dropdown .dropdown-item:hover { background: var(--bg-2); color: var(--text); }
.text-accent { color: var(--green) !important; }

.btn-nav-cta {
  background: var(--red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-decoration: none;
}
.btn-nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.hamburger-icon { display: flex; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger-icon span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ==========================================
   HERO V2 — CINEMATIC DARK
   ========================================== */
.hero-v2 {
  position: relative;
  background: #030812;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Left red accent stripe */
.hv2-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  z-index: 1;
}

/* Giant ghost number as backdrop */
.hv2-ghost-num {
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  font-family: var(--font);
  font-size: clamp(260px, 34vw, 480px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Main flex row: headline + platform panel */
.hv2-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(72px,11vh,110px) clamp(36px,5.5vw,90px) 0;
  gap: clamp(40px,7vw,110px);
  position: relative;
  z-index: 2;
}

.hv2-left { flex: 1; min-width: 0; }

.hv2-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}

.hv2-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--red);
  animation: live-pulse 2s ease-in-out infinite;
}

.hv2-headline { margin: 0; line-height: 0.93; }

.hv2-hl-1 {
  display: block;
  font-family: var(--font);
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hv2-hl-2 {
  display: block;
  font-family: var(--font);
  font-size: clamp(66px, 13vw, 175px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.042em;
  line-height: 0.87;
}

.hv2-hl-3 {
  display: block;
  font-family: var(--font);
  font-size: clamp(18px, 2.8vw, 40px);
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: -0.01em;
  margin-top: 14px;
}

.hv2-hl-3 em {
  font-family: var(--font);
  font-style: italic;
  color: var(--red);
  font-size: 1.12em;
  font-weight: 700;
}

.hv2-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hv2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
}
.hv2-btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(217,30,24,0.38);
}

.hv2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  transition: var(--transition);
}
.hv2-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.04);
}

/* Right: live platforms sidebar */
.hv2-right {
  width: clamp(195px, 21vw, 270px);
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: 32px;
}

.hv2-panel-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hv2-platform-list { display: flex; flex-direction: column; gap: 2px; }

.hv2-plat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s;
  border: 1px solid transparent;
}
.hv2-plat:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.hv2-plat-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(34,197,94,0.6);
  animation: live-pulse 2.2s ease-in-out infinite;
}

.hv2-plat-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.76);
  flex: 1;
}

.hv2-plat-cat {
  font-size: 10px;
  color: rgba(255,255,255,0.27);
  letter-spacing: 0.04em;
}

.hv2-plat-arrow {
  font-size: 9px;
  color: rgba(255,255,255,0.16);
  transition: color 0.2s, transform 0.2s;
}
.hv2-plat:hover .hv2-plat-arrow {
  color: rgba(255,255,255,0.55);
  transform: translate(2px,-2px);
}

/* Bottom stat bar */
.hv2-statbar {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px clamp(36px,5.5vw,90px);
  margin-top: clamp(44px,6.5vh,70px);
  position: relative;
  z-index: 2;
}

.hv2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
}

.hv2-stat-n {
  font-family: var(--font);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hv2-stat-l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  white-space: nowrap;
}

.hv2-stat-sep {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.09);
  margin-right: 40px;
  flex-shrink: 0;
}

.hv2-scroll-hint {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
}
.hv2-scroll-hint i { animation: bounce-down 2.2s ease-in-out infinite; }

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

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

/* Responsive */
@media (max-width: 991px) {
  .hv2-right { display: none; }
}
@media (max-width: 576px) {
  .hv2-hl-2 { font-size: clamp(56px, 19vw, 100px); }
  .hv2-statbar { flex-wrap: wrap; gap: 20px; }
  .hv2-stat { padding-right: 0; }
  .hv2-stat-sep { display: none; }
  .hv2-scroll-hint { display: none; }
}


/* ==========================================
   SECTION COMMONS
   ========================================== */
section { padding: 100px 0; }

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--red); }

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ==========================================
   HERO BASE (shared across sub-pages)
   ========================================== */
.hero-section {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
  min-height: 88vh;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; animation: orb-float 8s ease-in-out infinite; }
.hero-orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(217,30,24,0.1) 0%, transparent 70%); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(67,147,41,0.1) 0%, transparent 70%); bottom: 0; left: 10%; animation-delay: 3s; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(13,18,32,0.05) 0%, transparent 70%); top: 40%; right: 30%; animation-delay: 5s; }

@keyframes orb-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { position: relative; z-index: 2; display: flex; align-items: stretch; width: 100%; }
.hero-content .row { flex: 1; align-items: stretch; }
.hero-left { padding-right: 40px; display: flex; flex-direction: column; justify-content: center; padding-top: 5px; padding-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }


.hero-headline {
  font-family: var(--font);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0; color: var(--text); margin-bottom: 24px;
}
.hero-italic { font-family: var(--font); font-style: italic; font-weight: 700; color: var(--red); }
.hero-outline { -webkit-text-stroke: 2px rgba(0,0,0,0.12); color: transparent; font-weight: 800; }
.hero-sub { font-size: 16px; font-weight: 400; line-height: 1.75; color: var(--text-muted); max-width: 520px; margin-bottom: 36px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-pill { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font); font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero right side — photo card stack */
.hero-right { justify-content: center; align-items: stretch; padding: 0; }
.hero-cards-stack { display: flex; align-items: stretch; gap: 0; height: 100%; padding: 0; }
.hero-card { flex: 1; border-radius: 0; overflow: hidden; position: relative; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-color-wash { position: absolute; inset: 0; pointer-events: none; }
.card-wash-red  { background: linear-gradient(180deg, transparent 40%, rgba(217,30,24,0.75) 100%); }
.card-wash-green { background: linear-gradient(180deg, transparent 40%, rgba(67,147,41,0.75) 100%); }
.card-wash-dark { background: linear-gradient(180deg, transparent 40%, rgba(13,18,32,0.75) 100%); }
.hero-card-chip { position: absolute; bottom: 14px; left: 14px; }
.hero-card-chip span {
  display: inline-block; background: rgba(255,255,255,0.9); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-radius: 50px; padding: 5px 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}

/* Hero outline / italic variants */
.hero-italic { font-family: var(--font); font-style: italic; font-weight: 700; color: var(--red); }
.hero-outline { -webkit-text-stroke: 2px rgba(0,0,0,0.12); color: transparent; font-weight: 800; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim);
  text-transform: uppercase; z-index: 2;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(0,0,0,0.15); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; background: var(--red); border-radius: 2px; animation: scroll-down 1.5s ease-in-out infinite; }
@keyframes scroll-down { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }

/* Shared CTA buttons (light-bg pages) */
.btn-hero-primary {
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  letter-spacing: 0.03em;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 40px var(--red-glow); }

.btn-hero-ghost {
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border-strong);
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-ghost:hover { border-color: var(--green); color: var(--green); }

/* Hero poster overlay — takes over almost the entire hero to spotlight a configured event */
.hero-poster {
  position: absolute;
  inset: 24px;
  z-index: 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  animation: hero-poster-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}
@keyframes hero-poster-in { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

.hero-poster-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition);
}
.hero-poster-close:hover { background: rgba(0,0,0,0.6); transform: scale(1.08); }

.hero-poster-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-poster-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,18,32,0.25) 0%, rgba(13,18,32,0.45) 45%, rgba(13,18,32,0.92) 100%);
}

.hero-poster-body {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 56px 64px;
}

.hero-poster-badge {
  display: inline-block; align-self: flex-start;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 18px;
  transition: opacity 0.3s ease;
}

.hero-poster-title { font-family: var(--font); font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; color: #fff; line-height: 1.15; margin-bottom: 14px; max-width: 720px; }

.hero-poster-meta { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.hero-poster-meta i { color: var(--green); margin-right: 2px; }

.hero-poster-desc { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.82); max-width: 640px; margin-bottom: 28px; }

.hero-poster-cta {
  display: inline-flex; align-items: center; gap: 10px; align-self: flex-start;
  background: var(--red); color: #fff;
  font-size: 15px; font-weight: 600; padding: 14px 32px; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
}
.hero-poster-cta:hover { background: var(--red-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 40px var(--red-glow); }

@media (max-width: 767px) {
  .hero-poster { inset: 14px; }
  .hero-poster-body { padding: 32px 28px; }
  .hero-poster-desc { display: none; }
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
.events-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.featured-event {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.featured-event:hover { box-shadow: var(--shadow-xl); border-color: rgba(217,30,24,0.2); }

.featured-event-visual {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-event-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.event-visual-inner { position: relative; z-index: 1; text-align: center; }

.event-date-badge {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px; padding: 20px 28px;
  backdrop-filter: blur(10px);
}
.edb-month { font-size: 13px; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.8); }
.edb-day { font-family: var(--font); font-size: 72px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: #fff; }
.edb-year { font-size: 14px; color: rgba(255,255,255,0.6); }

.event-category-tag {
  position: absolute; top: 20px; left: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 12px; border-radius: 50px;
}

.fec-inner { padding: 44px 40px; height: 100%; display: flex; flex-direction: column; justify-content: center; }

.fec-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }

.fec-title { font-family: var(--font); font-size: clamp(28px, 3.5vw, 42px); color: var(--text); line-height: 1.2; margin-bottom: 16px; }

.fec-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.fec-details { list-style: none; margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 16px; }
.fec-details li { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.fec-details li i { color: var(--green); }

.fec-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-event-primary {
  background: var(--red); color: #fff; font-size: 14px; font-weight: 600;
  padding: 12px 28px; border-radius: 50px; border: none; text-decoration: none; transition: var(--transition);
}
.btn-event-primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 10px 28px var(--red-glow); transform: translateY(-2px); }

.fec-spots { font-size: 13px; color: var(--text-dim); }
.fec-spots strong { color: var(--red); }

.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.event-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--green));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.event-card:hover { border-color: rgba(217,30,24,0.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card:hover::before { transform: scaleX(1); }

.ec-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--green-light); color: var(--green);
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}

.ec-date { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }
.ec-date span { font-family: var(--font); font-size: 36px; font-weight: 700; color: var(--red); line-height: 1; display: block; }

.ec-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }

.ec-title { font-family: var(--font); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.3; }

.ec-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }

.ec-link { font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.ec-link:hover { color: var(--red-dark); gap: 12px; }

/* ==========================================
   CLIENTS / LOGOS SECTION
   ========================================== */
.clients-section {
  background: var(--bg);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.client-logo-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  cursor: default;
}
.client-logo-pill:hover {
  border-color: var(--red);
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.client-logo-pill i { font-size: 18px; color: var(--text-muted); transition: var(--transition); }
.client-logo-pill:hover i { color: var(--red); }
.client-logo-pill span { font-size: 14px; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.client-logo-pill:hover span { color: var(--text); }

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section { background: var(--bg-2); position: relative; }

.products-bg-pattern { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(217,30,24,0.04) 0%, transparent 70%); pointer-events: none; }

.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-card:hover { border-color: rgba(217,30,24,0.25); transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.product-card--featured {
  background: linear-gradient(160deg, #fff5f5 0%, #fff 100%);
  border-color: rgba(217,30,24,0.2);
  box-shadow: var(--shadow-md);
}

.pc-featured-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); background: var(--red-light);
  border: 1px solid rgba(217,30,24,0.2); padding: 5px 12px; border-radius: 50px;
}

.pc-glow { position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(217,30,24,0.06) 0%, transparent 70%); top: -60px; right: -60px; pointer-events: none; }

.pc-icon-wrap { margin-bottom: 24px; }

.pc-product-logo { width: 90px; height: 90px; object-fit: contain; }

.pc-icon-placeholder { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; }

.adventures-icon { background: var(--green-light); border: 1.5px solid rgba(67,147,41,0.2); color: var(--green); }
.agency-icon { background: rgba(13,18,32,0.06); border: 1.5px solid rgba(13,18,32,0.12); color: var(--text); }

.pc-number {
  font-family: var(--font); font-size: 72px; font-weight: 800; letter-spacing: -0.04em;
  color: rgba(0,0,0,0.04); position: absolute; right: 24px; bottom: 20px;
  line-height: 1; pointer-events: none; user-select: none;
}

.pc-title { font-family: var(--font); font-size: 28px; color: var(--text); margin-bottom: 6px; }

.pc-tagline { font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }

.pc-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; flex: 1; }

.pc-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pc-features li { font-size: 13.5px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.pc-features li i { color: var(--green); font-size: 13px; }

.btn-product {
  background: var(--bg-2); color: var(--text); font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: 50px; border: 1.5px solid var(--border);
  text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; margin-top: auto;
}
.btn-product:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateX(4px); }



/* ==========================================
   CLIENT WORKS / PLATFORMS SECTION
   ========================================== */
.client-works-section { background: var(--bg); }

.platforms-intro { margin-bottom: 52px; }

.platforms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
}

.platforms-title {
  font-family: var(--font);
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}
.platforms-title em { font-style: italic; color: var(--red); }

.platforms-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-left: auto;
  padding-top: 16px;
}

/* Filter pills */
.work-filter { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover { background: var(--bg-2); color: var(--text); }
.filter-btn.active { background: var(--text); border-color: var(--text); color: #fff; }

/* ── Editorial platform grid ── */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Featured first card spans 2 columns, taller visual */
.ed-card--featured {
  grid-column: span 2;
}
.ed-card--featured .ed-visual {
  aspect-ratio: 16 / 9;
}

.ed-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ed-card:nth-child(3)  { border-right: none; }
.ed-card:nth-child(4)  { border-right: 1px solid var(--border); }
.ed-card:nth-child(6)  { border-right: none; }
.ed-card:nth-last-child(-n+3) { border-bottom: none; }

.ed-visual {
  aspect-ratio: 3 / 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ed-visual::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.ed-icon {
  font-size: 52px;
  color: rgba(255,255,255,0.7);
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 24px rgba(255,255,255,0.2));
  transition: filter 0.3s;
}
.ed-card:hover .ed-icon { filter: drop-shadow(0 0 36px rgba(255,255,255,0.45)); }
.ed-card--featured .ed-icon { font-size: 80px; }

.ed-visual .work-live-badge { position: absolute; top: 18px; right: 18px; z-index: 3; }

.ed-body {
  padding: 24px 28px 28px;
  background: var(--bg);
}
.ed-cat {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px;
}
.ed-name {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 8px; line-height: 1.2;
}
.ed-card--featured .ed-name { font-size: 26px; }
.ed-desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px;
}
.ed-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--text); text-decoration: none; text-transform: uppercase;
  transition: gap 0.2s;
}
.ed-link:hover { gap: 10px; color: var(--red); }
.ed-link i { font-size: 10px; }

.wv-blue   { background: linear-gradient(145deg, #0b1d3a 0%, #0d2e5c 100%); }
.wv-green  { background: linear-gradient(145deg, #061a06 0%, #0d3310 100%); }
.wv-purple { background: linear-gradient(145deg, #130826 0%, #24104a 100%); }
.wv-orange { background: linear-gradient(145deg, #1e0c00 0%, #3d1f00 100%); }
.wv-red    { background: linear-gradient(145deg, #2b0404 0%, #5a0d0d 100%); }
.wv-teal   { background: linear-gradient(145deg, #021616 0%, #063232 100%); }

.work-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(4px);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 6px #22c55e;
  animation: live-pulse 2s ease-in-out infinite;
  display: inline-block;
}
@keyframes live-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

@media (max-width: 991px) {
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-card--featured { grid-column: span 2; }
  .ed-card:nth-child(3) { border-right: none; }
  .ed-card:nth-child(6) { border-right: none; }
}
@media (max-width: 576px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .ed-card, .ed-card--featured { grid-column: span 1; border-right: none; }
  .ed-card--featured .ed-visual { aspect-ratio: 3 / 2; }
  .ed-card--featured .ed-name { font-size: 22px; }
  .ed-body { padding: 18px 20px 22px; }
}



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

.about-image-stack { position: relative; display: flex; justify-content: center; align-items: center; min-height: 440px; }

.about-img-frame {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 48px; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; box-shadow: var(--shadow-lg);
}

.about-logo-img { width: 220px; object-fit: contain; }

.about-float-card {
  position: absolute;
  background: #fff; border: 1.5px solid rgba(217,30,24,0.15);
  border-radius: 14px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow-md); z-index: 3;
  animation: float-card 5s ease-in-out infinite;
}
.about-float-card i { color: var(--green); font-size: 18px; }
.fc-1 { top: 30px; left: -20px; animation-delay: 0s; }
.fc-2 { bottom: 40px; right: -20px; animation-delay: 2.5s; }

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

.about-accent-ring {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 1px dashed rgba(217,30,24,0.12); z-index: 1;
  animation: ring-rotate 20s linear infinite;
}

@keyframes ring-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-lead { font-size: 19px; color: var(--text); font-weight: 400; line-height: 1.6; margin-bottom: 16px; }
.about-body { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }

.pillar { display: flex; align-items: flex-start; gap: 16px; }

.pillar-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--red-light); border: 1.5px solid rgba(217,30,24,0.15);
  display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 16px; flex-shrink: 0;
}

.pillar-text { display: flex; flex-direction: column; gap: 3px; }
.pillar-text strong { font-size: 15px; font-weight: 600; color: var(--text); }
.pillar-text span { font-size: 13.5px; color: var(--text-muted); }

.btn-about {
  background: var(--red); color: #fff; font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: 50px; border: none; text-decoration: none;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-about:hover { background: var(--red-dark); color: #fff; box-shadow: 0 14px 36px var(--red-glow); transform: translateY(-2px); }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section { background: var(--bg-2); }

.testimonial-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 36px; height: 100%; transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; right: 22px;
  font-family: var(--font); font-size: 120px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: rgba(217,30,24,0.05); pointer-events: none;
}
.testimonial-card:hover { border-color: rgba(217,30,24,0.2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tc-featured { background: linear-gradient(160deg, #fff5f5 0%, #fff 100%); border-color: rgba(217,30,24,0.2); }
.tc-stars { font-size: 16px; color: var(--green); margin-bottom: 18px; letter-spacing: 3px; }
.tc-quote { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.tc-author div { display: flex; flex-direction: column; gap: 2px; }
.tc-author strong { font-size: 14px; color: var(--text); font-weight: 600; }
.tc-author span { font-size: 12px; color: var(--text-dim); }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: var(--text);
  position: relative; overflow: hidden; padding: 120px 0;
}

.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.cta-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(217,30,24,0.25) 0%, transparent 70%); top: -200px; left: -200px; }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(67,147,41,0.14) 0%, transparent 70%); bottom: -100px; right: -100px; }

.cta-title { font-family: var(--font); font-size: clamp(40px, 5vw, 64px); font-weight: 800; letter-spacing: -0.025em; color: #fff; line-height: 1.05; margin-bottom: 20px; }
.cta-title em { font-style: italic; font-weight: 700; color: var(--green); }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

.cta-section .section-tag { color: rgba(255,255,255,0.5); }

.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

.btn-cta-primary {
  background: var(--red); color: #fff; font-size: 16px; font-weight: 600;
  padding: 16px 36px; border-radius: 50px; border: none; text-decoration: none; transition: var(--transition);
}
.btn-cta-primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 16px 40px rgba(217,30,24,0.4); transform: translateY(-3px); }

.btn-cta-ghost {
  background: transparent; color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500;
  padding: 16px 32px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none; transition: var(--transition);
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.07); }

.cta-contact-row { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.45); }
.cta-contact-row a { color: rgba(255,255,255,0.65); text-decoration: none; transition: var(--transition); }
.cta-contact-row a:hover { color: var(--green); }
.cta-divider { opacity: 0.3; }

/* ==========================================
   FOOTER
   ========================================== */
/* ── Silhouette footer background ── */
.fivver-footer {
  background: #0d1220;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Image sits absolutely at the top of the footer, behind all content */
.footer-silhouette-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 0;
}

/* Full-height overlay: CTA blend at top, dims animals for text legibility, seals grass at bottom */
.footer-silhouette-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    #0d1220 0%,
    rgba(13,18,32,0.05) 22%,
    rgba(13,18,32,0.62) 50%,
    rgba(13,18,32,0.78) 82%,
    #0d1220 100%
  );
  z-index: 2;
  pointer-events: none;
}

.footer-silhouette-wrap img {
  width: 100%;
  display: block;
  position: relative;
  filter: invert(1);
}

/* Footer content sits above the image */
.fivver-footer > .container {
  position: relative;
  z-index: 2;
}

.footer-top { padding: 180px 0 60px; }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { width: auto; height: 44px; object-fit: contain; }
.footer-brand-name { font-family: var(--font); font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
.footer-brand-name span { color: var(--red); }

.footer-about { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 24px; max-width: 280px; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 14px; text-decoration: none; transition: var(--transition);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

.footer-heading { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.72); text-decoration: none; transition: var(--transition); display: inline-block; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.footer-links a:hover { color: var(--green); transform: translateX(4px); }

.footer-newsletter-text { font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 16px; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

.footer-newsletter {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px; overflow: hidden; padding: 4px;
}
.newsletter-input { flex: 1; background: transparent; border: none; outline: none; color: #fff; font-size: 14px; padding: 8px 16px; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn { background: var(--red); color: #fff; border: none; border-radius: 50px; padding: 10px 22px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.newsletter-btn:hover { background: var(--red-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* ==========================================
   PAGE TRANSITION + ANIMATIONS
   ========================================== */
body { animation: page-in 0.5s ease both; }
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
  .hero-content { padding: 16px 0 16px; }
  .hero-left { padding-right: 0; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .fec-inner { padding: 28px; }
}

@media (max-width: 767px) {
  .hero-headline { font-size: 44px; }
  .section-title { font-size: 32px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: center; }
  .hero-stats { gap: 12px; }
  .about-float-card { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
  .event-ticker { display: none; }
  .clients-logos { gap: 8px; }
}
