/* index.css - ColeÃ§Ã£o BÃ­blica Infantil */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* HSL Colors extracted from original site */
  --background: 30 50% 97%; /* #FAF6F0 */
  --foreground: 20 20% 15%; /* #2D2520 */
  --card: 0 0% 100%;        /* #FFFFFF */
  --card-foreground: 20 20% 15%;
  --primary: 205 80% 50%;    /* #F96C15 (Orange) */
  --primary-foreground: 0 0% 100%;
  --secondary: 30 40% 94%;
  --secondary-foreground: 20 20% 15%;
  --muted: 30 20% 93%;
  --muted-foreground: 20 10% 45%;
  --accent: 142 40% 90%;
  --accent-foreground: 142 40% 25%;
  --border: 30 20% 88%;
  --input: 30 20% 88%;
  --ring: 205 80% 50%;
  --radius: 0.75rem;
  
  --baby-blue: 200 80% 92%;
  --baby-blue-foreground: 200 60% 30%;
  --soft-green: 142 40% 50%; /* #4EAF66 (Green) */
  --soft-green-foreground: 0 0% 100%;
  --warm-beige: 30 50% 95%; /* #F6ECE1 */
  --blue-glow: 205 80% 65%;
  
  /* HSL Helpers */
  --color-bg: hsl(var(--background));
  --color-text: hsl(var(--foreground));
  --color-card: hsl(var(--card));
  --color-primary: hsl(var(--primary));
  --color-soft-green: hsl(var(--soft-green));
  --color-border: hsl(var(--border));
  --color-warm-beige: hsl(var(--warm-beige));
  --color-muted: hsl(var(--muted-foreground));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.2;
}

.text-primary {
  color: var(--color-primary);
}

.text-soft-green {
  color: var(--color-soft-green);
}

.text-muted-foreground {
  color: var(--color-muted);
}

/* Banner Fixo Superior */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-primary);
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-banner p {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .top-banner p {
    font-size: 15px;
  }
}

/* Layout Core */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 64px 16px;
}

.bg-warm-beige {
  background-color: var(--color-warm-beige);
}

.bg-background {
  background-color: var(--color-bg);
}

/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 64px;
  text-align: center;
}

.hero h1 {
  font-size: 28px;
  max-width: 800px;
  margin: 0 auto 16px auto;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
}

.hero-subtitle {
  font-size: 14px;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
  }
}

.video-container {
  margin: 0 auto 32px auto;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 4px solid var(--color-card);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 10px 20px hsla(var(--primary) / 0.25);
}

@keyframes pulse-primary {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px hsla(var(--primary) / 0.25);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 12px 30px hsla(var(--primary) / 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px hsla(var(--primary) / 0.25);
  }
}

@keyframes pulse-green {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(78, 175, 102, 0.25);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(78, 175, 102, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(78, 175, 102, 0.25);
  }
}

@keyframes pulse-outline {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0px hsla(var(--primary) / 0.3);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 8px hsla(var(--primary) / 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0px hsla(var(--primary) / 0);
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  animation: pulse-primary 2s infinite ease-in-out;
}

.btn-primary:hover {
  transform: scale(1.05);
  background-color: hsl(205 80% 45%);
  animation: none;
}

.btn-green {
  background-color: var(--color-soft-green);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(78, 175, 102, 0.25);
  animation: pulse-green 2s infinite ease-in-out;
}

.btn-green:hover {
  transform: scale(1.05);
  background-color: hsl(142 40% 45%);
  animation: none;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
  animation: pulse-outline 2s infinite ease-in-out;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  animation: none;
}

.btn-large {
  font-size: 18px;
  padding: 20px 40px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 11px;
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .trust-badges {
    font-size: 13px;
    gap: 24px;
  }
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Grids & Cards */
.section-title {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  background-color: var(--color-card);
  border-radius: 16px;
  padding: 24px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  background-color: var(--color-bg);
}

.card-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--color-text);
  font-weight: 700;
}

.card p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* "A SoluÃ§Ã£o Perfeita" cards style override */
.solution-grid .card-icon-wrapper {
  background-color: var(--color-primary);
  border: none;
  box-shadow: 0 4px 10px hsla(var(--primary) / 0.3);
}

.solution-grid .card-icon-wrapper svg {
  color: #ffffff;
}

