/* ============================================================
   WORLD TECHNOLOGY AWARDS — GLOBAL DESIGN SYSTEM
   Blue & Yellow palette: LinkedIn blue (#0A66C2) primary structure,
   amber-yellow (#F5A800) accent — buttons, highlights, CTAs.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --primary: #004182;        /* deep LinkedIn blue */
  --primary-light: #005fa3;
  --gold: #F5A800;           /* amber yellow — buttons, highlights, CTAs */
  --gold-dark: #C07800;
  --gold-light: #FFD04D;
  --gold-pale: #FFF8E4;
  --white: #FFFFFF;
  --navy: #012040;
  --navy-light: #01305F;
  --champagne: #FFF0C0;
  --ocean: #0A66C2;
  --cyan: #70B5F9;
  --violet: #5E6AD2;
  --silver: #B0BAC9;
  --beige: #F3F6FA;
  --text-dark: #0B1D35;
  --text-body: #2B3A4D;
  --text-muted: #5E7083;
  --bg-light: #F3F6FA;
  --bg-section: #E8F1FB;
  --border: rgba(10,102,194,0.18);
  --border-strong: rgba(10,102,194,0.45);
  --shadow-sm: 0 2px 8px rgba(0,65,130,0.08);
  --shadow: 0 6px 24px rgba(0,65,130,0.12);
  --shadow-lg: 0 16px 48px rgba(0,65,130,0.18);
  --shadow-gold: 0 8px 28px rgba(245,168,0,0.32);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --header-h: 84px;         /* fixed-header height; logo + nav sit inside this */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; object-position: top center; }
.award-card-img, .blog-card-img, .region-card-img, .winner-card-img, .content-split-img img { object-fit: cover; object-position: top center; }
.page-hero-bg, .hero-slide { background-position: top center; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3 {
  font-family: 'Space Grotesk', 'Georgia', serif;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--primary); }
p { line-height: 1.7; color: var(--text-body); }
.lead { font-size: 1.15rem; color: var(--text-body); line-height: 1.75; }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.container { width: 92%; max-width: 1380px; margin: 0 auto; padding: 0 16px; }
.container-narrow { max-width: 900px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 90px 0; }
.section-alt { background: var(--bg-light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }
.section-primary { background: var(--primary); }
.section-primary h1, .section-primary h2, .section-primary h3 { color: var(--white); }
.section-primary p { color: rgba(255,255,255,0.85); }
.section-gold-grad { background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.text-center { text-align: center; }
.mt-2{margin-top:8px;} .mt-4{margin-top:16px;} .mt-6{margin-top:24px;}
.mb-4{margin-bottom:16px;} .mb-6{margin-bottom:24px;} .mb-8{margin-bottom:32px;}

.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 640px; }
.section-header.center p { margin: 0 auto; }
.gold-rule { width: 56px; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); margin: 14px 0; }
.gold-rule.center { margin: 14px auto; }

/* NAVIGATION */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,65,130,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,102,194,0.15);
  transition: all var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); padding: 0 20px; max-width: none; width: 100%; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.brand-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
/* Header wordmark: two equal lines, Cormorant Garamond gold */
.brand-logo-text span:first-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; font-weight: 600; color: var(--gold); letter-spacing: 0.01em;
}
/* caption (footer brand has a 2nd span); scoped to a real 2nd span so a lone
   header logo span is never shrunk by it */
