:root {
  color-scheme: dark;
  --bg: #0b0f19;
  --bg-soft: #111827;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #b8c3d9;
  --blue: #2563eb;
  --blue-soft: #3b82f6;
  --aqua: #2dd4bf;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.22), transparent 36rem),
    radial-gradient(circle at 90% 18%, rgba(45, 212, 191, 0.12), transparent 28rem),
    linear-gradient(180deg, #0b0f19 0%, #0c1221 42%, #080b12 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
  pointer-events: none;
}

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.animated-bg span {
  position: absolute;
  display: block;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  mix-blend-mode: screen;
  animation: bgFloat 18s ease-in-out infinite alternate;
}

.animated-bg span:nth-child(1) {
  top: -14rem;
  left: -10rem;
  background: rgba(37, 99, 235, 0.62);
}

.animated-bg span:nth-child(2) {
  top: 18rem;
  right: -16rem;
  background: rgba(45, 212, 191, 0.34);
  animation-duration: 22s;
  animation-delay: -6s;
}

.animated-bg span:nth-child(3) {
  left: 22%;
  bottom: -18rem;
  background: rgba(59, 130, 246, 0.34);
  animation-duration: 26s;
  animation-delay: -10s;
}

.particle-rain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle-rain span {
  position: absolute;
  top: -1rem;
  width: var(--size, 4px);
  height: var(--size, 4px);
  border-radius: 50%;
  background: rgba(147, 197, 253, var(--alpha, 0.42));
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.45);
  animation: particleFall var(--duration, 14s) linear var(--delay, 0s) infinite;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(11, 15, 25, 0.88);
  box-shadow: 0 24px 80px rgba(37, 99, 235, 0.18), 0 18px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.22), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: clamp(9rem, 16vw, 13rem);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(37, 99, 235, 0.16);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.icon-link {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.55);
  background: rgba(37, 99, 235, 0.18);
}

.icon-link svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.select-wrap select {
  min-width: 4.5rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0 0.55rem;
}

.section-band,
.section,
.logo-section,
.final-cta,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding: clamp(4rem, 8vw, 7rem) 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8eb5ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.hero-copy p,
.contact-copy p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  color: #fff;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.38);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn.full {
  width: 100%;
}

.market-strip,
.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.market-strip span,
.contact-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.main-card {
  position: absolute;
  inset: 4rem 1rem auto auto;
  width: min(100%, 27rem);
  padding: 1.25rem;
}

.card-head,
.metric-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.card-head span,
.dashboard-card small {
  color: var(--muted);
}

.growth-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.7rem;
  height: 13rem;
  margin: 1.5rem 0;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(8, 13, 24, 0.7);
  overflow: hidden;
}

.growth-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(59, 130, 246, 0.18) 45%, rgba(45, 212, 191, 0.28) 50%, transparent 62%);
  transform: translateX(-120%);
  animation: pipelineSweep 4.8s ease-in-out infinite;
}

.growth-line span {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--aqua), var(--blue));
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.35);
  transform-origin: bottom;
  animation: pipelinePulse 3.6s ease-in-out infinite;
}

.growth-line span:nth-child(1) { height: 35%; animation-delay: 0s; }
.growth-line span:nth-child(2) { height: 52%; animation-delay: 0.18s; }
.growth-line span:nth-child(3) { height: 46%; animation-delay: 0.36s; }
.growth-line span:nth-child(4) { height: 72%; animation-delay: 0.54s; }
.growth-line span:nth-child(5) { height: 92%; animation-delay: 0.72s; }

