:root {
  --red: #C41E2B;
  --red-dark: #A31822;
  --red-light: #E83542;
  --red-soft: #FFF0F1;
  --red-glow: rgba(196, 30, 43, 0.15);
  --red-glow-strong: rgba(196, 30, 43, 0.25);
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --light-gray: #F0F2F5;
  --mid-gray: #E4E7EC;
  --text-dark: #1A1A2E;
  --text-body: #374151;
  --text-muted: #6B7280;
  --gold: #FFD700;
  --gold-dark: #E6C200;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-red: 0 8px 32px rgba(196, 30, 43, 0.18);
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell { position: relative; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mid-gray);
  box-shadow: 0 1px 0 rgba(0,0,0,0.03);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 7.5rem;
  height: auto;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--red);
  color: var(--white);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px var(--red-glow);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--red-glow-strong);
}

.hero {
  position: relative;
  padding: 3.5rem 0 3rem;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0,0,0,0.08) 0%, transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-copy { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  max-width: 16ch;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  color: var(--gold);
}

.hero-copy h1 span::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.6;
}

.hero-text {
  max-width: 52ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.meta-pill {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  background: var(--off-white);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow-strong);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.poster-frame {
  position: relative;
  padding: 0.7rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.1);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.poster-frame:hover { transform: rotate(0deg) scale(1.02); }

.poster-frame img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 14px;
}

.floating-badge {
  position: absolute;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}

.badge-top { top: -10px; right: -15px; animation-delay: 0s; }
.badge-bottom { bottom: 20px; left: -20px; animation-delay: 2s; }

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

.hero-stats-bar {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-stat { text-align: center; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section { padding: 4.5rem 0; }

.section-alt { background: var(--off-white); }

.section-heading { max-width: 48rem; }

.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  font-weight: 700;
}

.section-heading p {
  margin-top: 0.8rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-heading-centered {
  text-align: center;
  margin: 0 auto 2rem;
}

.impact-counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.impact-counter {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.impact-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.impact-counter:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
  border-color: var(--red-light);
}

.impact-counter:hover::before { opacity: 1; }

.impact-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.impact-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.winner-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.winner-spotlight-card {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  overflow: hidden;
}

.winner-spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.spotlight-first {
  border-top: 4px solid var(--gold);
  background: linear-gradient(180deg, rgba(255,215,0,0.04) 0%, var(--white) 40%);
}

.spotlight-first:hover { box-shadow: 0 16px 48px rgba(255,215,0,0.2); }

.spotlight-second {
  border-top: 4px solid #C0C0C0;
  background: linear-gradient(180deg, rgba(192,192,192,0.04) 0%, var(--white) 40%);
}

.spotlight-third {
  border-top: 4px solid #CD7F32;
  background: linear-gradient(180deg, rgba(205,127,50,0.04) 0%, var(--white) 40%);
}

.spotlight-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.spotlight-first .spotlight-rank {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #5C4800;
  box-shadow: 0 4px 16px rgba(255,215,0,0.35);
}

.spotlight-second .spotlight-rank {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
  color: #333;
  box-shadow: 0 4px 16px rgba(192,192,192,0.35);
}

.spotlight-third .spotlight-rank {
  background: linear-gradient(135deg, #CD7F32, #A0522D);
  color: #fff;
  box-shadow: 0 4px 16px rgba(205,127,50,0.35);
}

.spotlight-medal { font-size: 3rem; margin-bottom: 0.4rem; }
.spotlight-first .spotlight-medal { font-size: 3.8rem; }

.spotlight-prize {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  margin: 0.4rem 0;
}

.spotlight-first .spotlight-prize {
  font-size: 2.8rem;
  background: linear-gradient(135deg, #B8860B, var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spotlight-team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0.6rem 0 0.2rem;
}

.spotlight-first .spotlight-team-name { font-size: 1.45rem; }

.spotlight-city {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.spotlight-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.6rem;
  line-height: 1.5;
}

.video-carousel-wrapper {
    position: relative;
    margin-top: 2.5rem;
    padding: 0 3.5rem;
}

.video-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 1rem;
    scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

.video-mini-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-mini-player {
    position: relative;
    aspect-ratio: 16/9;
    background: #0a0a1a;
    overflow: hidden;
    cursor: pointer;
}

.video-mini-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-mini-player .mini-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.video-mini-card.is-playing .mini-poster {
    opacity: 0;
    pointer-events: none;
}

.video-mini-player .mini-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
    z-index: 3;
    pointer-events: none;
}

.video-mini-player .mini-play-btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--red);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-mini-card:hover .mini-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-mini-card.is-playing .mini-play-btn {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
}

.video-mini-timeline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 0.5rem 0.4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-mini-card:hover .video-mini-timeline,
.video-mini-card.is-playing .video-mini-timeline {
    opacity: 1;
}

.timeline-bar {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.timeline-bar:hover {
    height: 6px;
}

.timeline-progress {
    height: 100%;
    border-radius: 999px;
    background: var(--red);
    width: 0%;
    transition: width 0.1s linear;
}

.timeline-tooltip {
    display: none;
}

.video-mini-info {
    padding: 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.video-mini-info h3 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.video-mini-info h3 .video-mini-visit {
    flex-shrink: 0;
}

.video-mini-info p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-mini-duration {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 1rem 0.7rem;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
}

.video-mini-duration .dur-time {
    font-variant-numeric: tabular-nums;
}

.video-mini-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    margin-top: 0.6rem;
}

.video-mini-visit:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 30, 43, 0.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    padding-bottom: 0.15rem;
}

.carousel-arrow:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

@media (max-width: 720px) {
    .video-carousel-wrapper {
        padding: 0;
    }

    .video-mini-card {
        flex: 0 0 240px;
    }

    .carousel-arrow {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 0.3rem;
    }

    .carousel-next {
        right: 0.3rem;
    }

    .video-mini-player .mini-play-btn {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.75rem;
    }
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.gallery-cat-btn {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    background: var(--white);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.4, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.gallery-cat-btn:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.gallery-cat-btn.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red-dark);
    box-shadow: 0 4px 16px var(--red-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 200px;
    gap: 1rem;
    grid-auto-flow: row dense;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--light-gray);
    transition: all 0.4s cubic-bezier(0.25, 0.4, 0.2, 1);
    cursor: pointer;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.65) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.4, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item .gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--red);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--red);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
    line-height: 1;
    padding-bottom: 0.15rem;
}

