/* ── HERO ── */
.hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem) 0;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero::before {
  content: '';
  position: fixed; top: -120px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, oklch(85% 0.08 265) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero::after {
  content: '';
  position: fixed; bottom: -80px; left: -60px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, oklch(90% 0.07 28) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--indigo-light); color: var(--indigo-mid);
  padding: 6px 14px 6px 8px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.01em; width: fit-content;
  animation: fadeUp 0.5s ease both;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo-mid); }
h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.12; letter-spacing: -0.035em;
  color: var(--text); text-wrap: balance;
  animation: fadeUp 0.55s 0.08s ease both;
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--indigo-mid), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.65; color: var(--muted);
  max-width: 420px;
  animation: fadeUp 0.55s 0.16s ease both;
}

/* ── VISUAL CARD ── */
.hero-visual { position: relative; animation: fadeUp 0.6s 0.1s ease both; }
.visual-card {
  background: #fff; border-radius: 24px; padding: 2rem;
  box-shadow: 0 4px 6px oklch(0% 0 0 / 4%), 0 20px 50px oklch(40% 0.18 265 / 10%);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo-mid), var(--accent));
  border-radius: 24px 24px 0 0;
}
.visual-header { display: flex; align-items: center; gap: 8px; margin-bottom: 1.5rem; }
.dot-row { display: flex; gap: 5px; }
.dot-row span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-row span:nth-child(1) { background: #ff5f57; }
.dot-row span:nth-child(2) { background: #febc2e; }
.dot-row span:nth-child(3) { background: #28c840; }
.url-bar {
  flex: 1; background: var(--indigo-light); border-radius: 8px;
  padding: 5px 12px; font-size: 0.75rem; color: var(--muted);
  font-family: 'Inter', monospace;
  display: flex; align-items: center; gap: 6px;
}

/* ── CHART AREA ── */
.chart-area {
  background: var(--indigo-light); border-radius: 16px;
  padding: 1.5rem 1.5rem 1rem; margin-bottom: 1rem;
}
.chart-label {
  font-size: 0.7rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.chart-stat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--indigo); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem;
}
.chart-delta {
  font-size: 0.8rem; font-weight: 600; color: oklch(55% 0.16 145);
  display: flex; align-items: center; gap: 4px;
}
svg.chart-svg { width: 100%; height: 80px; margin-top: 0.75rem; overflow: visible; }

@keyframes drawLine {
  from { stroke-dashoffset: 400; }
  to   { stroke-dashoffset: 0; }
}
@keyframes growBar {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
.chart-path {
  stroke-dasharray: 400; stroke-dashoffset: 400;
  animation: drawLine 1.8s 0.5s ease forwards;
}
.chart-fill { opacity: 0; animation: fadeUp 0.5s 1.5s ease forwards; }

/* ── FLOAT BADGES ── */
.float-badge {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 8px 12px; box-shadow: 0 4px 20px oklch(0% 0 0 / 12%);
  font-size: 0.75rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border);
}
.float-badge.badge-rank { top: 24px; right: -18px; color: var(--indigo); animation: float1 4s ease-in-out infinite; }
.float-badge.badge-visitors { bottom: 60px; right: -12px; color: oklch(45% 0.15 145); animation: float2 4.5s ease-in-out infinite; }
.float-badge.badge-ai { bottom: 20px; left: -12px; color: oklch(45% 0.15 300); animation: float1 3.8s 0.5s ease-in-out infinite; }

/* ── CHANNEL ROW ── */
.channel-row { display: flex; gap: 10px; align-items: center; }
.channel-chip {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 6px 12px;
  font-size: 0.75rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text);
  flex: 1; justify-content: center;
}

/* ── NEEDS SECTION ── */
.needs-section {
  max-width: 1200px; margin: 7rem auto 0;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  animation: fadeUp 0.6s 0.3s ease both;
}
.needs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.needs-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default; justify-content: space-between;
}
.needs-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px oklch(40% 0.18 265 / 10%); }
.needs-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.needs-icon.website { background: oklch(93% 0.05 265); }
.needs-icon.google  { background: oklch(93% 0.04 28);  }
.needs-icon.social  { background: oklch(93% 0.05 200); }
.needs-icon.ai      { background: oklch(93% 0.05 300); }
.needs-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.needs-desc { font-size: 0.84rem; line-height: 1.6; color: var(--muted); }
.needs-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--indigo-mid); background: var(--indigo-light);
  border: none; cursor: pointer;
  padding: 7px 14px; border-radius: 100px;
  transition: background 0.2s, gap 0.2s; text-decoration: none; width: fit-content;
}
.needs-more:hover { background: oklch(88% 0.08 265); gap: 8px; }

