:root {
  --bg: #131919;
  --bg-deep: #0b1112;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --text: #f1f7f6;
  --muted: rgba(241, 247, 246, 0.74);
  --muted-2: rgba(241, 247, 246, 0.56);
  --primary: #00626b;
  --primary-2: #0aa5b2;
  --secondary: #8fb3b0;
  --line: rgba(143, 179, 176, 0.14);
  --line-strong: rgba(143, 179, 176, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.26);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 98, 107, 0.22), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(143, 179, 176, 0.10), transparent 18%),
    linear-gradient(180deg, #081011 0%, #101616 48%, #131919 100%);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

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

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

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

.bg-grid,
.bg-circuits,
.bg-glow {
  position: absolute;
  inset: 0;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(143, 179, 176, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 179, 176, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 88%);
  opacity: 0.45;
}

.bg-circuits {
  background: url("13.png") center center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.bg-glow {
  filter: blur(42px);
  opacity: 0.7;
  animation: glowMove 14s ease-in-out infinite alternate;
}

.glow-1 {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 165, 178, 0.18), transparent 68%);
}

.glow-2 {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 179, 176, 0.14), transparent 68%);
  animation-duration: 18s;
}

@keyframes glowMove {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -18px, 0) scale(1.05);
  }
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* NAVBAR CORREGIDO */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 13, 13, 0.92);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid rgba(143, 179, 176, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 0;
  min-height: 48px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 84px;
  width: auto;
  max-width: 336px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-2));
  transition: width 0.25s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(143, 179, 176, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle.active span {
  opacity: 0;
}

.nav-toggle.active::before {
  transform: rotate(45deg);
}

.nav-toggle.active::after {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 98, 107, 0.18);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(143, 179, 176, 0.18);
  padding: 10px 18px;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(143, 179, 176, 0.18);
}

/* HERO MÁS PEQUEÑO */
.hero {
  position: relative;
  padding: 36px 0 24px;
  overflow: clip;
}

.hero-single {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  min-height: 520px;
}

.hero-single-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-single-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-single .hero-logo-wrap {
  width: min(100%, 300px);
  padding: 24px;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(143, 179, 176, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.hero-single .hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-single {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  min-height: 460px;
}

.hero-single h1 {
  margin: 18px auto 16px;
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 1.1;
  max-width: 900px;
  text-align: center;
  letter-spacing: -0.04em;
}

.hero-single .lead {
  max-width: 760px;
  margin: 0 auto 24px;
}

.hero-single .hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-single .hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--secondary);
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero-single .hero-tagline::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.hero-single .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-single .stat-chip {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(143, 179, 176, 0.12);
}

.hero-single .stat-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-family: "League Spartan", Arial, sans-serif;
}

.hero-single .stat-chip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.tech-line {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 179, 176, 0.22), transparent);
  pointer-events: none;
  animation: lineRun 8s linear infinite;
}

.tech-line-top {
  top: 58px;
}

