/* ========================================
   Pagi IA SEO - CSS Puro
   Versão HTML/CSS/JS do site
======================================== */

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

/* ========================================
   CSS Variables (Cores e Configurações)
======================================== */
:root {
  /* Cores Base */
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(215, 50%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 50%, 15%);
  --primary: hsl(217, 91%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 40%, 96%);
  --secondary-foreground: hsl(215, 50%, 25%);
  --muted: hsl(210, 30%, 94%);
  --muted-foreground: hsl(215, 20%, 50%);
  --border: hsl(214, 32%, 91%);
  
  /* Cores Azuis */
  --blue-50: hsl(214, 100%, 97%);
  --blue-100: hsl(214, 95%, 93%);
  --blue-200: hsl(213, 97%, 87%);
  --blue-400: hsl(213, 94%, 68%);
  --blue-500: hsl(217, 91%, 60%);
  --blue-600: hsl(221, 83%, 53%);
  --blue-700: hsl(224, 76%, 48%);
  
  /* Cores dos Planos */
  --starter: hsl(142, 76%, 36%);
  --starter-light: hsl(142, 72%, 94%);
  --pro: hsl(217, 91%, 60%);
  --pro-light: hsl(214, 100%, 97%);
  --enterprise: hsl(24, 95%, 53%);
  --enterprise-light: hsl(38, 100%, 95%);
  --ultra: hsl(271, 91%, 65%);
  --ultra-light: hsl(270, 100%, 98%);
  
  /* Gradientes */
  --gradient-hero: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(224, 76%, 48%) 50%, hsl(226, 71%, 40%) 100%);
  --gradient-glow: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(217, 91%, 60%, 0.3), transparent);
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 hsl(215, 50%, 15%, 0.05);
  --shadow-md: 0 4px 6px -1px hsl(215, 50%, 15%, 0.1), 0 2px 4px -2px hsl(215, 50%, 15%, 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(215, 50%, 15%, 0.1), 0 4px 6px -4px hsl(215, 50%, 15%, 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(215, 50%, 15%, 0.1), 0 8px 10px -6px hsl(215, 50%, 15%, 0.1);
  --shadow-glow: 0 0 40px hsl(217, 91%, 60%, 0.3);
  
  /* Bordas */
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
}

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

ul {
  list-style: none;
}

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

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

/* ========================================
   Utilities
======================================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background-color: hsl(0, 0%, 100%, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(214, 32%, 91%, 0.5);
  animation: slideDown 0.5s ease-out;
}

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

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

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

.logo-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.logo-text span {
  color: var(--primary);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
}

.header-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.mobile-menu-btn:hover,
.mobile-menu-btn:active {
  background-color: var(--muted);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
  transition: transform 0.2s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease-out;
  background: hsl(0, 0%, 100%, 0.98);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu .nav-link {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:active {
  background-color: var(--blue-50);
  color: var(--pro);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-ctas .btn {
  height: 3rem;
  font-size: 1rem;
}

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

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-sm {
  height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--blue-600);
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-hero {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md), 0 0 30px hsl(217, 91%, 60%, 0.3);
}

.btn-hero:hover {
  box-shadow: var(--shadow-lg), 0 0 40px hsl(217, 91%, 60%, 0.4);
  filter: brightness(1.1);
}

/* Botões dos Planos */
.btn-starter {
  background-color: var(--starter);
  color: white;
}

.btn-starter:hover {
  filter: brightness(1.1);
}

.btn-pro {
  background-color: var(--pro);
  color: white;
}

.btn-pro:hover {
  filter: brightness(1.1);
}

.btn-enterprise {
  background-color: var(--enterprise);
  color: white;
}

.btn-enterprise:hover {
  filter: brightness(1.1);
}

.btn-ultra {
  background-color: var(--ultra);
  color: white;
}

.btn-ultra:hover {
  filter: brightness(1.1);
}

.btn-full {
  width: 100%;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
}

.hero-blob-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: hsl(213, 94%, 68%, 0.2);
  border-radius: 50%;
  filter: blur(64px);
}

