/* ===== DESIGN SYSTEM ADVERSE PERFORMANCE - LEAD MAGNET ===== */

/* CSS Variables Base */
:root {
  /* Cores OKLCH */
  --background: oklch(0.05 0.02 264);
  --foreground: oklch(0.98 0.01 264);
  --primary: oklch(0.7 0.2 270);
  --accent: oklch(0.7 0.2 210);
  --card: oklch(0.08 0.02 264);
  --secondary: oklch(0.12 0.02 264);
  --muted: oklch(0.12 0.02 264);
  --muted-foreground: oklch(0.8 0.01 264);
  --border: oklch(0.15 0.02 264);

  /* Cores de estado */
  --success: oklch(0.7 0.2 140);
  --error: oklch(0.7 0.2 20);
  --warning: oklch(0.7 0.2 60);

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-text: linear-gradient(135deg, var(--accent), var(--primary));
  --gradient-success: linear-gradient(135deg, #10b981, #059669);

  /* Raios */
  --radius: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Espaçamentos */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Sombras */
  --shadow-sm: 0 1px 2px oklch(0.05 0.02 264 / 0.1);
  --shadow-md: 0 4px 6px oklch(0.05 0.02 264 / 0.1);
  --shadow-lg: 0 10px 15px oklch(0.05 0.02 264 / 0.1);
  --shadow-xl: 0 20px 25px oklch(0.05 0.02 264 / 0.25);
  --shadow-glow: 0 0 20px oklch(0.7 0.2 270 / 0.3);
  --shadow-glow-strong: 0 0 30px oklch(0.7 0.2 270 / 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar Customizado */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: oklch(0.7 0.2 270 / 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: oklch(0.7 0.2 270 / 0.5);
}

/* ===== TIPOGRAFIA ===== */

.text-display {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 200;
}

.text-h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.text-h2 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 400;
}

.text-h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.text-body {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0;
  font-weight: 300;
}

.text-caption {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  font-weight: 500;
}

/* ===== EFEITOS VISUAIS ===== */

.glass-effect {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.glass-effect:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

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

/* ===== FLOATING ORBS ===== */

.floating-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  background: var(--gradient-primary);
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 30vw;
  height: 30vw;
  max-width: 300px;
  max-height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 20vw;
  height: 20vw;
  max-width: 200px;
  max-height: 200px;
  top: 60%;
  right: 5%;
  animation-delay: 2s;
}

.orb-3 {
  width: 25vw;
  height: 25vw;
  max-width: 250px;
  max-height: 250px;
  bottom: 20%;
  left: 10%;
  animation-delay: 4s;
}

/* ===== ANIMAÇÕES ===== */

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: var(--shadow-glow-strong); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

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

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

/* ===== COMPONENTES ===== */

/* Section Badge */
.section-badge {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

/* Botões */
.btn-primary {
  background: var(--gradient-success);
  color: var(--foreground);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.125rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--foreground);
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

/* Cards */
.card-feature {
  background: oklch(0.7 0.2 270 / 0.05);
  border: 1px solid oklch(0.7 0.2 270 / 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.card-feature:hover {
  background: oklch(0.7 0.2 270 / 0.08);
  border-color: oklch(0.7 0.2 270 / 0.2);
}

/* ===== LAYOUT ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section-padding {
  padding: var(--spacing-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-subtitle {
  margin-top: var(--spacing-md);
  color: var(--muted-foreground);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== NAVEGAÇÃO ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-cta {
  background: var(--gradient-success);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ===== HERO SECTION ===== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 120px var(--spacing-md) var(--spacing-2xl);
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-title {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: var(--spacing-lg);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.hero-mockup {
  max-width: 600px;
  margin: var(--spacing-xl) auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Opção B: Glow + Fade (default) */
.hero-mockup--glow {
  box-shadow:
    0 0 60px 10px oklch(0.5 0.15 270 / 0.3),
    0 0 100px 20px oklch(0.5 0.15 210 / 0.2);
}

.hero-mockup--glow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    oklch(0.05 0.02 264 / 0.8) 100%
  );
  pointer-events: none;
}

/* Opção A: Full image + fade nas bordas para fundir com LP */
.hero-mockup--full {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 85%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 8%,
    black 85%,
    transparent 100%
  );
}

/* Opção C: Fade nas bordas */
.hero-mockup--fade {
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 85%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 85%);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.social-proof-item i {
  color: var(--success);
  width: 18px;
  height: 18px;
}

/* ===== LOGO CAROUSEL ===== */

.logo-carousel {
  padding: var(--spacing-2xl) 0;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.logo-carousel-title {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-lg);
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.carousel-logo {
  height: 40px;
  width: auto;
  margin: 0 2rem;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.carousel-logo:hover {
  opacity: 1;
}

/* ===== BENEFITS SECTION ===== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-card {
  text-align: left;
  padding: var(--spacing-xl);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.benefit-icon i {
  width: 24px;
  height: 24px;
  color: white;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== STORYTELLING SECTION ===== */

.storytelling {
  position: relative;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-quote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: var(--spacing-xl);
  position: relative;
  padding-left: var(--spacing-xl);
  border-left: 4px solid var(--primary);
}

.story-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

/* ===== TRANSFORMATION SECTION ===== */

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.transformation-column {
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.transformation-before {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.transformation-after {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.transformation-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.transformation-header i {
  width: 24px;
  height: 24px;
}

.transformation-before .transformation-header i {
  color: #ef4444;
}

.transformation-after .transformation-header i {
  color: #10b981;
}

.transformation-list {
  list-style: none;
}

.transformation-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.transformation-list li:last-child {
  border-bottom: none;
}

.transformation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.transformation-arrow i {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

/* ===== FOR WHO SECTION ===== */

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-2xl);
}

.for-who-card {
  padding: var(--spacing-lg);
  text-align: center;
}

.for-who-card.positive {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.for-who-card.negative {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.for-who-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-who-card.positive .for-who-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.for-who-card.negative .for-who-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.for-who-icon i {
  width: 24px;
  height: 24px;
}

.not-for-you {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-lg);
}

.not-for-you h3 {
  color: #ef4444;
  margin-bottom: var(--spacing-md);
}

.not-for-you ul {
  list-style: none;
}

.not-for-you li {
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--muted-foreground);
}

.not-for-you li i {
  color: #ef4444;
  width: 16px;
  height: 16px;
}

/* ===== CASE STUDY SECTION ===== */

.case-study {
  background: linear-gradient(135deg, oklch(0.7 0.2 270 / 0.1) 0%, oklch(0.7 0.2 210 / 0.1) 100%);
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.case-study-logo {
  width: 80px;
  height: auto;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.metric-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
}

.metric-label {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--spacing-md);
}

.testimonial-stars i {
  color: #fbbf24;
  width: 16px;
  height: 16px;
  fill: #fbbf24;
}

/* ===== AUTHOR SECTION ===== */

.author-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.author-image {
  flex-shrink: 0;
}

.author-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
}

.author-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-sm);
}

.author-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: var(--spacing-md);
}

.author-bio {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== FAQ SECTION ===== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg) 0;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-answer-content {
  padding-bottom: var(--spacing-lg);
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== CTA FINAL ===== */

.cta-final {
  background: linear-gradient(135deg, oklch(0.7 0.2 270 / 0.15) 0%, oklch(0.7 0.2 210 / 0.15) 100%);
  text-align: center;
  padding: var(--spacing-3xl);
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.cta-final p {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */

.footer {
  text-align: center;
  padding: var(--spacing-xl);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ===== MODAL ===== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: var(--spacing-md);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  max-width: 420px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: none;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: var(--spacing-xs);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-close i {
  width: 24px;
  height: 24px;
}

.modal-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.modal-header h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

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

/* ===== FORM STYLES ===== */

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.7 0.2 270 / 0.1);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--background);
  color: var(--foreground);
}

.form-input.error,
.form-select.error {
  border-color: var(--error);
}

.field-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: var(--spacing-xs);
  display: block;
}

.form-submit {
  width: 100%;
  margin-top: var(--spacing-sm);
}

/* ===== THANK YOU PAGE ===== */

.thank-you-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) var(--spacing-md);
}

.thank-you-content {
  max-width: 700px;
  width: 100%;
}

.thank-you-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
}

.success-icon i {
  width: 40px;
  height: 40px;
  color: white;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: var(--spacing-sm);
}

.step-content p {
  color: var(--muted-foreground);
  margin-bottom: var(--spacing-md);
}

.step-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* ===== RESPONSIVE ===== */

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-padding {
    padding: var(--spacing-2xl) 0;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .transformation-arrow {
    display: none;
  }

  .author-section {
    flex-direction: column;
    text-align: center;
  }

  .author-image img {
    width: 150px;
    height: 150px;
  }

  .case-study-header {
    flex-direction: column;
    text-align: center;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .modal-content {
    padding: var(--spacing-md);
    max-height: calc(100vh - 1rem);
    border-radius: var(--radius-lg);
  }

  .modal-header {
    margin-bottom: var(--spacing-sm);
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .btn-primary {
    width: 100%;
    padding: 1rem;
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .case-study {
    padding: var(--spacing-lg);
  }

  .metric-value {
    font-size: 2rem;
  }
}
