/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(280, 20%, 97%);
  --foreground: hsl(280, 25%, 12%);
  --card: hsl(280, 15%, 100%);
  --card-foreground: hsl(280, 25%, 12%);
  --primary: hsl(280, 60%, 60%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: hsl(280, 60%, 68%);
  --secondary: hsl(320, 20%, 92%);
  --muted: hsl(280, 15%, 92%);
  --muted-foreground: hsl(280, 10%, 45%);
  --accent: hsl(330, 55%, 65%);
  --border: hsl(280, 15%, 85%);
  --ring: hsl(280, 60%, 60%);
  --radius: 0.75rem;
  --cream: hsl(290, 15%, 94%);
  --oak: hsl(280, 15%, 85%);
  --oak-light: hsl(290, 12%, 78%);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(280, 20%, 97%) 0%, hsl(290, 18%, 94%) 50%, hsl(280, 20%, 97%) 100%);
  --gradient-card: linear-gradient(180deg, hsl(280, 15%, 100%) 0%, hsl(280, 15%, 97%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(280, 60%, 55%) 0%, hsl(320, 50%, 60%) 100%);
  --gradient-glow: radial-gradient(ellipse at center, hsl(280, 60%, 60% / 0.15) 0%, transparent 70%);

  /* Shadows */
  --shadow-sm: 0 2px 8px -2px hsl(280, 20%, 50% / 0.1);
  --shadow-md: 0 8px 24px -8px hsl(280, 20%, 50% / 0.15);
  --shadow-lg: 0 16px 48px -12px hsl(280, 20%, 50% / 0.2);
  --shadow-glow: 0 0 15px hsl(280, 70%, 60% / 0.5), 0 0 40px hsl(280, 70%, 60% / 0.3), 0 0 80px hsl(280, 60%, 60% / 0.15);
  --shadow-coral: 0 8px 32px -8px hsl(280, 60%, 60% / 0.3);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  background: var(--background);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--foreground);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }
.relative { position: relative; }
.bg-card { background: var(--card); }
.text-primary { color: var(--primary); }

.text-balance { text-wrap: balance; }

/* ===================== GLOW CLASSES (from Lovable) ===================== */
.gradient-hero { background: var(--gradient-hero); }
.gradient-cta { background: var(--gradient-cta); }
.gradient-glow { background: var(--gradient-glow); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.glow-text {
  position: relative;
  display: inline-block;
}

.glow-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: hsl(280, 70%, 60%);
  filter: blur(18px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% { filter: blur(18px); opacity: 0.6; }
  100% { filter: blur(25px); opacity: 0.85; }
}

.glow-border {
  box-shadow:
    0 0 10px hsl(280, 60%, 60% / 0.3),
    0 0 25px hsl(280, 60%, 60% / 0.2),
    0 0 50px hsl(280, 60%, 60% / 0.1),
    inset 0 0 15px hsl(280, 60%, 60% / 0.1);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; }

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 6px 20px hsl(280, 60%, 60% / 0.4);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: hsl(280, 60%, 60% / 0.05);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(280, 20%, 97% / 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 769px) {
  .nav-container { height: 80px; }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--foreground);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a.btn-primary { color: var(--primary-foreground); }

.nav-social { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
}

@media (min-width: 769px) {
  .hero { padding: 140px 0 110px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 769px) {
  .hero-content { gap: 36px; }
}

.hero-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 28px;
  background: hsl(270, 40%, 88%);
  color: hsl(270, 50%, 55%);
  border: 1.5px solid hsl(270, 45%, 78%);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: hsl(280, 60%, 60% / 0.2);
  color: var(--primary);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.stat span {
  font-size: 14px;
  color: var(--muted-foreground);
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* Carousel Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 24px;
  overflow: visible;
}

.carousel-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, hsl(280, 70%, 55% / 0.5) 0%, hsl(280, 60%, 60% / 0.25) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
  animation: pulseCarousel 3s ease-in-out infinite alternate;
}

@keyframes pulseCarousel {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0.9; transform: scale(1.08); }
}

