/* ============================================
   BeSA - Become a Solutions Architect
   Brand Colors: #0d6e6e (dark teal), #4ecdc4 (light teal)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --teal-dark: #0d5c5c;
  --teal-mid: #0d7070;
  --teal-light: #4ecdc4;
  --teal-pale: #a8edea;
  --white: #ffffff;
  --off-white: #f4fafa;
  --gray-light: #e8f5f5;
  --gray-mid: #9bbcbc;
  --gray-dark: #2a3a3a;
  --black: #0a1a1a;
  --gold: #f0c040;
  --silver: #b0c4c4;
  --bronze: #c87941;
  --shadow: 0 8px 40px rgba(13, 92, 92, 0.15);
  --shadow-strong: 0 16px 60px rgba(13, 92, 92, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(78, 205, 196, 0.15);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 26, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  filter: brightness(1.1);
}

.nav-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal-light);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--teal-light);
  background: rgba(78, 205, 196, 0.12);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--teal-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO / SPLASH ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 80% at 50% 40%, rgba(13,112,112,0.25) 0%, rgba(10,26,26,0) 70%), var(--black);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78,205,196,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78,205,196,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ===== LOGO ANIMATION ===== */
.logo-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.logo-ring:nth-child(1) {
  width: 240px; height: 240px;
  border-color: rgba(78,205,196,0.35);
  animation-delay: 0s;
}
.logo-ring:nth-child(2) {
  width: 290px; height: 290px;
  border-color: rgba(78,205,196,0.2);
  animation-delay: 0.6s;
}
.logo-ring:nth-child(3) {
  width: 340px; height: 340px;
  border-color: rgba(78,205,196,0.1);
  animation-delay: 1.2s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 1; }
}

.logo-main {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoFloat 4s ease-in-out infinite;
}

.logo-main img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(78,205,196,0.5));
}

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

/* Particles */
.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: particleOrbit 6s linear infinite;
}
.particle:nth-child(4) { animation-delay: 0s; }
.particle:nth-child(5) { animation-delay: -2s; }
.particle:nth-child(6) { animation-delay: -4s; width: 3px; height: 3px; background: var(--teal-pale); }

@keyframes particleOrbit {
  0% { transform: rotate(0deg) translateX(140px) rotate(0deg); opacity: 1; }
  50% { opacity: 0.4; }
  100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); opacity: 1; }
}

.hero-text {
  animation: fadeSlideUp 1s ease 0.5s both;
}

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

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 1.1;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--teal-light);
  opacity: 0.5;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-mid);
  max-width: 440px;
  line-height: 1.7;
  margin: 0 auto 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(78,205,196,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(78,205,196,0.5);
}

.btn-ghost {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: transparent;
  color: var(--teal-light);
  border: 1.5px solid rgba(78,205,196,0.4);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(78,205,196,0.1);
  border-color: var(--teal-light);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceScroll 2s ease-in-out infinite;
}
.scroll-hint svg { opacity: 0.5; }
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== SECTIONS GENERAL ===== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.section-title .accent {
  color: var(--teal-light);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78,205,196,0.2), transparent);
  margin: 0;
}

/* ===== LEADERBOARD ===== */
#leaderboard {
  background: linear-gradient(180deg, rgba(13,112,112,0.05) 0%, transparent 100%);
}

.podium-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.podium-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  max-width: 200px;
}

.podium-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(78,205,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  border: 3px solid transparent;
  position: relative;
}

.podium-slot:nth-child(1) .podium-avatar { border-color: var(--silver); background: rgba(176,196,196,0.12); }
.podium-slot:nth-child(2) .podium-avatar { border-color: var(--gold); background: rgba(240,192,64,0.12); width: 80px; height: 80px; font-size: 1.7rem; }
.podium-slot:nth-child(3) .podium-avatar { border-color: var(--bronze); background: rgba(200,121,65,0.12); }

.podium-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}

.podium-score {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
}

.podium-block {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.podium-block::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.podium-slot:nth-child(1) .podium-block {
  height: 110px;
  background: linear-gradient(180deg, rgba(176,196,196,0.3), rgba(176,196,196,0.1));
  border: 1px solid rgba(176,196,196,0.3);
  border-bottom: none;
}

.podium-slot:nth-child(2) .podium-block {
  height: 150px;
  background: linear-gradient(180deg, rgba(240,192,64,0.3), rgba(240,192,64,0.1));
  border: 1px solid rgba(240,192,64,0.4);
  border-bottom: none;
}

.podium-slot:nth-child(3) .podium-block {
  height: 80px;
  background: linear-gradient(180deg, rgba(200,121,65,0.3), rgba(200,121,65,0.1));
  border: 1px solid rgba(200,121,65,0.3);
  border-bottom: none;
}

.podium-rank {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}
.podium-slot:nth-child(1) .podium-rank { color: var(--silver); }
.podium-slot:nth-child(2) .podium-rank { color: var(--gold); }
.podium-slot:nth-child(3) .podium-rank { color: var(--bronze); }

.podium-base {
  width: calc(100% + 40px);
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(78,205,196,0.3), transparent);
  margin: 0 -20px;
}