.metric-grid > div {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-grid strong {
  display: block;
  font-size: 1.3rem;
}

.side-card {
  position: absolute;
  min-width: 13rem;
  padding: 1rem;
}

.top-card {
  top: 1rem;
  left: 0;
}

.bottom-card {
  right: 0;
  bottom: 2rem;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.orbit-one {
  inset: 1rem 2rem 5rem 2rem;
}

.orbit-two {
  inset: 5rem 0 2rem 5rem;
  animation-duration: 24s;
}

.logo-section {
  padding: 2rem 0 4rem;
}

.logo-section h2 {
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.logo-rail {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.logo-card {
  display: grid;
  place-items: center;
  gap: 0.45rem;
  min-width: 14rem;
  height: 5rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  padding: 0.7rem 1rem;
}

.logo-card img {
  display: block;
  max-width: 11rem;
  max-height: 3rem;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.logo-card img.logo-light {
  filter: grayscale(1) brightness(0) invert(1) contrast(1.08);
  opacity: 0.95;
}

.logo-card b {
  display: none;
  font-size: 0.8rem;
  line-height: 1.15;
  text-align: center;
}

.logo-card img:not([src]),
.logo-card img[src=""] {
  display: none;
}

.logo-card.wordmark b,
.logo-card.placeholder b {
  display: block;
}

.logo-card.placeholder {
  color: rgba(184, 195, 217, 0.56);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.stats-grid,
.case-grid,
.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.case-card,
.service-grid article,
.testimonial-grid article,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.stat-card {
  padding: 1.3rem;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
}

.stat-card.counting {
  animation: statLift 900ms ease var(--delay, 0ms) both;
  border-color: rgba(59, 130, 246, 0.42);
  box-shadow: 0 24px 75px rgba(37, 99, 235, 0.16);
}

.stat-card.counting strong {
  color: #dbeafe;
  text-shadow: 0 0 22px rgba(59, 130, 246, 0.42);
}

.stat-card span,
.case-card li,
.testimonial-grid p {
  color: var(--muted);
}

.case-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 1.2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.case-card,
.service-grid article,
.testimonial-grid article {
  padding: 1.2rem;
}

.case-card > span,
.service-grid span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #8eb5ff;
  font-weight: 900;
}

.case-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article {
  min-height: 8rem;
  transition: transform 180ms ease, background 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  background: var(--panel-strong);
}

.method .section-heading {
  margin-bottom: 2.6rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.7), rgba(45, 212, 191, 0.42), transparent);
}

.timeline article {
  position: relative;
  min-height: 15rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.timeline article::after {
  content: "";
  position: absolute;
  inset: auto -25% -35% 20%;
  height: 7rem;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22), transparent 66%);
  pointer-events: none;
}

.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.34);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  position: relative;
  z-index: 1;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.lead-form {
  padding: 1.25rem;
}

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

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 8, 15, 0.65);
  color: var(--text);
  padding: 0 0.85rem;
}

.phone-row {
  display: grid;
  grid-template-columns: 6.8rem minmax(0, 1fr);
  gap: 0.65rem;
}

.phone-row select,
.phone-row input {
  min-width: 0;
}

.lead-form button {
  margin-top: 1rem;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.form-note.success {
  color: #86efac;
}

.form-note.error {
  color: #fca5a5;
}

.form-fallback {
  display: none;
  margin-top: 0.8rem;
  min-height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  font-weight: 800;
  text-align: center;
}

.form-fallback.visible {
  display: grid;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.26), rgba(255, 255, 255, 0.06));
}

.final-cta h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #22c55e;
  color: #06210f;
  font-weight: 950;
  box-shadow: 0 16px 44px rgba(34, 197, 94, 0.32);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes statLift {
  0% { transform: translateY(12px); }
  45% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes bgFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  45% { transform: translate3d(8rem, 4rem, 0) scale(1.12); }
  100% { transform: translate3d(-4rem, 7rem, 0) scale(0.94); }
}

@keyframes particleFall {
  0% {
    transform: translate3d(0, -8vh, 0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--drift, 2rem), 112vh, 0);
    opacity: 0;
  }
}

@keyframes pipelinePulse {
  0%, 100% {
    transform: scaleY(0.82);
    filter: brightness(0.92);
  }
  42% {
    transform: scaleY(1.08);
    filter: brightness(1.18);
  }
  68% {
    transform: scaleY(0.96);
    filter: brightness(1);
  }
}

