:root {
  --purple: #581c7b;
  --purple-light: #7a3ba0;
  --purple-dark: #3d1256;
  --green: #009e33;
  --green-light: #00c940;
  --green-glow: rgba(0, 158, 51, 0.3);
  --dark-bg: #0a0a0f;
  --dark-card: #111118;
  --dark-surface: #1a1a24;
  --dark-border: #2a2a38;
  --text-primary: #f0f0f5;
  --text-secondary: #9595a8;
  --text-muted: #6a6a7e;
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1028 40%, #0a0a0f 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITY ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: 'Space Mono', monospace; }

/* ─── ANIMATED GRID BACKGROUND ─── */
.grid-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(88, 28, 123, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 28, 123, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--green));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--green); }
/* Replace .logo-icon with your <img> logo — recommended height: 36px navbar, 22px footer */
.nav-cta {
  background: var(--green);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}
.nav-cta:hover {
  background: var(--green-light);
  box-shadow: 0 0 24px var(--green-glow);
  transform: translateY(-1px);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88, 28, 123, 0.15), transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 158, 51, 0.08), transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 10s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88, 28, 123, 0.2);
  border: 1px solid rgba(88, 28, 123, 0.4);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--purple-light);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--green-light);
  box-shadow: 0 4px 32px var(--green-glow);
  transform: translateY(-2px);
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--purple-light);
  color: var(--text-primary);
  background: rgba(88, 28, 123, 0.1);
}
.hero-proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-stat-num .green { color: var(--green); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
}

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

/* ─── LOGOS BAR ─── */
.logos-bar {
  position: relative;
  padding: 48px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.logos-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.logo-item {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.logo-item:hover { opacity: 0.8; }

/* ─── PAIN SECTION ─── */
.pain-section {
  position: relative;
  padding: 100px 0;
}
.pain-section .container { max-width: 900px; }
.section-overline {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--green);
  margin-bottom: 16px;
}
.pain-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.pain-section h2 .dim { color: var(--text-muted); }
.pain-description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 700px;
}