/* ── FLOW SECTION ── */
.flow-section {
  max-width: 1200px; margin: 6rem auto 0;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  animation: fadeUp 0.6s 0.32s ease both;
}
.flow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.flow-card {
  border-radius: 24px; padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; overflow: hidden;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.flow-card:hover { transform: translateY(-4px); }
.flow-card.begin {
  background: linear-gradient(135deg, oklch(96% 0.03 265) 0%, oklch(93% 0.05 265) 100%);
  border: 1.5px solid oklch(88% 0.06 265);
  box-shadow: 0 4px 24px oklch(40% 0.18 265 / 8%);
}
.flow-card.begin:hover { box-shadow: 0 12px 40px oklch(40% 0.18 265 / 14%); }
.flow-card.groei {
  background: linear-gradient(135deg, oklch(38% 0.18 265) 0%, oklch(30% 0.15 280) 100%);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 24px oklch(40% 0.18 265 / 18%);
}
.flow-card.groei:hover { box-shadow: 0 12px 40px oklch(40% 0.18 265 / 28%); }
.flow-card::after {
  content: ''; position: absolute; bottom: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%; pointer-events: none;
}
.flow-card.begin::after { background: oklch(85% 0.08 265 / 0.35); }
.flow-card.groei::after { background: oklch(100% 0 0 / 0.05); }
.flow-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  width: fit-content; padding: 4px 10px; border-radius: 100px;
}
.begin .flow-tag { background: oklch(88% 0.08 265); color: var(--indigo); }
.groei .flow-tag { background: oklch(100% 0 0 / 0.12); color: oklch(88% 0.04 265); }
.flow-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.begin .flow-icon { background: #fff; box-shadow: 0 2px 12px oklch(40% 0.18 265 / 10%); }
.groei .flow-icon { background: oklch(100% 0 0 / 0.12); }
.flow-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em; line-height: 1.15;
}
.begin .flow-title { color: var(--text); }
.groei .flow-title { color: #fff; }
.flow-desc { font-size: 0.88rem; line-height: 1.65; }
.begin .flow-desc { color: var(--muted); }
.groei .flow-desc { color: oklch(80% 0.05 265); }
.flow-list { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.flow-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.begin .flow-list li { color: var(--text); }
.groei .flow-list li { color: oklch(88% 0.04 265); }
.flow-list li svg { flex-shrink: 0; }
.flow-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  margin-top: auto; padding: 10px 18px;
  border-radius: 100px; width: fit-content; transition: gap 0.2s;
}
.flow-card:hover .flow-cta { gap: 10px; }
.begin .flow-cta { background: var(--indigo); color: #fff; box-shadow: 0 4px 14px oklch(40% 0.18 265 / 20%); }
.groei .flow-cta { background: var(--accent); color: #fff; box-shadow: 0 4px 14px oklch(62% 0.18 28 / 30%); }

/* ── DASHBOARD SECTION ── */
.dashboard-section {
  max-width: 1200px; margin: 7rem auto 0;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  animation: fadeUp 0.6s 0.35s ease both;
}
.dashboard-inner {
  background: #fff; border: 1px solid var(--border);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 4px 6px oklch(0% 0 0 / 3%), 0 20px 60px oklch(40% 0.18 265 / 8%);
}
.dashboard-top { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.dashboard-copy {
  padding: clamp(2.5rem, 4vw, 4rem);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.dashboard-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.03em; color: var(--text); line-height: 1.15;
}
.dashboard-title span { color: var(--indigo-mid); }
.dashboard-desc { font-size: 0.93rem; line-height: 1.7; color: var(--muted); }
.dashboard-bullets { display: flex; flex-direction: column; gap: 0.7rem; list-style: none; }
.dashboard-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; line-height: 1.5;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; color: var(--text);
}
.db-bullet-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--indigo-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.dashboard-mock {
  background: linear-gradient(160deg, oklch(38% 0.18 265) 0%, oklch(28% 0.14 280) 100%);
  padding: 2rem; min-height: 360px;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden;
}
.dashboard-mock::before {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.04); pointer-events: none;
}
.mock-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.25rem; }
.mock-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.8rem; color: oklch(80% 0.05 265); letter-spacing: 0.03em; }
.mock-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600;
  color: oklch(75% 0.12 145); font-family: 'Plus Jakarta Sans', sans-serif;
}
.mock-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(65% 0.16 145);
  animation: pulse 2s ease-in-out infinite;
}
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.mock-stat {
  background: oklch(100% 0 0 / 0.08); border-radius: 14px; padding: 1rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.mock-stat-label {
  font-size: 0.68rem; font-weight: 600; color: oklch(68% 0.06 265);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.mock-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.mock-stat-delta { font-size: 0.72rem; font-weight: 600; display: flex; align-items: center; gap: 3px; }
.mock-stat-delta.up { color: oklch(72% 0.14 145); }
.mock-stat-delta.down { color: oklch(72% 0.14 28); }
.mock-chart-area {
  background: oklch(100% 0 0 / 0.06); border-radius: 14px;
  padding: 1rem 1rem 0.75rem; flex: 1;
}
.mock-chart-label {
  font-size: 0.68rem; font-weight: 600; color: oklch(68% 0.06 265);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.mock-bars { display: flex; align-items: flex-end; gap: 5px; height: 64px; }
.mock-bar-item {
  flex: 1; border-radius: 4px 4px 0 0;
  background: oklch(100% 0 0 / 0.18); transition: background 0.2s; position: relative;
}
.mock-bar-item.active { background: oklch(65% 0.16 265); }
.mock-bar-item:hover  { background: oklch(70% 0.14 265); }
.mock-channels { display: flex; gap: 0.5rem; }
.mock-channel {
  flex: 1; background: oklch(100% 0 0 / 0.08); border-radius: 12px;
  padding: 0.6rem 0.75rem;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  color: oklch(82% 0.05 265); font-family: 'Plus Jakarta Sans', sans-serif;
}
.mock-channel-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* ── DEMO SECTION ── */
.demo-section {
  max-width: 1200px; margin: 4rem auto 0;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  animation: fadeUp 0.6s 0.35s ease both;
}
.demo-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: 28px; padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 4px 6px oklch(0% 0 0 / 3%), 0 20px 50px oklch(40% 0.18 265 / 7%);
  position: relative; overflow: hidden;
}
.demo-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), oklch(62% 0.18 50));
  border-radius: 28px 28px 0 0;
}
.demo-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 1rem; text-wrap: balance;
}
.demo-desc { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.5rem; }
.demo-perks { display: flex; flex-direction: column; gap: 0.6rem; }
.demo-perk {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
}
.demo-perk-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: oklch(92% 0.06 145);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.demo-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 0.75rem; }
.form-field { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.form-field label {
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 0.01em;
}
.form-field input, .form-field select {
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 11px 14px; font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--text); background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  width: 100%; -webkit-appearance: none;
}
.form-field input::placeholder { color: oklch(72% 0.02 265); }
.form-field input:focus, .form-field select:focus {
  border-color: var(--indigo-mid);
  box-shadow: 0 0 0 3px oklch(52% 0.20 265 / 12%);
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.btn-demo {
  background: var(--accent); color: #fff; border: none;
  border-radius: 12px; padding: 14px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px oklch(62% 0.18 28 / 30%);
  width: 100%; margin-top: 0.25rem;
}
.btn-demo:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px oklch(62% 0.18 28 / 40%); }
.form-note {
  font-size: 0.75rem; color: var(--muted);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px;
}
.demo-success {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 1rem; text-align: center; padding: 2rem 0;
}
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: oklch(92% 0.06 145);
  display: flex; align-items: center; justify-content: center;
}
.demo-success h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--text); letter-spacing: -0.02em;
}
.demo-success p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── CTA SECTION ── */
.cta-section {
  max-width: 1200px; margin: 7rem auto 0;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 6rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.cta-block {
  background: linear-gradient(135deg, oklch(38% 0.18 265) 0%, oklch(30% 0.15 280) 100%);
  border-radius: 28px; padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -60px; right: 100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.05); pointer-events: none;
}
.cta-block::after {
  content: ''; position: absolute; bottom: -80px; right: -40px;
  width: 260px; height: 260px; border-radius: 50%;
  background: oklch(100% 0 0 / 0.04); pointer-events: none;
}
.cta-support { font-size: 0.9rem; color: oklch(80% 0.05 265); line-height: 1.6; max-width: 460px; margin-bottom: 1rem; }
.cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem); color: #fff;
  letter-spacing: -0.03em; margin-bottom: 0.5rem; text-wrap: balance;
}
.cta-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; align-self: flex-end; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-bellen { background: var(--accent); color: #fff; box-shadow: 0 4px 18px oklch(62% 0.18 28 / 35%); }
.btn-bellen:hover { background: var(--accent-hover); box-shadow: 0 8px 24px oklch(62% 0.18 28 / 45%); }
.btn-whatsapp { background: oklch(55% 0.16 145); color: #fff; box-shadow: 0 4px 18px oklch(55% 0.16 145 / 30%); }
.btn-whatsapp:hover { background: oklch(48% 0.16 145); box-shadow: 0 8px 24px oklch(55% 0.16 145 / 40%); }
.btn-mail { background: oklch(100% 0 0 / 0.12); color: #fff; border: 1px solid oklch(100% 0 0 / 0.2); }
.btn-mail:hover { background: oklch(100% 0 0 / 0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-block { grid-template-columns: 1fr; }
  .cta-buttons { justify-content: flex-start; }
  .float-badge { display: none; }
  .dashboard-top { grid-template-columns: 1fr; }
  .dashboard-mock { min-height: auto; }
  .demo-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 680px) {
  .flow-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .needs-grid { grid-template-columns: 1fr 1fr; }
  .btn { padding: 12px 18px; font-size: 0.85rem; }
}
