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

:root {
  /* Dark purple base throughout, differentiated by subtle tonal shifts within the same brand family. */
  --bg-primary: #3d1178;
  --bg-secondary: #2d0c5c; /* deeper variant, alternating section */
  --bg-alt: #55229e; /* lighter/warmer variant, alternating section */
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.09);
  --border-color: rgba(255, 255, 255, 0.12);
  --border-color-hover: rgba(255, 255, 255, 0.3);

  --color-white: #ffffff;
  --color-gray-light: #fdfafc;
  --color-gray-mid: #cbd5e0;
  --color-gray-dark: #b8a9d6;
  --color-text-muted: #d6c6ee; /* light lavender body copy on the dark sections */

  --color-accent: #fce701; /* Yellow */
  --color-accent-rgb: 252, 231, 1;
  --color-accent-secondary: #f18301; /* Orange, gradient partner for buttons/dividers/icons */
  --color-purple: #5b1aa8; /* Main Brand purple, sampled from the PPK 2026 logo */
  --color-primary: #5b1aa8;
  --color-blush: #dbe0f6; /* light lavender text for the purple sections */
  --gradient-accent: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-secondary) 100%);
  --gradient-icon: linear-gradient(135deg, var(--color-accent-secondary) 0%, var(--color-purple) 100%);

  /* Deepest purple, reserved for the footer and the darkest accent bands */
  --bg-hero-dark: #150a2e;
  --bg-hero-glow: #8b2fe0;

  /* Per-pass tier colors, so each pricing card reads as its own product */
  --tier-gold-1: #f5c94d;
  --tier-gold-2: #e2a021;
  --tier-diamond-1: #4a1690;
  --tier-diamond-2: #2a0e5c; /* deep but unmistakably violet, not near-black */
  --tier-vip-1: #9c1c34; /* Red Carpet crimson, distinct from Diamond's purple */
  --tier-vip-2: #2b0810;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1); /* smooth "settle" curve used for reveals & hovers */
  
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* Reset & Base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white); /* Headings default to white on the dark sections */
}

p {
  color: var(--color-text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Background Glow Effects */
.glow-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.glow-1 {
  top: -10%;
  right: 5%;
  width: 40vw;
  height: 40vw;
  background: var(--color-accent);
}

.glow-2 {
  top: 25%;
  left: -10%;
  width: 35vw;
  height: 35vw;
  background: var(--color-accent-secondary);
  opacity: 0.1;
}

.glow-3 {
  bottom: 10%;
  right: -5%;
  width: 45vw;
  height: 45vw;
  background: var(--color-purple);
  opacity: 0.12;
}

/* Layout Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.section {
  padding: 6.5rem 0;
  position: relative;
  /* Every section carries a signature accent (overridden per #id below),
     used to tint its background and color its eyebrow tag, so each one
     reads as its own distinct chapter while scrolling instead of one long
     undifferentiated purple block. */
  --section-accent-solid: var(--color-accent);
  --section-tint: transparent;
}

/* Subtle tinted wash using each section's signature color, layered over its
   existing base background — distinct per section without turning into a
   flat, unrelated color block. */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, var(--section-tint) 0%, transparent 60%);
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* Signature color per section — a quick visual cue distinguishing each
   chapter (About, Speakers, Benefits, ...) at a glance. */
#speakers      { --section-accent-solid: #ff79c6; --section-tint: rgba(232, 67, 147, 0.16); }
#benefits      { --section-accent-solid: #00d1c1; --section-tint: rgba(0, 184, 148, 0.14); }
#more-benefits { --section-accent-solid: #ffb648; --section-tint: transparent; }

/* Client-supplied radial gradient, applied here too — same treatment as
   #testimonials, since this section approved well. */
#more-benefits {
  background: radial-gradient(circle at 50% 40%, #d0175a 0%, #710023 100%);
}

#more-benefits .section-tag {
  color: var(--color-accent);
}

#more-benefits .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* The checklist text's default muted lavender reads too faint against this
   section's maroon/magenta background — plain white is clearer. */
#more-benefits .more-benefits-list li {
  color: var(--color-white);
}