.brand-logo-text span:nth-child(2) {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
/* footer wordmark stays modestly sized (the big size is for the header logo) */
.site-footer .brand-logo-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: 0.01em;
}
.nav-main { display: flex; align-items: center; gap: 2px; }
.nav-main a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: none; color: rgba(255,255,255,0.82);
  padding: 6px 11px; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.nav-main a:hover { color: var(--gold); background: rgba(10,102,194,0.1); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.6rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: none; color: rgba(255,255,255,0.8);
  padding: 9px 18px; transition: all var(--transition);
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(10,102,194,0.08); }
.nav-cta {
  font-family: 'Montserrat', sans-serif !important; font-size: 0.68rem !important;
  font-weight: 700 !important; letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)) !important;
  color: var(--navy) !important; padding: 8px 16px !important; border-radius: 2px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 20px; overflow-y: auto;
  z-index: 999; flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: none; color: rgba(255,255,255,0.82);
  padding: 14px 16px; border-bottom: 1px solid rgba(10,102,194,0.1);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  margin-top: 16px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--navy); text-align: center; padding: 14px; border-radius: var(--radius);
  font-weight: 700; letter-spacing: 0.1em;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 2px; cursor: pointer;
  transition: all var(--transition); border: none; text-decoration: none; white-space: nowrap;
}
.btn-gold { background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,168,0,0.45); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--gold-pale); color: var(--primary); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-navy { background: var(--primary); color: var(--white); }
.btn-navy:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.65rem; }
.btn-lg { padding: 18px 38px; font-size: 0.78rem; }
.btn-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* HERO */
.hero { position: relative; height: 92vh; min-height: 600px; max-height: 900px; overflow: hidden; margin-top: var(--header-h); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,rgba(0,65,130,0.82) 0%,rgba(1,32,64,0.7) 40%,rgba(1,32,64,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-text { max-width: 760px; }
.hero-text .eyebrow { color: var(--gold-light); margin-bottom: 16px; display: block; font-size: 0.78rem; }
.hero-text h1 { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-text p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 28px; max-width: 580px; }
.hero-indicators { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--gold); width: 40px; }

/* PAGE HERO */
.page-hero { position: relative; height: 340px; overflow: hidden; margin-top: var(--header-h); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(0,65,130,0.88),rgba(1,32,64,0.75)); }
.page-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.page-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 10px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.85); max-width: 580px; font-size: 1rem; }
.region-hero { height: 380px; }

/* BREADCRUMB */
.breadcrumb { padding: 12px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-family: 'Montserrat', sans-serif; color: var(--text-muted); }
.breadcrumb nav a { color: var(--primary); }
.breadcrumb nav a:hover { color: var(--gold); }

/* STATS BAR */
.stats-bar {
  background: linear-gradient(135deg,var(--navy),var(--primary));
  padding: 28px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; padding: 8px 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(10,102,194,0.3);
}
.stat-number { font-family: 'Space Grotesk', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; display: block; }

/* CARDS */
.award-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--border); cursor: pointer;
}
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.award-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s ease; }
.award-card:hover .award-card-img { transform: scale(1.05); }
.award-card-body { padding: 18px; }
.award-card-icon {
  width: 34px; height: 34px; background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-bottom: 0; margin-right: 10px; vertical-align: middle; flex-shrink: 0;
}
.award-card h3 { display: inline; font-size: 1.05rem; margin-bottom: 0; color: var(--primary); vertical-align: middle; }
.award-card-body > p { display: block; margin-top: 8px; }
.award-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.award-card-link {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-top: 12px; transition: gap var(--transition);
}
.award-card:hover .award-card-link { gap: 10px; }

.winner-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition); }
.winner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.winner-card-img { width: 100%; height: 220px; object-fit: cover; cursor: pointer; }
.winner-card-body { padding: 18px; }
.winner-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.winner-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.winner-card .location { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }

/* CTA SECTIONS */
.cta-banner { padding: 56px 0; position: relative; overflow: hidden; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner-text { flex: 1; min-width: 280px; }
.cta-banner-text .eyebrow { display: block; margin-bottom: 8px; }
.cta-banner-text h2 { margin-bottom: 10px; }
.cta-banner-text p { color: rgba(255,255,255,0.82); max-width: 520px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-center { text-align: center; padding: 64px 0; }
.cta-center .eyebrow { display: block; margin-bottom: 10px; }
.cta-center h2 { margin-bottom: 14px; }
.cta-center p { max-width: 560px; margin: 0 auto 28px; color: var(--text-muted); }
.cta-image-section { position: relative; overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.cta-image-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(0,65,130,0.9),rgba(1,32,64,0.8)); }
.cta-image-content { position: relative; z-index: 2; text-align: center; padding: 60px 0; width: 100%; }
.cta-image-content .eyebrow { color: var(--gold-light); display: block; margin-bottom: 12px; }
.cta-image-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-image-content p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 28px; }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative; transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-card::before {
  content: '\201C'; font-family: 'Space Grotesk', serif; font-size: 4rem;
  color: var(--gold); opacity: 0.5; position: absolute; top: 8px; left: 20px; line-height: 1;
}
.testimonial-card blockquote { font-size: 0.95rem; line-height: 1.75; color: var(--text-body); margin-bottom: 18px; padding-top: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-info h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--primary); }
.testimonial-info span { font-size: 0.72rem; color: var(--text-muted); font-family: 'Montserrat', sans-serif; }
.star-rating { color: var(--gold); font-size: 0.8rem; margin-bottom: 8px; }

/* GALLERY — tight mosaic collage (zero gaps, full aspect-ratio preservation) */
.gallery-grid {
  column-count: 5;
  column-gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  border: 0;
  outline: 0;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  vertical-align: bottom;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: saturate(0.92) brightness(0.96);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1.05);
}
.gallery-item.tall, .gallery-item.wide { /* legacy spans — no-op in masonry */ }
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,65,130,0.55) 0%, rgba(10,102,194,0.15) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-item::after {
  content: '↗';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 1280px) { .gallery-grid { column-count: 4; } }
@media (max-width: 900px)  { .gallery-grid { column-count: 3; } }
@media (max-width: 600px)  { .gallery-grid { column-count: 2; } }

/* VIDEOS */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-card-info { padding: 16px; }
.video-card-info .eyebrow { margin-bottom: 4px; font-size: 0.62rem; }
.video-card-info h4 { color: var(--white); font-size: 0.95rem; font-family: 'Montserrat', sans-serif; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--white); text-align: left; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--primary); transition: all var(--transition); gap: 12px;
}
.faq-question:hover { background: var(--bg-light); color: var(--gold); }
.faq-item.open .faq-question { background: var(--gold-pale); color: var(--primary); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; transition: all var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 800px; }
.faq-answer-inner { padding: 16px 22px 20px; font-size: 0.88rem; color: var(--text-body); line-height: 1.75; border-top: 1px solid var(--border); background: var(--bg-light); }