.hero-blob-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: hsl(221, 83%, 53%, 0.1);
  border-radius: 50%;
  filter: blur(64px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(var(--foreground) 1px, transparent 1px), 
                    linear-gradient(90deg, var(--foreground) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--blue-100);
  border: 1px solid var(--blue-200);
  margin-bottom: 2rem;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero-badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge-dot-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--blue-500);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot-core {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--blue-600);
}

.hero-badge-text {
  color: var(--blue-700);
  font-size: 0.875rem;
  font-weight: 500;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

/* Headline */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Benefits */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
}

.hero-benefit svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--starter);
}

.hero-benefit span {
  font-weight: 500;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-ctas .btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.hero-ctas .btn-hero:hover svg {
  transform: translateX(4px);
}

/* Stats */
.hero-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.hero-stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

/* ========================================
   How It Works Section
======================================== */
.how-it-works {
  padding: 5rem 1rem;
  background-color: var(--background);
}

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

.step-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

/* ========================================
   Why Use Section
======================================== */
.why-use {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--background) 100%);
}

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

.benefit-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateX(8px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-card p {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========================================
   Success Cases Section
======================================== */
.success-cases {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--background) 0%, var(--blue-50) 50%, var(--background) 100%);
}

.success-header {
  text-align: center;
  margin-bottom: 3rem;
}

.success-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, hsl(48, 96%, 89%) 0%, hsl(38, 92%, 85%) 100%);
  color: hsl(32, 81%, 29%);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid hsl(43, 96%, 65%);
}

.success-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.success-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

.success-subtitle strong {
  color: var(--foreground);
}

/* Cases Grid */
.success-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto;
}

/* Success Card */
.success-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: 
    "position content"
    "ads ads";
  gap: 0.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.success-card.organic::before {
  background: linear-gradient(180deg, var(--starter) 0%, hsl(142, 76%, 46%) 100%);
}

.success-card.maps::before {
  background: linear-gradient(180deg, var(--enterprise) 0%, hsl(24, 95%, 63%) 100%);
}

.success-card.both::before {
  background: linear-gradient(180deg, var(--pro) 0%, var(--ultra) 100%);
}

.success-card.maps-organic::before {
  background: linear-gradient(180deg, var(--enterprise) 0%, var(--starter) 100%);
}

.success-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

/* Position Badge */
.success-position {
  grid-area: position;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.75rem;
  border-radius: calc(var(--radius) - 4px);
  text-align: center;
}

.success-card.organic .success-position {
  background-color: var(--starter-light);
}

.success-card.maps .success-position {
  background-color: var(--enterprise-light);
}

.success-card.both .success-position {
  background: linear-gradient(135deg, var(--pro-light) 0%, var(--ultra-light) 100%);
}

.success-card.maps-organic .success-position {
  background: linear-gradient(135deg, var(--enterprise-light) 0%, var(--starter-light) 100%);
}

.position-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.success-card.organic .position-number {
  color: var(--starter);
}

.success-card.maps .position-number {
  color: var(--enterprise);
}

