/*
===========================
LANDING PAGE - MOBILE FIRST
===========================

Para trocar o nome do produto:
1. Adicione data-product="NOME_DO_PRODUTO" no elemento <body>
2. O JavaScript substituirá automaticamente {{produto}} pelo valor especificado

Base width: 390px
Max width: 430px
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Chewy:wght@400&family=Nunito:wght@300;400;600;700;800&family=Baloo+2:wght@400;600;700&display=swap');

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Typography */
  --font-display: "Chewy", "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito", "Baloo 2", system-ui, sans-serif;
  
  /* Colors */
  --brand-purple: #5E1EA3;
  --brand-purple-200: #EEE2FA;
  --brand-accent: #FFB800;
  --brand-green: #22A045;
  --ink: #2A1B3D;
  --white: #FFFFFF;
  
  /* Design tokens */
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  
  /* Container */
  --container-width: 390px;
  --container-max: 430px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

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

h1 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

/* Buttons & CTAs */
.cta-primary,
.cta-secondary {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow);
  letter-spacing: 0.5px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #FFA500 100%);
  color: var(--ink);
}

.cta-secondary {
  background: var(--brand-purple);
  color: var(--white);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.cta-primary:active,
.cta-secondary:active {
  transform: scale(0.98);
}

.cta-primary:focus,
.cta-secondary:focus {
  outline: 3px solid rgba(94, 30, 163, 0.4);
  outline-offset: 2px;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   COMPONENTS
   ========================== */

/* Top Bar */
.top-bar {
  background: var(--brand-purple);
  color: var(--white);
  padding: var(--space-sm) 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  z-index: 50;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--brand-purple-200) 0%, #F8F4FF 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

.hero-title {
  color: var(--brand-purple);
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #4A5568;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bullets {
  margin-bottom: var(--space-xl);
}

.bullet {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--brand-purple);
}

.hero-mockup {
  margin-bottom: var(--space-xl);
}

.mockup-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.testimonials-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-purple);
  text-align: center;
  margin-bottom: var(--space-md);
}

.testimonials-section .section-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-container {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Social Proof Grid */
.social-proof-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* Social Proof Carousel */
.social-proof-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.social-proof-carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.social-proof-carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.social-proof-slide {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.social-carousel-btn {
  background: var(--brand-purple);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
  flex: 0 0 40px;
}

.social-carousel-btn:hover {
  background: var(--brand-accent);
  color: var(--ink);
  transform: scale(1.1);
}

.social-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.social-proof-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.social-indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(94, 30, 163, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-indicator.active {
  background: var(--brand-purple);
  transform: scale(1.2);
}

.social-proof-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--brand-purple-200);
  transition: all 0.3s ease;
  position: relative;
  max-width: 300px;
  width: 100%;
}

.social-proof-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(94, 30, 163, 0.15);
  border-color: var(--brand-accent);
}

.social-proof-card::before {
  content: "💬";
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  z-index: 2;
  background: var(--brand-purple);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.proof-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

/* Primeira imagem mais alta (portrait) */
.social-proof-slide:first-child .proof-image {
  height: 300px;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  background: var(--white);
}

.social-proof-card:hover .proof-image img {
  transform: scale(1.05);
}

/* Responsive adjustments for social proof */
@media (min-width: 480px) {
  .social-proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }
  
  .proof-image {
    height: 180px;
  }
  
  /* Primeira imagem ainda mais alta em desktop */
  .social-proof-slide:first-child .proof-image {
    height: 320px;
  }
}



/* Carousel Section */
.carousel-section {
  padding: var(--space-xl) 0;
  background: var(--brand-purple-200);
}

.carousel-section h2 {
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: var(--space-xl);
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  width: 100%;
  flex: 0 0 100%;
}

.activity-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius);
  min-height: 300px;
}

/* When there are 4 cards (original grid layout) */
.activity-grid:has(.activity-card:nth-child(4)) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  min-height: auto;
}

