:root {
  --pink: #ff4eb5;
  --magenta: #d91d8e;
  --purple: #9b3efc;
  --text: #2c2c2c;
  --muted: #666;
  --card: #ffffff;
  --bg: #fbf7fb;
  --border: #f1d9f1;
  --btn-grad: linear-gradient(90deg, #ff4eb5 0%, #9b3efc 100%);
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--btn-grad);
  border-radius: 20px;
  transition: width 0.4s ease;
  width: 0%;
}

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

#app {
  min-height: 100vh;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#app.with-progress {
  padding-top: 100px;
}

.container {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.3s ease;
}

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

.hero-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--btn-grad);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  background: var(--btn-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  margin: 30px auto;
  display: block;
}

.alert-box {
  background: #faf5ff;
  border: 2px solid #e9d5ff;
  border-radius: 16px;
  padding: 24px;
  margin: 30px 0;
  text-align: left;
}

.alert-box strong {
  color: var(--purple);
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.alert-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.btn-primary {
  background: var(--btn-grad);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 78, 181, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 78, 181, 0.4);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.fire-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b, #ff4eb5);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin: 30px 0 20px;
  box-shadow: 0 4px 15px rgba(255, 78, 181, 0.2);
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin: 20px 0 30px;
}

.transformation-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #f5f5f5;
}

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

.transformation-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.stats-text {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.stats-text strong {
  color: var(--pink);
  font-weight: 700;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--pink);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.3;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

h2 .highlight {
  color: var(--pink);
  font-weight: 700;
}

.subtitle {
  font-size: 15px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.green-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-image {
  width: 100%;
  border-radius: 16px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.option-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.option-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 78, 181, 0.1);
}

.option-card.selected {
  border-color: var(--pink);
  background: linear-gradient(to right, rgba(255, 78, 181, 0.05), rgba(155, 62, 252, 0.05));
  box-shadow: 0 0 0 3px rgba(255, 78, 181, 0.1);
  transform: scale(0.995);
}

.option-radio {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.option-card.selected .option-radio {
  border-color: var(--pink);
  background: var(--pink);
}

.option-card.selected .option-radio::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.option-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.body-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.body-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.body-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 78, 181, 0.15);
}

.body-card.selected {
  border-color: var(--pink);
  background: linear-gradient(to bottom, rgba(255, 78, 181, 0.05), rgba(155, 62, 252, 0.05));
  box-shadow: 0 0 0 3px rgba(255, 78, 181, 0.1);
}

.body-card-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.body-card-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.input-field {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  transition: all 0.2s ease;
  margin: 20px 0;
}

.input-field:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 78, 181, 0.1);
}

.slider-container {
  margin: 40px 0;
}

.slider-value {
  text-align: center;
  font-size: 56px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 30px;
  text-shadow: 0 2px 20px rgba(255, 78, 181, 0.3);
}

.slider-wrapper {
  position: relative;
  padding: 0 10px;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: #f0f0f0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--btn-grad);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 78, 181, 0.2), 0 4px 12px rgba(0,0,0,.2);
  transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(255, 78, 181, 0.25), 0 6px 16px rgba(0,0,0,.25);
}

.slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--btn-grad);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 0 4px rgba(255, 78, 181, 0.2), 0 4px 12px rgba(0,0,0,.2);
  transition: all 0.2s ease;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(255, 78, 181, 0.25), 0 6px 16px rgba(0,0,0,.25);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.testimonial-section {
  margin: 40px 0;
}

.result-card {
  text-align: center;
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-card h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 30px;
  line-height: 1.4;
}

.guarantee-section {
  background: linear-gradient(135deg, rgba(255, 78, 181, 0.08), rgba(155, 62, 252, 0.08));
  border-radius: 16px;
  padding: 20px;
  margin: 30px 0;
}

.guarantee-section h2 {
  color: var(--purple);
  font-size: 18px;
  margin-bottom: 12px;
}

.guarantee-section .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.guarantee-section .badges span {
  background: white;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
}

.testimonial {
  background: linear-gradient(135deg, rgba(255, 78, 181, 0.08), rgba(155, 62, 252, 0.08));
  border-radius: 16px;
  padding: 20px;
  margin: 30px 0;
}

.testimonial h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.testimonial .post-preview img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.warning-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), white);
  border-left: 4px solid var(--warning);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin: 30px 0;
}

.warning-box .warning-header {
  font-weight: 700;
  color: var(--warning);
  margin-bottom: 8px;
}

