:root {
  --primary: #7c3aed;
  --secondary: #9333ea;
  --light-purple: #c084fc;
  --dark-purple: #4c1d95;
  --bg: #020212;
  --section: #09091f;
  --dark: #0f172a;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.105);
  --text: #f8fafc;
  --muted: #a3a7bd;
  --success: #22c55e;
  --line: rgba(255, 255, 255, 0.14);
  --gradient: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c084fc 100%);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  --radius: 28px;
  --bg: #020212;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-bright: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --accent: #9d4edd;
  --success: #16a34a;
  --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --glass-border: 1px solid rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-padding-top: 30px; 
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 4%, rgba(124, 58, 237, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 20%, rgba(192, 132, 252, 0.16), transparent 26rem),
    linear-gradient(180deg, #020212 0%, #06061a 48%, #020212 100%);
  color: var(--text);
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background-color: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 5, 24, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(220px, 34vw, 500px);
  height: auto;
  max-height: 86px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.86rem;
}

.btn {
  padding: 0 24px;
  border: 1px solid transparent;
}

/* WhatsApp icon inside buttons */
.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex: 0 0 auto;
}

.wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn:hover,
.header-cta:hover,
.whatsapp-float:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.28);
}

.btn-secondary {
  border-color: rgba(216, 180, 254, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f3ff;
  backdrop-filter: blur(14px);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 64px 0 74px;
}

.eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  text-align: center;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.11);
}

.eyebrow-text {
  text-align: center;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.3rem);
}

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

.hero-copy .eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 16px auto; 
}

.hero-copy p,
.hero-actions,
.hero-metrics {
  margin-left: 0;
  margin-right: 0;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 560px;
  margin-top: 42px;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: #ddd6fe;
  font-size: 1.55rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
  margin: 0 auto;
}

.connection-grid {
  display: none;
}

