@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
  --background: hsl(222 84% 5%);
  --foreground: hsl(210 40% 98%);
  --card: hsl(217 32% 17%);
  --card-foreground: hsl(210 40% 98%);
  --popover: hsl(222 84% 5%);
  --popover-foreground: hsl(210 40% 98%);
  --primary: hsl(200 100% 60%);
  --primary-foreground: hsl(222 84% 5%);
  --secondary: hsl(270 50% 20%);
  --secondary-foreground: hsl(210 40% 98%);
  --muted: hsl(217 32% 17%);
  --muted-foreground: hsl(215 20% 65%);
  --accent: hsl(320 100% 60%);
  --accent-foreground: hsl(222 84% 5%);
  --destructive: hsl(356.3033 90.5579% 54.3137%);
  --destructive-foreground: hsl(0 0% 100%);
  --border: hsl(217 32% 17%);
  --input: hsl(217 32% 17%);
  --ring: hsl(200 100% 60%);
  --chart-1: hsl(203.8863 88.2845% 53.1373%);
  --chart-2: hsl(159.7826 100% 36.0784%);
  --chart-3: hsl(42.0290 92.8251% 56.2745%);
  --chart-4: hsl(147.1429 78.5047% 41.9608%);
  --chart-5: hsl(341.4894 75.2000% 50.9804%);
  --sidebar: hsl(217 32% 17%);
  --sidebar-foreground: hsl(210 40% 98%);
  --sidebar-primary: hsl(200 100% 60%);
  --sidebar-primary-foreground: hsl(222 84% 5%);
  --sidebar-accent: hsl(270 50% 20%);
  --sidebar-accent-foreground: hsl(210 40% 98%);
  --sidebar-border: hsl(217 32% 17%);
  --sidebar-ring: hsl(200 100% 60%);
  --font-sans: 'Inter', sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: Menlo, monospace;
  --radius: 0.75rem;
  --yellow: hsl(45 100% 60%);
  --green: hsl(147 78% 42%);
  --purple: hsl(270 100% 60%);
  --blue-teal: hsl(195 100% 12%);
  --deep-purple: hsl(270 50% 8%);
}

.dark {
  --background: hsl(222 84% 5%);
  --foreground: hsl(210 40% 98%);
  --card: hsl(217 32% 17%);
  --card-foreground: hsl(210 40% 98%);
  --popover: hsl(222 84% 5%);
  --popover-foreground: hsl(210 40% 98%);
  --primary: hsl(200 100% 60%);
  --primary-foreground: hsl(222 84% 5%);
  --secondary: hsl(270 50% 20%);
  --secondary-foreground: hsl(210 40% 98%);
  --muted: hsl(217 32% 17%);
  --muted-foreground: hsl(215 20% 65%);
  --accent: hsl(320 100% 60%);
  --accent-foreground: hsl(222 84% 5%);
  --destructive: hsl(356.3033 90.5579% 54.3137%);
  --destructive-foreground: hsl(0 0% 100%);
  --border: hsl(217 32% 17%);
  --input: hsl(217 32% 17%);
  --ring: hsl(200 100% 60%);
}

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

body {
  font-family: var(--font-sans);
  background: linear-gradient(135deg, var(--blue-teal) 0%, var(--deep-purple) 100%);
  color: var(--foreground);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Classes */
.neon-border {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(270 100% 60%)) border-box;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3), inset 0 0 15px rgba(255, 20, 147, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  background-color: rgba(45, 45, 60, 0.1);
  backdrop-filter: blur(10px);
}

.neon-glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.1);
}