.warning-box ul {
  list-style: disc;
  margin-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.transform-section {
  margin: 40px 0;
}

.transform-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 16px;
}

.transform-images {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.transform-images img {
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.transform-section .caption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* Responsividade */
@media (max-width: 600px) {
  .transform-images {
    flex-direction: column;
  }

  .transform-images img {
    width: 100%;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,.06);
  position: relative;
}

.testimonial-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-image {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  object-fit: cover;
  background: #f5f5f5;
}

.testimonial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--pink);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 8px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.imc-display {
  text-align: center;
  margin: 30px 0;
}

.imc-value {
  font-size: 72px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 20px;
}

.imc-bar {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  display: flex;
}

.imc-segment {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: white;
}

.imc-segment.underweight {
  background: #3b82f6;
}

.imc-segment.healthy {
  background: #10b981;
}

.imc-segment.overweight {
  background: #f59e0b;
}

.imc-segment.obese {
  background: #ef4444;
}

.imc-marker {
  position: absolute;
  top: -10px;
  width: 3px;
  height: 60px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  transform: translateX(-50%);
}

.info-cards {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid var(--border);
}

.info-card.success {
  border-color: var(--success);
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.05), white);
}

.info-card.warning {
  border-color: var(--warning);
  background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.05), white);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-card-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.info-card-badge.success {
  background: var(--success);
}

.info-card-badge.warning {
  background: var(--warning);
}

.info-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.info-card-list {
  list-style: none;
  padding: 0;
}

.info-card-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}

.info-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.diagnostic-bars {
  margin: 30px 0;
}

.diagnostic-item {
  margin-bottom: 24px;
}

.diagnostic-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.diagnostic-bar {
  height: 12px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.diagnostic-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.6s ease;
}

.diagnostic-fill.high {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.diagnostic-fill.medium {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.diagnostic-fill.low {
  background: linear-gradient(90deg, #10b981, #059669);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--pink);
}

.feature-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.form-group {
  margin: 20px 0;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

.bonus-section {
  text-align: center;
  padding: 40px 0;
}

.bonus-header-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.3;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.bonus-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.bonus-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--btn-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.bonus-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.bonus-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 78, 181, 0.1), rgba(155, 62, 252, 0.1));
  border-radius: 16px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--pink);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.checkout-box {
  background: linear-gradient(135deg, #faf5ff, white);
  border: 3px solid var(--purple);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.price-strike {
  font-size: 24px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-current {
  font-size: 64px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 16px;
}

.payment-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .card {
    padding: 24px;
  }

  .hero-title {
    font-size: 48px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  .body-cards-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .imc-value {
    font-size: 56px;
  }

  .slider-value {
    font-size: 48px;
  }

  .bonus-title {
    font-size: 28px;
  }

  .price-current {
    font-size: 48px;
  }

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

.fade-enter {
  opacity: 0;
  transform: translateY(20px);
}

.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.diagnostic-card {
  text-align: center;
}

.alert-top {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.diagnostic-bars {
  background: white;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin: 30px 0;
}

.diagnostic-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 14px;
}

.diagnostic-bar {
  background: #f2f2f2;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.diagnostic-fill.low {
  background: linear-gradient(90deg, #9b3efc, #ff4eb5);
}
.diagnostic-fill.medium {
  background: linear-gradient(90deg, #f59e0b, #ffb300);
}
.diagnostic-fill.high {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.info-card.how-it-works {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 78, 181, 0.05), rgba(155, 62, 252, 0.05));
  border-radius: 16px;
  padding: 30px;
  margin: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.feature-icon {
  font-size: 22px;
  color: var(--pink);
}

.feature-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.checklist-banner {
  background: #fff2f9;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0 40px;
  font-size: 14px;
  color: var(--text);
}

.checklist-banner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checklist-banner li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  margin-right: 8px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.transform-grid img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.form-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-top: 40px;
  text-align: center;
}

.form-info {
  display: flex;
  justify-content: space-around;
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 20px;
}

.slots-left {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

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

.bonus-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 78, 181, 0.15);
}

.bonus-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.bonus-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.bonus-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: white;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.testimonial-section {
  text-align: center;
  padding: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(255, 78, 181, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 78, 181, 0.15);
}

.testimonial-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 78, 181, 0.2);
}

.testimonial-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  background: #f8f8f8;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 18px;
  margin: 6px 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.testimonial-location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}