@keyframes pipelineSweep {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .animated-bg span {
    animation: none !important;
  }

  .particle-rain {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    min-height: auto;
  }

  .main-card {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: 100%;
  }

  .side-card {
    position: relative;
    inset: auto;
    min-width: 0;
    width: 100%;
  }

  .top-card,
  .bottom-card {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .orbit {
    display: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    top: 0.5rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    overflow-x: auto;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  h1 {
    max-width: 13ch;
  }

  .stats-grid,
  .case-grid,
  .service-grid,
  .testimonial-grid,
  .faq-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    display: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.2), transparent 24rem),
      linear-gradient(180deg, #0b0f19 0%, #0c1221 48%, #080b12 100%);
  }

  body::before {
    background-size: 48px 48px;
  }

  .animated-bg span {
    width: 24rem;
    height: 24rem;
    filter: blur(62px);
    opacity: 0.22;
  }

  .particle-rain span {
    opacity: 0.72;
  }

  .site-header,
  .section-band,
  .section,
  .logo-section,
  .final-cta,
  .footer {
    width: min(100% - 1.1rem, 1180px);
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.55rem;
    padding: 0.6rem;
  }

  .brand {
    width: auto;
    min-width: 0;
  }

  .brand img {
    width: clamp(8.6rem, 42vw, 10.5rem);
  }

  .header-controls {
    margin-left: auto;
  }

  .select-wrap select {
    min-width: 4.1rem;
    height: 2.25rem;
    padding: 0 0.45rem;
    font-size: 0.9rem;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 0.45rem;
    padding: 0.1rem 0 0.05rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.86rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 13vw, 3.45rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .hero-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }

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

  .market-strip,
  .contact-proof {
    margin-top: 1.35rem;
    gap: 0.45rem;
  }

  .market-strip span,
  .contact-proof span {
    padding: 0.38rem 0.62rem;
    font-size: 0.78rem;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    min-height: auto;
  }

  .orbit {
    display: none;
  }

  .main-card {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 1rem;
  }

  .side-card {
    position: relative;
    inset: auto;
    min-width: 10rem;
    width: 100%;
    padding: 0.85rem;
  }

  .top-card,
  .bottom-card {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .growth-line {
    height: 9.5rem;
    margin: 1rem 0;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .metric-grid {
    gap: 0.5rem;
  }

  .metric-grid > div {
    padding: 0.62rem;
  }

  .metric-grid strong {
    font-size: 1.05rem;
  }

  .logo-section {
    padding: 1rem 0 2.4rem;
  }

  .logo-section h2 {
    max-width: 18rem;
    margin-inline: auto;
    line-height: 1.35;
  }

  .logo-card {
    min-width: 10rem;
    height: 4.4rem;
  }

  .logo-card img {
    max-width: 8.8rem;
    max-height: 2.5rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .stats-grid,
  .case-grid,
  .service-grid,
  .testimonial-grid,
  .faq-grid,
  .timeline,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .stat-card,
  .case-card,
  .service-grid article,
  .testimonial-grid article,
  .faq-grid article {
    padding: 1rem;
  }

  .stat-card strong {
    font-size: 2rem;
  }

  .service-grid article {
    min-height: auto;
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }

  .service-grid span {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .service-grid h3 {
    margin-bottom: 0;
  }

  .method .section-heading {
    margin-bottom: 1.5rem;
  }

  .timeline {
    gap: 0.8rem;
  }

  .timeline article {
    min-height: auto;
    padding: 1rem;
  }

  .timeline span {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0.75rem;
  }

  .timeline p {
    font-size: 0.9rem;
  }

  .contact-section {
    gap: 1.4rem;
    padding-bottom: 3.2rem;
  }

  .lead-form {
    padding: 1rem;
  }

  .lead-form input,
  .lead-form select {
    min-height: 2.8rem;
  }

  .phone-row {
    grid-template-columns: 6.2rem minmax(0, 1fr);
    gap: 0.5rem;
  }

  .final-cta {
    margin-bottom: 2rem;
    padding: 1.25rem;
  }

  .final-cta h2 {
    max-width: 14ch;
  }

  .final-cta .btn {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 5rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.1rem;
    height: 3.1rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 390px) {
  .site-header,
  .section-band,
  .section,
  .logo-section,
  .final-cta,
  .footer {
    width: min(100% - 0.75rem, 1180px);
  }

  .brand img {
    width: 8rem;
  }

  .nav-links a {
    padding-inline: 0.58rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .btn {
    padding-inline: 0.8rem;
  }
}