/* Bonus Section (Orange Bg) */
.bonus-section {
  background-color: hsla(var(--primary) / 0.85);
  color: #ffffff;
  text-align: center;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

.bonus-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.bonus-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

.bonus-card p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  flex-grow: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.bonus-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.bonus-value span {
  text-decoration: line-through;
}

.bonus-total-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.bonus-total-val {
  font-size: 24px;
  font-weight: 800;
  text-decoration: line-through;
  margin-bottom: 24px;
}

/* Testimonials */
.testimonials {
  background-color: var(--color-bg);
}

.testimonials-subtitle {
  text-align: center;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 48px auto;
  font-size: 15px;
}

/* Testimonials Infinite Marquee Carousel */
.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 25px 0;
  display: flex;
}



.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-group {
  display: flex;
  gap: 60px; /* More spaced out */
  padding-right: 60px; /* More spaced out */
  flex-shrink: 0;
  align-items: center; /* Centered vertically */
  animation: marquee-scroll 45s linear infinite; /* Smooth transition, adjusted speed for spacing */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Pause scroll animation on hover so the user can easily read the testimonial details */
.marquee-track:hover .marquee-group {
  animation-play-state: paused;
}

.testimonial-slide {
  flex: 0 0 auto;
  border-radius: 24px; /* Rounded corners for modern aesthetics */
  overflow: hidden;
  padding: 16px; /* Spaced out border so image is not cut */
  background-color: #ffffff; /* White background to frame the screenshots */
  border: 3px solid var(--color-primary); /* Modern blue border */
  box-shadow: 0 10px 30px hsla(var(--primary) / 0.12); /* Soft premium blue glow */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Add a slight pop effect when hovered */
.testimonial-slide:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px hsla(var(--primary) / 0.25);
}

.testimonial-slide img {
  height: 460px; /* Explicit size on image to prevent circular width bugs */
  width: auto;
  max-width: none;
  border-radius: 12px; /* Smooth rounded corners on the image itself, matching reference */
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .testimonial-slide {
    padding: 10px;
    border-radius: 16px;
    border-width: 2px;
  }
  .testimonial-slide img {
    height: 340px; /* Scale down height slightly on mobile to fit the screen better */
    border-radius: 8px;
  }

  .marquee-group {
    gap: 60px;
    padding-right: 60px;
  }
}

/* Countdown Timer */
.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.timer-badge {
  background-color: hsla(var(--primary) / 0.15);
  border: 1px solid hsla(var(--primary) / 0.3);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .timer-badge {
    font-size: 13px;
  }
}

.timer-boxes {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .timer-boxes {
    gap: 12px;
  }
}

.timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-box-num {
  background-color: var(--color-text);
  color: var(--color-bg);
  border-radius: 12px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .timer-box-num {
    width: 96px;
    height: 96px;
    font-size: 36px;
  }
}

.timer-box-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  margin-top: 8px;
}

.timer-colon {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text);
  margin-top: -24px;
}

@media (min-width: 768px) {
  .timer-colon {
    font-size: 36px;
  }
}

/* Pricing Grid */
.pricing-section {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background-color: var(--color-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  text-align: center;
}

.pricing-card-premium {
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px hsla(var(--primary) / 0.1);
}

.popular-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background-color: var(--color-soft-green);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pricing-card-premium h3 {
  font-size: 24px;
  color: #ffffff;
}

.pricing-card-premium .pricing-header {
  background-color: var(--color-primary);
  margin: -32px -32px 24px -32px;
  padding: 32px;
  color: #ffffff;
}

.pricing-card p.desc {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-list li {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.price-strike {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--color-muted);
}

.price-strike-white {
  font-size: 13px;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
}

.price-main {
  font-size: 32px;
  font-weight: 900;
  margin: 4px 0 24px 0;
}

.price-main-white {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
}

.price-sub-white {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -12px;
  margin-bottom: 0;
}

.pricing-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--color-muted);
}

.pricing-count svg {
  width: 14px;
  height: 14px;
}

/* About Author */
.author-section {
  background-color: var(--color-card);
}

.author-container {
  max-w-4xl mx-auto;
}

.author-header-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.author-box {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 24px;
}

@media (min-width: 768px) {
  .author-box {
    padding: 40px;
  }
}

