/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
@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 {
  /* Default Colors - will be overridden dynamically by app.js from config.json */
  --color-primary: #6366f1;
  --color-secondary: #a855f7;
  --color-accent: #10b981;
  --color-bg-dark: #0b0f19;
  --color-bg-card: #161b26;
  --color-text-light: #f3f4f6;
  --color-text-muted: #9ca3af;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-glass: 1px solid color-mix(in srgb, var(--color-text-light) 10%, transparent);
  --shadow-glow: 0 0 25px color-mix(in srgb, var(--color-primary) 15%, transparent);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-sans);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Background Gradients */
.bg-gradients {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

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

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

.blob-2 {
  top: 30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
}

.blob-3 {
  bottom: 10%;
  left: 10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
}

/* Typography & Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
  background-color: color-mix(in srgb, var(--color-text-light) 5%, transparent);
  border: var(--border-glass);
  color: var(--color-text-light);
}

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

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: color-mix(in srgb, var(--color-bg-dark) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border-glass);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background-color: color-mix(in srgb, var(--color-bg-dark) 85%, transparent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-text-light);
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: 180px 0 100px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.5rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 99px;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Video Player Container */
.hero-video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--color-bg-card);
  border: var(--border-glass);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 16 / 9; /* Horizontal format */
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

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

/* Custom sound toggle overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11,15,25,0.4) 0%, transparent 30%, rgba(11,15,25,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  pointer-events: none;
}

.sound-toggle-btn {
  align-self: flex-end;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(11, 15, 25, 0.6);
  border: var(--border-glass);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sound-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--color-primary);
}

.video-play-hint {
  pointer-events: auto;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.play-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
  transition: var(--transition-smooth);
}

.video-play-hint:hover .play-icon-container {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.8);
}

.video-play-hint span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* ==========================================================================
   TIMELINE SECTION (4-WEEK CURRICULUM)
   ========================================================================== */
.curriculum {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
}

/* Timeline Layout */
.timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* The vertical line */
.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  width: 100%;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-card {
  width: 45%;
  background-color: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
  position: relative;
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

/* Left & Right positioning for cards */
.timeline-item:nth-child(even) .timeline-card {
  margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-right: auto;
}

/* Timeline marker node */
.timeline-node {
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: var(--color-bg-dark);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  z-index: 5;
  transition: var(--transition-smooth);
}

.timeline-item:nth-child(even) .timeline-node {
  border-color: var(--color-secondary);
}

.timeline-item:hover .timeline-node {
  background-color: var(--color-primary);
  box-shadow: 0 0 15px var(--color-primary);
  transform: translate(-50%, -50%) scale(1.2);
}

/* Timeline details inside card */
.timeline-week-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--color-text-light) 5%, transparent);
  border: var(--border-glass);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.timeline-item:nth-child(odd) .timeline-week-badge {
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--color-primary);
}

.timeline-item:nth-child(even) .timeline-week-badge {
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--color-secondary);
}

.timeline-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-card .subtitle-duration {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.timeline-bullets {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.timeline-bullets li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.timeline-bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.timeline-item:nth-child(even) .timeline-bullets li::before {
  color: var(--color-secondary);
}

/* ==========================================================================
   FEATURES GRID SECTION
   ========================================================================== */
.features {
  padding: 100px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background: linear-gradient(135deg, color-mix(in srgb, var(--color-bg-card) 60%, transparent) 0%, var(--color-bg-card) 100%);
  border: var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.1);
}

/* Icon / Circle decorator */
.feature-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.feature-card:nth-child(even) .feature-icon-wrapper {
  color: var(--color-secondary);
  border-color: rgba(168, 85, 247, 0.2);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

/* Special gift glow styles */
.feature-card.highlight {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, var(--color-bg-card) 0%, color-mix(in srgb, var(--color-accent) 5%, transparent) 100%);
}

.feature-card.highlight:hover {
  border-color: var(--color-accent);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

.feature-card.highlight .feature-icon-wrapper {
  color: var(--color-accent);
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.gift-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta {
  padding: 100px 0;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-bg-card) 0%, color-mix(in srgb, var(--color-primary) 7%, transparent) 100%);
  border: var(--border-glass);
  border-radius: 30px;
  padding: 5rem 3rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-box h2 {
  font-size: 3rem;
  max-width: 800px;
}

.cta-box p {
  font-size: 1.15rem;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  padding: 60px 0 120px 0;
  background-color: color-mix(in srgb, var(--color-bg-dark) 95%, black);
  border-top: var(--border-glass);
}

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

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

.footer-info p {
  font-size: 0.95rem;
}

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

.footer-contact h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-item a:hover {
  color: var(--color-text-light);
}

.contact-icon {
  color: var(--color-primary);
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--color-text-light) 6%, transparent);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   NEW ELEMENTS: UGC, SLIDER, CUSTOM GRID & INSTAGRAM BAR
   ========================================================================== */

/* UGC Videos Section */
.ugc-section {
  padding: 100px 0;
  position: relative;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ugc-card {
  position: relative;
  background-color: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  aspect-ratio: 9 / 16;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.ugc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.15);
}

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

.ugc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.ugc-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.ugc-play-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
  transition: var(--transition-smooth);
}