/* BLOG */
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; }
.blog-category { background: var(--gold-pale); color: var(--gold-dark); padding: 2px 8px; border-radius: 2px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.6rem; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.blog-card .read-more { margin-top: 14px; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.blog-card:hover .read-more { gap: 9px; }

/* REGION/COUNTRY CARDS */
.region-card { position: relative; height: 260px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.region-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.region-card:hover .region-card-img { transform: scale(1.08); }
.region-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg,rgba(0,65,130,0.85) 0%,rgba(0,65,130,0.2) 60%); transition: background var(--transition); }
.region-card:hover .region-card-overlay { background: linear-gradient(0deg,rgba(0,65,130,0.95) 0%,rgba(0,65,130,0.3) 60%); }
.region-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; }
.region-card-content .eyebrow { font-size: 0.6rem; margin-bottom: 4px; }
.region-card-content h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.region-card-content span { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* BENEFITS */
.benefit-item { display: flex; gap: 18px; padding: 20px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--transition); }
.benefit-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.benefit-icon { width: 50px; height: 50px; background: linear-gradient(135deg,rgba(10,102,194,0.15),rgba(10,102,194,0.08)); border: 1px solid var(--border-strong); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.benefit-text h4 { margin-bottom: 5px; font-size: 1rem; }
.benefit-text p { font-size: 0.85rem; color: var(--text-muted); }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.process-step { text-align: center; padding: 28px 20px; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -14px; top: 38px; color: var(--gold); font-size: 1.2rem; }
.step-number { width: 58px; height: 58px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Space Grotesk', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* CONTACT */
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.contact-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--navy); }
.contact-details h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-details a { color: var(--gold); font-size: 0.88rem; }
.contact-details a:hover { color: var(--gold-dark); }
.contact-details p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(10,102,194,0.15); }
.footer-contact-col h5 { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-brand p { font-size: 0.83rem; line-height: 1.75; margin: 14px 0 18px; color: rgba(255,255,255,0.6); }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.social-btn { width: 52px; height: 52px; background: rgba(10,102,194,0.12); border: 1px solid rgba(10,102,194,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: rgba(255,255,255,0.7); transition: all var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-newsletter p { font-size: 0.83rem; margin-bottom: 12px; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 10px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(10,102,194,0.2); border-right: none; border-radius: var(--radius) 0 0 var(--radius); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.82rem; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { padding: 10px 16px; background: linear-gradient(135deg,var(--gold),var(--gold-dark)); color: var(--navy); border: none; border-radius: 0 var(--radius) var(--radius) 0; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--gold); }
.footer-disclaimer { margin: 8px 0 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
  font-family: inherit; font-size: 0.72rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-disclaimer strong { color: rgba(255,255,255,0.7); }
.footer-disclaimer a { color: var(--gold); text-decoration: underline; }

/* ---- TESTIMONIAL / INLINE VIDEO (shared) ---- */
.vid { position: relative; aspect-ratio: 16/9; width: 100%; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--navy); cursor: pointer;
  box-shadow: var(--shadow); }
.vid-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; color: var(--navy);
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  box-shadow: var(--shadow-gold); transition: all var(--transition); padding-left: 4px; }
.vid:hover .vid-play { transform: translate(-50%,-50%) scale(1.1); }
.vid::after { content: ''; position: absolute; inset: 0; background: rgba(1,32,64,0.25); transition: background var(--transition); pointer-events: none; }
.vid:hover::after { background: rgba(1,32,64,0.12); }
.vid iframe { z-index: 2; }
.vid iframe ~ .vid-play, .vid iframe ~ .vid-thumb { display: none; }

/* ---- TWO-COLUMN FAQ (Fee page) ---- */
.faq-cols { align-items: start; }
.faq-cols h3 { margin-top: 0; }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: all var(--transition); font-size: 1.5rem; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* MISC */
.gold-text { color: var(--gold); }
.divider { height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); margin: 40px 0; opacity: 0.4; }
.tag { display: inline-flex; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.tag-gold { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid var(--border-strong); }
.tag-navy { background: var(--primary); color: var(--white); }
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }
.content-split-text .eyebrow { display: block; margin-bottom: 10px; }
.content-split-text h2 { margin-bottom: 14px; }
.content-split-text p { margin-bottom: 14px; color: var(--text-muted); }
.content-split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-split-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.content-split-img::before { content: ''; position: absolute; top: -10px; left: -10px; width: 60px; height: 60px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); z-index: 1; }
.content-split-img::after { content: ''; position: absolute; bottom: -10px; right: -10px; width: 60px; height: 60px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: 1; }
.lazy { opacity: 0; transition: opacity 0.5s ease; }
.lazy.loaded { opacity: 1; }
.highlight-card { background: linear-gradient(135deg,var(--gold-pale),var(--champagne)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 28px; }
.category-full-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 200px 1fr; box-shadow: var(--shadow-sm); transition: all var(--transition); margin-bottom: 16px; }
.category-full-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.category-full-card img { width: 200px; height: 160px; object-fit: cover; }
.category-full-card-body { padding: 22px; }
.category-full-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.category-full-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.subcategory-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.subcategory-tag { background: var(--bg-light); border: 1px solid var(--border); color: var(--text-muted); font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 2px; }

/* ============================================================
   PARTICIPATE SECTION
   ============================================================ */