/* Leaderboard Table */
.lb-table-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
}

.lb-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  padding: 18px 24px;
  text-align: left;
  background: rgba(78,205,196,0.06);
  border-bottom: 1px solid rgba(78,205,196,0.1);
}

.lb-table td {
  padding: 16px 24px;
  color: var(--gray-mid);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(78,205,196,0.06);
  transition: all 0.2s;
}

.lb-table tr:last-child td { border-bottom: none; }

.lb-table tr:hover td {
  background: rgba(78,205,196,0.04);
  color: var(--white);
}

.lb-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(78,205,196,0.1);
  color: var(--teal-light);
}

.lb-player-name {
  font-weight: 500;
  color: var(--white);
}

.lb-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(78,205,196,0.12);
  color: var(--teal-light);
  border: 1px solid rgba(78,205,196,0.2);
}

.lb-empty-note {
  text-align: center;
  padding: 40px;
  color: var(--gray-mid);
  font-style: italic;
}

/* ===== ABOUT US ===== */
#about {
  background: linear-gradient(180deg, transparent, rgba(13,92,92,0.06), transparent);
}

.about-intro {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-mid);
}

.about-intro p strong {
  color: var(--teal-light);
  font-weight: 500;
}

.volunteer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.25);
  color: var(--teal-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  width: 280px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(78,205,196,0.3);
  box-shadow: 0 20px 60px rgba(13,92,92,0.3);
}

.team-card:hover::before { opacity: 1; }

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(78,205,196,0.3);
  margin-bottom: 20px;
  background: rgba(78,205,196,0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--teal-light);
  margin-bottom: 16px;
  line-height: 1.4;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid rgba(78,205,196,0.15);
  border-radius: 50px;
  transition: all 0.3s;
}
.team-linkedin:hover {
  color: var(--teal-light);
  border-color: rgba(78,205,196,0.4);
  background: rgba(78,205,196,0.08);
}

/* ===== LEARN ===== */
#learn {
  padding-bottom: 120px;
}

.weeks-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  justify-content: center;
}

.week-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid rgba(78,205,196,0.2);
  color: var(--gray-mid);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.week-tab:hover {
  border-color: rgba(78,205,196,0.4);
  color: var(--teal-light);
}

.week-tab.active {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  border-color: var(--teal-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,112,112,0.4);
}

.learn-panel {
  display: none;
}
.learn-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.week-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 32px 36px;
  background: rgba(78,205,196,0.06);
  border: 1px solid rgba(78,205,196,0.15);
  border-radius: var(--radius);
}

.week-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.week-meta { flex: 1; }

.week-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 6px;
}

.week-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.week-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(78,205,196,0.1);
  color: var(--teal-light);
  border: 1px solid rgba(78,205,196,0.2);
}

/* Content sections */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.content-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(78,205,196,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.3s;
}

.content-card:hover {
  border-color: rgba(78,205,196,0.25);
}

.content-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card h3 .icon {
  width: 28px; height: 28px;
  background: rgba(78,205,196,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.content-card p, .content-card li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-mid);
}

.content-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-card ul li {
  padding-left: 20px;
  position: relative;
}
.content-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 700;
}

.content-full {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(78,205,196,0.1);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.content-full h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-full h3 .icon {
  width: 28px; height: 28px;
  background: rgba(78,205,196,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.instance-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
}

.instance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.instance-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  padding: 14px 20px;
  text-align: left;
  background: rgba(78,205,196,0.08);
  border-bottom: 1px solid rgba(78,205,196,0.15);
}

.instance-table td {
  padding: 12px 20px;
  color: var(--gray-mid);
  border-bottom: 1px solid rgba(78,205,196,0.06);
}
.instance-table tr:last-child td { border-bottom: none; }
.instance-table td:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--white);
}
.instance-table tr:hover td { background: rgba(78,205,196,0.04); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(78,205,196,0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: rgba(78,205,196,0.3);
  background: rgba(78,205,196,0.05);
}
.pricing-card .pc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pricing-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.pricing-card p {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.callout-box {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal-light);
  background: rgba(78,205,196,0.06);
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

.callout-box strong { color: var(--teal-light); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(78,205,196,0.1);
  padding: 40px 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal-light);
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  color: var(--gray-mid);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gray-mid);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--teal-light); }

.footer-copy {
  margin-top: 32px;
  color: rgba(155,188,188,0.4);
  font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,26,26,0.98); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(78,205,196,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .section { padding: 70px 20px; }
  .content-grid { grid-template-columns: 1fr; }
  .podium-wrapper { gap: 12px; }
  .hero-title { font-size: 2.2rem; }
  .week-header { flex-direction: column; text-align: center; }
  .team-grid { gap: 24px; }
  .team-card { width: 100%; max-width: 320px; }
}