/* .more-benefits-icon's default gradient fades into purple, which blends
   into this section's new maroon/magenta background. Gold instead of
   purple keeps the badge clearly visible, with a dark glyph for contrast
   against the now-bright circle. */
#more-benefits .more-benefits-icon {
  background: var(--gradient-accent);
  color: #2d0c5c;
}

/* The "Reserve your seat..." banner's default purple-to-crimson gradient is
   close enough in hue to this section's new maroon/magenta background that
   it was merging into it. A deep indigo instead reads as a clearly separate
   pill again. */
#more-benefits .bonus-banner {
  background: linear-gradient(90deg, #2d0c5c 0%, #1a0a33 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
#about-ppk     { --section-accent-solid: #ffb8d9; --section-tint: transparent; }

/* Same client-supplied radial gradient tried on the About section too. */
#about-ppk {
  background: radial-gradient(circle at 50% 30%, #d0175a 0%, #710023 100%);
}

#about-ppk .about-tag {
  color: var(--color-accent);
}

/* Same faint-muted-lavender issue as More Event Benefits' checklist — plain
   white reads clearly against the maroon/magenta background. */
#about-ppk .philosophy-text {
  color: var(--color-white);
}

#whom          { --section-accent-solid: #64b5ff; --section-tint: rgba(9, 132, 227, 0.16); }
#pillars       { --section-accent-solid: #fdcb6e; --section-tint: rgba(232, 67, 147, 0.12); }
#agenda        { --section-accent-solid: #4fd8d0; --section-tint: rgba(0, 206, 201, 0.14); }
#venue         { --section-accent-solid: #9c88ff; --section-tint: rgba(108, 92, 231, 0.16); }
#faq           { --section-accent-solid: #ffb8d9; --section-tint: rgba(253, 121, 168, 0.12); }
#testimonials  { --section-accent-solid: #ff9ec4; --section-tint: transparent; }

/* Trying the client-supplied radial gradient (magenta-crimson center fading
   to dark maroon edges) as a full section background, on Testimonials only,
   as a demo — easy to revert by deleting this block if it doesn't land. */
#testimonials {
  background: radial-gradient(circle at 50% 40%, #d0175a 0%, #710023 100%);
}

#testimonials .section-tag {
  color: var(--color-accent); /* gold pops harder against maroon/pink than the section's usual pink */
}

#testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
/* #tickets keeps the default gold accent — it's the conversion section and
   shouldn't compete with a different hue */

.section-alt {
  background-color: var(--bg-secondary);
}

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

.section-dark {
  background-color: var(--bg-hero-dark);
  color: var(--color-white);
  position: relative;
}

/* Signature gold-to-orange divider stripe, framing every purple band */
.section-dark::before,
.section-dark::after,
.footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.section-dark::before,
.footer::before {
  top: 0;
}

.section-dark::after {
  bottom: 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-white);
}

.section-dark p,
.section-dark .section-subtitle {
  color: var(--color-blush);
}

/* Headings Component */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  color: var(--section-accent-solid, var(--color-accent));
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e91e8c 0%, var(--color-purple) 100%);
}

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

.section-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
  border: none;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Diagonal shine sweep on hover — a subtle premium light-catch, not a loop */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 48%, transparent 66%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-premium);
  pointer-events: none;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.12s;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #1a1200;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(241, 131, 1, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}


/* Scroll Progress Bar — thin gold indicator tracking read/scroll position */
.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 101; /* above the navbar so it always stays visible */
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  box-shadow: 0 0 8px rgba(252, 231, 1, 0.6);
  transition: width 0.1s linear;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(91, 26, 168, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(91, 26, 168, 0.97);
  box-shadow: 0 10px 30px rgba(21, 10, 46, 0.25);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-word-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(252, 231, 1, 0.35));
  transition: transform 0.4s var(--ease-premium), filter 0.4s var(--ease-premium);
}

.logo-container:hover .logo-word-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(252, 231, 1, 0.55));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.3s var(--ease-premium);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-premium);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hero Section */
/* Hero Section - 2-Column Split Layout */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(140, 51, 97, 0.45) 0%, rgba(21, 10, 46, 0.96) 75%);
  color: var(--color-white);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(21, 10, 46, 0.85) 0%, rgba(11, 5, 10, 0.94) 85%);
}