.participate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.participate-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.participate-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.participate-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.pb-icon {
  font-size: 1.3rem;
  display: inline;
  vertical-align: middle;
  margin-right: 7px;
  line-height: 1;
}
.participate-box h4 {
  display: inline;
  vertical-align: middle;
  font-size: 0.92rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.participate-box p {
  display: block;
  margin-top: 7px;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.participate-box { text-align: left; }

/* ============================================================
   TESTIMONIAL VIDEOS (4-in-a-row)
   ============================================================ */
.video-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.video-4-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  transition: all var(--transition);
}
.video-4-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-4-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-4-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-4-info {
  padding: 14px 16px;
}
.video-4-info .eyebrow { font-size: 0.58rem; margin-bottom: 4px; display: block; }
.video-4-info h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ============================================================
   HIGHLIGHTS VIDEO (70/30)
   ============================================================ */
.highlights-split {
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 24px;
  align-items: stretch;
}
.highlights-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.highlights-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.highlights-video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.highlights-widget {
  background: linear-gradient(160deg, var(--primary) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(10,102,194,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.highlights-widget-title {
  font-family: 'Space Grotesk', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.highlights-widget-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hw-stat {
  padding: 12px 0;
  border-bottom: 1px solid rgba(10,102,194,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hw-stat:last-of-type { border-bottom: none; }
.hw-value {
  font-family: 'Space Grotesk', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.hw-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-align: right;
  line-height: 1.4;
}
.hw-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition);
}
.hw-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ============================================================
   AWARD CATEGORIES PILLS
   ============================================================ */
.cat-group { margin-bottom: 28px; }
.cat-group-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 7px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.cat-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--primary);
  transform: translateY(-1px);
}
.cat-pill-icon { font-size: 0.85rem; }

/* ============================================================
   MAJOR AWARDS SECTION
   ============================================================ */
.major-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.major-award-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto auto;
  gap: 4px 14px;
  align-items: start;
}
.major-award-box::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.major-award-box:hover::before { transform: scaleX(1); }
.major-award-box:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.major-award-logo {
  width: 48px; height: 48px;
  grid-column: 1; grid-row: 1;
  align-self: center;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  border: 2px solid rgba(10,102,194,0.3);
  box-shadow: 0 4px 16px rgba(0,65,130,0.2);
}
.major-award-box h4 {
  grid-column: 2; grid-row: 1;
  align-self: center;
  font-family: 'Space Grotesk', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary);
  line-height: 1.25;
}
.major-award-box p {
  grid-column: 1 / -1; grid-row: 2;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  margin-top: 4px;
}
.major-award-box .mab-link {
  grid-column: 1 / -1; grid-row: 3;
}
.major-award-box .mab-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.major-award-box:hover .mab-link { gap: 8px; }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1100px) {
  .video-4-grid { grid-template-columns: repeat(2, 1fr); }
  .major-awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .highlights-split { grid-template-columns: 1fr; }
  .highlights-widget { padding: 24px 20px; }
}
@media (max-width: 768px) {
  .participate-grid { grid-template-columns: repeat(2, 1fr); }
  .video-4-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .participate-grid { grid-template-columns: 1fr; }
  .video-4-grid { grid-template-columns: 1fr; }
  .major-awards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WINNERS LOGO MARQUEE (Few of Our Winners)
   ============================================================ */
.winners-logos-section { overflow: hidden; }
.logos-marquee {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  width: 100%;
  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%);
}
.logos-marquee + .logos-marquee { margin-top: 14px; }
.logos-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scroll-logos-left 55s linear infinite;
}
.logos-track-reverse {
  animation: scroll-logos-right 65s linear infinite;
}
.logos-marquee:hover .logos-track { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  width: 210px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(7, 44, 87, 0.04);
  filter: grayscale(45%);
  position: relative;
}
.logo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-pale), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.logo-item:hover {
  border-color: var(--gold);
  filter: grayscale(0);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(7, 44, 87, 0.12);
}
.logo-item:hover::before { opacity: 1; }
.logo-item img {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@keyframes scroll-logos-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-logos-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 768px) {
  .logo-item { width: 170px; height: 95px; padding: 14px 18px; }
  .logo-item img { max-height: 62px; }
  .logos-track { gap: 18px; animation-duration: 40s; }
  .logos-track-reverse { animation-duration: 48s; }
}
@media (max-width: 480px) {
  .logo-item { width: 140px; height: 80px; padding: 12px 16px; }
  .logo-item img { max-height: 50px; }
}

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-in-delay { animation: fadeInUp 0.6s ease 0.2s forwards; opacity: 0; }
.animate-in-delay-2 { animation: fadeInUp 0.6s ease 0.4s forwards; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 3; }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}
/* Collapse desktop nav to the hamburger while there's still room beside the large
   logo (3rem wordmark + full nav only coexist on wide screens). */
