/* =========================================
   ENTRENAMIENTOS DE FÚTBOL — ESTILOS
   ========================================= */

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

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --primary: 145 63% 32%;
  --primary-foreground: 0 0% 100%;
  --accent: 43 90% 50%;
  --accent-foreground: 0 0% 10%;
  --background: 0 0% 100%;
  --foreground: 0 0% 13%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 13%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  --secondary: 145 20% 96%;
  --secondary-foreground: 0 0% 13%;
  --border: 0 0% 90%;
  --destructive: 0 84% 60%;
  --radius: 0.75rem;
  --ring: 145 63% 32%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---- Utility ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- Animations ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulseCta {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px -3px hsl(var(--primary) / 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 25px -5px hsl(var(--primary) / 0.6), 0 0 0 8px hsl(var(--primary) / 0.15);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px -3px hsl(var(--primary) / 0.4);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  35% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-cta {
  animation: pulseCta 2.5s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* =========================================
   TOPBAR
   ========================================= */
.topbar {
  width: 100%;
  background: linear-gradient(to right, #f97316, #ef4444, #ec4899);
  color: white;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.topbar__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}



/* =========================================
   HERO
   ========================================= */
.hero {
  background: hsl(var(--background));
  padding: 4rem 1rem 4rem;
  text-align: center;
}

.hero__container {
  max-width: 48rem;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--primary) / 0.3);
  background: hsl(var(--primary) / 0.1);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}

.hero__badge-text {
  color: hsl(var(--primary));
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: hsl(var(--foreground));
}

.hero__title-accent {
  color: hsl(var(--primary));
}

.hero__subtitle {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.625;
}

.hero__image-wrapper {
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.hero__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.hero__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.15), hsl(var(--accent) / 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* ---- CTA Button (reused) ---- */
.cta-btn {
  display: inline-block;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  transition: all 0.3s;
  animation: pulseCta 2.5s ease-in-out infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* ---- Shimmer Shine Effect ---- */
.cta-btn::after,
.pricing-btn--premium::after,
.modal__btn-upgrade::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 4s infinite ease-in-out;
}

/* =========================================
   SECTION — SHARED STYLES
   ========================================= */
.section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.section--bg-secondary {
  background: linear-gradient(to bottom, hsl(var(--secondary)), hsl(var(--background)));
}

.section--bg-secondary-solid {
  background: hsl(var(--secondary));
}

.section--bg-gradient {
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary)));
}

.section__bg-blob {
  position: absolute;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.05);
  filter: blur(64px);
  pointer-events: none;
}

.section__bg-blob--tl {
  top: 0; left: 0;
  width: 18rem; height: 18rem;
  transform: translate(-50%, -50%);
}

.section__bg-blob--br {
  bottom: 0; right: 0;
  width: 24rem; height: 24rem;
  transform: translate(33%, 33%);
}

.section__bg-blob--tr {
  top: 0; right: 0;
  width: 18rem; height: 18rem;
  transform: translate(50%, -50%);
}

.section__bg-blob--bl {
  bottom: 0; left: 0;
  width: 24rem; height: 24rem;
  transform: translate(-33%, 33%);
}

.section__bg-blob--cl {
  top: 50%; left: 0;
  width: 18rem; height: 18rem;
  transform: translate(-50%, -50%);
}