.success-card.both .position-number {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.success-card.maps-organic .position-number {
  color: var(--enterprise);
}

.position-type {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.success-card.organic .position-type {
  color: var(--starter);
}

.success-card.maps .position-type {
  color: var(--enterprise);
}

.success-card.both .position-type {
  color: var(--pro);
}

.success-card.maps-organic .position-type {
  color: var(--enterprise);
}

/* Success Content */
.success-content {
  grid-area: content;
  min-width: 0;
}

.success-keyword {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.success-note {
  font-size: 0.75rem;
  color: var(--starter);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.success-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--pro);
  font-weight: 500;
  word-break: break-all;
  transition: color 0.2s;
}

.success-link:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

.success-link::before {
  content: '🔗';
  font-size: 0.7rem;
}

/* Ads Info */
.success-ads-info {
  grid-area: ads;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: var(--muted);
  border-radius: calc(var(--radius) - 4px);
}

.ads-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: var(--muted-foreground);
  background-color: var(--card);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.ads-stat strong {
  color: var(--foreground);
  font-weight: 600;
}

.ads-stat.ads-value {
  background: linear-gradient(135deg, hsl(0, 84%, 95%) 0%, hsl(0, 72%, 90%) 100%);
  color: hsl(0, 72%, 40%);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
}

.ads-stat.ads-value strong {
  color: hsl(0, 72%, 35%);
  font-weight: 700;
}

/* CTA Card (último card) */
.success-card.cta-card {
  background: var(--gradient-hero);
  border-color: transparent;
  padding: 0;
  display: flex;
  grid-template-columns: unset;
  grid-template-rows: unset;
  grid-template-areas: unset;
}

.success-card.cta-card::before {
  display: none;
}

.success-card.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 40px hsl(217, 91%, 60%, 0.4);
  border-color: transparent;
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
  min-height: 180px;
}

.cta-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.cta-card-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cta-card-text {
  color: hsl(0, 0%, 100%, 0.9);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.cta-card-content .btn {
  background: white;
  color: var(--pro);
  font-weight: 600;
}

.cta-card-content .btn:hover {
  background: hsl(0, 0%, 95%);
  transform: scale(1.05);
}

/* Success Footer */
.success-footer {
  margin-top: 3rem;
  text-align: center;
}

.success-footer p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

/* ========================================
   For Who Section
======================================== */
.for-who {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 60rem;
  margin: 0 auto;
}

.audience-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.audience-card:hover {
  transform: translateY(-2px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  font-size: 1.5rem;
}

.audience-text {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ========================================
   Integrations Section
======================================== */
.integrations {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--background) 0%, var(--blue-50) 50%, var(--background) 100%);
}

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

.tech-grid.tech-grid-2cols {
  grid-template-columns: 1fr;
  max-width: 50rem;
}

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

.tech-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
}

.tech-card:hover {
  transform: translateX(8px);
  border-color: var(--pro);
  box-shadow: var(--shadow-md);
}

.tech-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tech-card p {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials {
  padding: 5rem 1rem;
  background-color: var(--background);
}

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

.testimonial-card {
  background-color: var(--card);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  font-family: 'Sora', sans-serif;
  color: var(--blue-200);
  line-height: 1;
  font-weight: 700;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
}

.testimonial-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ========================================
   Pricing Section
======================================== */
.pricing {
  padding: 5rem 1rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.pricing-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Cards Grid */
.pricing-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Card Base */
.pricing-card {
  position: relative;
  background-color: var(--card);
  border-radius: calc(var(--radius) + 8px);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--blue-200);
}

.pricing-card-inner {
  padding: 1.5rem;
}

/* Popular Card */
.pricing-card.popular {
  border-color: var(--enterprise);
  box-shadow: 0 0 30px hsl(24, 95%, 53%, 0.3);
}

.pricing-card.popular .pricing-card-inner {
  padding-top: 3.5rem;
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(24, 95%, 53%) 0%, hsl(32, 95%, 45%) 100%);
  padding: 0.5rem;
  text-align: center;
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.popular-badge svg {
  width: 1rem;
  height: 1rem;
}

/* Plan Header */
.plan-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.plan-tag svg {
  width: 1rem;
  height: 1rem;
}

.plan-tag.starter {
  background-color: var(--starter-light);
  color: var(--starter);
}

.plan-tag.pro {
  background-color: var(--pro-light);
  color: var(--pro);
}

.plan-tag.enterprise {
  background-color: var(--enterprise-light);
  color: var(--enterprise);
}

.plan-tag.ultra {
  background-color: var(--ultra-light);
  color: var(--ultra);
}

/* Price */
.plan-price {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--muted) 0%, hsl(210, 30%, 96%) 100%);
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--border);
  text-align: center;
}

.plan-price-setup {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed var(--border);
}

.plan-price-monthly {
  display: block;
  margin-top: 0.5rem;
}

.plan-price-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.plan-price-period {
  color: var(--muted-foreground);
  font-size: 1rem;
  font-weight: 500;
}