.lightbox-nav:hover {
    background: var(--red);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.certificates-showcase {
  margin-top: 2.5rem;
}

.cert-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.cert-heading h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.cert-heading p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
}

.cert-grid::-webkit-scrollbar {
  display: none;
}

.cert-card {
  position: relative;
  flex: 0 0 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-gray);
  transition: all 0.4s cubic-bezier(0.25, 0.4, 0.2, 1);
  cursor: pointer;
}

.cert-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  pointer-events: none;
}

.cert-card:hover::after {
  opacity: 1;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.cert-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.cert-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
  transition: transform 0.5s cubic-bezier(0.25, 0.4, 0.2, 1);
}

.cert-card:hover .cert-image img {
   transform: scale(1.05);
}

@media (max-width: 1080px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

@media (max-width: 720px) {
    .container { width: min(var(--container), calc(100% - 1.25rem)); }

    .float-whatsapp {
        bottom: 0.75rem; right: 0.75rem;
        width: 2.6rem; height: 2.6rem;
    }

    .float-back {
        bottom: 0.75rem; left: 0.75rem;
        height: 2.6rem; padding: 0 0.9rem;
        font-size: 0.78rem;
    }

    .site-header { position: static; }

    .nav-bar { flex-wrap: nowrap; padding: 0.5rem 0; }
    .brand { width: auto; flex-wrap: nowrap; flex: 1; min-width: 0; }
    .brand-text { font-size: 0.72rem; }
    .nav-cta { padding: 0.45rem 0.8rem; font-size: 0.75rem; flex-shrink: 0; }
    .brand-logo { width: min(100%, 6.5rem); }

    .hero { padding: 2.5rem 0 3rem; }
    .hero-meta { gap: 0.35rem; margin-top: 1rem; }
    .meta-pill { padding: 0.35rem 0.6rem; font-size: 0.68rem; }
    .hero-actions { gap: 0.4rem; }
    .hero-actions .btn { padding: 0.6rem 1rem; font-size: 0.78rem; }
    .hero-stats-bar { flex-wrap: wrap; gap: 0.6rem; padding: 0.7rem 0.9rem; }
    .hero-stat-value { font-size: 1.2rem; }
    .hero-stat-label { font-size: 0.62rem; }

   .impact-counters,
   .gained-grid,
   .social-proof-grid,
   .leaderboard-grid,
   .mentor-appreciation-grid,
   .internship-grid {
     grid-template-columns: repeat(2, minmax(0, 1fr));
   }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 120px;
    }
    .gallery-item-tall { grid-row: span 1; }
    .gallery-item-wide { grid-column: span 2; }

    .section { padding: 2.5rem 0; }

    .winner-spotlight-card,
    .testimonial-card,
    .cta-card,
    .before-after-card { padding: 1.2rem; }

    .hof-card { flex: 0 0 150px; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 18rem; }

    .poster-frame { transform: rotate(1deg); }
    .poster-frame img { max-width: 170px; }

    .section-heading h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
    .section-heading p { font-size: 0.9rem; }
    .impact-counter { padding: 1.5rem 1rem; }
    .impact-number { font-size: clamp(1.5rem, 5vw, 2rem); }
    .impact-label { font-size: 0.78rem; }
    .social-proof-card { padding: 1.5rem 1rem; }
    .social-proof-number { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .social-proof-label { font-size: 0.78rem; }
    .mentor-app-card { padding: 1.2rem 0.8rem; }
    .mentor-app-photo { width: 3.5rem; height: 3.5rem; }
    .mentor-app-card h3 { font-size: 0.85rem; }
    .gained-card { padding: 1.5rem 1rem; }
    .gained-icon { font-size: 1.8rem; }
    .gained-card h3 { font-size: 0.95rem; }
    .gained-card p { font-size: 0.78rem; }
    .leaderboard-card { padding: 0.7rem 0.8rem; }
    .leaderboard-name { font-size: 0.8rem; }
    .internship-card { padding: 0.9rem 1rem; }
    .internship-name { font-size: 0.85rem; }
}

  .certificates-showcase {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 720px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 0.7rem;
  }
}

  .certificates-showcase {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .cert-border {
    padding: 1rem 0.8rem;
  }

  .cert-seal {
    font-size: 1.6rem;
  }

  .cert-title {
    font-size: 1rem;
  }

  .cert-desc {
    font-size: 0.7rem;
  }

  .cert-heading h3 {
    font-size: 1.1rem;
  }

  .cert-heading p {
    font-size: 0.82rem;
  }

  .cert-linkedin-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
  }
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonials-grid .testimonial-card:nth-child(4) {
  grid-column: 1 / 2;
}

