/* ═══════════════════════════════════════════
   LeadAct — style.css
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  /* Surface — deep dark, hue-tinted toward brand */
  --bg-primary: oklch(14% 0.012 230);
  --bg-secondary: oklch(18% 0.01 230);
  --bg-card: oklch(20% 0.012 230);
  --bg-elevated: oklch(24% 0.01 230);

  /* Accent — the brand cyan, used with conviction */
  --accent: oklch(72% 0.14 220);
  --accent-hover: oklch(66% 0.15 220);
  --accent-deep: oklch(58% 0.16 220);
  --accent-subtle: oklch(20% 0.03 220);

  /* Text — light on dark */
  --text-primary: oklch(93% 0.005 220);
  --text-secondary: oklch(68% 0.008 220);
  --text-muted: oklch(50% 0.008 230);

  /* Utility */
  --border: oklch(26% 0.008 230);
  --whatsapp: oklch(72% 0.18 155);
  --warning: oklch(78% 0.15 80);
  --radius: 8px;
  --radius-lg: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  background: oklch(14% 0.012 230 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  color: oklch(14% 0.01 230);
  padding: 11px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Archivo', system-ui, sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 11px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: oklch(40% 0.008 230);
}

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

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, oklch(72% 0.14 220 / 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .btn-ghost {
  color: var(--text-secondary);
  border-color: var(--border);
}

.hero .btn-ghost:hover {
  color: var(--text-primary);
  border-color: oklch(40% 0.008 230);
}

/* ─── HERO TERMINAL ─── */
.hero-terminal {
  background: oklch(10% 0.01 230);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 64px oklch(0% 0 0 / 0.5),
    0 0 0 1px oklch(100% 0 0 / 0.03);
  font-family: 'SFMono-Regular', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: oklch(12% 0.008 230);
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: oklch(62% 0.2 25); }
.terminal-dot.yellow { background: oklch(80% 0.16 85); }
.terminal-dot.green { background: oklch(72% 0.18 155); }

.terminal-title {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 8px;
}

.terminal-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.terminal-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.8;
}

.t-time {
  color: oklch(50% 0.005 230);
  flex-shrink: 0;
  font-size: 11px;
}

.t-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.t-label.t-success {
  color: oklch(78% 0.15 155);
  background: oklch(78% 0.15 155 / 0.1);
}

.t-label.t-info {
  color: var(--accent);
  background: oklch(68% 0.14 220 / 0.1);
}

.t-label.t-warn {
  color: var(--warning);
  background: oklch(78% 0.15 80 / 0.1);
}

.t-label.t-ready {
  color: oklch(72% 0.008 220);
  background: oklch(72% 0.008 220 / 0.08);
}

.t-text {
  color: var(--text-secondary);
}

.terminal-cursor .t-text::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── FEATURES ─── */
.features {
  padding: 120px 0 100px;
}

.features > .container > h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 56px;
  max-width: 480px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
  margin-bottom: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.feature-row--secondary {
  opacity: 0.8;
}

.feature-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.how-it-works h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 56px;
  max-width: 500px;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: none;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  opacity: 0.4;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
}

/* ─── PRICING ─── */
.pricing {
  padding: 120px 0;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pricing-intro h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.pricing-intro p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 420px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.pricing-name {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: 4px;
}

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

.pricing-features li {
  padding: 9px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
}

.pricing-addons {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 28px;
}

.pricing-addons p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-addons span {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
  padding: 13px 24px;
}

/* ─── CHANNELS ─── */
.channels {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.channels h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 48px;
}

.channels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.channel {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.channel-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.channel-status.active {
  background: oklch(72% 0.14 220 / 0.12);
  color: var(--accent);
}

.channel-status.soon {
  background: oklch(78% 0.15 80 / 0.1);
  color: var(--warning);
}

.channel h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.channel p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── POWERED BY ─── */
.powered-by {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.powered-built-on {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.powered-built-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.powered-logo-img {
  display: block;
  object-fit: contain;
}

.powered-logo-img--wa {
  height: 32px;
  width: auto;
}

.powered-logo-img--meta {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.powered-logo-img--emdev {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.powered-divider {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}

.powered-developed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.powered-dev-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.powered-dev-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.powered-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 120px 0;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.cta-intro h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-intro > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form .btn-primary {
  width: 100%;
  text-align: center;
  padding: 13px 24px;
}

#form-status {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

/* ─── FOOTER ─── */
footer {
  background: oklch(10% 0.01 230);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

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

.footer-brand .nav-logo {
  margin-bottom: 4px;
}

.footer-brand .nav-logo img {
  height: 52px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 10px;
}

.footer-emdev {
  height: 28px;
  margin-top: 6px;
  border-radius: 3px;
}

.footer-links h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.last-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text-primary);
}

.legal-page h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text-secondary);
}

.legal-page p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ─── MOBILE NAV OVERLAY ─── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: oklch(14% 0.012 230 / 0.96);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile-overlay.active {
  display: flex;
}

.nav-mobile-overlay a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
}

/* ─── PARTICLE CANVAS ─── */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ─── HERO ENTRANCE CHOREOGRAPHY ─── */
.hero-kicker,
.hero h1,
.hero-sub,
.hero-ctas,
.hero-terminal {
  opacity: 0;
  transform: translateY(24px);
}

.hero-kicker.entered,
.hero h1.entered,
.hero-sub.entered,
.hero-ctas.entered,
.hero-terminal.entered {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker   { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.hero h1       { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s; }
.hero-sub      { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s; }
.hero-ctas     { transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.hero-terminal { transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s; }

/* Terminal lines hidden until typewriter fires */
.terminal-line {
  opacity: 0;
  transform: translateX(-8px);
}

.terminal-line.typed {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within observed parents */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }

.stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Section heading slide-in */
.slide-in {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Pricing card scale entrance */
.scale-in {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-kicker, .hero h1, .hero-sub, .hero-ctas, .hero-terminal,
  .terminal-line, .fade-up, .stagger-children > *, .slide-in, .scale-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .channels-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .pricing-card {
    padding: 28px;
  }

  .pricing-price {
    font-size: 44px;
  }

  .contact-form {
    padding: 24px;
  }

  .step {
    gap: 16px;
  }

  .step-number {
    font-size: 36px;
    width: 40px;
  }
}