.dashboard {
  position: relative;
  overflow: hidden;
  margin: 34px auto 4rem;
  /* center horizontally */
  width: 100%;
  max-width: 600px;
  /* desktop max width */
  aspect-ratio: 16 / 9;
  /* maintain aspect ratio */
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background-image: url("./assets/dashboard.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
  transform: rotateX(8deg) rotateY(-10deg) rotateZ(1deg);
  transform-origin: center;
  backdrop-filter: blur(18px);
  animation: floatDashboard 5.5s ease-in-out infinite;
}

@media (max-width: 480px) {
  .dashboard {
    max-width: 100vw;
    /* full width on small phones */
  }
}

/* Mobile adjustments */
@media (max-width: 620px) {
  .dashboard {
    max-width: 90vw;
    /* shrink on tablets */
  }
}

@media (max-width: 480px) {
  .dashboard {
    background-image: url("./assets/dashboard.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Hide original dashboard inner elements */
.dashboard>* {
  display: none;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), transparent 38%, rgba(34, 197, 94, 0.08));
  pointer-events: none;
}

.dashboard-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.window-dots span:first-child {
  background: #c084fc;
}

.window-dots span:nth-child(2) {
  background: #22c55e;
}

/* .dashboard-content grid removed */



.conversation-panel,
.insight-panel,
.assistant-card,
.analytics,
.pipeline-stage {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.conversation-panel,
.insight-panel {
  border-radius: 24px;
  padding: 16px;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.panel-heading strong {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.message {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  min-width: 0;
}

.message div {
  min-width: 0;
}

.message+.message {
  margin-top: 8px;
}

.message.active {
  background: rgba(124, 58, 237, 0.18);
}

.avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(237, 233, 254, 0.14);
  color: #ddd6fe;
  font-weight: 800;
}

.message strong,
.message p {
  display: block;
  margin: 0;
}

.message strong {
  font-size: 0.82rem;
}

.message p {
  color: var(--muted);
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

.insight-panel {
  display: grid;
  gap: 16px;
}

.assistant-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  min-width: 0;
}

.spark-icon,
.card-icon,
.feature-orbit {
  position: relative;
  flex: 0 0 auto;
  background: var(--gradient);
}

.spark-icon {
  width: 46px;
  height: 46px;
  border-radius: 17px;
}

.spark-icon::before,
.spark-icon::after {
  content: "";
  position: absolute;
  background: white;
}

.spark-icon::before {
  top: 12px;
  left: 22px;
  width: 3px;
  height: 22px;
  border-radius: 999px;
}

.spark-icon::after {
  top: 22px;
  left: 12px;
  width: 22px;
  height: 3px;
  border-radius: 999px;
}

.assistant-card span,
.assistant-card strong,
.assistant-card p {
  display: block;
}

.assistant-card span {
  color: #c4b5fd;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.assistant-card strong {
  margin-top: 2px;
}

.assistant-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

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

.pipeline-stage {
  padding: 14px;
  border-radius: 18px;
}

.pipeline-stage.highlighted {
  background: var(--gradient);
  color: white;
}

.pipeline-stage span,
.pipeline-stage strong {
  display: block;
}

.pipeline-stage span {
  color: inherit;
  opacity: 0.66;
  font-size: 0.72rem;
  font-weight: 800;
}

.pipeline-stage strong {
  margin-top: 8px;
  font-size: 1.45rem;
}

.analytics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 130px;
  padding: 16px;
  border-radius: 22px;
}

.analytics span,
.analytics strong {
  display: block;
}

.analytics span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.analytics strong {
  margin-top: 6px;
  color: #ddd6fe;
  font-size: 2rem;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  width: 130px;
  height: 82px;
}

.bars span {
  width: 100%;
  min-height: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #c084fc, #7c3aed);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
}

.section-heading.light h2,
.section-heading.light .label {
  color: white;
}

.problem-section,
.benefits-section,
.process-section {
  padding: 90px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.problem-card,
.feature-card,
.testimonial-card,
.timeline-step {
  border-radius: 24px;
}

.problem-card {
  min-height: 196px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  text-align: center;
}

.problem-card h3 {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.28;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 15px;
  background: rgba(245, 243, 255, 0.1);
}

.card-icon svg {
  width: 21px;
  height: 21px;
  color: #ddd6fe;
  stroke-width: 2.2;
}

.solution-section,
.proof-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #050519;
}

.solution-section::before,
.proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(124, 58, 237, 0.36), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(192, 132, 252, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px;
}

.solution-section .section-shell,
.proof-section .section-shell {
  position: relative;
  z-index: 1;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  text-align: center;
}

.feature-orbit {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 16px 38px rgba(124, 58, 237, 0.34);
}

.feature-orbit svg {
  width: 27px;
  height: 27px;
  color: #fff;
  stroke-width: 2.1;
}

.feature-card h3,
.testimonial-card h3 {
  margin: 28px 0 0;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 10px 0 0;
  color: #cbd5e1;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 46px;
  align-items: center;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-list div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.benefit-list span {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--success);
  box-shadow: inset 0 0 0 5px rgba(220, 252, 231, 0.24);
}

.flow-panel {
  position: relative;
  min-height: 430px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.18), transparent 34%),
    #09091f;
  box-shadow: var(--soft-shadow);
}

.flow-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 118px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  color: #ede9fe;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.flow-node.main {
  left: 50%;
  top: 50%;
  z-index: 2;
  min-width: 138px;
  min-height: 70px;
  background: var(--gradient);
  color: #fff;
  transform: translate(-50%, -50%);
}

.flow-node.top {
  left: 13%;
  top: 17%;
}

.flow-node.right {
  right: 10%;
  top: 24%;
}

.flow-node.bottom {
  left: 34%;
  bottom: 14%;
}

.flow-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 138px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0), rgba(124, 58, 237, 0.58), rgba(124, 58, 237, 0));
  transform-origin: top center;
}

.flow-line.one {
  transform: rotate(-132deg);
}

.flow-line.two {
  transform: rotate(-42deg);
}

.flow-line.three {
  transform: rotate(178deg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.timeline-step {
  position: relative;
  padding: 28px;
  border: var(--glass-border);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  text-align: center;
  border-radius: 24px;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline-step h3 {
  margin: 36px 0 0;
  font-size: 1.25rem;
}

.testimonial-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  text-align: center;
}

.testimonial-card p {
  min-height: 112px;
  margin: 0;
  color: #e2e8f0;
  font-size: 1.02rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 24px;
}

.testimonial-card span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.86rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.trust-row div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  color: white;
  text-align: center;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1.25rem;
}

.trust-row span {
  color: #cbd5e1;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 96px;
  margin-bottom: 96px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(192, 132, 252, 0.2), transparent 22rem),
    var(--surface);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  text-align: center;
}