.testimonials-grid .testimonial-card:nth-child(5) {
  grid-column: 2 / 3;
}

.testimonial-card {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-stars {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.8rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--mid-gray);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--red-glow);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 2rem;
}

.leaderboard-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.leaderboard-card:hover {
  border-color: var(--red-light);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.leaderboard-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.leaderboard-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.internship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
}

.internship-card {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.internship-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(255,215,0,0.15);
  transform: translateY(-2px);
}

.internship-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.08));
  color: #B8860B;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.internship-info { flex: 1; min-width: 0; }

.internship-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.internship-city {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

.modal-content video {
    width: 100%;
    max-height: 80vh;
    display: block;
}

.hall-of-fame { position: relative; margin-top: 2.5rem; }

.hof-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hof-carousel::-webkit-scrollbar { display: none; }

.hof-card {
  flex: 0 0 200px;
  scroll-snap-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.hof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
}

.hof-photo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  background: linear-gradient(135deg, var(--red-soft), var(--light-gray));
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.hof-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.hof-badge {
  display: inline-flex;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hof-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.hof-nav-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--mid-gray);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hof-nav-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.gained-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gained-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.gained-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
  border-color: var(--red-light);
}

.gained-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }

.gained-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.gained-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.before-after-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.before-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
}

.after-card {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.before-after-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.before-card h3 { color: var(--text-dark); }
.after-card h3 { color: var(--white); }

.before-after-list { list-style: none; }

.before-after-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.before-card .before-after-list li { color: var(--text-body); }
.after-card .before-after-list li { color: rgba(255,255,255,0.92); }

.before-after-list li::before {
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.before-card .before-after-list li::before { content: "✗"; color: #DC2626; }
.after-card .before-after-list li::before { content: "✓"; color: var(--gold); }

.mentor-appreciation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}

.mentor-app-card {
  padding: 1.8rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.mentor-app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red-light);
}

.mentor-app-photo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  background: linear-gradient(135deg, var(--red-soft), var(--light-gray));
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background-size: cover;
  background-position: center;
}

.mentor-app-card:nth-child(1) .mentor-app-photo { background-image: url('images/Sachin Jain.png'); }
.mentor-app-card:nth-child(2) .mentor-app-photo { background-image: url('images/Akansha Jain.jpeg'); }
.mentor-app-card:nth-child(3) .mentor-app-photo { background-image: url('images/Amit Goyal.png'); }
.mentor-app-card:nth-child(4) .mentor-app-photo { background-image: url('images/Ashish Mishra.jpeg'); }
.mentor-app-card:nth-child(5) .mentor-app-photo { background-image: url('images/Parul Mishra.png'); }
.mentor-app-card:nth-child(6) .mentor-app-photo { background-image: url('images/Mukesh Rai.png'); }
.mentor-app-card:nth-child(7) .mentor-app-photo { background-image: url('images/Madhur Jain.png'); }
.mentor-app-card:nth-child(8) .mentor-app-photo { background-image: url('images/Akash Pundir.jpeg'); }