/* Cinematic entrance — hero content stages in on load, top to bottom */
@keyframes hero-reveal {
  from { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

html.js-anim .hero-edition-pill,
html.js-anim .hero-main-title,
html.js-anim .hero-tamil-banner,
html.js-anim .hero-tagline-text,
html.js-anim .hero-meta-grid,
html.js-anim .hero-cta-group,
html.js-anim .hero-col-right {
  opacity: 0;
  animation: hero-reveal 0.9s var(--ease-premium) forwards;
}

html.js-anim .hero-edition-pill  { animation-delay: 0.1s; }
html.js-anim .hero-main-title    { animation-delay: 0.22s; }
html.js-anim .hero-tamil-banner  { animation-delay: 0.34s; }
html.js-anim .hero-tagline-text  { animation-delay: 0.44s; }
html.js-anim .hero-meta-grid     { animation-delay: 0.54s; }
html.js-anim .hero-cta-group     { animation-delay: 0.64s; }
html.js-anim .hero-col-right     { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html.js-anim .hero-edition-pill,
  html.js-anim .hero-main-title,
  html.js-anim .hero-tamil-banner,
  html.js-anim .hero-tagline-text,
  html.js-anim .hero-meta-grid,
  html.js-anim .hero-cta-group,
  html.js-anim .hero-col-right {
    animation: none;
    opacity: 1;
  }
}

.hero-grid-split {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

/* Left Column: Left-Aligned Content */
.hero-col-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-edition-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  background: rgba(242, 169, 0, 0.12);
  border: 1px solid rgba(242, 169, 0, 0.4);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title-left {
  text-align: left;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #fff2a1 0%, #f2a900 60%, #d48800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-tamil-banner {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(140, 51, 97, 0.6) 0%, rgba(91, 26, 168, 0.6) 100%);
  border: 1px solid rgba(242, 169, 0, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-tamil-left {
  text-align: left;
}

.hero-tagline-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
}

.hero-text-left {
  text-align: left;
}

/* 2-Column Meta Grid */
.hero-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
  max-width: 540px;
  margin-bottom: 1.25rem;
}

.meta-item-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(21, 10, 46, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.75rem 1.15rem;
}

.meta-item-full {
  grid-column: span 2;
}

.meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.15);
  border: 1px solid rgba(242, 169, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.meta-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.meta-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
}

/* Action Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-cta-left {
  justify-content: flex-start;
}

.btn-hero-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
}

/* Right Column Showcase Card (Partner Logos Top Bar + PPK Stage Image) */
.hero-col-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right-showcase-card {
  width: 100%;
  max-width: 530px;
  background: linear-gradient(135deg, rgba(36, 14, 50, 0.88) 0%, rgba(21, 10, 46, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(242, 169, 0, 0.45);
  border-radius: 28px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(140, 51, 97, 0.45);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.hero-right-showcase-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

/* Top Partner Logos Strip above PPK Image */
.right-partners-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 5, 10, 0.75);
  border: 1px solid rgba(242, 169, 0, 0.3);
  border-radius: 18px;
  padding: 0.75rem 1.25rem;
}

.right-partner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
}

.right-partner-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.mmc-logo-bright {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(242, 169, 0, 0.5));
}

.blacksheep-logo-white {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.5));
}

.right-partner-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0.75rem;
}

/* PPK Stage Image below Partner Logos */
.right-stage-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.right-stage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* "2nd Edition" badge — sits below the stage image as its own block so it
   never covers the logo artwork */
.right-stage-edition-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: var(--gradient-accent);
  color: #1a1200;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Counter Section */
.stats-section {
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
}

.stat-number {
  font-size: 3.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffdf80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-blush);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* About Coach / Spotlight */
.coach-section {
  position: relative;
}

.coach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.coach-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.coach-content h3 span {
  color: var(--color-accent);
}

.coach-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-blush);
}

.coach-bio-text {
  margin-bottom: 2rem;
}