.final-cta>div {
  flex: 1 1 620px;
}

.final-cta p {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #020212;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 18px 34px rgba(124, 58, 237, 0.28);
  font-weight: 800;
  transition: transform 180ms ease;
}

.whatsapp-float span {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.144);
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
  will-change: opacity, transform;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatDashboard {

  0%,
  100% {
    transform: rotateX(8deg) rotateY(-10deg) rotateZ(1deg) translateY(0);
  }

  50% {
    transform: rotateX(8deg) rotateY(-10deg) rotateZ(1deg) translateY(-12px);
  }
}

@media (max-width: 1020px) {

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

  .hero,
  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 52px;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 500px;
    margin: 0 auto;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {

  .site-header,
  .section-shell,
  .footer-inner {
    width: min(100% - 22px, 1280px);
  }

  .site-header {
    margin-top: 10px;
    padding: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  .brand {
    flex: 1 1 190px;
    justify-content: center;
    width: 100%;
  }

  .brand-logo {
    width: min(100%, 280px);
    max-height: 58px;
  }

  .header-cta {
    width: 100%;
    min-height: 44px;
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 52px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero-copy p,
  .hero-actions,
  .hero-metrics {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-copy p {
    font-size: 0.9rem;
  }

  .eyebrow,
  .label {
    font-size: 0.9rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  .dashboard-content {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 6px;
    padding: 8px;
    min-width: 0;
  }

  .pipeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .pipeline-stage span {
    font-size: 0.55rem;
  }

  .pipeline-stage strong {
    font-size: 0.7rem;
    margin-top: 4px;
  }

  .analytics {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: auto;
    padding: 16px;
  }

  .connection-grid {
    display: none;
  }

  .problem-section,
  .benefits-section,
  .process-section,
  .solution-section,
  .proof-section {
    padding: 66px 0;
  }

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

  .problem-card:last-child {
    grid-column: auto;
  }

  .problem-card,
  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .flow-panel {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .flow-line {
    display: none;
  }

  .flow-node {
    position: static;
    min-width: 96px;
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .flow-node.main {
    min-width: 0;
    min-height: 56px;
    transform: none;
  }

  .flow-node.right {
    right: 4%;
  }

  .final-cta {
    margin-top: 66px;
    margin-bottom: 66px;
    padding: 28px;
    border-radius: 24px;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-inner {
    align-items: center;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  /* Additional responsive tweaks for other sections */
  .feature-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .section-heading p {
    font-size: 0.9rem;
  }

  .hero-metrics div {
    padding: 8px;
  }

  .bars span {
    min-height: 12px;
  }

  .site-header,
  .section-shell,
  .footer-inner {
    width: min(100% - 18px, 1180px);
  }

  .brand-logo {
    width: min(100%, 240px);
    max-height: 50px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .eyebrow {
    gap: 8px;
    width: min(100%, 310px);
  }

  .eyebrow .eyebrow-text {
    max-width: 260px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(1.86rem, 9vw, 2.55rem);
  }

  .hero-metrics div,
  .problem-card,
  .feature-card,
  .testimonial-card,
  .timeline-step,
  .final-cta {
    padding: 20px;
  }


  .site-footer nav {
    gap: 14px;
  }

  .whatsapp-float {
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .analytics {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bars {
    width: 100%;
    justify-content: center;
  }
}

/* Additional responsive tweaks for very small screens */
@media (max-width: 430px) {

  .site-header,
  .section-shell,
  .footer-inner {
    width: 100%;
    padding: 8px;
  }

  .nav-links {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-copy p {
    font-size: 0.8rem;
  }

  .hero-metrics div {
    padding: 6px;
  }

  .pipeline {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pipeline-stage span {
    font-size: 0.5rem;
  }

  .pipeline-stage strong {
    font-size: 0.6rem;
  }

  .analytics {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .bars span {
    min-height: 10px;
  }

  .dashboard-content {
    grid-template-columns: 0.5fr 1.5fr;
    gap: 1px;
    padding: 1px;
  }

  .feature-grid,
  .testimonial-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .section-heading p {
    font-size: 0.8rem;
  }
}