.section__container {
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__tag {
  display: inline-block;
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.section__tag--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.section__subtitle {
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
  font-size: 0.875rem;
}

/* =========================================
   CARDS GRID
   ========================================= */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

.card-grid--2 {
  grid-template-columns: 1fr;
  max-width: 48rem;
  margin: 0 auto;
  align-items: stretch;
}

/* ---- Card ---- */
.card {
  position: relative;
}

.card__glow {
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(4px);
  pointer-events: none;
}

.card:hover .card__glow {
  opacity: 1;
}

.card__glow--green { background: linear-gradient(to bottom right, hsl(var(--primary)), #059669); }
.card__glow--teal { background: linear-gradient(to bottom right, #059669, #14b8a6); }
.card__glow--primary { background: linear-gradient(to bottom right, #14b8a6, hsl(var(--primary))); }
.card__glow--border { background: linear-gradient(to bottom right, hsl(var(--border)), hsl(var(--muted))); }
.card__glow--accent { background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent))); }

.card__body {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.card:hover .card__body {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.card__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px hsl(var(--primary) / 0.2);
  transition: transform 0.3s;
  color: white;
}

.card:hover .card__icon {
  transform: scale(1.1);
}

.card__icon--green { background: linear-gradient(to bottom right, hsl(var(--primary)), #059669); }
.card__icon--teal { background: linear-gradient(to bottom right, #059669, #14b8a6); }
.card__icon--primary { background: linear-gradient(to bottom right, #14b8a6, hsl(var(--primary))); }

.card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.card__title {
  font-weight: 800;
  color: hsl(var(--foreground));
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card__title--sm {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.card__desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1.625;
  flex-grow: 1;
}

.card__desc--mb {
  margin-bottom: 1rem;
}

.card__bullets {
  border-top: 1px solid hsl(var(--border));
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card__bullet-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 2px;
}

.card__bullet-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
}

/* =========================================
   BONUS CARDS
   ========================================= */
.bonus-card__body {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.card:hover .bonus-card__body {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.bonus-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 0.125rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.bonus-card__tag--green { background: linear-gradient(to right, hsl(var(--primary)), #059669); }
.bonus-card__tag--teal { background: linear-gradient(to right, #059669, #14b8a6); }
.bonus-card__tag--primary { background: linear-gradient(to right, #14b8a6, hsl(var(--primary))); }

.bonus-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.bonus-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .bonus-card__image {
  transform: scale(1.05);
}

.bonus-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.bonus-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}

.bonus-card__image-placeholder--1 { background: linear-gradient(135deg, hsl(var(--primary)), #059669); }
.bonus-card__image-placeholder--2 { background: linear-gradient(135deg, #059669, #14b8a6); }
.bonus-card__image-placeholder--3 { background: linear-gradient(135deg, #14b8a6, hsl(var(--primary))); }

.bonus-card__content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-card__title {
  font-weight: 800;
  color: hsl(var(--foreground));
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.bonus-card__desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  line-height: 1.625;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.bonus-card__footer {
  border-top: 1px solid hsl(var(--border));
  padding-top: 0.75rem;
}

.bonus-card__value-label {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

.bonus-card__value-old {
  color: hsl(var(--destructive));
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: line-through;
}

.bonus-card__value-free {
  color: hsl(var(--primary));
  font-weight: 900;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.bonus-total {
  text-align: center;
  margin-top: 2rem;
}

.bonus-total__badge {
  display: inline-block;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.2);
}

.bonus-total__old {
  color: hsl(var(--destructive));
  text-decoration: line-through;
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer {
  padding: 5rem 1rem;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--secondary)));
  position: relative;
  overflow: hidden;
}

.offer__urgency-badge {
  display: inline-block;
  background: linear-gradient(to right, #f97316, #ef4444);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-align: center;
}

.offer__timer {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.offer__timer-block {
  text-align: center;
}

.offer__timer-value {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  min-width: 70px;
}

.offer__timer-number {
  font-size: 1.5rem;
  font-weight: 900;
}

.offer__timer-label {
  font-size: 10px;
  color: hsl(var(--muted-foreground));
  margin-top: 0.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ---- Pricing Cards ---- */
.pricing-card {
  position: relative;
}

.pricing-card__glow {
  position: absolute;
  inset: -2px;
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
  filter: blur(4px);
  pointer-events: none;
}

.pricing-card__glow--border {
  background: linear-gradient(to bottom right, hsl(var(--border)), hsl(var(--muted)));
}

.pricing-card__glow--accent {
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--accent)));
  opacity: 0.6;
}

.pricing-card:hover .pricing-card__glow {
  opacity: 1;
}

.pricing-card__body {
  position: relative;
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.pricing-card__body--basic {
  border: 1px solid hsl(var(--border));
}

.pricing-card__body--premium {
  border: 2px solid hsl(var(--primary) / 0.4);
}

.pricing-card:hover .pricing-card__body {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.pricing-card__header {
  text-align: center;
  padding: 0.75rem;
}

.pricing-card__header--basic {
  background: hsl(var(--muted));
}

.pricing-card__header--premium {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
}

.pricing-card__header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-card__header-icon {
  width: 1rem;
  height: 1rem;
}

.pricing-card__header-text {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.pricing-card__header-text--basic {
  color: hsl(var(--muted-foreground));
}

.pricing-card__content {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card__savings {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 10px;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin: 0 auto 0.75rem;
  letter-spacing: 0.025em;
}

.pricing-card__price-wrapper {
  margin-bottom: 1.5rem;
}

.pricing-card__price-old {
  color: hsl(var(--destructive));
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 900;
  margin-top: 0.25rem;
}

.pricing-card__price--basic {
  color: hsl(var(--foreground));
}

.pricing-card__price--premium {
  color: hsl(var(--primary));
}

.pricing-card__price-note {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.pricing-card__divider {
  height: 1px;
  margin-bottom: 1.25rem;
}

.pricing-card__divider--basic {
  background: hsl(var(--border));
}

.pricing-card__divider--premium {
  background: hsl(var(--primary) / 0.2);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.pricing-card__feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__feature-icon--check {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.pricing-card__feature-icon--x {
  background: hsl(var(--destructive) / 0.1);
  color: hsl(var(--destructive));
}

.pricing-card__feature-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.pricing-card__feature-text {
  font-size: 0.75rem;
  line-height: 1.625;
}

.pricing-card__feature-text--included {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.pricing-card__feature-text--excluded {
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
}

/* ---- Pricing Buttons ---- */
.pricing-btn--basic {
  display: block;
  width: 100%;
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

.pricing-btn--basic:hover {
  background: hsl(var(--muted));
}

.pricing-btn--premium {
  display: block;
  width: 100%;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.875rem;
  border-radius: 9999px;
  transition: all 0.3s;
  animation: pulseCta 2.5s ease-in-out infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-btn--premium:hover {
  transform: translateY(-2px);
}

.pricing-card__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

.pricing-card__secure svg {
  width: 1rem;
  height: 1rem;
}

.offer__disclaimer {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  margin-top: 1.25rem;
}

/* =========================================
   EXAMPLES / CAROUSEL
   ========================================= */
.examples-carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  max-width: 100%;
}

.examples-carousel-container {
  width: 100%;
  max-width: 480px; /* Limit size of the active card */
  overflow: hidden;
  position: relative;
}

.examples-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.examples-carousel::-webkit-scrollbar {
  display: none;
}

.example-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  box-sizing: border-box;
}

.example-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.carousel-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.carousel-control {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: hsl(var(--foreground) / 0.8);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.carousel-control:hover {
  border-color: hsl(var(--primary) / 0.4);
  color: hsl(var(--primary));
  transform: scale(1.05);
  background: hsl(var(--muted) / 0.3);
}

.carousel-control svg {
  width: 1.25rem;
  height: 1.25rem;
}

.example-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.example-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2rem;
  color: white;
}

.example-card__image-placeholder--1 { background: linear-gradient(135deg, hsl(var(--primary)), #059669); }
.example-card__image-placeholder--2 { background: linear-gradient(135deg, #059669, #14b8a6); }
.example-card__image-placeholder--3 { background: linear-gradient(135deg, hsl(var(--accent)), #f97316); }
.example-card__image-placeholder--4 { background: linear-gradient(135deg, #14b8a6, hsl(var(--primary))); }

.example-card__content {
  padding: 1rem;
}

.example-card__title {
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.example-card__desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-card__body {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.card:hover .testimonial-card__body {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.testimonial-card__star {
  width: 1rem;
  height: 1rem;
  color: #facc15;
  fill: #facc15;
}

.testimonial-card__text {
  color: hsl(var(--muted-foreground));
  font-size: 0.8125rem;
  line-height: 1.625;
  flex-grow: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__author {
  border-top: 1px solid hsl(var(--border));
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--accent) / 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.testimonial-card__photo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid hsl(var(--primary) / 0.2);
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* =========================================
   GUARANTEE
   ========================================= */
.guarantee {
  padding: 5rem 1rem;
  background: hsl(var(--background));
}

.guarantee__container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.guarantee__shield {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.15), hsl(var(--accent) / 0.15));
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.guarantee__shield svg {
  width: 2.5rem;
  height: 2.5rem;
}

.guarantee__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.guarantee__desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.guarantee__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.guarantee__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.guarantee__item-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.guarantee__badge {
  display: inline-block;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.2);
}

/* =========================================
   FAQ
   ========================================= */
.faq__list {
  max-width: 48rem;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

.faq__item:hover {
  border-color: hsl(var(--primary) / 0.2);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq__question:hover {
  background: hsl(var(--muted) / 0.5);
}

.faq__question-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.open .faq__question-icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer-text {
  padding: 0 1.25rem 1rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

.faq__cta {
  text-align: center;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 2rem 1rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
  border-top: 1px solid hsl(var(--border));
}

/* =========================================
   POPUP / MODAL
   ========================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s;
}

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

.modal {
  background: hsl(var(--background));
  border-radius: 1rem;
  max-width: 20rem;
  width: 100%;
  padding: 1rem;
  position: relative;
  animation: fadeInUp 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: transparent;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.modal__close:hover {
  opacity: 1;
}

.modal__close svg {
  width: 1rem;
  height: 1rem;
}

.modal__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.modal__tag {
  display: inline-block;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.modal__title {
  font-size: 1.125rem;
  font-weight: 900;
  color: hsl(var(--primary));
  line-height: 1.25;
}

.modal__desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.75rem;
}

.modal__desc-bold {
  font-weight: 700;
  color: hsl(var(--foreground));
}

.modal__desc-price {
  font-weight: 900;
  color: hsl(var(--foreground));
  font-size: 1rem;
}

.modal__benefits {
  background: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.modal__benefits-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  font-size: 0.75rem;
}

.modal__benefits-title svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
}

.modal__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal__benefit-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal__benefit-icon--primary {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.modal__benefit-icon--accent {
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
}

.modal__benefit-icon svg {
  width: 0.625rem;
  height: 0.625rem;
}

.modal__benefit-text {
  font-size: 11px;
  color: hsl(var(--foreground));
  font-weight: 500;
}

.modal__urgency {
  background: hsl(var(--destructive) / 0.1);
  border: 1px solid hsl(var(--destructive) / 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.modal__urgency-text {
  color: hsl(var(--destructive));
  font-size: 10px;
  font-weight: 700;
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal__btn-upgrade {
  display: block;
  width: 100%;
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  text-align: center;
  animation: pulseCta 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.modal__btn-upgrade:hover {
  transform: translateY(-1px);
}

.modal__btn-keep {
  display: block;
  width: 100%;
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-weight: 700;
  font-size: 11px;
  padding: 0.625rem;
  border-radius: 9999px;
  transition: all 0.3s;
  background: transparent;
  text-align: center;
}

.modal__btn-keep:hover {
  background: hsl(var(--muted));
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (min-width: 640px) {
  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .cta-btn {
    font-size: 1rem;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .offer__timer-number {
    font-size: 1.875rem;
  }

  .pricing-card--premium {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem;
  }

  .guarantee__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .card-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