.coach-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.credential-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.credential-icon {
  width: 44px;
  height: 44px;
  background: rgba(91, 26, 168, 0.15);
  border: 1px solid rgba(91, 26, 168, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 1.15rem;
}

.credential-text h5 {
  font-size: 1rem;
}

.coach-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.coach-image-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(91, 26, 168, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

/* Custom Vector Illustration placeholder */
.coach-illustration {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 0.85;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, #2b0c1e 0%, #461431 100%);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.coach-illustration::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(252, 231, 1, 0.15) 0%, transparent 60%);
}

.illustration-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 0%, #d49300 100%);
  margin: 0 auto 2rem auto;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #000;
}

.illustration-name {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.illustration-tag {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* "For Whom?" Section */
.whom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.whom-grid .section-cta {
  grid-column: 1 / -1;
}

.whom-visual h3 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 800;
}

.whom-visual h3 span {
  color: var(--color-accent);
  display: block;
}

.whom-visual p {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.whom-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.whom-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
}

/* Each card gets its own vivid, distinct gradient so the three profiles read
   as separate at a glance instead of blending into one uniform list. */
.whom-item:nth-child(1) {
  background: linear-gradient(135deg, #eb3b5a 0%, #8854d0 100%);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(235, 59, 90, 0.25);
}

.whom-item:nth-child(2) {
  background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 100%);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(9, 132, 227, 0.25);
}

.whom-item:nth-child(3) {
  background: linear-gradient(135deg, #00b894 0%, #0984e3 100%);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 184, 148, 0.25);
}

.whom-item:hover {
  transform: translateX(8px) translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.whom-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.whom-item-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Core Pillars (Glassmorphic cloud) */
.pillars-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.pillar-tag {
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  cursor: default;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), border-color 0.35s var(--ease-premium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Each pillar gets its own vivid gradient so the eight focus areas read as
   distinct, colorful chips instead of one uniform translucent row. */
.pillar-tag:nth-child(8n+1) { background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 100%); box-shadow: 0 8px 24px rgba(252, 74, 26, 0.25); }
.pillar-tag:nth-child(8n+2) { background: linear-gradient(135deg, #6c5ce7 0%, #341f97 100%); box-shadow: 0 8px 24px rgba(108, 92, 231, 0.25); }
.pillar-tag:nth-child(8n+3) { background: linear-gradient(135deg, #00b894 0%, #00cec9 100%); box-shadow: 0 8px 24px rgba(0, 184, 148, 0.25); }
.pillar-tag:nth-child(8n+4) { background: linear-gradient(135deg, #0984e3 0%, #4834d4 100%); box-shadow: 0 8px 24px rgba(9, 132, 227, 0.25); }
.pillar-tag:nth-child(8n+5) { background: linear-gradient(135deg, #e17055 0%, #d63031 100%); box-shadow: 0 8px 24px rgba(214, 48, 49, 0.25); }
.pillar-tag:nth-child(8n+6) { background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%); box-shadow: 0 8px 24px rgba(225, 112, 85, 0.25); }
.pillar-tag:nth-child(8n+7) { background: linear-gradient(135deg, #e84393 0%, #6c5ce7 100%); box-shadow: 0 8px 24px rgba(232, 67, 147, 0.25); }
.pillar-tag:nth-child(8n+8) { background: linear-gradient(135deg, #00cec9 0%, #0984e3 100%); box-shadow: 0 8px 24px rgba(0, 206, 201, 0.25); }

.pillar-tag i {
  color: var(--color-white);
  font-size: 0.95rem;
}

.pillar-tag:hover {
  transform: scale(1.05) translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

/* What You'll Master (Agenda 1-10 Grid) */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.agenda-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.agenda-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: var(--color-accent);
  opacity: 0;
  transition: var(--transition-fast);
}

.agenda-item:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.agenda-item:hover::before {
  opacity: 1;
}

.agenda-number {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}

.agenda-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

/* Speakers Line-Up Grid */
.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.speaker-card {
  background: #451585; /* Brand purple, matching the PPK 2026 logo */
  border: 2px solid var(--color-accent); /* Gold border frames */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  flex: 0 1 calc((100% - 2 * 2rem) / 3);
}

.speaker-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-white);
  box-shadow: 0 15px 35px rgba(91, 26, 168, 0.35);
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 0.9;
  background: linear-gradient(135deg, #230a52 0%, #451585 100%);
  border-bottom: 2px solid var(--color-accent);
  position: relative;
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s var(--ease-premium);
}

.speaker-card:hover .speaker-photo img {
  transform: scale(1.08);
}

.speaker-details {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.speaker-name {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--color-white);
}

.speaker-title {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Packages / Tickets Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
  overflow: hidden;
}

.package-card.gold-tier {
  background: linear-gradient(160deg, var(--tier-gold-1) 0%, var(--tier-gold-2) 100%);
  border-color: transparent;
}

.package-card.popular {
  border-color: transparent;
  background: linear-gradient(160deg, var(--tier-diamond-1) 0%, var(--tier-diamond-2) 100%);
  transform: scale(1.03);
}

.package-card.vip-tier {
  background: linear-gradient(160deg, var(--tier-vip-1) 0%, var(--tier-vip-2) 100%);
  border-color: transparent;
}

.package-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--color-accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.package-badge.vip-badge {
  background: var(--color-white);
  color: var(--tier-vip-1);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 20px 40px rgba(252, 231, 1, 0.1);
}

.package-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 20px 40px rgba(252, 231, 1, 0.2);
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.package-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.package-price {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.package-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.package-original-price {
  font-size: 1.1rem;
  color: var(--color-gray-dark);
  text-decoration: line-through;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Summary line used when a tier's feature list is a superset of a cheaper
   one below it (e.g. Diamond = "Everything in Gold, plus:") instead of
   repeating every shared line item and eating up card space. */
.package-feature-highlight {
  font-style: italic;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--border-color);
}

.package-feature-highlight i {
  color: var(--color-accent) !important;
}

.package-feature-highlight strong {
  color: var(--color-accent);
  font-style: normal;
}

.package-features i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Each tier gets its own readable text treatment against its own card color */
.package-card.gold-tier .package-header,
.package-card.popular .package-header,
.package-card.vip-tier .package-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.package-card.gold-tier .package-header {
  border-bottom-color: rgba(91, 26, 168, 0.18);
}

.package-card.gold-tier .package-name,
.package-card.gold-tier .package-price {
  color: var(--color-purple);
}

.package-card.gold-tier .package-price span {
  color: rgba(91, 26, 168, 0.7);
}

.package-card.gold-tier .package-original-price {
  color: rgba(91, 26, 168, 0.55);
}

.package-card.gold-tier .package-features li {
  color: rgba(91, 26, 168, 0.85);
}

.package-card.gold-tier .package-features i {
  color: var(--color-purple);
}

/* Gold card's own background is already a gold/orange gradient, so the
   default gold btn-primary would blend straight into it. Swapping the CTA
   to a solid dark-purple fill here gives it the same pop-against-the-card
   contrast that Diamond's gold button gets from its dark purple card. */
.package-card.gold-tier .btn-primary {
  background: linear-gradient(90deg, var(--color-purple) 0%, #2d0c5c 100%);
  color: var(--color-white);
}

.package-card.gold-tier .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(45, 12, 92, 0.45);
}

/* Diamond CTA swapped to red — a color replacement only, same button shape/behavior */
.package-card.popular .btn-primary {
  background: linear-gradient(90deg, #ff4757 0%, #c0392b 100%);
  color: var(--color-white);
}

.package-card.popular .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(192, 57, 43, 0.45);
}

.package-card.popular .package-name,
.package-card.popular .package-price,
.package-card.vip-tier .package-name,
.package-card.vip-tier .package-price {
  color: var(--color-white);
}

.package-card.popular .package-price span,
.package-card.vip-tier .package-price span {
  color: rgba(255, 255, 255, 0.75);
}

.package-card.popular .package-original-price,
.package-card.vip-tier .package-original-price {
  color: rgba(255, 255, 255, 0.6);
}

.package-card.popular .package-features li,
.package-card.vip-tier .package-features li {
  color: rgba(255, 255, 255, 0.9);
}

.package-card.vip-tier .package-features i {
  color: #ffe08a;
}

.package-action {
  width: 100%;
}

/* Registration Form Section */
.register-wrapper {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.register-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(252, 231, 1, 0.3) 100%);
  border-radius: var(--border-radius-lg);
  z-index: -1;
  pointer-events: none;
}

/* Registration Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 4, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding: 7rem 1.5rem 3rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  animation: modal-pop 0.25s ease;
}

@keyframes modal-pop {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-purple);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 2;
  transition: var(--transition-fast);
}

.modal-close:hover {
  transform: scale(1.08);
  color: var(--color-accent-secondary);
}

.modal-header {
  margin-bottom: 2.5rem;
}

/* Event Highlights Video Modal */
.video-modal-card {
  max-width: 900px;
}

.video-modal-card .modal-close {
  top: -14px;
  right: 0;
}

.highlights-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-lg);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: block;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(26, 10, 51, 0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(26, 10, 51, 1);
  box-shadow: 0 0 15px rgba(252, 231, 1, 0.15);
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 0.3rem;
  accent-color: var(--color-accent);
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-checkbox-label a {
  color: var(--color-accent);
}

.form-submit-btn {
  width: 100%;
}

.form-message {
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  display: none;
}

.form-message.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  display: block;
}

/* Testimonials section (video) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.testimonial-video-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition-normal);
}

.testimonial-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(91, 26, 168, 0.3);
}

.testimonial-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(21, 10, 46, 0.1) 0%, rgba(21, 10, 46, 0.45) 100%);
}

.testimonial-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(255, 255, 255, 0.15);
  transition: var(--transition-normal);
}

.testimonial-play-icon i {
  margin-left: 3px;
}

.testimonial-video-card:hover .testimonial-play-icon {
  transform: scale(1.08);
}

.youtube-embed-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-lg);
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.youtube-embed-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--border-color-hover);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--color-accent);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  /* max-height is set inline by JS to the answer's real scrollHeight,
     so the transition always animates across the actual content height
     instead of a guessed constant — otherwise short answers "finish"
     almost instantly while the declared duration keeps running, which
     reads as a stutter regardless of easing. */
  padding: 0 2rem 1.5rem 2rem;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Final CTA Strip — a bold band between FAQ and the footer, the last push
   before visitors leave the page */
.cta-strip {
  background: var(--gradient-accent);
  padding: 3.5rem 0;
}

.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  text-align: center;
}

.cta-strip-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #1a1200;
}

/* Gold-on-gold would vanish here, so the CTA gets the same dark-purple
   treatment used for the Gold pricing card's button */
.cta-strip .btn-primary {
  background: linear-gradient(90deg, var(--color-purple) 0%, #2d0c5c 100%);
  color: var(--color-white);
}

.cta-strip .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(45, 12, 92, 0.45);
}

@media (max-width: 600px) {
  .cta-strip-heading {
    font-size: 1.4rem;
  }
}

/* Footer Section */
.footer {
  background: var(--bg-hero-dark);
  padding: 5rem 0 2.5rem 0;
  border-top: none;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 96px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 10px rgba(252, 231, 1, 0.3));
}

/* The footer brand column is left-aligned, unlike the centered hero/about
   placements .right-stage-edition-tag was built for */
.footer-edition-tag {
  margin-left: 0;
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--color-blush);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  transform: translateY(-3px);
}

/* Each icon in its real brand color, per the client's request, rather than
   one muted neutral tone for all of them. */
.footer-social-btn .fa-facebook-f { color: #1877f2; }
.footer-social-btn .fa-linkedin-in { color: #0a66c2; }
.footer-social-btn .fa-youtube { color: #ff0000; }
.footer-social-btn .fa-instagram {
  /* Instagram's mark is a gradient, not a flat color, in its own brand guide */
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* On hover, fill the circle with that same brand color for a clear, tactile response */
.footer-social-btn:has(.fa-facebook-f):hover { background: #1877f2; border-color: #1877f2; }
.footer-social-btn:has(.fa-linkedin-in):hover { background: #0a66c2; border-color: #0a66c2; }
.footer-social-btn:has(.fa-youtube):hover { background: #ff0000; border-color: #ff0000; }
.footer-social-btn:has(.fa-instagram):hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }

.footer-social-btn:hover .fa-facebook-f,
.footer-social-btn:hover .fa-linkedin-in,
.footer-social-btn:hover .fa-youtube {
  color: var(--color-white);
}

.footer-social-btn:hover .fa-instagram {
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
}

.footer-links h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: var(--color-blush);
}

.footer-links-list a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-blush);
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 0.25rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--color-gray-dark);
}

.footer-copyright span {
  color: var(--color-accent);
}

/* Hero Presenters & Centered Logo Layout */
.hero-presenters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.presenter-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.presenter-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.presenter-logo,
.presenter-logo-blacksheep {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.presenter-divider {
  width: 1px;
  height: 48px;
  background: var(--border-color);
}

/* Event Benefits Grid styling */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(91, 26, 168, 0.15);
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--gradient-icon);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-family: var(--font-heading);
}

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

/* More Event Benefits styling */
.more-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.more-benefits-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  height: 100%;
  transition: var(--transition-normal);
}

.more-benefits-card:hover {
  border-color: var(--border-color-hover);
  box-shadow: 0 15px 30px rgba(91, 26, 168, 0.1);
}

.more-benefits-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.more-benefits-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gradient-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.more-benefits-header h4 {
  font-size: 1.35rem;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.more-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.more-benefits-list li {
  display: flex;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.more-benefits-list li i {
  color: var(--color-accent);
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

.bonus-banner-wrapper {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* Reusable end-of-section call to action */
.section-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.section-cta p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.bonus-banner {
  display: inline-block;
  padding: 1.75rem 4rem;
  background: linear-gradient(90deg, var(--color-purple) 0%, var(--tier-vip-1) 100%);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(91, 26, 168, 0.35);
}

@media (max-width: 600px) {
  .bonus-banner {
    padding: 1.25rem 1.75rem;
    font-size: 1.05rem;
  }
}

.bonus-banner span {
  color: var(--color-accent);
}

/* About PPK Section styling (Philosophy & Highlights combined) */
.about-ppk-header {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.about-ppk-title-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-tag {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.about-word-logo {
  max-width: 100%;
  width: 250px;
  height: auto;
  object-fit: contain;
  margin-top: 0.5rem;
}

.about-ppk-desc-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.philosophy-lead {
  font-size: 1.15rem;
  color: var(--color-white);
  line-height: 1.6;
}

.philosophy-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Recap Gallery Section styling */
.recap-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

/* Event highlights video thumbnail, its own dedicated card */
.about-video-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 3.5rem auto 0;
  padding: 0;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 45px rgba(91, 26, 168, 0.25);
  transition: var(--transition-normal);
}

.about-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 55px rgba(91, 26, 168, 0.35);
}

.about-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(180deg, rgba(21, 10, 46, 0.15) 0%, rgba(21, 10, 46, 0.55) 100%);
}

.recap-play-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a1200;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.15);
  transition: var(--transition-normal);
}

.recap-play-icon i {
  margin-left: 4px;
}

.about-video-card:hover .recap-play-icon {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 0 12px rgba(255, 255, 255, 0.22);
}

.recap-play-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

.recap-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  aspect-ratio: 0.75;
  transition: var(--transition-normal);
}

.recap-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.recap-image-wrapper:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 30px rgba(91, 26, 168, 0.25);
}

.recap-image-wrapper:hover img {
  transform: scale(1.08);
}

/* Coach Live Photo Styles */
.coach-live-photo {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 0.85;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: var(--transition-normal);
}

.coach-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.coach-live-photo:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-5px);
}

/* Venue Section Styling */
.venue-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  /* Client-supplied radial gradient (magenta-crimson center to dark maroon
     edges) — same one used on Testimonials, applied here since "Why in
     Coimbatore?" lives inside this card rather than the bare section. */
  background: radial-gradient(circle at 30% 40%, #d0175a 0%, #710023 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  margin-top: 3.5rem;
  align-items: stretch;
}

.venue-image-block {
  padding: 3rem 2.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.venue-location-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.venue-location-info i {
  color: var(--color-accent);
  font-size: 1.1rem;
}

.venue-hotel-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: auto;
  display: block;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transform-origin: bottom center;
  transition: var(--transition-normal);
}

.venue-card:hover .venue-hotel-img {
  transform: scale(1.03);
}

.venue-content-block {
  padding: 4.5rem 4rem 4.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.venue-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.75rem;
  position: relative;
  width: fit-content;
}

.venue-heading span {
  font-weight: 800;
  color: var(--color-accent);
}

.heading-accent {
  position: absolute;
  top: 1.25rem;
  right: -2.5rem;
}

.venue-banner-subheading {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(91, 26, 168, 0.2);
}

.venue-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.venue-text-content p {
  font-size: 0.95rem;
  color: var(--color-blush);
  line-height: 1.7;
  margin: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.55);
  z-index: 999;
  transition: var(--transition-normal);
  animation: whatsapp-pulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  animation-play-state: paused;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Scroll Reveal Animations ===== */
/* Hidden-before-reveal state only applies once JS has confirmed it's running
   (html.js-anim is set by an inline script at the top of <body>), so content
   never gets stuck invisible if JavaScript fails to load.
   Everything is wrapped in :where() to zero out specificity, so this system
   never fights an element's own :hover lift/scale or permanent transform
   (e.g. the "popular" pricing card's resting scale) — real page styles
   always win a conflict, our rules only apply when nothing else claims the property. */
:where(html.js-anim [data-animate]) {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
  filter: blur(6px); /* soft depth-of-field on entry, a common "premium" reveal cue */
}

:where(html.js-anim [data-animate="fade-up"]) { transform: translateY(48px) scale(0.97); }
:where(html.js-anim [data-animate="fade-left"]) { transform: translateX(-56px); }
:where(html.js-anim [data-animate="fade-right"]) { transform: translateX(56px); }
:where(html.js-anim [data-animate="zoom-in"]) { transform: scale(0.9); }

:where(html.js-anim [data-animate="pop"]) {
  transform: scale(0.55);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

:where(html.js-anim [data-animate].in-view) {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Staggered entrance for grid/list groups: direct children reveal in sequence */
[data-animate-group] > *:nth-child(6n+1) { transition-delay: 0s; }
[data-animate-group] > *:nth-child(6n+2) { transition-delay: 0.08s; }
[data-animate-group] > *:nth-child(6n+3) { transition-delay: 0.16s; }
[data-animate-group] > *:nth-child(6n+4) { transition-delay: 0.24s; }
[data-animate-group] > *:nth-child(6n+5) { transition-delay: 0.32s; }
[data-animate-group] > *:nth-child(6n+6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html.js-anim [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .venue-card {
    grid-template-columns: 1fr;
  }
  .venue-image-block {
    min-height: 340px;
  }
  .venue-content-block {
    padding: 3rem 2rem;
  }

  .recap-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .about-ppk-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .about-ppk-desc-block {
    text-align: left;
  }

  .hero-grid-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-col-left {
    align-items: center;
  }

  .hero-title-left,
  .hero-tamil-left,
  .hero-text-left {
    text-align: center;
  }

  .hero-tagline-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-left {
    justify-content: center;
  }

  .hero-col-right {
    max-width: 480px;
    margin: 0 auto;
  }

  .more-benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
  
  .coach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .coach-image-wrapper {
    order: -1;
  }
  
  .whom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .speakers-grid .speaker-card {
    flex-basis: calc((100% - 2rem) / 2);
  }

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

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .package-card.popular {
    transform: scale(1);
  }
  
  .package-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .recap-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .more-benefits-card {
    padding: 2.5rem 1.5rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero-main-title {
    font-size: 2.25rem;
  }

  .hero-tamil-banner {
    font-size: 0.95rem;
    white-space: normal;
  }

  .hero-meta-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .meta-item-full {
    grid-column: span 1;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 300px;
  }

  .right-partners-topbar {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .right-partner-divider {
    display: none;
  }
  
  .agenda-grid {
    grid-template-columns: 1fr;
  }
  
  .speakers-grid {
    max-width: 400px;
    margin: 0 auto;
  }

  .speakers-grid .speaker-card {
    flex-basis: 100%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .register-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .nav-links {
    display: none;
  }
}