@keyframes lineRun {
  from {
    transform: translateX(-6%);
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translateX(6%);
    opacity: 0.2;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.panel,
.section-card,
.service-card,
.diff-card,
.process-card,
.contact-box,
.signal-card,
.footer-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(143, 179, 176, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.panel::before,
.section-card::before,
.service-card::before,
.diff-card::before,
.process-card::before,
.contact-box::before,
.signal-card::before,
.footer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(143, 179, 176, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-copy {
  padding: 34px;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(143, 179, 176, 0.08);
  pointer-events: none;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(143, 179, 176, 0.08);
  border: 1px solid rgba(143, 179, 176, 0.14);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary-2));
  box-shadow: 0 0 14px rgba(143, 179, 176, 0.4);
}

.kicker {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

h1,
h2,
h3,
h4,
strong,
.footer-links strong {
  font-family: "League Spartan", Arial, sans-serif;
  letter-spacing: -0.03em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 11ch;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 64ch;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--secondary);
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero-tagline::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-chip {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(143, 179, 176, 0.12);
}

.stat-chip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.stat-chip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  min-height: 360px;
  padding: 20px;
  display: grid;
  place-items: center;
}

.hero-logo-wrap {
  position: relative;
  z-index: 3;
  width: min(100%, 260px);
  padding: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(143, 179, 176, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero-logo {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.4));
}

.hero-deco {
  position: absolute;
  opacity: 0.85;
  pointer-events: none;
  user-select: none;
}

.hero-deco-a {
  width: 120px;
  top: 22px;
  left: 10px;
}

.hero-deco-b {
  width: 110px;
  top: 30px;
  right: 16px;
}

.hero-deco-c {
  width: 140px;
  bottom: 20px;
  left: 18px;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 163, 175, 0.12);
  border: 1px solid rgba(143, 179, 176, 0.16);
  color: var(--text);
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.chip-1 {
  top: 90px;
  left: 16px;
}

.chip-2 {
  top: 70px;
  right: 18px;
}

.chip-3 {
  bottom: 90px;
  right: 22px;
}

.hero-side-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  width: min(280px, calc(100% - 36px));
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(143, 179, 176, 0.12);
  box-shadow: var(--shadow-soft);
}

.side-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-side-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.hero-side-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.signal-strip {
  padding: 8px 0 24px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.signal-card {
  padding: 20px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.signal-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "League Spartan", Arial, sans-serif;
}

.signal-value {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 28px 0 44px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.section-heading p {
  margin: 12px 0 0;
  max-width: 76ch;
  color: var(--muted);
}

.about-grid,
.services-grid,
.diff-grid,
.process-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.contact-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.section-card,
.service-card,
.diff-card,
.process-card,
.contact-box {
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.section-card:hover,
.service-card:hover,
.diff-card:hover,
.process-card:hover,
.contact-box:hover,
.signal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 179, 176, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.section-card p,
.service-card p,
.diff-card p,
.process-card p,
.contact-box p {
  margin: 0;
  color: var(--muted);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 98, 107, 0.18), rgba(143, 179, 176, 0.12));
  border: 1px solid rgba(143, 179, 176, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.service-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.service-card ul,
.contact-box ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li,
.contact-box li {
  margin-bottom: 8px;
}

.step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 98, 107, 0.18), rgba(143, 179, 176, 0.12));
  border: 1px solid rgba(143, 179, 176, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  color: var(--secondary);
  font-size: 1.1rem;
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
}

.contact-box form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  color: var(--text);
  font-size: 0.92rem;
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(143, 179, 176, 0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(241, 247, 246, 0.42);
}

input:focus,
textarea:focus {
  border-color: rgba(143, 179, 176, 0.44);
  box-shadow: 0 0 0 4px rgba(0, 98, 107, 0.15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-side {
  position: relative;
}

.contact-deco {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 120px;
  opacity: 0.22;
  pointer-events: none;
}

.contact-divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, rgba(143, 179, 176, 0.18), transparent);
}

.footer-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 30px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.32));
}

.footer-brand p,
.footer-copy {
  color: rgba(241, 247, 246, 0.66);
}

.footer-links-wrap strong {
  display: block;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  color: var(--muted);
  font-family: "League Spartan", Arial, sans-serif;
  font-weight: 700;
}

.footer-copy {
  margin-top: 18px;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .hero-stats,
  .signal-grid,
  .about-grid,
  .services-grid,
  .diff-grid,
  .process-grid,
  .contact-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 58px;
    padding: 6px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand-logo {
    height: 34px;
    width: auto;
    max-width: 170px;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    margin-top: 10px;
    border-radius: 18px;
    background: rgba(8, 14, 15, 0.96);
    border: 1px solid rgba(143, 179, 176, 0.12);
  }

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

  .nav-links a:not(.btn) {
    padding: 10px 4px;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy,
  .service-card,
  .section-card,
  .diff-card,
  .process-card,
  .contact-box,
  .signal-card,
  .footer-card {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 0.96rem;
  }

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

  .hero-tagline::after {
    width: 44px;
  }

  .hero-visual {
    min-height: 300px;
    padding: 18px;
  }

  .hero-logo-wrap {
    width: min(100%, 200px);
    padding: 14px;
  }

  .hero-deco-a {
    width: 90px;
    top: 14px;
    left: 8px;
  }

  .hero-deco-b {
    width: 85px;
    top: 18px;
    right: 10px;
  }

  .hero-deco-c {
    width: 100px;
    bottom: 14px;
    left: 12px;
  }

  .floating-chip {
    font-size: 0.68rem;
    padding: 7px 9px;
  }

  .chip-1 {
    top: 66px;
    left: 10px;
  }

  .chip-2 {
    top: 52px;
    right: 10px;
  }

  .chip-3 {
    right: 10px;
    bottom: 72px;
  }

  .hero-side-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .contact-deco {
    width: 90px;
  }

  section {
    padding: 18px 0 28px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .footer-logo {
    width: 120px;
  }
}
@media (max-width: 980px) {
  .hero-single {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .hero-single-content {
    order: 2;
  }

  .hero-single-visual {
    order: 1;
  }

  .hero-single .hero-logo-wrap {
    width: min(100%, 240px);
    padding: 18px;
  }

  .hero-single h1 {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .hero-single .hero-stats {
    grid-template-columns: 1fr;
  }
}