.gradient-text {
  background: linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(45 100% 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(59, 130, 246, 0.2);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent, rgba(59, 130, 246, 0.05), rgba(255, 20, 147, 0.05));
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-highlight {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-highlight {
    font-size: 1.125rem;
  }
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 1024px) {
  .hero-benefits {
    justify-content: flex-start;
  }
}

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

.check {
  color: #22c55e;
}

.hero-mockup {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .hero-mockup {
    justify-content: flex-end;
    margin-top: 0;
  }
}

.mockup-container {
  max-width: 32rem;
  width: 100%;
}

.mockup-content {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mockup-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .mockup-title {
    font-size: 1.5rem;
  }
}

.mockup-carousel {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-slides {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

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

.carousel-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 1px solid rgba(59, 130, 246, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(59, 130, 246, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.indicator.active {
  background: var(--primary);
}

.indicator:hover {
  background: var(--primary);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 4rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.25rem;
  }
}

/* About Section */
.about-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.feature-card {
  background: rgba(45, 45, 60, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(270 100% 60%)) border-box;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .feature-icon {
    font-size: 4rem;
  }
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.5rem;
  }
}

.feature-description {
  color: var(--muted-foreground);
}

/* Benefits Section */
.benefits-section {
  padding: 3rem 0;
  background: rgba(45, 45, 60, 0.05);
}

@media (min-width: 768px) {
  .benefits-section {
    padding: 5rem 0;
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: rgba(45, 45, 60, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .benefit-icon {
    font-size: 2.5rem;
  }
}

.benefit-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.benefit-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .benefit-description {
    font-size: 1rem;
  }
}

/* Redação Section */
.redacao-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .redacao-section {
    padding: 5rem 0;
  }
}

.redacao-container {
  max-width: 64rem;
  margin: 0 auto;
}

.redacao-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.redacao-label {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.redacao-textarea {
  min-height: 200px;
  width: 100%;
  font-size: 1rem;
  background: white;
  color: #1f2937;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 0.375rem;
  padding: 0.75rem;
  resize: vertical;
  transition: border-color 0.2s;
}

.redacao-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.redacao-textarea::placeholder {
  color: #6b7280;
}

.word-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.redacao-button-container {
  text-align: center;
}

.analysis-result {
  margin-top: 2rem;
  animation: fadeIn 0.5s ease-in-out;
}

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

.score-container {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(255, 20, 147, 0.2));
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  text-align: center;
}

.score-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.score-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.star {
  color: #fbbf24;
  font-size: 1.5rem;
}

.score-value {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.score-feedback {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Social Proof Section */
.social-proof-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .social-proof-section {
    padding: 5rem 0;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  background: rgba(45, 45, 60, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(270 100% 60%)) border-box;
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-icon {
    font-size: 2.5rem;
  }
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-label {
  color: var(--muted-foreground);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.testimonial-card {
  background: rgba(45, 45, 60, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
  }
}

.testimonial-author {
  font-size: 0.875rem;
}

.author-name {
  font-weight: 600;
}

.author-course {
  color: var(--muted-foreground);
}

/* Bonuses Section */
.bonuses-section {
  padding: 3rem 0;
  background: rgba(45, 45, 60, 0.05);
}

@media (min-width: 768px) {
  .bonuses-section {
    padding: 5rem 0;
  }
}

.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bonus-card {
  background: rgba(45, 45, 60, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(270 100% 60%)) border-box;
  border-radius: var(--radius);
  padding: 2rem;
}

.bonus-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bonus-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.bonus-content {
  flex: 1;
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .bonus-title {
    font-size: 1.5rem;
  }
}

.bonus-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.bonus-price {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.original-price {
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.free-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #22c55e;
}

@media (min-width: 768px) {
  .free-price {
    font-size: 1.5rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 3rem 0;
  background: rgba(45, 45, 60, 0.05);
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 5rem 0;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: rgba(45, 45, 60, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(270 100% 60%)) border-box;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(to bottom right, rgba(255, 20, 147, 0.2), rgba(59, 130, 246, 0.2));
  border: 2px solid var(--accent);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.plan-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.plan-pricing {
  margin-bottom: 1.5rem;
}

.original-price {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

@media (min-width: 768px) {
  .current-price {
    font-size: 3rem;
  }
}

.featured-price {
  color: var(--accent);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-features li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.plan-button {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.plan-button.featured {
  background: var(--accent);
  color: var(--accent-foreground);
}

.plan-button.featured:hover {
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

/* Guarantee Section */
.guarantee-section {
  padding: 3rem 0;
  background: rgba(45, 45, 60, 0.05);
}

@media (min-width: 768px) {
  .guarantee-section {
    padding: 5rem 0;
  }
}

.guarantee-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .guarantee-container {
    padding: 3rem;
  }
}

.guarantee-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.guarantee-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .guarantee-title {
    font-size: 2rem;
  }
}

.guarantee-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .guarantee-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.guarantee-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: var(--muted-foreground);
}

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

.feature-icon {
  color: #22c55e;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.faq-card {
  background: rgba(45, 45, 60, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

@media (min-width: 768px) {
  .faq-card {
    padding: 2rem;
  }
}

.faq-question {
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Gallery Section */
.gallery-section {
  padding: 3rem 0;
  background: rgba(45, 45, 60, 0.05);
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 5rem 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  background: rgba(45, 45, 60, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(45deg, hsl(200 100% 60%), hsl(320 100% 60%), hsl(270 100% 60%)) border-box;
}

@media (min-width: 768px) {
  .gallery-card {
    padding: 2rem;
  }
}

.gallery-image {
  border-radius: var(--radius);
  min-height: 250px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

.gallery-content {
  text-align: center;
}

.gallery-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .gallery-title {
    font-size: 1.25rem;
  }
}

.gallery-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.gallery-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.feature-check {
  color: #22c55e;
}

/* Final CTA Section */
.final-cta-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 5rem 0;
  }
}

.final-cta-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to bottom right, rgba(45, 45, 60, 0.2), rgba(255, 20, 147, 0.1));
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .final-cta-container {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .final-cta-container {
    padding: 4rem;
  }
}

.final-cta-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .final-cta-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}

.final-cta-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .final-cta-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .final-cta-description {
    font-size: 1.25rem;
  }
}

.final-cta-button {
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  min-height: 56px;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .final-cta-button {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .final-cta-button {
    font-size: 1.125rem;
  }
}

.final-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

/* Footer */
.footer {
  padding: 3rem 0;
  background: rgba(45, 45, 60, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

/* Media Queries for Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .card-hover {
    transition: none;
  }
  .card-hover:hover {
    transform: none;
  }
  .animate-float {
    animation: none;
  }
  .cta-button:hover {
    transform: none;
  }
  .plan-button:hover {
    transform: none;
  }
}