/* ═══════════════════════════════════════════════════════
   FX EXPO GLOBAL — MAIN STYLESHEET
   Theme: White/Light with Deep Green accents
   Primary: #26914b  |  Dark: #103b20
═══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
══════════════════════════════════════════ */
:root {
  --green:       #26914b;
  --green-dark:  #103b20;
  --green-mid:   #1d7a3d;
  --green-pale:  #eef8f2;
  --gradient:    linear-gradient(135deg, #26914b 0%, #1a6b35 100%);
  --gradient-v:  linear-gradient(180deg, #26914b 0%, #103b20 100%);

  --bg:          #f8faf8;
  --bg2:         #f2f5f2;
  --white:       #ffffff;
  --card:        #ffffff;
  --border:      rgba(0,0,0,0.10);
  --border2:     rgba(0,0,0,0.07);

  --text:        #111a14;
  --text2:       #2c3e30;
  --gray:        #5a6b5f;
  --dim:         #8a9e8e;

  --shadow:      0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg:   0 16px 60px rgba(0,0,0,0.15);

  --radius:      14px;
  --radius-sm:   8px;
  --radius-lg:   22px;
  --transition:  all 0.22s ease;

  --nav-h:       72px;
  --container:   1200px;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -1.5px; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.8px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p { color: var(--gray); line-height: 1.75; }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: #ffffff; }
.section-darker { background: #f5f9f6; }
.section-dark h2, .section-darker h2, .section-dark h3, .section-darker h3 { color: var(--text); }
.section-dark p, .section-darker p { color: var(--gray); }
.section-alt { background: var(--bg2); }
.section-header { margin-bottom: 3rem; text-align: center; }
.section-header p { max-width: 600px; margin: 0.75rem auto 0; font-size: 1.05rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--green-pale); border: 1px solid rgba(38,145,75,0.22);
  color: var(--green); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 0.9rem;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--gradient); color: #fff;
  font-weight: 800; font-size: 0.88rem; letter-spacing: 0.3px;
  padding: 0.7rem 1.6rem; border-radius: 50px;
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(38,145,75,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(38,145,75,0.42); filter: brightness(1.08); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--text);
  font-weight: 700; font-size: 0.88rem;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  border: 1.5px solid var(--border); cursor: pointer;
  text-decoration: none; transition: var(--transition); white-space: nowrap;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gradient); color: #fff;
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.5px;
  padding: 0.48rem 1.1rem; border-radius: 50px;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 2px 10px rgba(38,145,75,0.3); white-space: nowrap;
}
.btn-nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* Outline buttons on dark backgrounds (hero/cup/cta only — sections are now white) */
.cup-section .btn-outline,
.cta-section .btn-outline,
.hero .btn-outline {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.35);
}
.cup-section .btn-outline:hover,
.cta-section .btn-outline:hover,
.hero .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; margin-right: 0.5rem; }
.logo-link svg { height: 40px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  flex: 1; margin-left: 0.5rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 700; color: var(--text2);
  transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-item:hover .nav-link { color: var(--green); background: var(--green-pale); }
.arrow-icon { font-size: 0.75rem; transition: transform 0.2s; }
.nav-item:hover .arrow-icon { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0; padding-top: 8px;
  background: var(--white); border: 1.5px solid var(--border2);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 280px; overflow: hidden; z-index: 2000;
  animation: fadeDown 0.18s ease;
}
.nav-item:hover .dropdown { display: block; }
.dropdown-item {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--border2);
  transition: var(--transition); text-decoration: none;
}
.dropdown-item:last-of-type { border-bottom: none; }
.dropdown-item:hover { background: var(--green-pale); }
.dropdown-flag { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.dropdown-info { flex: 1; min-width: 0; }
.dropdown-city { font-size: 0.88rem; font-weight: 800; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dropdown-date { font-size: 0.75rem; color: var(--dim); font-weight: 600; margin-top: 1px; }
.dropdown-arrow { color: var(--dim); font-size: 0.7rem; margin-left: auto; flex-shrink: 0; }
.dropdown-divider { height: 1px; background: var(--border2); margin: 0; }
.dropdown-footer {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.1rem; font-size: 0.82rem; font-weight: 800;
  color: var(--green); text-decoration: none; transition: var(--transition);
}
.dropdown-footer:hover { background: var(--green-pale); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0.65rem; margin-left: auto; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border-radius: 8px;
  transition: var(--transition); margin-left: auto;
}
.hamburger:hover { background: var(--green-pale); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 1500; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-size: 1.4rem; color: var(--text2); padding: 0.4rem 0.75rem;
  border-radius: 8px; transition: var(--transition);
  background: var(--bg2); border: 1px solid var(--border2);
}
.mobile-close:hover { color: var(--green); background: var(--green-pale); }
.mobile-nav a {
  font-size: 1.25rem; font-weight: 800; color: var(--text);
  padding: 0.6rem 1.5rem; border-radius: 50px;
  transition: var(--transition); text-align: center;
}
.mobile-nav a:hover { color: var(--green); background: var(--green-pale); }
.mobile-nav .btn-primary { margin-top: 0.5rem; font-size: 1rem; padding: 0.7rem 2rem; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  background: linear-gradient(160deg, #081408 0%, #0d2010 40%, #0f2a14 70%, #0a1c0c 100%);
  display: flex; align-items: flex-start;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,20,8,0.3) 0%, rgba(8,20,8,0.6) 100%);
}
.hero-shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(38,145,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-shape-1 { width: 700px; height: 700px; top: -200px; right: -150px; }
.hero-shape-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; }
.hero-content {
  position: relative; z-index: 2; max-width: var(--container);
  margin: 0 auto; padding: 4rem 1.5rem 5rem;
  width: 100%; text-align: center;
}
.hero h1 { margin-left: auto; margin-right: auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(38,145,75,0.15); border: 1px solid rgba(38,145,75,0.3);
  color: #7de8a0; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 1.25rem;
  animation: fadeDown 0.6s ease both;
}
.hero h1 {
  color: #fff; max-width: 700px; margin-bottom: 0.75rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(0.9rem,2vw,1.1rem); color: rgba(255,255,255,0.72);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 2.5rem; animation: fadeUp 0.9s ease 0.2s both;
}

/* Hero event box — two-column layout */
.hero-event-box {
  display: flex; gap: 0; overflow: hidden;
  background: rgba(10,20,14,0.72);
  border: 1px solid rgba(110,228,152,0.18);
  border-radius: 20px; max-width: 860px;
  margin: 0 auto;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(38,145,75,0.08);
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-event-photo {
  width: 360px; flex-shrink: 0;
  background: linear-gradient(160deg, #0d2416 0%, #183d22 100%);
  border-right: 1px solid rgba(110,228,152,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 240px;
}
.hero-event-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-event-photo-flag {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(0,0,0,0.45); padding: 10px 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-event-photo-flag span.flag-emoji { font-size: 1.4rem; line-height: 1; }
.hero-event-photo-flag span.flag-text { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: .02em; }
.hero-event-info { flex: 1; padding: 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0; min-width: 0; align-items: center; text-align: center; }
.hero-event-top { display: flex; align-items: center; justify-content: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.event-badge { background: var(--gradient); color: #fff; font-size: 0.58rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 4px 11px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; box-shadow: 0 2px 10px rgba(38,145,75,.35); }
.event-name { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.5px; color: #fff; }
.event-location { font-size: 0.72rem; color: #6ee498; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.7rem; }
.event-date-row { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.7rem; }
.event-date-tag { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.11); border-radius: 7px; padding: 4px 11px; font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.event-date-tag strong { color: #fff; font-weight: 700; }
.event-buttons { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-top: auto; padding-top: 1rem; }
.btn-sponsor-gold {
  display: inline-flex; align-items: center; gap: .45rem;
  background: linear-gradient(135deg, #b8892a 0%, #e4b84a 50%, #c99a30 100%);
  color: #1a0e00; font-size: .82rem; font-weight: 800; letter-spacing: .02em;
  padding: .55rem 1.1rem; border-radius: 30px; border: none; cursor: pointer;
  box-shadow: 0 2px 12px rgba(200,155,40,.35); transition: transform .18s, box-shadow .18s;
  text-decoration: none; white-space: nowrap;
}
.btn-sponsor-gold i { font-size: .75rem; color: #1a0e00; }
.btn-sponsor-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,155,40,.5); }
.hero-event-venue { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-bottom: 0.85rem; }
.hero-event-venue i { color: #6ee498; font-size: .8rem; }
.hero-countdown { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; margin-bottom: 0; width: 100%; }
.countdown-label { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.65rem; text-align: center; }
.countdown { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.cd-box {
  min-width: 56px; padding: 8px 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; text-align: center;
}
.cd-num { font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-unit { font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border2); padding: 1.75rem 0; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.stats-container, .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.stat-item { text-align: center; padding: 0.5rem 1rem; border-right: 1px solid var(--border2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: 0.78rem; color: var(--dim); font-weight: 600; margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════
   SHOWS / EVENTS GRID
══════════════════════════════════════════ */
/* 3+2 centered layout: flex wrap with center justification */
.shows-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.show-card {
  background: var(--card); border: 1.5px solid var(--border2);
  border-radius: 16px; overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow);
  flex: 0 0 calc((100% - 3rem) / 3);
  max-width: calc((100% - 3rem) / 3);
  display: flex; flex-direction: column;
}
.show-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); border-color: rgba(38,145,75,0.28); }

/* Cover image at top of card — ratio 785:191 */
.show-cover {
  width: 100%; aspect-ratio: 785 / 191;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.show-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.32) 100%);
}
.show-cover-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-size: 0.58rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 1.2px; padding: 4px 11px; border-radius: 20px;
  background: rgba(255,255,255,0.18); color: #fff;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25);
}
.show-cover-badge--next {
  background: var(--gradient); border-color: transparent;
  box-shadow: 0 2px 10px rgba(38,145,75,.4);
}

/* .show-header — city + country */
.show-header { padding: 0.85rem 1.4rem 0.3rem; }
.show-header h3 { font-size: 1.3rem; font-weight: 900; color: var(--text); margin: 0 0 0.2rem; }
.show-header p { font-size: 0.78rem; color: var(--dim); font-weight: 600; margin: 0; }

/* .show-meta — dates and venue */
.show-meta { padding: 0.5rem 1.4rem 0.75rem; flex: 1; }
.show-meta-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.79rem; color: var(--gray); margin-bottom: 0.42rem; }
.show-meta-row i { color: var(--green); font-size: 0.7rem; flex-shrink: 0; width: 14px; }

/* .show-actions — buttons at bottom */
.show-actions {
  padding: 0.9rem 1.4rem 1.2rem; display: flex; align-items: center;
  gap: 0.55rem; flex-wrap: wrap; margin-top: auto;
  border-top: 1px solid var(--border2);
}
/* Learn More button */
.show-actions .btn-primary.btn-sm {
  flex: 1; justify-content: center; font-size: .82rem; padding: .52rem 1rem;
  border-radius: 30px; box-shadow: 0 2px 10px rgba(38,145,75,.25);
}
/* Sponsor button */
.show-actions .btn-outline.btn-sm {
  flex: 1; justify-content: center; font-size: .82rem; padding: .52rem 1rem;
  border-radius: 30px; border-color: var(--border2); color: var(--gray);
  font-weight: 700;
}
.show-actions .btn-outline.btn-sm:hover { border-color: var(--green); color: var(--green); background: rgba(38,145,75,.05); }

/* Legacy aliases (show-card-head/body/footer) */
.show-card-head { padding: 1.4rem 1.4rem 1rem; }
.show-card-flag { font-size: 2rem; margin-bottom: 0.6rem; line-height: 1; }
.show-card-city { font-size: 1.05rem; font-weight: 900; color: var(--text); margin-bottom: 0.2rem; }
.show-card-country { font-size: 0.75rem; color: var(--dim); font-weight: 600; }
.show-card-body { padding: 0 1.4rem 0.5rem; }
.show-card-footer { padding: 1rem 1.4rem; border-top: 2px solid rgba(38,145,75,0.18); background: linear-gradient(to bottom, rgba(38,145,75,0.04), transparent); display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.show-status-confirmed { background: #d4edda; color: #1a6b35; }
.show-status-2027 { background: rgba(38,145,75,0.12); color: var(--green); border: 1.5px solid rgba(38,145,75,0.3); }
.show-card-link { font-size: 0.75rem; font-weight: 800; color: var(--green); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.show-card-link:hover { color: var(--green-dark); }
/* Show card image placeholder */
.show-thumb {
  height: 130px; background: linear-gradient(160deg, #e8f0ea 0%, #d4e8d8 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.4rem;
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border2);
}
.show-thumb:hover { background: linear-gradient(160deg, #ddeee1 0%, #c8e2cc 100%); }
.show-thumb-inner { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; color: #b0c8b5; }
.show-thumb-inner i { font-size: 1.7rem; }
.show-thumb-inner span { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════════
   WHAT HAPPENS (HIGHLIGHTS)
══════════════════════════════════════════ */
.highlights-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.highlight-card {
  background: var(--card); border: 1.5px solid var(--border2);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(38,145,75,0.25); }
.highlight-photo {
  height: 140px; background: linear-gradient(160deg, #e8f0ea 0%, #d4e8d8 100%);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border2);
}
.highlight-photo i { font-size: 2rem; color: #b0c8b5; }
.highlight-body { padding: 1.2rem 1.25rem 1.4rem; }
.highlight-body h4 { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 0.45rem; }
.highlight-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════════
   WHAT IS FX EXPO SECTION
══════════════════════════════════════════ */
.what-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.what-left p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin-bottom: 1rem; }
.what-grid-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.what-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.4rem 1.25rem; transition: var(--transition); box-shadow: var(--shadow); }
.what-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.what-icon { width: 44px; height: 44px; background: var(--green-pale); border: 1px solid rgba(38,145,75,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.what-icon i { color: var(--green); font-size: 1rem; }
.what-card h4 { font-size: 0.88rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text); }
.what-card p { font-size: 0.77rem; color: var(--gray); line-height: 1.5; margin: 0; }
.participant-list { margin-top: 1.5rem; }
.participant-list h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 0.85rem; }
.participant-list ul { display: flex; flex-direction: column; gap: 0.45rem; }
.participant-list li { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--gray); }
.participant-list li i { color: var(--green); font-size: 0.68rem; flex-shrink: 0; }

/* ══════════════════════════════════════════
   WHY ATTEND
══════════════════════════════════════════ */
.why-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.why-tab { padding: 0.5rem 1.2rem; border-radius: 50px; border: 1.5px solid var(--border2); font-size: 0.82rem; font-weight: 700; color: var(--dim); cursor: pointer; transition: var(--transition); background: transparent; }
.why-tab.active, .why-tab:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 3px 12px rgba(38,145,75,0.28); }
.why-content { display: none; }
.why-content.active { display: block; }
.why-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); box-shadow: var(--shadow); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(38,145,75,0.2); }
.why-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-icon i { color: var(--green); font-size: 1.2rem; }
.why-card h4 { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin: 0; }

/* ══════════════════════════════════════════
   PARTNERS / SPONSORS
══════════════════════════════════════════ */
.partners-section { padding: 5rem 0; }
.partners-tier { margin-bottom: 3rem; }
.tier-label {
  font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px;
  color: var(--dim); margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.6rem;
}
.tier-label::after { content: ''; flex: 1; height: 1px; background: var(--border2); }
.tier-titanium .partners-logos { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.tier-gold .partners-logos { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; }
.tier-silver .partners-logos { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.partner-logo {
  background: var(--bg2); border: 1.5px solid var(--border2); border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: var(--dim);
  transition: var(--transition); white-space: nowrap;
}
.partner-logo:hover { border-color: var(--green); color: var(--green); background: var(--green-pale); transform: translateY(-2px); box-shadow: var(--shadow); }
.partners-cta-bar {
  background: var(--green-pale); border: 1.5px solid rgba(38,145,75,0.2);
  border-radius: var(--radius); padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2rem;
}
.partners-cta-bar p { color: var(--text2); font-size: 0.9rem; font-weight: 600; margin: 0; }

/* ══════════════════════════════════════════
   CUP / CTA SECTION
══════════════════════════════════════════ */
.cup-section, .cta-section {
  background: #071a0e;
  position: relative; overflow: hidden;
}
/* Text colors inside dark cup/cta sections — target all headings and paragraphs */
.cup-section h2, .cup-section h3, .cup-section h4 { color: #fff; }
.cup-section p, .cup-left p { color: rgba(255,255,255,0.65); margin-bottom: 1rem; }
.cta-section h2, .cta-section h3 { color: #fff; }
.cta-section > .section-container > p,
.cta-section p { color: rgba(255,255,255,0.65); }
.cup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cta-section .section-container { text-align: center; position: relative; z-index: 1; max-width: 760px; }
.cta-buttons { display: flex; gap: .85rem; flex-wrap: nowrap; margin-top: 0; justify-content: center; margin-bottom: 2.8rem; }

/* ══════════════════════════════════════════
   SHOW DETAILED CARDS (shows.html)
══════════════════════════════════════════ */
.show-detailed-card {
  display: grid; grid-template-columns: 340px 1fr;
  background: var(--card); border: 1.5px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 2rem; transition: var(--transition);
}
.show-detailed-card:hover { box-shadow: var(--shadow-md); }
.show-card-image {
  background: linear-gradient(160deg, #0d2416 0%, #1a4028 100%);
  min-height: 240px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  position: relative; overflow: hidden;
}
.show-card-image-flag { font-size: 4rem; line-height: 1; }
.show-card-image-city { color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.show-card-content { padding: 2rem 2.25rem; }
.show-card-content h3 { margin-bottom: 0.5rem; }
.show-description { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }
.show-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.75rem; }
.show-detail-item { display: flex; align-items: flex-start; gap: 0.6rem; }
.show-detail-item i { color: var(--green); font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; }
.show-detail-label { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dim); }
.show-detail-value { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.show-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   SCHEDULE (show pages)
══════════════════════════════════════════ */
.show-countdown-bar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem 2rem; margin-bottom: 2rem; text-align: center; }
.show-countdown-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.show-countdown-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.5rem; }
.show-countdown-boxes { display: flex; align-items: center; gap: 0.75rem; }
.show-cd-box { text-align: center; min-width: 64px; }
.show-cd-num { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.show-cd-unit { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.show-cd-sep { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.3); line-height: 1; align-self: flex-start; padding-top: 0.2rem; }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.schedule-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.75rem; }
.schedule-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.schedule-card-title { font-size: 1.1rem; font-weight: 900; color: #fff; }
.schedule-card-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.schedule-badge { font-size: 0.62rem; font-weight: 800; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-vip { background: linear-gradient(135deg, #c9a227, #a07d10); color: #fff; }
.badge-free { background: rgba(38,145,75,0.3); color: #7de8a0; border: 1px solid rgba(38,145,75,0.4); }
.schedule-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; }
.schedule-detail i { color: #7de8a0; font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.schedule-detail-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 1px; }
.schedule-detail-value { font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.88); }
.schedule-includes { margin-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
.schedule-includes h5 { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; }
.schedule-includes ul { display: flex; flex-direction: column; gap: 0.35rem; }
.schedule-includes li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.schedule-includes li i { color: #7de8a0; font-size: 0.65rem; flex-shrink: 0; }

/* ══════════════════════════════════════════
   TICKET CARDS
══════════════════════════════════════════ */
.ticket-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.ticket-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: var(--transition); }
.ticket-card:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-4px); }
.ticket-card.vip { border-color: rgba(201,162,39,0.4); background: rgba(201,162,39,0.06); }
.ticket-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.ticket-type { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.ticket-price { font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.ticket-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; }
.ticket-features { text-align: left; margin-bottom: 1.5rem; }
.ticket-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ticket-features li i { color: #7de8a0; font-size: 0.65rem; flex-shrink: 0; }
.ticket-cta { width: 100%; text-align: center; justify-content: center; }

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { position: relative; background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow); position: relative; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(38,145,75,0.2); }
.blog-card-image { height: 180px; background: linear-gradient(160deg, #d4e8d8 0%, #e8f3ea 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-image i { font-size: 2.5rem; color: #b0c8b5; }
.blog-cat-tag { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--gradient); color: #fff; font-size: 0.62rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; z-index: 1; }
.blog-card-body { padding: 1.25rem; }
.blog-card-body h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; line-height: 1.35; }
.blog-card-body p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--dim); font-weight: 600; }
.blog-meta i { color: var(--green); font-size: 0.72rem; }
.blog-date { font-size: 0.75rem; color: var(--dim); }

/* Blog Search */
.blog-search-section { padding: 3rem 0 1.5rem; }
.blog-search-bar { display: flex; align-items: center; gap: 0.85rem; background: var(--card); border: 2px solid var(--border2); border-radius: 50px; padding: 0.9rem 1.75rem; max-width: 680px; margin: 0 auto 2rem; box-shadow: var(--shadow); transition: var(--transition); }
.blog-search-bar:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(38,145,75,0.12); }
.search-icon { color: var(--dim); font-size: 0.95rem; flex-shrink: 0; }
.blog-search-bar input { flex: 1; border: none; outline: none; background: transparent; font-size: 0.92rem; color: var(--text); font-weight: 500; }
.blog-search-bar input::placeholder { color: var(--dim); }
.blog-search-divider { width: 1px; height: 20px; background: var(--border2); flex-shrink: 0; }
.blog-results-count { font-size: 0.78rem; color: var(--dim); font-weight: 700; white-space: nowrap; }
.blog-filter-bar { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.blog-filter-btn { padding: 0.4rem 1.1rem; border-radius: 50px; border: 1.5px solid var(--border2); font-size: 0.8rem; font-weight: 700; color: var(--dim); cursor: pointer; transition: var(--transition); background: transparent; }
.blog-filter-btn.active, .blog-filter-btn:hover { background: var(--gradient); color: #fff; border-color: transparent; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.about-image-box { background: linear-gradient(160deg, #e8f0ea 0%, #d4e8d8 100%); border-radius: var(--radius-lg); min-height: 360px; display: flex; align-items: center; justify-content: center; }
.about-image-box i { font-size: 4rem; color: #b0c8b5; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mission-card, .vision-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.mission-card h3, .vision-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo { width: 90px; height: 90px; border-radius: 50%; background: var(--green-pale); border: 3px solid rgba(38,145,75,0.2); margin: 0 auto 0.85rem; display: flex; align-items: center; justify-content: center; }
.team-photo i { font-size: 2rem; color: var(--green); }
.team-name { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 0.2rem; }
.team-role { font-size: 0.75rem; color: var(--dim); font-weight: 600; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem; }
.testimonial-stars { color: #f5c842; font-size: 0.8rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(38,145,75,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-avatar i { color: #7de8a0; font-size: 0.9rem; }
.testimonial-name { font-size: 0.85rem; font-weight: 800; color: #fff; }
.testimonial-title { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-preview-grid .item { border-radius: var(--radius-sm); overflow: hidden; position: relative; background: var(--bg2); }
.gallery-preview-grid .item.tall { grid-row: span 2; }
.gallery-placeholder { width: 100%; height: 200px; background: linear-gradient(160deg, #d4e8d8 0%, #e8f3ea 100%); display: flex; align-items: center; justify-content: center; }
.gallery-placeholder.tall { height: 420px; }
.gallery-placeholder i { font-size: 2rem; color: #b0c8b5; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: var(--transition); }
.item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.82rem; font-weight: 700; color: #fff; }

/* ══════════════════════════════════════════
   AWARDS
══════════════════════════════════════════ */
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.awards-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.award-item { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); transition: var(--transition); }
.award-item:hover { border-color: rgba(38,145,75,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.award-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.award-item h4 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text); }
.award-item p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin: 0; }

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.form-label { font-size: 0.78rem; font-weight: 700; color: var(--text2); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border2); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text); background: var(--card); transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--green); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ══════════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════════ */
.video-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.video-player { background: linear-gradient(160deg, #0d2416 0%, #1a4028 100%); border-radius: var(--radius-lg); aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.video-play-btn { width: 64px; height: 64px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.video-play-btn:hover { background: var(--gradient); transform: scale(1.1); }
.video-play-btn i { color: #fff; font-size: 1.5rem; margin-left: 4px; }

/* ══════════════════════════════════════════
   PATROCINAR / PACKAGES
══════════════════════════════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.package-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.package-card:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-4px); }
.package-card.featured { border-color: rgba(38,145,75,0.5); background: rgba(38,145,75,0.06); }
.package-name { font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.package-price { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.35rem; }
.package-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.package-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.package-features li i { color: #7de8a0; font-size: 0.65rem; flex-shrink: 0; }
.package-cta { margin-top: 1.5rem; width: 100%; text-align: center; justify-content: center; }

/* ══════════════════════════════════════════
   CUP MINI GRID (show pages)
══════════════════════════════════════════ */
.cup-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.cup-mini-card { background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.cup-mini-card .cup-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.cup-mini-card h4 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
.cup-mini-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ══════════════════════════════════════════
   REGISTRATION NOTIFY
══════════════════════════════════════════ */
.registration-notify { text-align: center; }
.notify-form { display: flex; gap: 0.75rem; max-width: 440px; margin: 1.5rem auto 0; }
.notify-input { flex: 1; padding: 0.7rem 1.1rem; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 50px; font-size: 0.88rem; color: #fff; outline: none; }
.notify-input::placeholder { color: rgba(255,255,255,0.4); }
.notify-input:focus { border-color: rgba(38,145,75,0.5); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: linear-gradient(180deg, #081a0d 0%, #0a1e10 100%); border-top: 1px solid rgba(38,145,75,0.2); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: #7de8a0; }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.footer-contact-item i { color: #7de8a0; font-size: 0.8rem; flex-shrink: 0; }
.footer-respond { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: var(--transition); }
.footer-social a:hover { background: rgba(38,145,75,0.2); color: #7de8a0; border-color: rgba(38,145,75,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #7de8a0; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.float-anim { animation: float 4s ease-in-out infinite; }
.chevron-deco { position: absolute; pointer-events: none; opacity: 0.03; font-size: 20rem; font-weight: 900; color: var(--green); line-height: 1; user-select: none; }

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.text-gray { color: var(--gray); }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* ══════════════════════════════════════════
   NAV SOCIAL ICONS
══════════════════════════════════════════ */
.nav-social { display: flex; align-items: center; gap: 0.15rem; margin-right: 0.5rem; }
.nav-social-icon { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; color: var(--gray); border-radius: 50%; transition: color 0.2s, background 0.2s; font-size: 0.85rem; }
.nav-social-icon:hover { color: var(--green); background: var(--green-pale); }

/* ══════════════════════════════════════════
   NAV SOCIAL ICONS
══════════════════════════════════════════ */
.nav-social {
  display: flex; align-items: center; gap: 0.15rem;
  margin-right: 0.5rem;
}
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  color: var(--text2);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
  font-size: 0.82rem;
}
.nav-social-icon:hover { color: var(--green); background: rgba(38,145,75,0.08); }
@media (max-width: 900px) {
  .nav-social { display: none; }
}

/* ══════════════════════════════════════════
   LANGUAGE SELECTOR
══════════════════════════════════════════ */
.lang-selector { position: relative; }
.lang-current { display: flex; align-items: center; gap: .4rem; background: transparent; border: 1.5px solid var(--border); border-radius: 8px; padding: .35rem .75rem; font-size: .8rem; font-weight: 700; cursor: pointer; color: var(--text); transition: border-color .2s, background .2s; white-space: nowrap; }
.lang-current:hover { border-color: var(--green); background: var(--green-pale); }
.lang-current .lang-flag { font-size: .9rem; }
.lang-current .lang-chevron { font-size: .65rem; color: var(--dim); transition: transform .2s; }
.lang-selector.open .lang-chevron { transform: rotate(180deg); }
.lang-menu { display: none; position: absolute; top: 100%; right: 0; background: var(--white); border: 1.5px solid var(--border2); border-radius: 12px; box-shadow: var(--shadow-md); overflow: hidden; min-width: 160px; z-index: 2000; }
.lang-selector.open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; gap: .65rem; padding: .6rem 1rem; font-size: .88rem; font-weight: 600; color: var(--text2); text-decoration: none; cursor: pointer; transition: background .15s; }
.lang-menu a:hover { background: var(--bg2); color: var(--green); }
.lang-menu a.active { background: var(--green-pale); color: var(--green-dark); font-weight: 800; }
.lang-menu a .lf { font-size: 1rem; }
.lang-menu a .ln { flex: 1; }
.lang-menu a .lc { font-size: .72rem; color: var(--dim); font-weight: 700; }

/* RTL support */
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .section-tag { direction: rtl; }
[dir="rtl"] .dropdown { left: auto; right: 0; text-align: right; }
[dir="rtl"] .dropdown-item { flex-direction: row-reverse; }

/* ══════════════════════════════════════════
   MISSING CLASS BRIDGES
   (HTML uses these names; map them to layout)
══════════════════════════════════════════ */

/* ── Section container (= section-inner) ── */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section-subtitle { font-size: 1rem; color: var(--gray); line-height: 1.7; max-width: 620px; margin: 0 auto; }

/* ── Button size ── */
.btn-lg { padding: 16px 36px !important; font-size: 1rem !important; border-radius: 32px !important; }

/* ── Stats bar ── */
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1280px; margin: 0 auto; padding: 0 5%; text-align: center; }
.stat-item { }

/* ── Hero text ── */
.hero-subtitle { font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--gray-light); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 2.5rem; animation: fadeUp 0.9s ease 0.2s both; }

/* ── Hero event box inner ── */
.hero-event-top { display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.event-badge { background: var(--gradient); color: var(--white); font-size: 0.62rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.event-flag { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.event-name { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.5px; }
.event-location { font-size: 0.8rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.event-buttons { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-left: auto; }
.hero-event-venue { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--gray); margin-bottom: 1.25rem; }
.hero-event-venue i { color: var(--green); }
.hero-countdown { border-top: 1px solid var(--border2); padding-top: 1.25rem; }
.countdown-label { font-size: 0.7rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.85rem; }
.countdown { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* ── What is FX Expo – layout ── */
.what-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.what-left { }
.what-right { }
.what-left p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin-bottom: 1rem; }
.what-grid-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.what-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.4rem 1.25rem; transition: var(--transition); }
.what-card:hover { border-color: var(--border); transform: translateY(-3px); }
.what-icon { width: 44px; height: 44px; background: rgba(38,145,75,0.1); border: 1px solid rgba(38,145,75,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.what-icon i { color: var(--green); font-size: 1rem; }
.what-card h4 { font-size: 0.88rem; font-weight: 800; margin-bottom: 0.3rem; }
.what-card p { font-size: 0.77rem; color: var(--gray); line-height: 1.5; margin: 0; }

/* ── Who attends list ── */
.participant-list { margin-top: 1.5rem; }
.participant-list h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 0.85rem; }
.participant-list ul { display: flex; flex-direction: column; gap: 0.45rem; }
.participant-list li { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--gray-light); }
.participant-list li i { color: var(--green); font-size: 0.68rem; flex-shrink: 0; }

/* ── Show cards (flat structure variant) ── */
.show-flag { font-size: 3.5rem; text-align: center; padding: 2rem 0 0.5rem; display: block; }
.show-status { display: inline-block; background: var(--gradient); color: var(--white); font-size: 0.6rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin: 0.5rem 1.75rem 0; }
.show-header { padding: 0.75rem 1.75rem 0; }
.show-header h3 { font-size: 1.45rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 0.15rem; }
.show-header p { font-size: 0.78rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.show-meta { padding: 0.85rem 1.75rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.show-actions { padding: 0 1.75rem 1.5rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.show-actions .btn-outline { flex: 1; justify-content: center; min-width: 0; }

/* ── Why attend extras ── */
.why-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.why-num { font-size: 2.5rem; font-weight: 900; color: rgba(38,145,75,0.12); line-height: 1; margin-bottom: -0.5rem; }

/* ── Gallery extras ── */
.gallery-item { background: var(--card2); border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item .bg { position: absolute; inset: 0; background: var(--gradient); opacity: 0.35; transition: var(--transition); }
.gallery-item:hover .bg { opacity: 0.55; }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.5); opacity: 0; transition: var(--transition); font-size: 1.5rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ── Blog extras ── */
.blog-card-image { height: 200px; position: relative; overflow: hidden; background: var(--green-dark); border-radius: var(--radius) var(--radius) 0 0; }
.blog-cta { text-align: center; margin-top: 3rem; }

/* ── Sponsors section ── */
.sponsors-section { background: var(--bg2); }
.sponsors-tier { margin-bottom: 2.5rem; }
.sponsors-cta { text-align: center; margin-top: 2.5rem; }

/* ── Awards extras ── */
.awards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.awards-left { }
.awards-right { }
.award-cat { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 1rem; transition: var(--transition); margin-bottom: 0.75rem; }
.award-cat:hover { border-color: var(--border); }
.award-cat i { color: var(--green); font-size: 1rem; flex-shrink: 0; }

/* ── FX Cup extras ── */
.cup-left { }
.cup-right { }
.cup-benefits { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.cup-benefits li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--gray-light); }
.cup-benefits li i { color: var(--green); font-size: 0.72rem; flex-shrink: 0; }
.cup-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── Footer col (h4 + links already styled, just ensure col exists) ── */
.footer-col { }

/* ══════════════════════════════════════════
   PAGE HERO CONTENT (inner wrapper)
══════════════════════════════════════════ */
.page-hero-content { max-width: 1280px; margin: 0 auto; }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-left { }
.about-right { }
.about-visual { background: var(--card); border-radius: var(--radius-lg); min-height: 360px; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.video-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.video-placeholder { position: absolute; inset: 0; background: var(--gradient); opacity: 0.2; }
.video-play-btn { width: 72px; height: 72px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); position: relative; z-index: 1; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-green); border: none; }
.video-play-btn:hover { transform: scale(1.1); }
.video-label { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: var(--white); font-weight: 600; white-space: nowrap; }
.video-text { }
.video-points { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; list-style: none; }
.video-points li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--gray-light); }
.video-points li i { color: var(--green); font-size: 0.72rem; flex-shrink: 0; }

.mission-vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mission-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 2rem 1.75rem; text-align: center; transition: var(--transition); }
.mission-card:hover { border-color: var(--border); transform: translateY(-4px); }
.mission-icon { width: 64px; height: 64px; background: rgba(38,145,75,0.1); border: 1px solid rgba(38,145,75,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.mission-icon i { color: var(--green); font-size: 1.5rem; }
.mission-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.6rem; }
.mission-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.65; }

.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 2.5rem; padding-left: 1.5rem; }
.timeline-marker { position: absolute; left: -2rem; top: 0; width: 36px; height: 36px; background: var(--green-dark); border: 2px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; transform: translateX(-50%); }
.timeline-marker i { color: var(--green); font-size: 0.75rem; }
.timeline-content { }
.timeline-content h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
.timeline-content .year { font-size: 0.72rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.3rem; display: block; }

.stats-bar-about { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.team-position { font-size: 0.75rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════
   SHOWS LISTING PAGE
══════════════════════════════════════════ */
.shows-detailed-grid { display: flex; flex-direction: column; gap: 2rem; }
.show-detailed-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 280px 1fr; transition: var(--transition); }
.show-detailed-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.show-card-image { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; overflow: hidden; }
.show-card-flag { font-size: 4rem; position: relative; z-index: 1; }
.show-card-details { padding: 2rem; display: flex; flex-direction: column; }
.show-location { font-size: 0.83rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.show-info-rows { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.show-info-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; }
.show-info-row i { color: var(--green); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.show-info-row > div { display: flex; flex-direction: column; gap: 1px; }
.info-label { font-size: 0.7rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; }
.info-value { font-size: 0.83rem; color: var(--gray-light); }
.show-description { font-size: 0.83rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.show-card-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: auto; }

.newsletter-box { background: var(--bg2); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 3rem; text-align: center; margin-top: 4rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 1.5rem auto 0; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--radius-sm); padding: 12px 16px; color: var(--white); font-size: 0.88rem; font-family: var(--font); }
.newsletter-form input:focus { border-color: var(--green); outline: none; }
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-disclaimer { font-size: 0.72rem; color: var(--dim); margin-top: 0.75rem; }

/* ══════════════════════════════════════════
   INDIVIDUAL EVENT PAGE (show-quito)
══════════════════════════════════════════ */
.event-hero-info { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }
.event-hero-label { font-size: 0.7rem; font-weight: 800; color: var(--green-light); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.75rem; display: block; }
.event-hero-flag { font-size: 3.5rem; margin-bottom: 0.75rem; display: block; }
.event-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 1rem; }
.event-hero-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.event-hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.event-info-bar { background: var(--bg2); border-bottom: 1px solid var(--border2); padding: 1.5rem 0; }
.event-info-box { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.event-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; }
.event-info-grid .info-label { font-size: 0.68rem; color: var(--dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 3px; display: block; }
.event-info-grid .info-value { font-size: 0.88rem; font-weight: 700; color: var(--white); }

.tickets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.ticket-badge { display: inline-block; background: var(--gradient); color: var(--white); font-size: 0.6rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.5rem; }
.ticket-desc { font-size: 0.78rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.55; }

.about-event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-event-left { }
.about-event-right { }
.event-highlights-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.event-highlights-list li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--gray-light); }
.event-highlights-list li i { color: var(--green); font-size: 0.72rem; flex-shrink: 0; }

.activity-zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; }
.activity-zone { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: var(--transition); }
.activity-zone:hover { border-color: var(--border); transform: translateY(-3px); }
.zone-icon { width: 52px; height: 52px; background: rgba(38,145,75,0.1); border: 1px solid rgba(38,145,75,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.85rem; }
.zone-icon i { color: var(--green); font-size: 1.1rem; }

.speakers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.speaker-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: var(--transition); text-align: center; }
.speaker-card:hover { border-color: var(--border); transform: translateY(-3px); }
.speaker-avatar { height: 160px; background: linear-gradient(135deg, var(--green-dark), #060806); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.speaker-card-body { padding: 1.25rem; }
.speaker-name { font-size: 1rem; font-weight: 800; margin-bottom: 0.2rem; }
.speaker-title { font-size: 0.75rem; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.6rem; }
.speaker-bio { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

.cup-section-mini { background: linear-gradient(135deg, var(--green-dark) 0%, #060906 100%); border-top: 1px solid rgba(38,145,75,0.2); border-bottom: 1px solid rgba(38,145,75,0.2); }
.cup-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cup-mini-left { }
.cup-mini-right { }
.cup-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }

.sponsor-cta-box { background: rgba(38,145,75,0.08); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3rem; text-align: center; }
.sponsor-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }
.btn-full { width: 100% !important; justify-content: center !important; }

/* ══════════════════════════════════════════
   AWARDS PAGE
══════════════════════════════════════════ */
.awards-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.awards-info-left { }
.awards-info-right { }
.awards-visual { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 3rem; text-align: center; }
.awards-info-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.awards-info-list li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: var(--gray-light); }
.awards-info-list li i { color: var(--green); font-size: 0.72rem; flex-shrink: 0; }

.why-win-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.why-win-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.75rem; transition: var(--transition); }
.why-win-card:hover { border-color: var(--border); transform: translateY(-3px); }
.why-win-icon { width: 48px; height: 48px; background: rgba(38,145,75,0.1); border: 1px solid rgba(38,145,75,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-win-icon i { color: var(--green); font-size: 1rem; }
.why-win-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.35rem; }
.why-win-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; }

.edition-card-image { height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.edition-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.edition-card:hover .edition-overlay { opacity: 1; }
.edition-card-footer { padding: 1rem 1.5rem; background: var(--bg3); border-top: 1px solid var(--border2); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.edition-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.edition-meta span { font-size: 0.75rem; color: var(--gray); }

/* ══════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; flex-direction: column; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); overflow: hidden; }
.lightbox-caption { font-size: 0.85rem; color: var(--gray-light); margin-top: 1rem; text-align: center; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--bg3); border: 1px solid var(--border2); color: var(--white); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; transition: var(--transition); }
.lightbox-close:hover { background: var(--green); border-color: var(--green); }

/* ══════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════ */
.blog-controls { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.blog-filter-btn { padding: 7px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; cursor: pointer; border: 1px solid var(--border2); background: transparent; color: var(--gray); transition: var(--transition); font-family: var(--font); }
.blog-filter-btn.active, .blog-filter-btn:hover { background: var(--gradient); color: var(--white); border-color: transparent; }

/* ══════════════════════════════════════════
   PATROCINAR / CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.contact-form-box { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-info-box { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item i { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.83rem; color: var(--gray); line-height: 1.5; }
.contact-info-item a:hover { color: var(--green); }
.contact-response-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(38,145,75,0.12); border: 1px solid rgba(38,145,75,0.25); color: var(--green); font-size: 0.75rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; margin-top: 0.5rem; }
.contact-social { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; }
.contact-social h4 { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.social-links { display: flex; flex-direction: column; gap: 0.6rem; }
.social-link { display: flex; align-items: center; gap: 10px; font-size: 0.83rem; color: var(--gray); transition: var(--transition); padding: 4px 0; }
.social-link:hover { color: var(--green); }
.social-link i { width: 18px; color: var(--green); font-size: 0.9rem; flex-shrink: 0; }

.sponsor-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.benefit-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: var(--transition); }
.benefit-card:hover { border-color: var(--border); transform: translateY(-3px); }
.benefit-stat { font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 0.4rem; }
.benefit-text { font-size: 0.82rem; color: var(--gray); }

.package-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.25rem; }
.checkbox-group { display: flex; flex-direction: column; gap: 0.5rem; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray-light); cursor: pointer; }
.checkbox-group input[type="checkbox"] { accent-color: var(--green); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cup-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-preview-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-preview-grid .item.tall { grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlights-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-right .btn-nav-cta, .nav-lang { display: none; }
  .nav-social { display: none; }
  .hamburger { display: flex; }
  .stats-grid, .stats-container { grid-template-columns: repeat(2,1fr); }
  .stats-container .stat-item + .stat-item { border-left: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .ticket-cards { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .awards-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .shows-grid .show-card { flex: 0 0 calc((100% - 1.5rem) / 2); max-width: calc((100% - 1.5rem) / 2); }
  .shows-grid .show-card { flex: 0 0 calc((100% - 1.5rem) / 2); max-width: calc((100% - 1.5rem) / 2); }
  .awards-info-grid { grid-template-columns: 1fr; }
  .video-section { grid-template-columns: 1fr; }
  .show-detailed-card { grid-template-columns: 1fr; }
  .show-card-image { min-height: 180px; }
  .about-event-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cup-mini-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .why-content.active { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .hero-event-box { flex-direction: column; }
  .hero-event-photo { width: 100%; height: 120px; }
  .hero-event-info { padding: 1rem 1.25rem; }
  .hero-event-top { flex-wrap: wrap; }
  .event-buttons { width: 100%; }
  .event-buttons .btn-primary, .event-buttons .btn-outline { flex: 1; justify-content: center; }
  .countdown { gap: 4px; }
  .cd-box { min-width: 50px; padding: 8px 10px; }
  .cd-num { font-size: 1.2rem; }
  .why-content.active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .shows-grid .show-card { flex: 0 0 100%; max-width: 100%; }
  .shows-grid .show-card { flex: 0 0 100%; max-width: 100%; }
  .what-grid-icons { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: repeat(2,1fr); }
  .show-card-actions { flex-direction: column; }

  .cta-left { text-align: center; }
  .cta-buttons { justify-content: center; }
  .cta-section p { max-width: 100%; margin-left: auto; margin-right: auto; }
}


/* ── CTA SECTION REDESIGN ── */
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, rgba(38,145,75,.16) 0%, transparent 68%);
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(110,228,152,.1); border: 1px solid rgba(110,228,152,.25);
  border-radius: 50px; padding: .4rem 1.15rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #6ee498; margin-bottom: 1.6rem;
}
.cta-section h2 { font-size: clamp(2rem,4.5vw,3.1rem); font-weight: 900; margin-bottom: 1rem; }
.cta-divider {
  display: flex; align-items: center; gap: 1.2rem; max-width: 440px; margin: 0 auto 2rem;
  color: rgba(255,255,255,.28); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.cta-divider::before, .cta-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.1);
}
.newsletter-row { display: flex; gap: .7rem; max-width: 460px; margin: 0 auto 1rem; }
.newsletter-row-wrap { position: relative; flex: 1; }
.newsletter-row-ico {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.3); font-size: .8rem; pointer-events: none;
}
.newsletter-row-input {
  width: 100%; padding: .9rem 1rem .9rem 2.7rem; box-sizing: border-box;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.13);
  border-radius: 14px; color: #fff; font-size: .93rem; font-family: inherit;
  outline: none; transition: border-color .2s, background .2s;
}
.newsletter-row-input:focus { border-color: rgba(110,228,152,.55); background: rgba(255,255,255,.11); }
.newsletter-row-input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-row-btn {
  background: linear-gradient(135deg, #26914b, #103b20);
  color: #fff; border: none; padding: .9rem 1.5rem; border-radius: 14px;
  font-weight: 800; font-size: .9rem; cursor: pointer; font-family: inherit;
  white-space: nowrap; display: inline-flex; align-items: center; gap: .45rem;
  transition: filter .2s, transform .2s;
}
.newsletter-row-btn:hover { filter: brightness(1.12); transform: translateY(-2px); }
.newsletter-privacy {
  font-size: .72rem; color: rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center; gap: .4rem; margin: 0;
}
@media (max-width: 520px) {
  .newsletter-row { flex-direction: column; }
  .newsletter-row-btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; margin-bottom: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .highlights-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.9rem; }
  .team-grid { grid-template-columns: 1fr; }
  .highlights-grid-4 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ALIASES & MISSING CLASSES
   (HTML uses these class names)
══════════════════════════════════════════ */

/* Layout aliases */
.section-container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section-py { padding: 5rem 0; }
.section-header-center { margin-bottom: 3rem; text-align: center; }
.section-header-center p { max-width: 600px; margin: 0.75rem auto 0; font-size: 1.05rem; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Text helpers */
.text-green { color: var(--green); }
.text-gradient {
  background: linear-gradient(135deg, #5ecb85, #a8f0c4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.green-divider {
  width: 50px; height: 4px;
  background: var(--gradient);
  border-radius: 2px; margin: 1rem 0 1.25rem;
}

/* Button variant */
.btn-green-outline {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--green);
  font-weight: 700; font-size: 0.88rem;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  border: 1.5px solid var(--green); cursor: pointer;
  text-decoration: none; transition: var(--transition);
}
.btn-green-outline:hover { background: var(--green-pale); }
.cup-section .btn-green-outline {
  color: #7de8a0; border-color: rgba(125,232,160,0.5);
}
.cup-section .btn-green-outline:hover {
  background: rgba(125,232,160,0.1);
}

/* Cup section */
.cup-section { padding: 5rem 0; }
.cup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cup-left { }
.cup-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.3);
  color: #ffd700; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 1rem;
}
.cup-benefits { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0 1.5rem; }
.cup-benefits li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.cup-benefits li i { color: #7de8a0; font-size: 0.72rem; flex-shrink: 0; }
.cup-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cup-right { }
.cup-visual {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  backdrop-filter: blur(10px);
}
.cup-trophy { font-size: 5rem; line-height: 1; }
.cup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; width: 100%; }
.cup-stat { text-align: center; padding: 1rem; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); }
.cup-stat-num { font-size: 1.5rem; font-weight: 900; color: #ffd700; line-height: 1; }
.cup-stat-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* Partners (HTML version) */
.partners-logos-row { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.partners-logos-lg { gap: 2rem; }
.partner-slot {
  background: var(--bg2); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); padding: 1rem 1.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: default;
  min-width: 120px;
}
.partner-slot:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }
.partner-slot-lg { min-width: 160px; padding: 1.25rem 2rem; }
.partner-slot-sm { min-width: 90px; padding: 0.75rem 1.25rem; }
.partner-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: var(--dim); }
.partner-placeholder i { font-size: 1.4rem; }
.partner-slot-lg .partner-placeholder i { font-size: 1.8rem; }
.partner-slot-sm .partner-placeholder i { font-size: 1rem; }
.partner-placeholder span { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Why attend (HTML version with why-cards-grid + why-num) — light section */
.why-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.why-num { display: block; font-size: 2rem; font-weight: 900; color: rgba(38,145,75,0.15); line-height: 1; margin-bottom: 0.5rem; }
.why-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); box-shadow: var(--shadow); }
.why-card:hover { border-color: rgba(38,145,75,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card h4 { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin: 0; }

/* Gallery items (HTML version) */
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.gallery-item.tall { min-height: 420px; }
.gallery-item .gallery-overlay { opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Awards section */
.awards-left, .awards-right { }
.awards-hero-num { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.award-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.award-cat { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius-sm); padding: 0.85rem; text-align: center; font-size: 0.78rem; font-weight: 700; color: var(--gray); transition: var(--transition); box-shadow: var(--shadow); }
.award-cat:hover { border-color: rgba(38,145,75,0.3); color: var(--green); background: var(--green-pale); }

/* Blog extras */
.blog-author { font-size: 0.78rem; color: var(--dim); font-weight: 600; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 800; color: var(--green); margin-top: 0.5rem; }
.blog-read-more:hover { color: var(--green-dark); }
.blog-cta { text-align: center; margin-top: 2.5rem; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* Social icon (footer) */
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: rgba(38,145,75,0.2); color: #7de8a0; border-color: rgba(38,145,75,0.4); }
.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; margin-bottom: 1rem; }

/* Tier badges */
.tier-badge { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 9px; border-radius: 20px; }

/* CTA section */
.cta-section { padding: 5rem 0; }

/* show-status-confirmed alias */
.show-status-confirmed { background: #d4edda; color: #1a6b35; }

/* Additional responsive */
@media (max-width: 900px) {
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cup-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .award-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-cards-grid { grid-template-columns: 1fr 1fr; }
  .cup-stats { grid-template-columns: repeat(3, 1fr); }
  .partners-logos-row { gap: 0.75rem; }
  .award-cats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-cards-grid { grid-template-columns: 1fr; }
}

/* ── Gallery item tall span ─────────────────────────────── */
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── Why tabs on dark backgrounds ──────────────────────── */
/* why-tabs on light sections — use default border/text colors (no overrides needed) */

/* ── Nav social icons (light nav — dark icons) ──────────── */
.nav-social { display: flex; align-items: center; gap: 0.3rem; margin-right: 0.6rem; }
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: #555; font-size: 0.88rem;
  transition: color 0.2s, background 0.2s;
}
.nav-social-icon:hover { color: var(--green); background: var(--green-pale); }
@media (max-width: 768px) { .nav-social { display: none; } }

/* ── Blog card fixes ────────────────────────────────────── */
.blog-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.4rem; }
.blog-card-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.83rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.75rem; color: var(--fg-muted); display: flex; gap: 0.8rem; }

/* ── About page ─────────────────────────────────────────── */
.about-hero { padding: 8rem 0 5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.team-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; text-align: center; padding: 2rem 1.5rem; }
.team-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.team-name { font-weight: 700; color: var(--fg); margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; color: var(--green); }

/* ── Show page specifics ────────────────────────────────── */
.show-hero-badge { display: inline-block; background: var(--green); color: #fff; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 5px 14px; border-radius: 30px; margin-bottom: 1rem; }
.show-meta-bar { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; margin-top: 1.5rem; }
.show-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.show-meta-item i { color: var(--green); }
.agenda-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border2); }
.agenda-time { min-width: 90px; font-size: 0.8rem; font-weight: 700; color: var(--green); padding-top: 0.2rem; }
.agenda-content h4 { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.3rem; }
.agenda-content p { font-size: 0.85rem; color: var(--fg-muted); }

/* ── Sponsors / patrocinar page ─────────────────────────── */
.sponsor-tier-card { background: var(--card); border: 2px solid var(--border2); border-radius: var(--radius); padding: 2.5rem 2rem; transition: border-color 0.2s, box-shadow 0.2s; }
.sponsor-tier-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(38,145,75,0.12); }
.sponsor-tier-name { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.sponsor-tier-price { font-size: 2.2rem; font-weight: 900; color: var(--green); margin-bottom: 1.5rem; }
.sponsor-benefits { list-style: none; padding: 0; margin-bottom: 2rem; }
.sponsor-benefits li { padding: 0.45rem 0; font-size: 0.88rem; color: var(--fg-muted); border-bottom: 1px solid var(--border2); display: flex; gap: 0.6rem; }
.sponsor-benefits li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── Awards page ─────────────────────────────────────────── */
.award-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.award-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.award-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.award-card-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); }
.award-card-sub { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.3rem; }

/* ── Contact / form elements ───────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--fg-muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border2);
  border-radius: 8px; background: var(--card); color: var(--fg);
  font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(38,145,75,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #040f07 0%, #0b2b14 40%, #0f3d1c 70%, #145226 100%);
  padding: 8.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
/* Dot-grid texture */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(38,145,75,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* Large glowing orbs */
.page-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,145,75,0.22) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
/* Second orb via box shadow trick on content */
.page-hero-content {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  position: relative; z-index: 1;
}
.page-hero-content::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,59,32,0.6) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
/* Eyebrow badge */
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(38,145,75,0.18);
  border: 1px solid rgba(38,145,75,0.45);
  color: #6ee498;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}
.ph-eyebrow i { font-size: 0.65rem; }
/* Accent line before h1 */
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  position: relative;
}
.page-hero-content h1::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, #26914b, #6ee498);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Section subtitle ───────────────────────────────────── */
.section-subtitle {
  font-size: 1.05rem; color: var(--fg-muted); max-width: 560px;
  margin: 0.5rem auto 0; line-height: 1.7; text-align: center;
}

/* ── Highlights grid (base) ─────────────────────────────── */
.highlights-grid { display: grid; gap: 1rem; }

/* ── Footer columns ─────────────────────────────────────── */
.footer-col { /* flex child inside footer-grid — no extra styles needed */ }

/* ── Newsletter box ─────────────────────────────────────── */
.newsletter-box { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-box h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--text); margin-bottom: 0.75rem; }
.newsletter-box p { color: var(--gray); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 0.75rem 1.1rem; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--card); color: var(--text);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(38,145,75,0.1); }
.newsletter-disclaimer { font-size: 0.75rem; color: var(--dim); margin-top: 0.75rem; }
@media (max-width: 520px) { .newsletter-form { flex-direction: column; } }

/* ── Timeline ───────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; max-width: 680px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), transparent);
}
.timeline-item { position: relative; padding: 0 0 2.5rem 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute; left: -2.1rem; top: 0.25rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(38,145,75,0.3);
}
.timeline-content h4 { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.timeline-content .timeline-date { font-size: 0.7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }

/* ── Team members ───────────────────────────────────────── */
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; margin: 0 auto 1rem;
}
.team-name { font-weight: 800; font-size: 1rem; color: var(--fg); margin-bottom: 0.15rem; }
.team-position { font-size: 0.78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; }

/* ── Big number display ─────────────────────────────────── */
.big-num { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: var(--green); line-height: 1; }

/* ── Video elements ─────────────────────────────────────── */
.video-embed { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.video-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  min-height: 280px; position: relative;
}
.video-play-btn {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4); color: #fff; font-size: 1.3rem;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn:hover { background: var(--green); border-color: var(--green); transform: scale(1.08); }
.video-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.video-points { list-style: none; padding: 0; margin-top: 1.25rem; }
.video-points li { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.45rem 0; font-size: 0.88rem; color: var(--fg-muted); border-bottom: 1px solid var(--border2); }
.video-points li:last-child { border-bottom: none; }
.video-points li i { color: var(--green); margin-top: 0.15rem; flex-shrink: 0; }

/* ── About page two-column aliases ─────────────────────── */
.about-left { /* part of .about-grid — inherits grid cell */ }
.about-right { /* part of .about-grid — inherits grid cell */ }

/* ── Awards page ─────────────────────────────────────────── */
.awards-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.awards-info-left h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--text); margin-bottom: 0.8rem; }
.awards-info-left p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.awards-info-list { list-style: none; padding: 0; }
.awards-info-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border2); font-size: 0.9rem; color: var(--gray); }
.awards-info-list li i { color: var(--green); margin-top: 0.15rem; flex-shrink: 0; }
@media (max-width: 860px) { .awards-info-grid { grid-template-columns: 1fr; } }

/* ── Why Win grid ────────────────────────────────────────── */
.why-win-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-win-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.why-win-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(38,145,75,0.2); }
.why-win-icon { font-size: 2rem; color: var(--green); margin-bottom: 1rem; }
.why-win-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.why-win-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
@media (max-width: 768px) { .why-win-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-win-grid { grid-template-columns: 1fr; } }

/* ── Dot tier indicators ─────────────────────────────────── */
.dot-titanium { color: #e2e8f0; }
.dot-diamond  { color: #b2e9ff; }
.dot-gold     { color: #f6c443; }
.dot-platinum { color: #c0c8d4; }
.dot-silver   { color: #a8b0bc; }
.dot-bronze   { color: #cd7f32; }
.dot-startup  { color: var(--green); }

/* ── Tier name labels ────────────────────────────────────── */
.tier-titanium{ color: #e2e8f0; }
.tier-diamond { color: #7dd3fc; }
.tier-platinum{ color: #c4b5fd; }
.tier-gold    { color: #f6c443; }
.tier-silver  { color: #a8b0bc; }
.tier-bronze  { color: #cd7c3b; }
.tier-startup { color: #6ee498; }

/* ── Blog filters ────────────────────────────────────────── */
.blog-controls { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-filters-label { font-size: 0.8rem; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.8px; padding: 0.5rem 0; }
.blog-filter-btn {
  padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
  border: 1px solid var(--border2); background: var(--card); color: var(--fg-muted);
  cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Utility classes ────────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--fg-muted); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.gap-sm { gap: 0.5rem; } .gap-md { gap: 1rem; } .gap-lg { gap: 2rem; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .show-meta-bar { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ALIASES & MISSING CLASSES
   (HTML uses these class names)
══════════════════════════════════════════ */

/* Layout aliases */
.section-container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section-py { padding: 5rem 0; }
.section-header-center { margin-bottom: 3rem; text-align: center; }
.section-header-center p { max-width: 600px; margin: 0.75rem auto 0; font-size: 1.05rem; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Text helpers */
.text-green { color: var(--green); }
.text-gradient {
  background: linear-gradient(135deg, #5ecb85, #a8f0c4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.green-divider {
  width: 50px; height: 4px;
  background: var(--gradient);
  border-radius: 2px; margin: 1rem 0 1.25rem;
}

/* Button variant */
.btn-green-outline {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent; color: var(--green);
  font-weight: 700; font-size: 0.88rem;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  border: 1.5px solid var(--green); cursor: pointer;
  text-decoration: none; transition: var(--transition);
}
.btn-green-outline:hover { background: var(--green-pale); }
.cup-section .btn-green-outline {
  color: #7de8a0; border-color: rgba(125,232,160,0.5);
}
.cup-section .btn-green-outline:hover {
  background: rgba(125,232,160,0.1);
}

/* Cup section */
.cup-section { padding: 5rem 0; }
.cup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cup-left { }
.cup-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.3);
  color: #ffd700; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 1rem;
}
.cup-benefits { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0 1.5rem; }
.cup-benefits li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.cup-benefits li i { color: #7de8a0; font-size: 0.72rem; flex-shrink: 0; }
.cup-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cup-right { }
.cup-visual {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  backdrop-filter: blur(10px);
}
.cup-trophy { font-size: 5rem; line-height: 1; }
.cup-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; width: 100%; }
.cup-stat { text-align: center; padding: 1rem; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); }
.cup-stat-num { font-size: 1.5rem; font-weight: 900; color: #ffd700; line-height: 1; }
.cup-stat-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* Partners (HTML version) */
.partners-logos-row { display: flex; align-items: center; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.partners-logos-lg { gap: 2rem; }
.partner-slot {
  background: var(--bg2); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); padding: 1rem 1.75rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: default;
  min-width: 120px;
}
.partner-slot:hover { border-color: var(--green); transform: translateY(-2px); box-shadow: var(--shadow); }
.partner-slot-lg { min-width: 160px; padding: 1.25rem 2rem; }
.partner-slot-sm { min-width: 90px; padding: 0.75rem 1.25rem; }
.partner-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: var(--dim); }
.partner-placeholder i { font-size: 1.4rem; }
.partner-slot-lg .partner-placeholder i { font-size: 1.8rem; }
.partner-slot-sm .partner-placeholder i { font-size: 1rem; }
.partner-placeholder span { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Why attend (HTML version with why-cards-grid + why-num) — light section */
.why-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; }
.why-num { display: block; font-size: 2rem; font-weight: 900; color: rgba(38,145,75,0.15); line-height: 1; margin-bottom: 0.5rem; }
.why-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.5rem; transition: var(--transition); box-shadow: var(--shadow); }
.why-card:hover { border-color: rgba(38,145,75,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card h4 { font-size: 0.92rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin: 0; }

/* Gallery items (HTML version) */
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  position: relative; min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.gallery-item.tall { min-height: 420px; }
.gallery-item .gallery-overlay { opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Awards section */
.awards-left, .awards-right { }
.awards-hero-num { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.award-cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.award-cat { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius-sm); padding: 0.85rem; text-align: center; font-size: 0.78rem; font-weight: 700; color: var(--gray); transition: var(--transition); box-shadow: var(--shadow); }
.award-cat:hover { border-color: rgba(38,145,75,0.3); color: var(--green); background: var(--green-pale); }

/* Blog extras */
.blog-author { font-size: 0.78rem; color: var(--dim); font-weight: 600; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 800; color: var(--green); margin-top: 0.5rem; }
.blog-read-more:hover { color: var(--green-dark); }
.blog-cta { text-align: center; margin-top: 2.5rem; }
.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* Social icon (footer) */
.social-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: var(--transition);
  text-decoration: none;
}
.social-icon:hover { background: rgba(38,145,75,0.2); color: #7de8a0; border-color: rgba(38,145,75,0.4); }
.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; margin-bottom: 1rem; }

/* Tier badges */
.tier-badge { font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 3px 9px; border-radius: 20px; }

/* CTA section */
.cta-section { padding: 5rem 0; }

/* show-status-confirmed alias */
.show-status-confirmed { background: #d4edda; color: #1a6b35; }

/* Additional responsive */
@media (max-width: 900px) {
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cup-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .award-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .why-cards-grid { grid-template-columns: 1fr 1fr; }
  .cup-stats { grid-template-columns: repeat(3, 1fr); }
  .partners-logos-row { gap: 0.75rem; }
  .award-cats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .why-cards-grid { grid-template-columns: 1fr; }
}

/* ── Gallery item tall span ─────────────────────────────── */
.gallery-item.tall { grid-row: span 2; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── Why tabs on dark backgrounds ──────────────────────── */
/* why-tabs on light sections — use default border/text colors (no overrides needed) */

/* ── Nav social icons (light nav — dark icons) ──────────── */
.nav-social { display: flex; align-items: center; gap: 0.3rem; margin-right: 0.6rem; }
.nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  color: #555; font-size: 0.88rem;
  transition: color 0.2s, background 0.2s;
}
.nav-social-icon:hover { color: var(--green); background: var(--green-pale); }
@media (max-width: 768px) { .nav-social { display: none; } }

/* ── Blog card fixes ────────────────────────────────────── */
.blog-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.4rem; }
.blog-card-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green); margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.83rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { font-size: 0.75rem; color: var(--fg-muted); display: flex; gap: 0.8rem; }

/* ── About page ─────────────────────────────────────────── */
.about-hero { padding: 8rem 0 5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 2rem; }
.team-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); overflow: hidden; text-align: center; padding: 2rem 1.5rem; }
.team-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.team-name { font-weight: 700; color: var(--fg); margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; color: var(--green); }

/* ── Show page specifics ────────────────────────────────── */
.show-hero-badge { display: inline-block; background: var(--green); color: #fff; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 5px 14px; border-radius: 30px; margin-bottom: 1rem; }
.show-meta-bar { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; margin-top: 1.5rem; }
.show-meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.show-meta-item i { color: var(--green); }
.agenda-item { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border2); }
.agenda-time { min-width: 90px; font-size: 0.8rem; font-weight: 700; color: var(--green); padding-top: 0.2rem; }
.agenda-content h4 { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.3rem; }
.agenda-content p { font-size: 0.85rem; color: var(--fg-muted); }

/* ── Sponsors / patrocinar page ─────────────────────────── */
.sponsor-tier-card { background: var(--card); border: 2px solid var(--border2); border-radius: var(--radius); padding: 2.5rem 2rem; transition: border-color 0.2s, box-shadow 0.2s; }
.sponsor-tier-card:hover { border-color: var(--green); box-shadow: 0 8px 32px rgba(38,145,75,0.12); }
.sponsor-tier-name { font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.sponsor-tier-price { font-size: 2.2rem; font-weight: 900; color: var(--green); margin-bottom: 1.5rem; }
.sponsor-benefits { list-style: none; padding: 0; margin-bottom: 2rem; }
.sponsor-benefits li { padding: 0.45rem 0; font-size: 0.88rem; color: var(--fg-muted); border-bottom: 1px solid var(--border2); display: flex; gap: 0.6rem; }
.sponsor-benefits li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── Awards page ─────────────────────────────────────────── */
.award-card { background: var(--card); border: 1px solid var(--border2); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.award-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.award-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.award-card-title { font-size: 0.95rem; font-weight: 700; color: var(--fg); }
.award-card-sub { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.3rem; }

/* ── Contact / form elements ───────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--fg-muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border2);
  border-radius: 8px; background: var(--card); color: var(--fg);
  font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(38,145,75,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #040f07 0%, #0b2b14 40%, #0f3d1c 70%, #145226 100%);
  padding: 8.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
/* Dot-grid texture */
.page-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(38,145,75,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* Large glowing orbs */
.page-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,145,75,0.22) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
/* Second orb via box shadow trick on content */
.page-hero-content {
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
  position: relative; z-index: 1;
}
.page-hero-content::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,59,32,0.6) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
/* Eyebrow badge */
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(38,145,75,0.18);
  border: 1px solid rgba(38,145,75,0.45);
  color: #6ee498;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}
.ph-eyebrow i { font-size: 0.65rem; }
/* Accent line before h1 */
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  position: relative;
}
.page-hero-content h1::before {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, #26914b, #6ee498);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.page-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.75;
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── Section subtitle ───────────────────────────────────── */
.section-subtitle {
  font-size: 1.05rem; color: var(--fg-muted); max-width: 560px;
  margin: 0.5rem auto 0; line-height: 1.7; text-align: center;
}

/* ── Highlights grid (base) ─────────────────────────────── */
.highlights-grid { display: grid; gap: 1rem; }

/* ── Footer columns ─────────────────────────────────────── */
.footer-col { /* flex child inside footer-grid — no extra styles needed */ }

/* ── Newsletter box ─────────────────────────────────────── */
.newsletter-box { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-box h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: var(--text); margin-bottom: 0.75rem; }
.newsletter-box p { color: var(--gray); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 0.75rem 1.1rem; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--card); color: var(--text);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(38,145,75,0.1); }
.newsletter-disclaimer { font-size: 0.75rem; color: var(--dim); margin-top: 0.75rem; }
@media (max-width: 520px) { .newsletter-form { flex-direction: column; } }

/* ── Timeline ───────────────────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; max-width: 680px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), transparent);
}
.timeline-item { position: relative; padding: 0 0 2.5rem 1.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute; left: -2.1rem; top: 0.25rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(38,145,75,0.3);
}
.timeline-content h4 { font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.timeline-content .timeline-date { font-size: 0.7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }

/* ── Team members ───────────────────────────────────────── */
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; margin: 0 auto 1rem;
}
.team-name { font-weight: 800; font-size: 1rem; color: var(--fg); margin-bottom: 0.15rem; }
.team-position { font-size: 0.78rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; }

/* ── Big number display ─────────────────────────────────── */
.big-num { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: var(--green); line-height: 1; }

/* ── Video elements ─────────────────────────────────────── */
.video-embed { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.video-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  min-height: 280px; position: relative;
}
.video-play-btn {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4); color: #fff; font-size: 1.3rem;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn:hover { background: var(--green); border-color: var(--green); transform: scale(1.08); }
.video-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.video-points { list-style: none; padding: 0; margin-top: 1.25rem; }
.video-points li { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.45rem 0; font-size: 0.88rem; color: var(--fg-muted); border-bottom: 1px solid var(--border2); }
.video-points li:last-child { border-bottom: none; }
.video-points li i { color: var(--green); margin-top: 0.15rem; flex-shrink: 0; }

/* ── About page two-column aliases ─────────────────────── */
.about-left { /* part of .about-grid — inherits grid cell */ }
.about-right { /* part of .about-grid — inherits grid cell */ }

/* ── Awards page ─────────────────────────────────────────── */
.awards-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.awards-info-left h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; color: var(--text); margin-bottom: 0.8rem; }
.awards-info-left p { color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.awards-info-list { list-style: none; padding: 0; }
.awards-info-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border2); font-size: 0.9rem; color: var(--gray); }
.awards-info-list li i { color: var(--green); margin-top: 0.15rem; flex-shrink: 0; }
@media (max-width: 860px) { .awards-info-grid { grid-template-columns: 1fr; } }

/* ── Why Win grid ────────────────────────────────────────── */
.why-win-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-win-card { background: var(--card); border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.why-win-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(38,145,75,0.2); }
.why-win-icon { font-size: 2rem; color: var(--green); margin-bottom: 1rem; }
.why-win-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.why-win-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }
@media (max-width: 768px) { .why-win-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .why-win-grid { grid-template-columns: 1fr; } }

/* ── Dot tier indicators ─────────────────────────────────── */
.dot-titanium { color: #e2e8f0; }
.dot-diamond  { color: #b2e9ff; }
.dot-gold     { color: #f6c443; }
.dot-platinum { color: #c0c8d4; }
.dot-silver   { color: #a8b0bc; }
.dot-bronze   { color: #cd7f32; }
.dot-startup  { color: var(--green); }

/* ── Tier name labels ────────────────────────────────────── */
.tier-titanium{ color: #e2e8f0; }
.tier-diamond { color: #7dd3fc; }
.tier-platinum{ color: #c4b5fd; }
.tier-gold    { color: #f6c443; }
.tier-silver  { color: #a8b0bc; }
.tier-bronze  { color: #cd7c3b; }
.tier-startup { color: #6ee498; }

/* ── Blog filters ────────────────────────────────────────── */
.blog-controls { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-filters-label { font-size: 0.8rem; font-weight: 700; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.8px; padding: 0.5rem 0; }
.blog-filter-btn {
  padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.78rem; font-weight: 700;
  border: 1px solid var(--border2); background: var(--card); color: var(--fg-muted);
  cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Utility classes ────────────────────────────────────── */
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-muted { color: var(--fg-muted); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.gap-sm { gap: 0.5rem; } .gap-md { gap: 1rem; } .gap-lg { gap: 2rem; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .show-meta-bar { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* Gallery editions grid - 2 column layout */
.editions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .editions-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   NAV SOCIAL ICONS (index.html uses .nav-social-icons)
══════════════════════════════════════════ */
.nav-social-icons {
  display: flex; align-items: center; gap: 0.2rem; margin-right: 0.75rem;
}
.nav-social-icons .nav-social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; color: rgba(255,255,255,0.7);
  border-radius: 50%; transition: color 0.2s, background 0.2s; font-size: 0.8rem;
  text-decoration: none;
}
.nav-social-icons .nav-social-icon:hover {
  color: #fff; background: rgba(38,145,75,0.35);
}
@media (max-width: 900px) { .nav-social-icons { display: none; } }

/* ══════════════════════════════════════════
   WHAT-IS PHOTO CAROUSEL
══════════════════════════════════════════ */
.what-carousel {
  position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.what-carousel-inner {
  position: relative; width: 100%; aspect-ratio: 4/3;
}
.what-carousel-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 0.7s ease;
  border-radius: var(--radius-lg);
}
.what-carousel-img.active { opacity: 1; }
.what-carousel-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.what-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.3s;
}
.what-carousel-dot.active { background: #fff; }

/* ══════════════════════════════════════════
   HIGHLIGHT PHOTO — real image bg version
══════════════════════════════════════════ */
.highlight-photo {
  height: 200px !important;
  background-color: #1a2e1f;
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
}
.highlight-photo-inner { display: none !important; }

/* ══════════════════════════════════════════
   WHY ATTEND — icon-card grid (3 cols)
══════════════════════════════════════════ */
.why-cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-cards-grid-3 .why-card {
  background: #ffffff;
  border: 1.5px solid #dde8e0;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.why-cards-grid-3 .why-card:hover {
  background: #f0faf3;
  border-color: rgba(38,145,75,0.4);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(38,145,75,0.12);
}
.why-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(38,145,75,0.15), rgba(38,145,75,0.07));
  border: 1px solid rgba(38,145,75,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem; color: #26914b;
}
.why-cards-grid-3 .why-card h4 {
  font-size: 1rem; font-weight: 800; color: #111;
  margin-bottom: 0.5rem;
}
.why-cards-grid-3 .why-card p {
  font-size: 0.83rem; color: #555; line-height: 1.65; margin: 0;
}
@media (max-width: 900px) { .why-cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-cards-grid-3 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   AWARDS PREVIEW BANNER STATS
══════════════════════════════════════════ */
.awards-preview-banner {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: linear-gradient(135deg, rgba(38,145,75,0.15), rgba(16,59,32,0.3));
  border: 1px solid rgba(38,145,75,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-bottom: 2.5rem;
}
.awards-banner-stat {
  flex: 1; text-align: center; padding: 0 2rem;
}
.awards-banner-num {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: #fff;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.awards-banner-num span {
  font-size: 2rem;
  -webkit-text-fill-color: transparent;
}
.awards-banner-label {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.55); margin-top: 0.5rem;
}
.awards-banner-divider {
  width: 1px; height: 80px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .awards-preview-banner {
    flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem;
  }
  .awards-banner-divider { width: 80px; height: 1px; }
  .awards-banner-stat { padding: 0; }
}

/* ══════════════════════════════════════════
   SPONSORS SECTION — force dark background
══════════════════════════════════════════ */
.sponsors-section {
  background: transparent !important;
}

/* ══════════════════════════════════════════
   NAV LANGUAGE SELECTOR (dropdown style)
══════════════════════════════════════════ */
.nav-lang-select {
  position: relative; margin-right: 0.5rem;
}
.nav-lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 6px 12px; cursor: pointer;
  color: #fff; font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s;
}
.nav-lang-btn:hover { background: rgba(255,255,255,0.14); }
.nav-lang-flag { font-size: 1.1rem; line-height: 1; }
.nav-lang-arrow { font-size: 0.55rem; color: rgba(255,255,255,0.5); margin-left: 2px; transition: transform 0.2s; }
.nav-lang-select.open .nav-lang-arrow { transform: rotate(180deg); }
.nav-lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #1a2e1f; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 4px; min-width: 90px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s;
  z-index: 100;
}
.nav-lang-select.open .nav-lang-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-lang-option {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; color: rgba(255,255,255,0.7);
  padding: 8px 10px; border-radius: 6px; cursor: pointer;
  font-size: 0.8rem; font-weight: 600; transition: background 0.15s;
}
.nav-lang-option:hover, .nav-lang-option.active { background: rgba(38,145,75,0.25); color: #fff; }

/* ══════════════════════════════════════════
   NAV SOCIAL — improved visibility
══════════════════════════════════════════ */
.nav-social-icons .nav-social-icon {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.9rem !important;
}
.nav-social-icons .nav-social-icon:hover {
  color: #fff !important;
}

/* ══ NAV: social icons + lang visible on white nav ══ */
.nav-social-icons .nav-social-icon {
  color: #2c3e30 !important;
  font-size: 0.95rem !important;
}
.nav-social-icons .nav-social-icon:hover {
  color: #26914b !important;
  background: #eef8f2 !important;
}
.nav-lang-btn {
  background: transparent !important;
  border: 1.5px solid #c8d8cc !important;
  color: #111a14 !important;
}
.nav-lang-btn:hover { background: #eef8f2 !important; }
.nav-lang-code { color: #111a14 !important; }
.nav-lang-arrow { color: #5a6b5f !important; }

/* ══ FOREX · CRYPTO · FINTECH · INVESTMENTS — white bold ══ */
.hero-subtitle {
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
}

/* ══ WHAT IS — redesigned full-width layout ══ */
.what-header-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}
.what-header-left h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.what-header-right p {
  font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 0.85rem;
}
.what-carousel-full {
  width: 100% !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.what-carousel-full .what-carousel-inner {
  aspect-ratio: 16/6 !important;
}
.what-carousel-full .what-carousel-img {
  border-radius: var(--radius-lg);
}
.what-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.what-cards-row .what-card {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.what-cards-row .what-card:hover {
  border-color: rgba(38,145,75,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .what-header-row { grid-template-columns: 1fr; gap: 1rem; }
  .what-carousel-full .what-carousel-inner { aspect-ratio: 16/7 !important; }
  .what-cards-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .what-cards-row { grid-template-columns: 1fr 1fr; }
}

/* ══ WHAT IS — two-column: text left, carousel right ══ */
.what-two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
.what-text-col p {
  font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin-bottom: 0.85rem;
}
.what-photo-col { width: 100%; }
.what-carousel-full {
  width: 100% !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}
.what-carousel-full .what-carousel-inner {
  aspect-ratio: 4/3 !important;
}
@media (max-width: 900px) {
  .what-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .what-carousel-full .what-carousel-inner { aspect-ratio: 16/9 !important; }
}

/* ══ SHOW CARD — edition logo header ══ */
.show-edition-logo {
  width: 100%;
  height: 130px;
  background: #f4f8f5;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border2);
  overflow: hidden;
}
.show-edition-logo img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* FX Experts Cup logo */
.cup-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
}
.cup-logo-img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(212,175,55,0.25));
}

/* ══════════════════════════════════════════
   GALLERY 5 — 2 left | 1 center | 2 right
══════════════════════════════════════════ */
.gallery-5-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 2rem;
}
.g5-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.g5-item {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  cursor: pointer;
}
.g5-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.g5-item:hover .gallery-overlay { opacity: 1; }
.g5-item .gallery-overlay span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.g5-tall {
  min-height: 100%;
  flex: 1;
}
.g5-center {
  min-height: 420px;
}
.g5-center .g5-item {
  height: 100%;
  min-height: 420px;
}
@media (max-width: 768px) {
  .gallery-5-grid { grid-template-columns: 1fr 1fr; }
  .g5-col.g5-center { display: none; }
}
@media (max-width: 480px) {
  .gallery-5-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   AWARDS HERO — text left / trophy right
══════════════════════════════════════════ */
.awards-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.awards-hero-left { display: flex; flex-direction: column; justify-content: center; }
.awards-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(38,145,75,0.12), rgba(16,59,32,0.18));
  border: 1px solid rgba(38,145,75,0.2);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  max-width: 420px;
}
.aw-stat { flex: 1; text-align: center; }
.aw-stat-num { font-size: 2.4rem; font-weight: 900; color: #26914b; line-height: 1; }
.aw-stat-num span { font-size: 1.6rem; }
.aw-stat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #666; margin-top: 0.35rem; }
.aw-stat-divider { width: 1px; height: 50px; background: rgba(38,145,75,0.25); margin: 0 1rem; }
.awards-hero-right { display: flex; align-items: center; justify-content: center; }
.awards-trophy-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(38,145,75,0.18));
}
/* 3x3 award categories */
.awards-cats-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .awards-hero-row { grid-template-columns: 1fr; }
  .awards-hero-right { display: none; }
  .awards-cats-9 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .awards-cats-9 { grid-template-columns: 1fr; }
}

/* About page — video right side */
.about-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About — identity photo carousel */
.about-identity-carousel {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}
.aic-track { position: relative; width: 100%; height: 100%; }
.aic-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.aic-img.active { opacity: 1; }
.aic-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.aic-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.3s;
}
.aic-dot.active { background: #fff; }

/* video-points icons styling */
.video-points li i {
  color: #26914b;
  width: 18px;
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   MISSION & VISION — redesigned
══════════════════════════════════════════ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid #e4ede7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.mv-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mv-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(38,145,75,0.15), rgba(38,145,75,0.07));
  border: 1.5px solid rgba(38,145,75,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #26914b;
  margin-bottom: 0.5rem;
}
.mv-icon-vision {
  background: linear-gradient(135deg, rgba(16,59,32,0.12), rgba(16,59,32,0.05));
  border-color: rgba(16,59,32,0.2);
  color: #103b20;
}
.mv-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: #26914b;
  background: rgba(38,145,75,0.08);
  padding: 3px 12px; border-radius: 20px;
  width: fit-content;
}
.mv-tag-vision {
  color: #103b20;
  background: rgba(16,59,32,0.08);
}
.mv-card h3 {
  font-size: 1.5rem; font-weight: 800; color: #111; margin: 0;
}
.mv-card p {
  font-size: 0.9rem; color: #555; line-height: 1.75; margin: 0;
}
.mv-pillars {
  display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem;
}
.mv-pillars span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 700; color: #26914b;
  background: rgba(38,145,75,0.08);
  border: 1px solid rgba(38,145,75,0.2);
  padding: 4px 12px; border-radius: 20px;
}
.mv-divider {
  width: 1px;
  background: #e4ede7;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-divider { width: 100%; height: 1px; margin: 0 2rem; width: auto; }
}

/* ══════════════════════════════════════════
   HISTORY TIMELINE — redesigned
══════════════════════════════════════════ */
.ht-timeline { display: flex; flex-direction: column; gap: 0; max-width: 860px; margin: 0 auto; }
.ht-item { display: grid; grid-template-columns: 90px 56px 1fr; align-items: flex-start; }
.ht-last .ht-connector { align-items: flex-start; }

/* Year column */
.ht-year-col { display: flex; align-items: flex-start; justify-content: flex-end; padding-right: 0; padding-top: 1.6rem; }
.ht-year { font-size: 1.1rem; font-weight: 900; color: #aab8aa; letter-spacing: 1px; }
.ht-year-active { color: #26914b; }

/* Connector column */
.ht-connector { display: flex; flex-direction: column; align-items: center; }
.ht-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 2.5px solid #c8dcc8;
  display: flex; align-items: center; justify-content: center;
  color: #7aaa7a; font-size: 1rem; flex-shrink: 0;
  margin: 1rem 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  z-index: 1; position: relative;
}
.ht-dot-active {
  background: linear-gradient(135deg, #26914b, #103b20);
  border-color: #26914b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(38,145,75,0.35);
}
.ht-line { flex: 1; width: 2px; background: linear-gradient(to bottom, #c8dcc8, #e8f0e8); min-height: 40px; }

/* Card */
.ht-card {
  background: #fff;
  border: 1.5px solid #e4ede7;
  border-radius: 16px;
  padding: 1.6rem 2rem;
  margin: 0.75rem 0 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.ht-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.ht-card-active {
  border-color: rgba(38,145,75,0.35);
  box-shadow: 0 4px 20px rgba(38,145,75,0.12);
}
.ht-card-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #26914b; background: rgba(38,145,75,0.08);
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 0.6rem;
}
.ht-tag-active { background: rgba(38,145,75,0.15); }
.ht-card h3 { font-size: 1.15rem; font-weight: 800; color: #111; margin: 0 0 0.5rem; }
.ht-card p { font-size: 0.85rem; color: #555; line-height: 1.7; margin: 0 0 1rem; }
.ht-stat-row { display: flex; gap: 1.5rem; }
.ht-stat { font-size: 0.75rem; color: #888; font-weight: 600; }
.ht-stat span { font-size: 1.1rem; font-weight: 900; color: #26914b; margin-right: 3px; }

@media (max-width: 600px) {
  .ht-item { grid-template-columns: 60px 44px 1fr; }
  .ht-year { font-size: 0.85rem; }
  .ht-card { padding: 1.2rem 1.2rem; margin-left: 1rem; }
}

/* ══════════════════════════════════════════
   TEAM GRID — 3 × 2 with real photos
══════════════════════════════════════════ */
.team-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.tm-card {
  background: #fff;
  border: 1.5px solid #e4ede7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(38,145,75,0.14);
}
.tm-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.tm-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.4s ease;
}
.tm-card:hover .tm-photo { transform: scale(1.05); }
.tm-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,59,32,0.45) 0%, transparent 55%);
  pointer-events: none;
}
.tm-info {
  padding: 1.2rem 1.4rem 1.5rem;
}
.tm-info h4 {
  font-size: 1rem; font-weight: 800; color: #111; margin: 0 0 0.25rem;
}
.tm-role {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #26914b;
  margin-bottom: 0.6rem;
}
.tm-info p {
  font-size: 0.82rem; color: #666; line-height: 1.6; margin: 0;
}
@media (max-width: 900px) { .team-grid-new { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid-new { grid-template-columns: 1fr; } }

/* About — dynamic text block */
.about-lead {
  font-size: 1.05rem; color: #444; line-height: 1.7;
  margin-bottom: 1.8rem;
}
.about-lead strong { color: #111; }
.about-pillars-list { display: flex; flex-direction: column; gap: 0.9rem; }
.apl-item {
  display: flex; align-items: center; gap: 0.9rem;
  background: #fff; border: 1.5px solid #e4ede7;
  border-radius: 12px; padding: 0.85rem 1.2rem;
  font-size: 0.88rem; font-weight: 600; color: #333;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  transition: border-color 0.3s, transform 0.3s;
}
.apl-item:hover { border-color: rgba(38,145,75,0.4); transform: translateX(4px); }
.apl-item i { color: #26914b; font-size: 1rem; width: 20px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   GALLERY ALBUMS GRID — 4 × 2
══════════════════════════════════════════ */
.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.gal-album {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #e4ede7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.gal-album:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(38,145,75,0.15);
  border-color: rgba(38,145,75,0.4);
}
.gal-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.gal-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,26,15,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: opacity 0.3s;
}
.gal-album:hover .gal-gradient { opacity: 0.9; }
.gal-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: 0.5px;
}
.gal-hover-btn {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #26914b; color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 7px 18px; border-radius: 20px;
  white-space: nowrap;
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  display: flex; align-items: center; gap: 6px;
}
.gal-album:hover .gal-hover-btn {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.gal-info {
  padding: 1.1rem 1.2rem 1.3rem;
}
.gal-info h4 {
  font-size: 0.88rem; font-weight: 800; color: #111;
  margin: 0 0 0.35rem; line-height: 1.3;
}
.gal-info p {
  font-size: 0.78rem; color: #666; line-height: 1.55; margin: 0 0 0.6rem;
}
.gal-meta {
  font-size: 0.72rem; font-weight: 700; color: #26914b;
  display: flex; align-items: center; gap: 5px;
}
@media (max-width: 1100px) { .gallery-albums-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .gallery-albums-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-albums-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   BLOG SEARCH & FILTERS — redesigned
══════════════════════════════════════════ */
.blog-controls-new {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
.blog-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 420px;
}
.blog-search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: #26914b; font-size: 0.9rem; pointer-events: none;
}
.blog-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 2px solid #e4ede7;
  border-radius: 50px;
  font-size: 0.88rem;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
}
.blog-search-input:focus {
  border-color: #26914b;
  box-shadow: 0 0 0 3px rgba(38,145,75,0.12);
}
.blog-filters-new {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bfn-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.55rem 1.1rem;
  border: 2px solid #e4ede7;
  border-radius: 50px;
  background: #fff;
  color: #555;
  font-size: 0.78rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}
.bfn-btn i { font-size: 0.72rem; }
.bfn-btn:hover {
  border-color: #26914b;
  color: #26914b;
  background: rgba(38,145,75,0.05);
}
.bfn-btn.active {
  background: #26914b;
  border-color: #26914b;
  color: #fff;
  box-shadow: 0 3px 12px rgba(38,145,75,0.3);
}
@media (max-width: 640px) {
  .blog-controls-new { flex-direction: column; align-items: stretch; }
  .blog-search-wrap { max-width: 100%; }
}

/* Awards page — trophy right side */
.awards-trophy-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}

/* Awards — Previous Editions Tab System */
.aw-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.aw-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  border: 2px solid #26914b;
  background: transparent;
  color: #26914b;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}
.aw-tab:hover {
  background: rgba(38,145,75,0.08);
}
.aw-tab.active {
  background: #26914b;
  color: #fff;
  box-shadow: 0 4px 14px rgba(38,145,75,0.3);
}
.aw-edition {
  display: none;
}
.aw-edition.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.aw-winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .aw-winners-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .aw-winners-grid { grid-template-columns: 1fr; }
  .aw-tabs { gap: 0.5rem; }
}
.aw-winner {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1.5px solid rgba(38,145,75,0.1);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  text-align: center;
}
.aw-winner:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(38,145,75,0.16);
  border-color: rgba(38,145,75,0.35);
}
.aw-winner a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.aw-winner a img {
  width: 100%;
  display: block;
  transition: opacity 0.2s;
}
.aw-winner a:hover img { opacity: 0.92; }
.aw-winner-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #103b20;
  background: linear-gradient(to bottom, #f4faf6, #edf6f0);
  border-top: 1.5px solid rgba(38,145,75,0.13);
}
.aw-winner-label i {
  color: #26914b;
  font-size: 0.82rem;
}
.aw-winner a:hover .aw-winner-label {
  color: #26914b;
}
/* legacy classes kept for compatibility */
.aw-winner-img-wrap { width: 100%; overflow: hidden; background: #f5f7f4; }
.aw-winner-img-wrap img { width: 100%; object-fit: cover; object-position: center top; }
.aw-winner-info { padding: 0.75rem 0.6rem 0.9rem; }
.aw-winner-name { font-size: 0.82rem; font-weight: 800; color: #103b20; margin: 0 0 0.2rem; line-height: 1.3; }
.aw-winner-cat  { font-size: 0.72rem; color: #26914b; font-weight: 600; }

/* ── Sponsors / Partners section ── */
.sp-tier { margin-bottom: 2.5rem; text-align: center; }
.sp-tier-label { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; }
.sp-label-titanium { color: #5a8fa8; }
.sp-label-diamond  { color: #4aa8d4; }
.sp-label-platinum { color: #8a8a9a; }
.sp-label-gold     { color: #b8920a; }
.sp-label-silver   { color: #7a8a8a; }
.sp-label-bronze   { color: #a06030; }
.sp-label-startup  { color: #5a7a5a; }
.sp-logos-grid { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; }
.sp-logo-box { display: flex; align-items: center; justify-content: center; }
.sp-logo-box img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.2s, transform 0.2s; }
.sp-logo-box a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.sp-logo-box a:hover img { opacity: 0.8; transform: scale(1.06); }
.sp-cta-banner { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1.5px solid #dde3d8; border-radius: 14px; padding: 1.5rem 2rem; margin-top: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.sp-cta-banner h4 { margin:0; font-size: 1rem; font-weight: 700; color: #111; }
.sp-cta-banner p  { margin:0; font-size: 0.85rem; color: #666; }