.author-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .author-flex {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

.author-img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.author-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--color-primary);
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.author-tag {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.author-text-content {
  text-align: center;
}

@media (min-width: 768px) {
  .author-text-content {
    text-align: left;
  }
}

.author-text-content h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.author-bio {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .author-bio {
    font-size: 14px;
  }
}

.author-bio p {
  margin-bottom: 12px;
}

.author-bio strong {
  color: var(--color-text);
}

.author-stats {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .author-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: hsla(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.stat-val {
  font-size: 20px;
  font-weight: 900;
}

.stat-label {
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 500;
}

/* Security/Guarantee Section */
.guarantee-section {
  background-color: rgba(30, 20, 15, 0.02);
  text-align: center;
}

.guarantee-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 10px 20px hsla(var(--primary) / 0.3);
}

.guarantee-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.guarantee-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .guarantee-section h2 {
    font-size: 32px;
  }
}

.guarantee-text {
  font-size: 14px;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.guarantee-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  font-size: 13px;
  color: var(--color-muted);
}

.guarantee-badges .badge-item svg {
  color: var(--color-primary);
}

/* Footer */
footer {
  background-color: #2b1f17;
  padding: 40px 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

/* Modal Dialog Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background-color: var(--color-card);
  border-radius: 20px;
  border: 2px solid var(--color-primary);
  width: 100%;
  max-width: 320px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: modalScaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-header {
  background-color: var(--color-primary);
  padding: 16px;
  text-align: center;
  color: #ffffff;
}

.modal-header svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-header h3 {
  font-size: 16px;
  font-weight: 900;
}

.modal-body {
  padding: 20px 16px;
  text-align: center;
}

.modal-body p {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.modal-body p strong {
  color: var(--color-text);
}

.modal-pricing-box {
  margin-bottom: 12px;
}

.modal-price-strike {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--color-muted);
}

.modal-price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 4px 0;
}

.modal-price-label {
  font-size: 12px;
  color: var(--color-muted);
}

.modal-price-main {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary);
}

.modal-price-badge {
  background-color: var(--color-soft-green);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 4px;
}

.modal-list {
  list-style: none;
  text-align: left;
  margin-bottom: 16px;
  font-size: 11px;
}

.modal-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--color-text);
}

.modal-list li svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-list li.more {
  color: var(--color-muted);
  margin-left: 20px;
}

.modal-cta {
  width: 100%;
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: #ffffff;
  background-color: var(--color-primary);
  animation: pulse-primary 2s infinite ease-in-out;
}

.modal-cta:hover {
  transform: scale(1.03);
}

.modal-cta svg {
  width: 16px;
  height: 16px;
}

.modal-decline {
  font-size: 10px;
  color: var(--color-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

.modal-decline:hover {
  color: var(--color-text);
}

/* FAQ Section */
.faq {
  padding: 80px 16px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-card);
  border-radius: 16px;
  border: 2px solid var(--color-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 20px hsla(var(--primary) / 0.05);
}

.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px hsla(var(--primary) / 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--color-primary);
}

.faq-item.open .faq-trigger {
  color: var(--color-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-muted);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
}

.faq-trigger:hover .faq-icon {
  color: var(--color-primary);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-content-inner {
  min-height: 0;
}

.faq-content p {
  padding: 0 24px 0 24px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.25s ease, padding 0.3s ease;
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-content p {
  padding: 4px 24px 20px 24px;
  opacity: 1;
}

@media (max-width: 640px) {
  .faq-trigger {
    padding: 16px 20px;
    font-size: 15px;
  }
  .faq-content p {
    padding: 0 20px 0 20px;
    font-size: 13px;
  }
  .faq-item.open .faq-content p {
    padding: 2px 20px 16px 20px;
  }
}

/* Social Proof Toast styling */
.social-proof-toast {
  position: fixed;
  top: 70px;
  bottom: auto;
  left: 20px;
  background-color: #ffffff;
  color: #2d2520;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  max-width: 360px;
  width: calc(100% - 40px);
  opacity: 0;
  transform: translateY(-120px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.social-proof-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-avatar {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-avatar svg {
  width: 20px;
  height: 20px;
}

.toast-body {
  flex-grow: 1;
  padding-right: 12px;
}

.toast-text {
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
  color: #2d2520;
}

.toast-text strong {
  font-weight: 700;
}

.toast-text span.premium {
  color: hsl(var(--primary));
  font-weight: 700;
}

.toast-text span.basic {
  color: hsl(var(--muted-foreground));
  font-weight: 700;
}

.toast-time {
  display: block;
  font-size: 11px;
  color: #888888;
  margin-top: 2px;
}

.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #999999;
  cursor: pointer;
  padding: 0 4px;
  align-self: flex-start;
  margin-top: -4px;
  line-height: 1;
}

.toast-close:hover {
  color: #555555;
}

@media (max-width: 640px) {
  .social-proof-toast {
    left: 16px;
    top: 60px;
    bottom: auto;
    width: calc(100% - 32px);
    max-width: none;
  }
}