.ugc-card:hover .ugc-play-btn {
  background: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.8);
}

/* Slider Section */
.slider-section {
  padding: 80px 0;
  position: relative;
  background-color: color-mix(in srgb, var(--color-bg-card) 30%, transparent);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
  cursor: grab;
  user-select: none;
  padding: 1rem 0;
}

.slider-track:active {
  cursor: grabbing;
}

.slider-item {
  flex: 0 0 300px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: var(--transition-smooth);
}

.slider-item:hover {
  transform: scale(1.03);
  border-color: rgba(168, 85, 247, 0.3);
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom dynamic grid section */
.custom-grid-section {
  padding: 100px 0;
  position: relative;
}

.custom-grid-container {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 3), 1fr);
  gap: 2rem;
}

.custom-grid-card {
  background: var(--color-bg-card);
  border: var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
}

.custom-grid-card:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
}

.custom-grid-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: var(--border-glass);
}

.custom-grid-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.custom-grid-card:hover .custom-grid-img-wrapper img {
  transform: scale(1.05);
}

.custom-grid-card-content {
  padding: 1.5rem;
}

.custom-grid-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.custom-grid-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Instagram WhatsApp Sticky Bottom Bar */
.ig-whatsapp-bar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(0) scale(1);
  z-index: 1000;
  background: color-mix(in srgb, var(--color-bg-card) 85%, transparent);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: var(--border-glass);
  border-radius: 99px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  width: auto;
  max-width: 600px;
  min-width: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background-color 0.5s ease,
              bottom 0.5s ease,
              box-shadow 0.5s ease,
              opacity 0.3s ease-out;
}

.ig-whatsapp-bar.hidden {
  transform: translateX(-50%) translateY(120px) scale(0.8);
  opacity: 0;
}

.ig-whatsapp-bar.docked {
  bottom: 0.75rem;
  transform: translateX(-50%) scale(0.96) scaleY(0.93);
  border-radius: 20px;
  background-color: var(--color-bg-card);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.ig-profile-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ig-avatar-container {
  position: relative;
  width: 44px;
  height: 44px;
}

.ig-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.ig-info {
  display: flex;
  flex-direction: column;
}

.ig-username {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: -0.01em;
}

.ig-verified-badge {
  width: 14px;
  height: 14px;
  display: inline-block;
  fill: #0095f6;
  flex-shrink: 0;
}

.ig-sub {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.ig-btn {
  background-color: #25d366;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
}

.ig-whatsapp-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .badge {
    align-self: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-node {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-card {
    width: calc(100% - 50px);
    margin-left: 50px !important;
    margin-right: 0 !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .custom-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero {
    padding: 130px 0 60px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .cta-box {
    padding: 3rem 1.5rem;
  }
  
  .cta-box h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .ugc-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .custom-grid-container {
    grid-template-columns: 1fr !important;
  }

  .ig-whatsapp-bar {
    width: calc(100% - 2rem);
    bottom: 1rem;
    left: 1rem;
    transform: none;
    gap: 0.75rem;
    min-width: 0;
  }

  .ig-whatsapp-bar.hidden {
    transform: translateY(120px) !important;
  }

  .ig-whatsapp-bar.docked {
    bottom: 0.5rem;
    transform: scale(0.96) scaleY(0.93);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}

/* Hero video positioning configurations */
@media (min-width: 993px) {
  .hero-grid.desktop-video-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-grid.desktop-video-top .hero-video-container {
    order: -1;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-grid.desktop-video-top .hero-video-wrapper {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .hero-grid.desktop-video-top .hero-buttons {
    justify-content: center;
  }

  .hero-grid.desktop-video-top .badge {
    align-self: center;
  }
}

@media (max-width: 992px) {
  .hero-grid.mobile-video-top {
    display: flex;
    flex-direction: column;
  }

  .hero-grid.mobile-video-top .hero-video-container {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

/* Custom user sections styling */
.custom-user-section {
  padding: 100px 0;
  position: relative;
}

.custom-sec-content.has-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .custom-sec-content.has-media {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

.custom-sec-media {
  border-radius: 20px;
  overflow: hidden;
  border: var(--border-glass);
  box-shadow: var(--shadow-glow);
}

.custom-sec-media img,
.custom-sec-media iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Custom Subpage Text Layouts */
.page-body-text {
  text-align: justify;
}

.page-body-text h1,
.page-body-text h2,
.page-body-text h3,
.page-body-text h4,
.page-body-text h5,
.page-body-text h6 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.page-body-text p {
  margin-bottom: 1.5rem;
}