.plan-installment {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.6rem;
  background: linear-gradient(135deg, var(--ultra-light) 0%, hsl(270, 100%, 95%) 100%);
  border: 1px solid hsl(271, 91%, 85%);
  border-radius: 9999px;
  color: var(--ultra);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-installment.enterprise {
  background: linear-gradient(135deg, var(--enterprise-light) 0%, hsl(38, 100%, 92%) 100%);
  border-color: hsl(24, 95%, 75%);
  color: var(--enterprise);
}

.plan-installment.pro {
  background: linear-gradient(135deg, var(--pro-light) 0%, hsl(214, 100%, 94%) 100%);
  border-color: hsl(217, 91%, 80%);
  color: var(--pro);
}

.plan-installment.starter {
  background: linear-gradient(135deg, var(--starter-light) 0%, hsl(142, 72%, 91%) 100%);
  border-color: hsl(142, 76%, 65%);
  color: var(--starter);
}

.plan-installment.ultra {
  background: linear-gradient(135deg, var(--ultra-light) 0%, hsl(270, 100%, 95%) 100%);
  border-color: hsl(271, 91%, 80%);
  color: var(--ultra);
}

.plan-description {
  color: var(--muted-foreground);
  font-size: 0.8rem;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Popular card price styling */
.pricing-card.popular .plan-price {
  background: linear-gradient(135deg, var(--enterprise-light) 0%, hsl(38, 100%, 92%) 100%);
  border-color: hsl(24, 95%, 80%);
}

/* Features */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.plan-feature-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.plan-feature-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.plan-feature-icon.starter {
  background-color: var(--starter-light);
  color: var(--starter);
}

.plan-feature-icon.pro {
  background-color: var(--pro-light);
  color: var(--pro);
}

.plan-feature-icon.enterprise {
  background-color: var(--enterprise-light);
  color: var(--enterprise);
}

.plan-feature-icon.ultra {
  background-color: var(--ultra-light);
  color: var(--ultra);
}

.plan-feature-icon.disabled {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.plan-feature-content {
  flex: 1;
  min-width: 0;
}

.plan-feature-name {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.plan-feature-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.plan-feature-value.disabled {
  color: var(--muted-foreground);
}

/* Domain Tags */
.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.domain-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.domain-tag.gov {
  background: linear-gradient(135deg, hsl(142, 76%, 36%) 0%, hsl(142, 70%, 28%) 100%);
  color: white;
  box-shadow: 0 2px 4px hsl(142, 76%, 36%, 0.3);
}

.domain-tag.edu {
  background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(224, 76%, 48%) 100%);
  color: white;
  box-shadow: 0 2px 4px hsl(217, 91%, 60%, 0.3);
}

.domain-tag.org {
  background: linear-gradient(135deg, hsl(24, 95%, 53%) 0%, hsl(24, 90%, 45%) 100%);
  color: white;
  box-shadow: 0 2px 4px hsl(24, 95%, 53%, 0.3);
}

.domain-tag.authority {
  background: linear-gradient(135deg, hsl(271, 91%, 65%) 0%, hsl(271, 85%, 55%) 100%);
  color: white;
  box-shadow: 0 2px 4px hsl(271, 91%, 65%, 0.3);
}

/* Hero Domain Tags */
.hero-stat-domains {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-domain-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero-domain-tags .domain-tag {
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
}

/* Plan CTA */
.plan-cta {
  margin: 1.5rem 0;
}

/* Pricing Footer */
.pricing-footer {
  margin-top: 4rem;
  text-align: center;
}

.pricing-footer p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ========================================
   Comparison Section
======================================== */
.comparison {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--background) 0%, var(--blue-50) 100%);
}

.comparison-table-wrapper {
  max-width: 60rem;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-200) var(--muted);
}

.comparison-table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
  background: var(--muted);
  border-radius: 3px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background: var(--blue-200);
  border-radius: 3px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background-color: var(--muted);
  font-weight: 600;
  color: var(--foreground);
}

.comparison-table th.highlight {
  background: var(--gradient-hero);
  color: white;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--foreground);
}

