/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (LIGHT THEME)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Color Palette (Light Theme) */
  --bg-main: #ffffff;
  --bg-alt: #f9fafb;
  --bg-accent: #fef3e9; /* Light orange background */
  --border-color: #e5e7eb;
  
  /* Primary & Accents */
  --primary: #f38a36;         /* SEDA Orange */
  --primary-hover: #e07b2b;
  --primary-rgb: 243, 138, 54;
  --accent-gold: #ffb800;     /* Warning / Highlight Gold */
  --accent-red: #ef4444;      /* Price strikeout / Alert red */

  /* Text Colors */
  --text-main: #111827;       /* Dark slate / charcoal */
  --text-muted: #4b5563;     /* Gray */
  --text-dim: #9ca3af;       /* Light gray */
  
  /* Layout & Spacing */
  --container-max: 1140px;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 12px;
  --border-radius-md: 8px;
  --border-radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ==========================================================================
   LANGUAGE SWITCHER
   ========================================================================== */
.lang-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 1000;
}
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}
.lang-btn:hover {
  background-color: rgba(0,0,0,0.1);
  color: var(--text-main);
}
.lang-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 194, 123, 0.3);
}
@media (max-width: 576px) {
  .lang-switcher {
    top: 15px;
    right: 15px;
  }
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 48px auto;
}

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

/* Highlight tags */
.highlight-text {
  color: var(--primary);
}

.highlight-bg {
  background-color: var(--bg-accent);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: var(--border-radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: rgb(22, 60, 72);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(22, 60, 72, 0.3);
}

.btn-primary:hover {
  background-color: rgb(28, 76, 92);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 60, 72, 0.4);
}

.btn-pulse {
  animation: pulse-glow-light 2.5s infinite;
}

@keyframes pulse-glow-light {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 60, 72, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(22, 60, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 60, 72, 0);
  }
}

/* ==========================================================================
   HERO FORM (EMBEDDED)
   ========================================================================== */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-input {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.hero-input::placeholder {
  color: #9ca3af;
}

.hero-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

/* Ajustes para o intl-tel-input */
.iti {
  width: 100%;
}

.iti__flag-container {
  border-radius: 4px 0 0 4px;
}

.hero-submit-btn {
  width: 100%;
  height: 42px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 4px;
  border-radius: 4px;
}

/* ==========================================================================
   IMAGE / MOCKUP CSS PLACEHOLDERS
   ========================================================================== */
.placeholder-box {
  width: 100%;
  background-color: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.placeholder-box::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background-color: rgba(0, 194, 123, 0.08);
  border-radius: 50%;
  z-index: 1;
}

.placeholder-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  margin-top: 12px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.placeholder-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
  z-index: 2;
  max-width: 250px;
}

.placeholder-icon {
  font-size: 2.5rem;
  z-index: 2;
  color: var(--primary);
}

/* Specific placeholder types */
.placeholder-circle {
  border-radius: 50%;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.placeholder-desktop {
  min-height: 350px;
}

.placeholder-macbook {
  aspect-ratio: 16 / 10;
  max-width: 480px;
  margin: 0 auto;
}

.placeholder-phone {
  width: 260px;
  height: 520px;
  border-radius: 36px;
  border: 8px solid #374151;
  background-color: #1f2937;
  padding: 16px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-main);
  text-decoration: none;
}

.logo-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 194, 123, 0.05) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

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

.hero-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
  align-self: flex-start;
}

@media (max-width: 992px) {
  .hero-logo {
    align-self: center;
  }
}

.hero h1 {
  font-size: 2.85rem;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .hero-actions {
    align-items: center;
  }
}

.price-subtext {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-subtext strong {
  color: var(--text-main);
}

/* Overlapping Student Avatars */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 992px) {
  .hero-social-proof {
    justify-content: center;
  }
}

.avatar-stack {
  display: flex;
}

.avatar-stack-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #e5e7eb;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: bold;
  color: var(--text-muted);
}

.avatar-stack-item:first-child {
  margin-left: 0;
}

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

.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow-back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(0, 194, 123, 0.15) 0%, transparent 65%);
  z-index: -1;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stat-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.stat-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-details p {
  font-size: 0.85rem;
}

/* ==========================================================================
   AGITATION SECTION (YOU DON'T NEED...)
   ========================================================================== */
.agitation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .agitation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .agitation-image {
    order: 2;
  }
  .agitation-content {
    order: 1;
    text-align: center;
  }
}

.agitation-content h2 {
  text-align: left;
  font-size: 2.1rem;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .agitation-content h2 {
    text-align: center;
  }
}