@media (max-width: 1100px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .hero { height: 75vh; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:not(:last-child)::after { display: none; }
  .content-split { gap: 36px; }
}
@media (max-width: 768px) {
  :root { --header-h: 80px; }
  .brand-icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .section { padding: 44px 0; }
  .section-lg { padding: 56px 0; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .content-split { grid-template-columns: 1fr; }
  .content-split.reverse { direction: ltr; }
  .content-split-img img { height: 280px; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .category-full-card { grid-template-columns: 1fr; }
  .category-full-card img { width: 100%; height: 180px; }
  .stat-item:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  :root { --header-h: 76px; }
  .brand-logo-text span:first-child { font-size: 1.3rem; }
  .brand-icon { width: 36px; height: 36px; font-size: 1.05rem; }
  .hero { height: 85vh; }
  .page-hero { height: 260px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:first-child { grid-column: span 1; }
  .btn-group { flex-direction: column; align-items: stretch; text-align: center; }
}

/* ============================================================
   TAB SYSTEM (About / Fee pages)
   ============================================================ */

/* Sticky full-width tab bar wrapper */
.sticky-tabs-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 900;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 3px 16px rgba(0,65,130,0.10);
  width: 100%;
}
.sticky-tabs-bar .container {
  padding-top: 0;
  padding-bottom: 0;
}

.tab-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: none;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em;
  text-transform: none; color: var(--text-muted);
  padding: 16px 22px;
  border-bottom: 3px solid transparent;
  white-space: nowrap; flex-shrink: 0;
  transition: all var(--transition); background: transparent;
}
.tab-btn:hover { color: var(--primary); background: var(--bg-light); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: var(--gold-pale); }

/* Tab content area gets top padding so content is never hidden by sticky bar */
.tab-content-area {
  padding-top: 40px;
}
.tab-pane { display: none; animation: fadeIn 0.4s ease; }
.tab-pane.active { display: block; }

/* ============================================================
   TEXT NAME-WALL (nominees & winners — text marquee variant)
   ============================================================ */
.name-item {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem; font-weight: 600; color: var(--primary);
  white-space: nowrap; box-shadow: 0 2px 8px rgba(0,65,130,0.04);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.name-item::before {
  content: '⬢'; color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
}
.name-item:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,65,130,0.12); background: var(--gold-pale);
}

/* ============================================================
   TECH GRID-GLOW DECOR (hero / sector accents)
   ============================================================ */
.tech-grid-bg {
  background-image:
    linear-gradient(rgba(10,102,194,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,102,194,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(10,102,194,0.14), rgba(124,92,252,0.10));
  border: 1px solid var(--border-strong); font-size: 1.5rem; margin-bottom: 14px;
}
.spec-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.spec-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.92rem; color: var(--text-body); line-height: 1.6;
}
.spec-list li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%; background: var(--gold-pale);
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
.prose p { margin-bottom: 16px; color: var(--text-body); }
.prose h2 { margin: 32px 0 14px; }
.prose h3 { margin: 24px 0 10px; }
.prose ul.spec-list { margin-bottom: 16px; }