.mentor-app-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.mentor-app-title {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.mentor-app-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.social-proof-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.social-proof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.social-proof-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.social-proof-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
}

.cta-section::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.cta-card {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0rem 0rem 0rem;
}

.cta-card .eyebrow {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 0.8rem;
  color: var(--white);
}

.cta-card p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.site-footer {
  padding: 3.5rem 0 2.5rem;
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.footer-copy h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-copy p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-copy .eyebrow {
  background: rgba(196,30,43,0.25);
  color: var(--red-light);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  min-height: 100px;
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.contact-icon { font-size: 1.4rem; line-height: 1; }

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
}

.contact-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1;
}

.contact-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-whatsapp {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 100;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all 0.25s ease;
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.float-back {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  z-index: 100;
  height: 3.2rem;
  padding: 0 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: all 0.25s ease;
}

.float-back:hover {
  transform: translateY(-3px);
  background: var(--red-dark);
  box-shadow: 0 8px 32px var(--red-glow-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .footer-layout,
  .winner-spotlight-grid,
  .before-after-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .impact-counters,
  .video-grid,
  .gained-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 130px;
  }
  .leaderboard-grid,
  .mentor-appreciation-grid,
  .social-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .internship-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .contact-card {
    min-height: auto;
    padding: 0.9rem;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 0.8rem;
  }

  .hero-visual { max-width: 26rem; margin: 0 auto; }
  .poster-frame { padding: 0.5rem; }
  .poster-frame img { max-width: 220px; }
  .floating-badge { position: static; margin-top: 0.8rem; animation: none; display: inline-flex; }
  .hero-stats-bar { gap: 1rem; padding: 1rem 1.2rem; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 1.25rem)); }

  .float-whatsapp {
    bottom: 0.75rem; right: 0.75rem;
    width: 2.6rem; height: 2.6rem;
  }

  .float-back {
    bottom: 0.75rem; left: 0.75rem;
    height: 2.6rem; padding: 0 0.9rem;
    font-size: 0.78rem;
  }

  .site-header { position: static; }

  .nav-bar { flex-wrap: nowrap; padding: 0.5rem 0; }
  .brand { width: auto; flex-wrap: nowrap; flex: 1; min-width: 0; }
  .brand-text { font-size: 0.72rem; }
  .nav-cta { padding: 0.45rem 0.8rem; font-size: 0.75rem; flex-shrink: 0; }
  .brand-logo { width: min(100%, 6.5rem); }

  .hero { padding: 2.5rem 0 3rem; }
  .hero-meta { gap: 0.35rem; margin-top: 1rem; }
  .meta-pill { padding: 0.35rem 0.6rem; font-size: 0.68rem; }
  .hero-actions { gap: 0.4rem; }
  .hero-actions .btn { padding: 0.6rem 1rem; font-size: 0.78rem; }
  .hero-stats-bar { flex-wrap: wrap; gap: 0.6rem; padding: 0.7rem 0.9rem; }
  .hero-stat-value { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.62rem; }

  .impact-counters,
  .video-grid,
  .gained-grid,
  .social-proof-grid,
  .leaderboard-grid,
  .mentor-appreciation-grid,
  .internship-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 100px;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }

  .section { padding: 2.5rem 0; }

  .winner-spotlight-card,
  .testimonial-card,
  .cta-card,
  .before-after-card { padding: 1.2rem; }

  .hof-card { flex: 0 0 150px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 18rem; }

  .poster-frame { transform: rotate(1deg); }
  .poster-frame img { max-width: 170px; }

  .section-heading h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-heading p { font-size: 0.9rem; }
  .impact-counter { padding: 1.5rem 1rem; }
  .impact-number { font-size: clamp(1.5rem, 5vw, 2rem); }
  .impact-label { font-size: 0.78rem; }
  .social-proof-card { padding: 1.5rem 1rem; }
  .social-proof-number { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .social-proof-label { font-size: 0.78rem; }
  .mentor-app-card { padding: 1.2rem 0.8rem; }
  .mentor-app-photo { width: 3.5rem; height: 3.5rem; }
  .mentor-app-card h3 { font-size: 0.85rem; }
  .gained-card { padding: 1.5rem 1rem; }
  .gained-icon { font-size: 1.8rem; }
  .gained-card h3 { font-size: 0.95rem; }
  .gained-card p { font-size: 0.78rem; }
  .leaderboard-card { padding: 0.7rem 0.8rem; }
  .leaderboard-name { font-size: 0.8rem; }
  .internship-card { padding: 0.9rem 1rem; }
  .internship-name { font-size: 0.85rem; }
}