.activity-card {
  border: 2px solid #E8D7FA;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Single card styling (when only one card in grid) */
.activity-grid .activity-card:only-child {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
}

/* Multiple cards styling (grid layout) */
.activity-grid:has(.activity-card:nth-child(4)) .activity-card {
  aspect-ratio: 3/4;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-card:hover img {
  transform: scale(1.05);
}

.carousel-btn {
  background: var(--brand-purple);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.2s ease;
  flex: 0 0 40px;
}

.carousel-btn:hover {
  background: var(--brand-accent);
  color: var(--ink);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
}

.indicator {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(94, 30, 163, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.indicator.active {
  background: var(--brand-purple);
  transform: scale(1.2);
}

/* Bonus Section */
.bonus-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.bonus-section h2 {
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: var(--space-md);
}

.bonus-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-grid {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.bonus-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 2px solid #E8D7FA;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: var(--brand-accent);
}

.bonus-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.bonus-content {
  padding: var(--space-md);
}

.bonus-content h3 {
  color: var(--brand-purple);
  margin-bottom: var(--space-sm);
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
}

.free-tag {
  background: var(--brand-green);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.9rem;
}

/* Responsive bonus grid */
@media (min-width: 480px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

/* Sales Notification */
.sales-notification {
  position: fixed;
  top: 60px;
  right: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  border-left: 3px solid var(--brand-green);
  min-width: 240px;
  max-width: 280px;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.sales-notification.show {
  transform: translateX(0);
}

.sales-notification.hidden {
  display: none;
}

.notification-content {
  padding: var(--space-sm);
  padding-right: 30px;
  position: relative;
}

.notification-header {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 10;
}

.notification-close {
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  backdrop-filter: blur(2px);
}

.notification-close:hover {
  background: rgba(255,255,255,0.95);
  color: #333;
}

.notification-body p {
  margin: 0;
  line-height: 1.3;
}

.notification-name {
  font-weight: 700;
  color: var(--brand-purple);
  font-size: 0.85rem;
  margin-bottom: 2px !important;
}

.notification-details {
  color: var(--ink);
  font-size: 0.75rem;
  margin-bottom: 2px !important;
}

.notification-time {
  color: #666;
  font-size: 0.7rem;
  font-style: italic;
}

/* Animation for notification entrance */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.sales-notification.slide-in {
  animation: slideIn 0.4s ease-out;
}

.sales-notification.slide-out {
  animation: slideOut 0.4s ease-in;
}

/* Method Section */
.method-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--brand-purple-200) 0%, #F8F4FF 100%);
  color: var(--ink);
  text-align: center;
}

.method-section h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: var(--space-md);
  color: var(--brand-purple);
}

.method-section p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.method-subtitle {
  font-family: var(--font-display) !important;
  font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
  line-height: 1.4;
  opacity: 1 !important;
  margin-top: var(--space-sm);
}

.product-name {
  color: var(--brand-accent);
  font-weight: 700;
}

/* Plans Section */
.plans-section {
  padding: var(--space-xl) 0;
  background: var(--brand-purple-200);
}

.plans-section h2 {
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: var(--space-xl);
}

.plans-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
}

.plan-card.premium {
  border-color: var(--brand-accent);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-accent);
  color: var(--ink);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
  z-index: 10;
}

.plan-extra-badge {
  background: var(--brand-green);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.plan-mockup {
  margin: 0;
  position: relative;
  overflow: visible;
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}



.plan-mockup img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: transparent;
}

.plan-card h3 {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.4rem;
  margin: 0;
  background: rgba(94, 30, 163, 0.9);
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  z-index: 5;
  white-space: nowrap;
}

/* Plan Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  text-align: left;
}

.plan-features li {
  padding: var(--space-xs) 0;
  font-size: 0.9rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
}

.feature-included {
  color: var(--brand-green);
  font-weight: 600;
}

.feature-bonus {
  color: var(--brand-accent);
  font-weight: 600;
}

.feature-excluded {
  color: #999;
  opacity: 0.7;
}

.plan-features li::first-line {
  font-weight: inherit;
}

.plan-price {
  margin-bottom: var(--space-lg);
}

.plan-price .old-price {
  display: block;
  font-size: 1rem;
  text-decoration: line-through;
  color: #999;
  margin-bottom: var(--space-xs);
}

.plan-price .current-price {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-purple);
}

/* Benefits Section */
.benefits-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.benefits-section h2 {
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: var(--space-xl);
}

.benefits-grid {
  display: grid;
  gap: var(--space-md);
}

.benefit-card {
  background: var(--brand-purple);
  color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.2rem;
}

.benefit-card p {
  opacity: 0.9;
  margin: 0;
}

/* How It Works */
.how-it-works {
  padding: var(--space-xl) 0;
  background: var(--brand-purple-200);
}

.how-it-works h2 {
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: var(--space-xl);
}

.steps-grid {
  display: grid;
  gap: var(--space-md);
}

.step-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.step-card h3 {
  color: var(--brand-purple);
  margin-bottom: var(--space-sm);
}

.step-card p {
  margin: 0;
  color: var(--ink);
}

/* Guarantee Section */
.guarantee-section {
  padding: var(--space-xl) 0;
  background: var(--white);
}

.guarantee-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.guarantee-seal img {
  width: 80px;
  height: 80px;
}

.guarantee-seal-large {
  margin-bottom: var(--space-lg);
}

.guarantee-seal-large img {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.guarantee-text h2 {
  color: var(--brand-green);
  margin-bottom: var(--space-sm);
}

.guarantee-text p {
  margin: 0;
}

/* FAQ Section */
.faq-section {
  padding: var(--space-xl) 0;
  background: var(--brand-purple-200);
}

.faq-section h2 {
  text-align: center;
  color: var(--brand-purple);
  margin-bottom: var(--space-xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-purple);
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: rgba(94, 30, 163, 0.05);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-md);
  margin: 0;
  color: var(--ink);
}

/* Footer */
.footer {
  padding: var(--space-lg) 0;
  background: var(--brand-purple);
  color: var(--white);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm) 20px;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .cta-primary {
  margin: 0;
  font-size: 1rem;
}

/* Responsive Adjustments */
@media (min-width: 480px) {
  .plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .plan-card.premium {
    transform: none;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .guarantee-content {
    flex-direction: row;
    text-align: left;
  }
}