.carousel-track {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid hsl(280, 60%, 60% / 0.25);
  box-shadow:
    0 0 40px hsl(280, 90%, 60% / 0.8),
    0 0 80px hsl(280, 80%, 55% / 0.6),
    0 0 120px hsl(280, 70%, 55% / 0.4),
    0 0 180px hsl(280, 60%, 55% / 0.25);
  background: hsl(280, 15%, 10%);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: hsl(280, 15%, 10%);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  background: hsl(280, 15%, 80%);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
  width: 32px;
  background: var(--primary);
  box-shadow: 0 0 12px hsl(280, 60%, 60% / 0.5);
}

.carousel-dot:hover {
  background: var(--primary-glow);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) {
  .section { padding: 120px 0; }
}

.section-glow {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.section-gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--background) 100%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

@media (min-width: 769px) {
  .section-header { margin-bottom: 72px; }
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
}

.section-header p {
  font-size: 18px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===================== STEPS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 1024px) {
  .steps-grid { gap: 32px; }
}

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

.step-card {
  position: relative;
  padding: 28px 24px;
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  border-color: hsl(280, 60%, 60% / 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.step-number-badge {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 0 20px hsl(280, 60%, 60% / 0.4);
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  background: hsl(280, 15%, 85% / 0.4);
  border: 1px solid hsl(290, 12%, 78% / 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.step-card:hover .step-icon-wrap {
  border-color: hsl(280, 60%, 60% / 0.5);
  transform: scale(1.1);
}

.step-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}

.step-card p {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ===================== PRICING ===================== */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 24px;
  padding: 0 32px 32px;
  box-shadow:
    0 0 40px hsl(280, 90%, 60% / 0.7),
    0 0 80px hsl(280, 80%, 55% / 0.5),
    0 0 120px hsl(280, 70%, 55% / 0.35);
  border: 1px solid hsl(280, 50%, 70% / 0.4);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4px 16px;
  border-radius: 0 0 0 16px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-title {
  text-align: center;
  padding: 32px 0 24px;
}

.pricing-title h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid hsl(280, 15%, 85% / 0.3);
  font-size: 15px;
  color: var(--foreground);
}

.pricing-features li:last-child { border-bottom: none; }

.check-icon {
  width: 20px;
  height: 20px;
  background: hsl(280, 60%, 60% / 0.2);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.pricing-promo {
  text-align: center;
  font-size: 14px;
  color: var(--muted-foreground);
  font-style: italic;
  margin-top: 16px;
}

/* ===================== BENEFITS ===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.benefit-card {
  padding: 28px;
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
  border-color: hsl(280, 60%, 60% / 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: hsl(280, 15%, 85% / 0.4);
  border: 1px solid hsl(290, 12%, 78% / 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
  border-color: hsl(280, 60%, 60% / 0.5);
  transform: scale(1.1);
}

.benefit-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.benefit-card:hover h3 { color: var(--primary); }

.benefit-card p {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ===================== NO COMPETITORS ===================== */
.no-comp-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  background: var(--card);
  border: 1px solid hsl(280, 50%, 70% / 0.4);
  border-radius: 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  overflow: hidden;
  box-shadow:
    0 0 40px hsl(280, 90%, 60% / 0.7),
    0 0 80px hsl(280, 80%, 55% / 0.5),
    0 0 120px hsl(280, 70%, 55% / 0.35);
}

@media (min-width: 769px) {
  .no-comp-card { padding: 48px; }
}

.no-comp-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, hsl(280, 70%, 55% / 0.5) 0%, hsl(280, 60%, 60% / 0.2) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(30px);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite alternate;
}

.no-comp-card > *:not(.no-comp-glow) {
  position: relative;
  z-index: 1;
}

.no-comp-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.no-comp-icon-inner {
  width: 64px;
  height: 64px;
  background: hsl(280, 60%, 60% / 0.2);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.no-comp-card h2 {
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 24px;
}

.no-comp-card > p {
  font-size: 16px;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.no-comp-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: hsl(280, 20%, 97%);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
}

.tag svg { color: var(--primary); flex-shrink: 0; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: hsl(45, 93%, 47%);
}

.testimonial-stars svg {
  filter: drop-shadow(0 0 3px rgba(245, 158, 11, 0.4));
}

.testimonial-text {
  font-size: 15px;
  color: var(--foreground);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

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

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

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

/* ===================== INDUSTRIES ===================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

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

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.industry-item:hover {
  border-color: hsl(280, 60%, 60% / 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: hsl(280, 60%, 60% / 0.2);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.5s ease;
}

.industry-item:hover .industry-icon {
  transform: scale(1.1);
}

.industry-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.industry-item:hover p { color: var(--primary); }

/* ===================== AREAS ===================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

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

.area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.area-card:hover {
  border-color: hsl(280, 60%, 60% / 0.5);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.area-icon-wrap {
  width: 40px;
  height: 40px;
  background: hsl(280, 60%, 60% / 0.2);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.area-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}

.area-card:hover p { color: var(--primary); }

.areas-expand {
  text-align: center;
  margin-top: 40px;
  color: var(--muted-foreground);
  font-size: 15px;
}

.areas-expand a { text-decoration: underline; }
.areas-expand a:hover { text-decoration: none; }

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid hsl(280, 15%, 85% / 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: hsl(280, 60%, 60% / 0.3);
}

.faq-item[data-state="open"] {
  border-color: hsl(280, 60%, 60% / 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  transition: color 0.2s;
}

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

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--muted-foreground);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===================== ABOUT ===================== */
.about-hero {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-headshot {
  flex-shrink: 0;
}

.about-headshot img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid hsl(280, 60%, 75%);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.about-hero-text {
  text-align: left;
}

.about-hero-text h2 {
  text-align: left;
}

.about-hero-text p {
  text-align: left;
}

@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .about-hero-text,
  .about-hero-text h2,
  .about-hero-text p {
    text-align: center;
  }
  .about-headshot img {
    width: 160px;
    height: 160px;
  }
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-card {
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
}

.about-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.about-values {
  max-width: 800px;
  margin: 0 auto 48px;
  background: var(--background);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
}

.about-values h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.value-icon {
  width: 48px;
  height: 48px;
  background: hsl(280, 60%, 60% / 0.2);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 8px;
}

.value-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--muted-foreground);
}

.about-cta {
  text-align: center;
  background: linear-gradient(135deg, hsl(280, 60%, 60% / 0.1), hsl(280, 60%, 60% / 0.2));
  border: 1px solid hsl(280, 60%, 60% / 0.2);
  border-radius: 16px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-cta p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===================== CONTACT ===================== */
.contact-info {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.contact-btn {
  font-size: 18px;
  padding: 16px 40px;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: hsl(280, 60%, 60% / 0.2);
  border: 1px solid hsl(280, 60%, 60% / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-item p {
  font-size: 14px;
  color: var(--muted-foreground);
}

.contact-social:hover p { color: var(--primary); }

/* ===================== FINAL CTA ===================== */
.section-final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(280, 15%, 85%) 0%, hsl(280, 60%, 60% / 0.2) 50%, hsl(280, 15%, 85%) 100%);
}

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

.final-cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 20px;
}

.final-cta-content p {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand span {
  font-weight: 700;
  font-size: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 4px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li, .footer-col ul a {
  font-size: 14px;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted-foreground);
}

/* ===================== ANIMATIONS ===================== */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in.scale-in {
  transform: translateY(24px) scale(0.96);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-in.delay-1 { transition-delay: 0.1s; }
.animate-in.delay-2 { transition-delay: 0.2s; }
.animate-in.delay-3 { transition-delay: 0.3s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge { align-self: center; }
  .hero-subtitle { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 40px; height: 1px; }

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

  .contact-details { flex-direction: column; align-items: center; }
}
