:root {
  --purple-light: #667eea;
  --purple-mid: #8d67f2;
  --purple-dark: #764ba2;
  --dark: #090917;
  --dark-soft: #0d0d21;
  --dark-deep: #050510;
  --text: #f0f0ff;
  --muted: #b7b4d4;
  --muted-strong: #d7d7eb;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --card: rgba(255, 255, 255, 0.035);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 23, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(9, 9, 23, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.site-nav {
  width: min(1200px, calc(100% - 2rem));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  height: 32px;
}

.nav-toggle {
  display: none;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: rgba(215, 215, 235, 0.74);
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-inline-cta {
  color: var(--text) !important;
}

.nav-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #25d366;
  font-weight: 700;
  white-space: nowrap;
}

.nav-whatsapp-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ffffff;
  color: #7a53b2;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.eyebrow,
.hero-badge {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: #b8c5ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 4.8rem;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  background-size: 180% 180%;
  animation: heroShift 14s ease-in-out infinite;
  text-align: center;
}

#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-section h1,
.section-title,
.page-hero h1,
.blog-list-item h3,
.chatbot-heading h3,
.quote-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.hero-section h1 {
  margin: 0 0 1.3rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), #c6b6ff 48%, #f39df8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subcopy,
.section-subtitle,
.page-hero p,
.centered-copy,
.blog-list-item p,
.quote-card p,
.quote-card li {
  color: rgba(255, 255, 255, 0.88);
}

.hero-subcopy {
  max-width: 760px;
  margin: 0 auto 2.1rem;
  font-size: 1.12rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 760px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.stat-item h4 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.stat-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.section,
.page-hero {
  padding: 5rem 0;
}

.section {
  background: linear-gradient(180deg, var(--dark-soft), var(--dark));
}

.approach-section {
  background: linear-gradient(180deg, rgba(13, 13, 33, 0.98), rgba(10, 10, 26, 1));
}

.solutions-section,
.demo-section {
  background: linear-gradient(180deg, rgba(14, 14, 36, 1), rgba(10, 10, 26, 1));
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(10, 10, 26, 1), rgba(14, 14, 36, 1));
}

.testimonials-section--soft {
  background: linear-gradient(180deg, rgba(14, 14, 36, 1), rgba(10, 10, 26, 1));
}

.cta-section {
  background: linear-gradient(180deg, rgba(10, 10, 26, 1), rgba(5, 5, 16, 1));
}

.section-title,
.page-hero h1,
.centered-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  text-align: center;
  color: var(--text);
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 2.7rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.06rem;
}

.process-timeline {
  position: relative;
  max-width: 720px;
  margin: 3rem auto 0;
  padding-left: 42px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.7), rgba(192, 132, 252, 0.72), rgba(14, 165, 160, 0.7));
}

.timeline-glow {
  position: absolute;
  left: 11px;
  top: 0;
  width: 10px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(160, 173, 255, 0.92), transparent);
  filter: blur(5px);
  animation: timelineFloat 3.5s ease-in-out infinite;
}

.process-step {
  position: relative;
  padding: 0 0 2.4rem 1.5rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: -33px;
  top: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-step:nth-child(2)::before {
  background: rgba(102, 126, 234, 0.18);
  border: 2px solid #667eea;
  color: #b4c3ff;
  box-shadow: 0 0 12px rgba(102, 126, 234, 0.28);
}

.process-step:nth-child(3)::before {
  background: rgba(192, 132, 252, 0.2);
  border: 2px solid #c084fc;
  color: #e3c8ff;
  box-shadow: 0 0 12px rgba(192, 132, 252, 0.28);
}

.process-step:nth-child(4)::before {
  background: rgba(14, 165, 160, 0.18);
  border: 2px solid #0ea5a0;
  color: #7df1ea;
  box-shadow: 0 0 12px rgba(14, 165, 160, 0.26);
}

.process-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  color: var(--text);
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.solutions-grid,
.demo-grid,
.testimonials-grid,
.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.testimonials-grid--proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-card,
.testimonial-card,
.quote-card,
.card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.solution-card,
.testimonial-card,
.quote-card,
.card,
.blog-list-item,
.demo-step {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solution-card:hover,
.testimonial-card:hover,
.card:hover,
.blog-list-item:hover,
.demo-step:hover,
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.solution-card {
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.solution-card .icon {
  margin-bottom: 1rem;
  font-size: 2.45rem;
}

.solution-card h3,
.card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.28rem;
  color: var(--text);
}

.solution-card p,
.card p,
.card-list,
.list-tight {
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #cfd6ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-cta {
  margin-top: 2.6rem;
  text-align: center;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  color: #cfc0ff;
  font-weight: 700;
}

.card-link:hover,
.card-link:focus-visible {
  color: #ffffff;
}


.solution-card--stacked {
  min-height: 100%;
}

.solution-card-actions {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  justify-content: center;
}

.solution-card-actions .btn {
  width: 100%;
}

.card-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.detail-card,
.outcome-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(18px);
}

.detail-card {
  padding: 2rem;
}

.detail-card h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.22rem;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.outcome-card {
  padding: 1rem 1.1rem;
  color: var(--text);
  font-weight: 700;
}

.proof-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 2.6rem;
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.proof-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: proofScroll 36s linear infinite;
}

.proof-marquee:hover .proof-track {
  animation-play-state: paused;
}

.proof-card {
  width: min(420px, calc(100vw - 4rem));
  flex: 0 0 min(420px, calc(100vw - 4rem));
}

.rating {
  margin-bottom: 0.95rem;
  color: #f8e37b;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.testimonial-text {
  margin: 0 0 1.3rem;
  color: var(--muted-strong);
  font-style: italic;
}