.cost-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.cost-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cost-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff4444, #ff6b6b);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cost-card:hover::before { opacity: 1; }
.cost-card:hover {
  border-color: rgba(255, 68, 68, 0.3);
  transform: translateY(-4px);
}
.cost-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.cost-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.cost-card .amount {
  font-family: 'Space Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 6px;
}
.cost-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── SOLUTION SECTION ─── */
.solution-section {
  padding: 100px 0;
  position: relative;
}
.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--green));
}
.solution-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.solution-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.solution-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-grid {
  display: flex;
  flex-direction: column;
}
.feature-tag {
  display: inline-block;
  background: rgba(0, 158, 51, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* ─── PRODUCT SHOWCASE (screenshot modules) ─── */
.showcase-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.showcase-module:last-child { margin-bottom: 0; }
.showcase-module.reverse { direction: rtl; }
.showcase-module.reverse > * { direction: ltr; }
.showcase-text { }
.showcase-text .feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(88, 28, 123, 0.15);
  border: 1px solid rgba(88, 28, 123, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.showcase-text h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.showcase-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.showcase-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}
.showcase-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.showcase-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(88, 28, 123, 0.1);
  transition: all 0.5s ease;
}
.showcase-img-wrapper:hover {
  border-color: rgba(88, 28, 123, 0.4);
  box-shadow: 0 20px 80px rgba(88, 28, 123, 0.15), 0 0 0 1px rgba(88, 28, 123, 0.3);
  transform: translateY(-6px);
}
.showcase-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  z-index: 2;
  pointer-events: none;
}
.showcase-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Featured showcase (full width - AI predictive) */
.showcase-featured {
  background: linear-gradient(135deg, var(--dark-card), var(--purple-dark));
  border: 1px solid rgba(88, 28, 123, 0.35);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.showcase-featured .feature-tag { margin-bottom: 12px; }
.showcase-featured h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.showcase-featured p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.showcase-featured .showcase-img-wrapper {
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

/* AI bar section */
.ai-bar-section {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 20px;
}
.ai-bar-section .showcase-img-wrapper {
  max-width: 900px;
  margin: 20px auto 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.ai-bar-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ai-bar-section p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .showcase-module,
  .showcase-module.reverse,
  .showcase-featured {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .showcase-featured { padding: 32px 24px; }
}

/* ─── RESULTS / SOCIAL PROOF ─── */
.results-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(88, 28, 123, 0.04), transparent);
}
.results-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}
.results-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.results-header p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.result-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
}
.result-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 158, 51, 0.1);
}
.result-number {
  font-family: 'Space Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.result-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 64px;
  color: var(--purple);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--purple), var(--green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── HOW IT WORKS ─── */
.process-section {
  padding: 100px 0;
}
.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.process-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.process-header p {
  font-size: 17px;
  color: var(--text-secondary);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--dark-surface);
  border: 2px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.step:hover .step-num {
  border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
  transform: scale(1.1);
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── LEAD CAPTURE / CTA SECTION ─── */
.cta-section {
  padding: 100px 0 120px;
  position: relative;
}
.cta-wrapper {
  background: linear-gradient(135deg, var(--purple-dark), #1a1028, var(--dark-card));
  border: 1px solid rgba(88, 28, 123, 0.35);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.cta-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.cta-content h2 .highlight {
  background: linear-gradient(90deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}
.cta-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}
.cta-benefits li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.cta-form-wrapper {
  background: rgba(0, 0, 0, 0.3);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236a6a7e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-input:focus, .form-select:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(88, 28, 123, 0.15);
}
.form-input::placeholder { color: var(--text-muted); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--green-light);
  box-shadow: 0 4px 24px var(--green-glow);
  transform: translateY(-2px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.form-disclaimer svg {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 80px 0 100px;
}
.faq-section .container { max-width: 720px; }
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
}
.faq-item {
  border-bottom: 1px solid var(--dark-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  font-size: 22px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--dark-border);
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-text {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--text-primary); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .feature-card.featured { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-wrapper { grid-template-columns: 1fr; }
  .cta-content { padding: 40px 32px 24px; }
  .cta-form-wrapper { padding: 32px; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 600px) {
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-divider { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { width: 100%; justify-content: center; }
  .logos-track { gap: 30px; }
  .logo-item { font-size: 15px; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success svg { margin-bottom: 16px; }
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green);
}
.form-success p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
#lead-form.hidden { display: none; }

/* ─── LEGAL PAGES ─── */
.legal-hero {
  padding: 140px 0 56px;
  text-align: center;
  position: relative;
}
.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  border-radius: 2px;
}
.legal-hero-overline {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--green);
  margin-bottom: 14px;
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.legal-hero-meta {
  font-size: 13px;
  color: var(--text-muted);
}
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}
.legal-section {
  margin-bottom: 44px;
}
.legal-section h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-section h2 .legal-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--green);
  font-weight: 700;
}
.legal-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-section ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.legal-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 12px;
}
.legal-highlight {
  background: rgba(88, 28, 123, 0.12);
  border: 1px solid rgba(88, 28, 123, 0.25);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 14px;
}
.legal-highlight p {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.legal-highlight strong {
  color: var(--text-primary);
}
.legal-contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 22px 26px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-contact-card span {
  font-size: 13px;
  color: var(--text-secondary);
}
.legal-contact-card strong {
  color: var(--text-primary);
  font-size: 14px;
}

/* ─── CERT STRIP ─── */
.cert-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--dark-border);
}
.cert-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cert-divider-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  padding-right: 4px;
}
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 158, 51, 0.07);
  border: 1px solid rgba(0, 158, 51, 0.2);
  border-radius: 10px;
  padding: 10px 18px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.cert-badge:hover {
  background: rgba(0, 158, 51, 0.12);
  border-color: rgba(0, 158, 51, 0.4);
}
.cert-badge-icon {
  font-size: 20px;
  line-height: 1;
}
.cert-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cert-badge-name {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.cert-badge-desc {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* ─── NORM BADGE (módulo agua) ─── */
.norm-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: rgba(0, 158, 51, 0.08);
  border: 1px solid rgba(0, 158, 51, 0.25);
  border-radius: 7px;
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.4px;
  line-height: 1.4;
}
.norm-badge-check {
  font-style: normal;
  font-size: 13px;
  flex-shrink: 0;
}

/* ─── LOGOS BAR — IMÁGENES ─── */
.logo-img {
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}
.logo-img:hover { opacity: 0.9; }

/* ─── NAVBAR — TAGLINE INSTRUTRÓNICA ─── */
.logo-tagline {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}
.logo-tagline img {
  height: 13px;
  width: auto;
  opacity: 0.65;
}

/* ─── FOOTER — INSTRUTRÓNICA ─── */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.footer-brand-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}
.footer-brand img {
  height: 16px;
  width: auto;
  opacity: 0.65;
}

/* ─── IMÁGENES RETRATO (módulos) ─── */
.showcase-img-wrapper.portrait img {
  width: auto;
  max-width: 100%;
  max-height: 500px;
  display: block;
  margin: 0 auto;
}
.showcase-featured .showcase-img-wrapper.portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.ai-bar-section .showcase-img-wrapper.portrait {
  max-width: 380px;
}