.comparison-table tbody tr:hover {
  background-color: var(--blue-50);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge.good {
  background-color: var(--starter-light);
  color: var(--starter);
}

.badge.medium {
  background-color: var(--enterprise-light);
  color: var(--enterprise);
}

.badge.bad {
  background-color: hsl(0, 84%, 95%);
  color: hsl(0, 72%, 51%);
}

/* ========================================
   Guarantee Section
======================================== */
.guarantee {
  padding: 5rem 1rem;
  background-color: var(--background);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 60rem;
  margin: 0 auto;
}

.guarantee-card {
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.guarantee-card:hover {
  transform: translateY(-4px);
  border-color: var(--starter);
  box-shadow: var(--shadow-md);
}

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

.guarantee-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.guarantee-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========================================
   Final CTA Section
======================================== */
.final-cta {
  padding: 5rem 1rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, hsl(226, 71%, 35%, 0.3) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.final-cta-title .text-gradient {
  background: linear-gradient(135deg, hsl(48, 96%, 70%) 0%, hsl(38, 92%, 75%) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta-subtitle {
  color: hsl(0, 0%, 100%, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.final-cta-buttons .btn-hero {
  background: white;
  color: var(--pro);
  box-shadow: var(--shadow-lg);
}

.final-cta-buttons .btn-hero:hover {
  background: hsl(0, 0%, 95%);
  transform: translateY(-2px);
}

.final-cta-buttons .btn-outline {
  border-color: hsl(0, 0%, 100%, 0.3);
  color: white;
}

.final-cta-buttons .btn-outline:hover {
  background-color: hsl(0, 0%, 100%, 0.1);
  border-color: white;
}

/* ========================================
   Footer
======================================== */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
  padding: 4rem 0;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .logo-icon {
  background-color: var(--primary);
}

.footer-brand-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-brand-text span {
  color: var(--primary);
}

.footer-tagline {
  color: hsl(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsl(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem 0;
  border-top: 1px solid hsl(0, 0%, 100%, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: hsl(0, 0%, 100%, 0.5);
}

/* ========================================
   Responsive - Mobile First
======================================== */

/* Mobile Base Improvements (max-width: 639px) */
@media (max-width: 639px) {
  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
  
  .hero-content {
    padding: 2rem 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .hero-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-benefits {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .hero-benefit {
    justify-content: center;
    font-size: 0.875rem;
  }
  
  .hero-ctas {
    gap: 0.75rem;
  }
  
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn-xl {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 1rem;
  }
  
  .hero-stats {
    margin-top: 3rem;
    gap: 1.25rem;
  }
  
  .hero-stat-value {
    font-size: 1.5rem;
  }
  
  .hero-stat-label {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  /* Section Headers Mobile */
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  /* How It Works Mobile */
  .how-it-works {
    padding: 3rem 0.75rem;
  }
  
  .step-card {
    padding: 1.5rem 1rem;
  }
  
  .step-icon {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.8rem;
  }
  
  /* Why Use Mobile */
  .why-use {
    padding: 3rem 0.75rem;
  }
  
  .benefit-card {
    padding: 1rem;
  }
  
  .benefit-card p {
    font-size: 0.875rem;
  }
  
  /* Success Cases Mobile */
  .success-cases {
    padding: 3rem 0.75rem;
  }
  
  .success-header {
    margin-bottom: 2rem;
  }
  
  .success-badge {
    font-size: 0.75rem;
  }
  
  .success-title {
    font-size: 1.75rem;
  }
  
  .success-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .success-card {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .success-position {
    min-width: 3.5rem;
    padding: 0.5rem;
  }
  
  .position-number {
    font-size: 1.25rem;
  }
  
  .position-type {
    font-size: 0.55rem;
  }
  
  .success-keyword {
    font-size: 0.85rem;
  }
  
  .success-link {
    font-size: 0.7rem;
  }
  
  .success-ads-info {
    padding: 0.5rem;
    gap: 0.375rem;
  }
  
  .ads-stat {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }
  
  .ads-stat.ads-value {
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
  }
  
  /* For Who Mobile */
  .for-who {
    padding: 3rem 0.75rem;
  }
  
  .audience-card {
    padding: 0.75rem 1rem;
  }
  
  .audience-icon {
    font-size: 1.25rem;
  }
  
  .audience-text {
    font-size: 0.8rem;
  }
  
  /* Integrations Mobile */
  .integrations {
    padding: 3rem 0.75rem;
  }
  
  .tech-card {
    padding: 1rem;
  }
  
  .tech-icon {
    font-size: 1.25rem;
  }
  
  .tech-card p {
    font-size: 0.85rem;
  }
  
  /* Testimonials Mobile */
  .testimonials {
    padding: 3rem 0.75rem;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-quote {
    font-size: 3rem;
    top: 0.5rem;
    left: 1rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
    padding-top: 1rem;
  }
  
  .testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .testimonial-name {
    font-size: 0.85rem;
  }
  
  /* Pricing Mobile */
  .pricing {
    padding: 3rem 0.75rem;
  }
  
  .pricing-header {
    margin-bottom: 2rem;
  }
  
  .pricing-badge {
    font-size: 0.75rem;
  }
  
  .pricing-title {
    font-size: 1.75rem;
  }
  
  .pricing-subtitle {
    font-size: 0.9rem;
  }
  
  .pricing-card {
    border-radius: calc(var(--radius) + 4px);
  }
  
  .pricing-card-inner {
    padding: 1.25rem;
  }
  
  .plan-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  
  .plan-price {
    padding: 0.75rem;
  }
  
  .plan-price-setup {
    font-size: 0.8rem;
  }
  
  .plan-price-value {
    font-size: 1.4rem;
  }
  
  .plan-price-period {
    font-size: 0.85rem;
  }
  
  .plan-installment {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
  }
  
  .plan-description {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .plan-feature-name {
    font-size: 0.8rem;
  }
  
  .plan-feature-value {
    font-size: 0.8rem;
  }
  
  .popular-badge {
    font-size: 0.75rem;
    padding: 0.375rem;
  }
  
  .pricing-footer {
    margin-top: 2rem;
  }
  
  .pricing-footer p {
    font-size: 0.875rem;
  }
  
  /* Comparison Mobile */
  .comparison {
    padding: 3rem 0.75rem;
  }
  
  .comparison-table-wrapper {
    border-radius: calc(var(--radius) - 2px);
    overflow-x: hidden;
  }
  
  .comparison-table {
    font-size: 0.65rem;
    table-layout: fixed;
    width: 100%;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem 0.35rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 30%;
  }
  
  .comparison-table th:not(:first-child),
  .comparison-table td:not(:first-child) {
    width: 23.33%;
    text-align: center;
  }
  
  .badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.35rem;
    white-space: nowrap;
  }
  
  /* Guarantee Mobile */
  .guarantee {
    padding: 3rem 0.75rem;
  }
  
  .guarantee-card {
    padding: 1.25rem;
  }
  
  .guarantee-icon {
    font-size: 1.75rem;
  }
  
  .guarantee-card h3 {
    font-size: 0.9rem;
  }
  
  .guarantee-card p {
    font-size: 0.8rem;
  }
  
  /* Final CTA Mobile */
  .final-cta {
    padding: 3rem 0.75rem;
  }
  
  .final-cta-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .final-cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .final-cta-buttons {
    gap: 0.75rem;
  }
  
  .final-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 3rem 0.75rem;
  }
  
  .footer-grid {
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-tagline {
    font-size: 0.8rem;
  }
  
  .footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0.75rem 0;
    font-size: 0.75rem;
  }
  
  /* CTA Card Mobile */
  .cta-card-content {
    padding: 1.25rem;
    min-height: 150px;
  }
  
  .cta-card-icon {
    font-size: 1.75rem;
  }
  
  .cta-card-title {
    font-size: 1rem;
  }
  
  .cta-card-text {
    font-size: 0.75rem;
  }
}

/* Small Mobile (max-width: 374px) */
@media (max-width: 374px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-stat-value {
    font-size: 1.25rem;
  }
  
  .success-position {
    min-width: 3rem;
  }
  
  .position-number {
    font-size: 1rem;
  }
  
  .plan-price-setup {
    font-size: 0.7rem;
  }
  
  .plan-price-value {
    font-size: 1.2rem;
  }
  
  .plan-price-period {
    font-size: 0.75rem;
  }
  
  .comparison-table {
    font-size: 0.55rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.4rem 0.25rem;
  }
  
  .badge {
    font-size: 0.5rem;
    padding: 0.1rem 0.25rem;
  }
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .header-ctas {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-benefits {
    gap: 1.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-stat-value {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .guarantee-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .final-cta-title {
    font-size: 2.5rem;
  }
  
  .success-title {
    font-size: 3rem;
  }
  
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-title {
    font-size: 3rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .success-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .guarantee-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .final-cta-title {
    font-size: 3rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-card.popular {
    transform: scale(1.05);
  }
  
  .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
  }
}

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

/* ========================================
   Animations
======================================== */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