.testimonial-text--plain {
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-info h4 {
  margin: 0 0 0.16rem;
  color: var(--text);
  font-size: 0.97rem;
}

.author-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.page-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.92), rgba(118, 75, 162, 0.92));
  text-align: center;
}

.page-hero .container {
  max-width: 860px;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.centered-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.centered-list,
.list-tight,
.card-list,
.bullet-list {
  padding: 0;
  list-style: none;
}

.centered-list li,
.list-tight li,
.card-list li,
.bullet-list li {
  margin-bottom: 0.7rem;
}

.quote-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.quote-card h3 {
  margin: 0 0 0.9rem;
  color: var(--text);
}

.quote-card p + h3,
.quote-card ul + h3 {
  margin-top: 2rem;
}

.bullet-list li::before,
.list-tight li::before,
.card-list li::before {
  content: "•";
  margin-right: 0.55rem;
  color: #c9b0ff;
}

.blog-list {
  max-width: 860px;
  margin: 0 auto;
}

.blog-list-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-list-item h3 {
  margin: 0 0 0.55rem;
  font-size: 1.36rem;
  color: var(--text);
}

.blog-list-item p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 2.4rem 0 3rem;
  background: var(--dark-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-layout {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.chatbot-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(118, 75, 162, 0.55);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.96), rgba(118, 75, 162, 0.96));
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.36);
  z-index: 1000;
}

.chatbot-toggle:hover,
.chatbot-toggle:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(102, 126, 234, 0.45);
}

.chatbot-toggle svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: transform 0.22s ease;
}

.chatbot-toggle.open svg {
  transform: rotate(90deg);
}

.notif-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(9, 9, 23, 0.96);
  border-radius: 50%;
  background: #ff5370;
}

.notif-dot.hidden {
  display: none;
}

.chatbot-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: min(390px, calc(100% - 1rem));
  display: block;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(9, 9, 23, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.chatbot-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chatbot-avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.chatbot-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
}

.chatbot-heading p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.chatbot-close {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}

.chatbot-messages {
  max-height: 320px;
  padding: 1rem 0;
  overflow: auto;
  display: grid;
  gap: 0.72rem;
}

.chat-message {
  max-width: 86%;
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  line-height: 1.55;
  font-size: 0.94rem;
}

.chat-message.user {
  margin-left: auto;
  background: rgba(102, 126, 234, 0.24);
  color: #ffffff;
  border: 1px solid rgba(102, 126, 234, 0.28);
}

.chat-message.bot {
  background: rgba(255, 255, 255, 0.055);
  color: #e5e5f2;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-message.loading {
  font-style: italic;
  color: var(--muted);
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-bottom: 1rem;
}

.quick-reply-btn {
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dedbf4;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.quick-reply-btn:hover,
.quick-reply-btn:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.chatbot-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.chatbot-input-row .btn {
  padding-inline: 1.2rem;
}

.impact-section {
  background: linear-gradient(180deg, rgba(13, 13, 33, 1), rgba(9, 9, 23, 1));
}

.impact-section--compact {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}

.impact-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.impact-title-left,
.impact-subtitle-left {
  text-align: left;
}

.impact-subtitle-left {
  margin: 0.7rem 0 0;
}

.impact-summary {
  display: grid;
  gap: 1rem;
}

.impact-summary--home,
.impact-summary--solution {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-summary--solution {
  margin-top: 1.8rem;
}

.impact-card,
.impact-side {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  backdrop-filter: blur(18px);
}

.impact-card {
  padding: 1.4rem;
}

.impact-label,
.impact-side-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #b8c5ff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.impact-value {
  display: block;
  margin-bottom: 0.7rem;
  color: #ffffff;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1;
}

.impact-card p,
.impact-side p {
  margin: 0;
  color: var(--muted);
}

.impact-note {
  margin: 1rem 0 0;
  color: rgba(215, 215, 235, 0.72);
  font-size: 0.92rem;
}

.impact-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.impact-side {
  padding: 1.6rem;
}

.impact-side h3 {
  margin: 0 0 0.7rem;
  color: var(--text);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.impact-side--accent {
  border-color: rgba(184, 197, 255, 0.22);
  background: linear-gradient(180deg, rgba(122, 95, 214, 0.16), rgba(255, 255, 255, 0.04));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes timelineFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(120px);
  }
}

@keyframes proofScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

@media (max-width: 980px) {
  .solutions-grid,
  .demo-grid,
  .testimonials-grid,
  .section-grid,
  .hero-stats,
  .detail-grid,
  .outcomes-grid,
  .impact-summary--home,
  .impact-summary--solution,
  .impact-comparison {
    grid-template-columns: 1fr;
  }

  .testimonials-grid--proof {
    grid-template-columns: 1fr;
  }

  .impact-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    gap: 1.2rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(9, 9, 23, 0.98);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-whatsapp-link {
    display: none;
  }

  .hero-section,
  .section,
  .page-hero {
    padding: 4rem 0;
  }

  .hero-section h1 {
    font-size: clamp(2.1rem, 9vw, 2.9rem);
  }

  .hero-subcopy,
  .section-subtitle,
  .page-hero p,
  .quote-card p,
  .quote-card li {
    font-size: 1rem;
  }

  .process-timeline {
    padding-left: 34px;
  }

  .process-step::before {
    left: -27px;
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .solution-card,
  .testimonial-card,
  .quote-card,
  .impact-card,
  .impact-side {
    padding: 1.5rem;
  }

  .chatbot-toggle {
    right: 16px;
    bottom: 16px;
  }

  .chatbot-panel {
    right: 0.5rem;
    left: 0.5rem;
    bottom: 84px;
    width: auto;
  }

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