.agitation-content p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* Phone notifications mock */
.phone-notifications {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

.notification-bubble {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: var(--border-radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  animation: notif-slide 4s infinite alternate;
}

@keyframes notif-slide {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.notification-icon {
  width: 32px;
  height: 32px;
  background-color: var(--bg-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 0.75rem;
}

.notification-info h4 {
  font-size: 0.8rem;
  font-weight: 700;
}

.notification-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHAT IS IT SECTION
   ========================================================================== */
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .whatis-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.whatis-content h2 {
  text-align: left;
}

@media (max-width: 992px) {
  .whatis-content h2 {
    text-align: center;
  }
}

/* ==========================================================================
   THE 4 PILLARS
   ========================================================================== */
.pillars-intro-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.pillar-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
  .pillar-row-reverse .pillar-image {
    order: 2;
  }
  .pillar-row-reverse .pillar-text {
    order: 1;
  }
}

.pillar-text h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.pillar-text h3 span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 4px;
}

.pillar-bullets {
  list-style: none;
  margin-top: 20px;
}

.pillar-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.pillar-bullets svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Bonus item badges list */
.badge-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

/* ==========================================================================
   AUDIENCE SECTION (FUNCIONA PRA MIM?)
   ========================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-smooth);
}

.audience-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background-color: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.audience-details h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.audience-details p {
  font-size: 0.85rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.testimonial-avatar-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.testimonial-avatar-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.testimonial-circle-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #e5e7eb;
  border: 2px dashed #9ca3af;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--text-muted);
}

.testimonial-avatar-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-avatar-card p {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.testimonials-footer {
  text-align: center;
  margin-top: 30px;
}

.hall-fama-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 20px 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

@media (max-width: 576px) {
  .hall-fama-box {
    flex-direction: column;
    text-align: center;
  }
}

.hall-fama-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.hall-fama-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.hall-fama-text p {
  font-size: 0.8rem;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid #d1d5db;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--border-radius-full);
}

.btn-outline:hover {
  background-color: var(--bg-alt);
}

/* ==========================================================================
   ANNUAL SUBSCRIPTION SECTION
   ========================================================================== */
.annual-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.annual-box h3 {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 16px;
}

.annual-box p {
  text-align: center;
  font-size: 0.95rem;
}

/* ==========================================================================
   PRICING SECTION (VALUE STACKING)
   ========================================================================== */
.pricing-stack {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-stack-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background-color: #ffffff;
}

.pricing-stack-header h3 {
  font-size: 1.4rem;
}

.pricing-stack-table {
  background-color: #ffffff;
  padding: 10px 30px;
}

.pricing-stack-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.pricing-stack-row:last-child {
  border-bottom: none;
}

.row-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.row-label svg {
  color: var(--primary);
}

.row-value {
  font-weight: 700;
  color: var(--accent-red);
  text-decoration: line-through;
}

.pricing-stack-total {
  display: flex;
  justify-content: space-between;
  padding: 24px 30px;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}

.total-value {
  color: var(--accent-red);
  text-decoration: line-through;
}

/* Side-by-side pricing offer */
.pricing-offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

@media (max-width: 768px) {
  .pricing-offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.offer-details {
  text-align: center;
  margin-bottom: 30px;
}

.offer-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.offer-installments {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.offer-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 8px 0;
}

.offer-cash {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.offer-card .btn {
  width: 100%;
  margin-bottom: 16px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.trust-badge-placeholder {
  width: 32px;
  height: 20px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 3px;
}

.offer-included-card {
  background-color: var(--bg-accent);
  border: 1px solid rgba(0, 194, 123, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 40px;
}

.included-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.included-list {
  list-style: none;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.included-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   BIO SECTION (INSTRUCTOR COLLAGE)
   ========================================================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bio-content h2 {
  text-align: left;
}

@media (max-width: 992px) {
  .bio-content h2 {
    text-align: center;
  }
}

.bio-bullets {
  list-style: none;
  margin-top: 24px;
}

.bio-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.bio-bullets svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Collage of image placeholders */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.collage-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.collage-item:nth-child(1) {
  grid-row: span 2;
}

/* ==========================================================================
   FAQ SECTION (ACCORDIONS)
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.faq-cta-container {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   PHONE VALIDATION WIDGET
   ========================================================================== */
.phone-validator-box {
  background-color: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.phone-validator-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.phone-validator-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.validator-form {
  display: flex;
  gap: 12px;
  max-width: 450px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .validator-form {
    flex-direction: column;
  }
}

.validator-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--border-radius-full);
  border: 1px solid #d1d5db;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.validator-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 194, 123, 0.1);
}

.validator-form .btn {
  padding: 14px 30px;
  font-size: 0.95rem;
}

/* ==========================================================================
   FLOATING ACTION BUTTON / FOOTER
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transform: translateY(150px);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366; /* WhatsApp Green */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--border-radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-size: 0.9rem;
}

.floating-btn:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
}

.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 50px 0;
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #1f2937;
}

.site-footer p {
  color: #9ca3af;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   SCROLL REVEAL STYLES
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
