﻿*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #06080d;
  --bg-2: #0d1119;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --stroke: rgba(255,255,255,0.12);
  --text: #eef2ff;
  --muted: #99a3b8;
  --gold: #d9b46b;
  --gold-soft: rgba(217,180,107,0.18);
  --blue: #85a6ff;
  --blue-soft: rgba(133,166,255,0.18);
  --shadow: 0 30px 80px rgba(0,0,0,0.45);
  --radius: 26px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(133,166,255,0.12), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(217,180,107,0.12), transparent 28%),
    radial-gradient(circle at 50% 70%, rgba(133,166,255,0.05), transparent 34%),
    linear-gradient(180deg, #06080d 0%, #090d14 50%, #06080d 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

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

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

#app-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  opacity: 0.42;
  filter: saturate(120%);
}

.circuit-bg {
  position: fixed;
  inset: -8%;
  z-index: -4;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.92;
}

.circuit-bg::before,
.circuit-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.circuit-bg::before {
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(133,166,255,0.18), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(217,180,107,0.16), transparent 20%),
    radial-gradient(circle at 48% 72%, rgba(133,166,255,0.12), transparent 30%);
  background-size: 140px 140px, 140px 140px, auto, auto, auto;
  opacity: 0.68;
  animation: circuitGridShift 26s ease-in-out infinite alternate;
}

.circuit-bg::after {
  background:
    linear-gradient(135deg, transparent 0%, rgba(133,166,255,0.08) 46%, transparent 100%),
    radial-gradient(circle at 12% 24%, rgba(217,180,107,0.12), transparent 16%),
    radial-gradient(circle at 88% 76%, rgba(133,166,255,0.14), transparent 18%);
  opacity: 0.4;
  filter: blur(18px);
  animation: circuitAuraShift 18s ease-in-out infinite alternate;
}

.circuit-svg {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
}

.circuit-svg-main {
  opacity: 0.46;
  animation: circuitDriftA 34s ease-in-out infinite alternate;
}

.circuit-svg-accent {
  opacity: 0.3;
  animation: circuitDriftB 28s ease-in-out infinite alternate;
}

.circuit-svg .trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circuit-svg .trace-blue {
  stroke: rgba(133,166,255,0.34);
  stroke-width: 2.6;
  filter: drop-shadow(0 0 10px rgba(133,166,255,0.12));
}

.circuit-svg .trace-gold {
  stroke: rgba(217,180,107,0.30);
  stroke-width: 2.4;
  filter: drop-shadow(0 0 10px rgba(217,180,107,0.12));
}

.circuit-svg .trace-soft {
  stroke: rgba(226,234,250,0.12);
  stroke-width: 1.8;
}

.circuit-svg .node,
.circuit-svg .chip {
  animation: circuitBlink 7s ease-in-out infinite;
}

.circuit-svg .node-blue {
  fill: rgba(133,166,255,0.72);
}

.circuit-svg .node-gold {
  fill: rgba(217,180,107,0.68);
}

.circuit-svg .chip-blue {
  fill: rgba(133,166,255,0.08);
  stroke: rgba(133,166,255,0.24);
  stroke-width: 2;
}

.circuit-svg .chip-gold {
  fill: rgba(217,180,107,0.08);
  stroke: rgba(217,180,107,0.22);
  stroke-width: 2;
}

.circuit-svg .chip-soft {
  fill: rgba(255,255,255,0.04);
  stroke: rgba(226,234,250,0.12);
  stroke-width: 1.6;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.045;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.6) 0.55px, transparent 0.8px);
  background-size: 10px 10px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: 14px;
  background: linear-gradient(180deg, rgba(6, 8, 13, 0.48), rgba(6, 8, 13, 0));
  border-bottom: 0;
}

.nav-wrap {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 12% 50%, rgba(217,180,107,0.12), transparent 22%),
    radial-gradient(circle at 82% 0%, rgba(133,166,255,0.10), transparent 24%),
    linear-gradient(180deg, rgba(9, 12, 20, 0.94), rgba(6, 8, 13, 0.90));
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.nav-wrap::before,
.nav-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-wrap::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(217,180,107,0.12), transparent 16%, transparent 84%, rgba(133,166,255,0.10)),
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 34%);
  opacity: 0.9;
}

.nav-wrap::after {
  inset: 1px;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.brand::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 142px;
  height: 82px;
  transform: translateY(-50%);
  border-radius: 28px;
  background:
    radial-gradient(circle at 26% 38%, rgba(240,203,131,0.34), transparent 38%),
    radial-gradient(circle at 74% 62%, rgba(141,176,255,0.28), transparent 46%);
  filter: blur(18px);
  opacity: 0.86;
  pointer-events: none;
  z-index: -1;
  animation: brandLogoAura 5.8s ease-in-out infinite;
}

.brand-logo-wrap {
  position: relative;
  width: 116px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    radial-gradient(circle at 12% 14%, rgba(240,203,131,0.18), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(141,176,255,0.12), transparent 34%),
    linear-gradient(180deg, rgba(10,12,18,0.94), rgba(7,9,15,0.98));
  box-shadow:
    0 16px 34px rgba(0,0,0,0.28),
    0 0 24px rgba(217,180,107,0.16),
    0 0 42px rgba(141,176,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -10px 18px rgba(6,8,14,0.34);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: brandLogoPulse 4.8s ease-in-out infinite;
}

.brand-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -34% -16%;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 24%,
    rgba(255,255,255,0.06) 38%,
    rgba(255,255,255,0.56) 49%,
    rgba(255,255,255,0.10) 60%,
    transparent 74%
  );
  transform: translateX(-135%) skewX(-18deg);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: brandLogoSweep 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 28%, transparent 76%, rgba(7,9,15,0.10)),
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 28%, transparent 70%, rgba(217,180,107,0.08)),
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 24%);
  pointer-events: none;
  z-index: 1;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.34);
  filter: saturate(1.08) contrast(1.05) brightness(0.98);
}

.brand:hover .brand-logo-wrap {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.30),
    0 0 30px rgba(217,180,107,0.22),
    0 0 52px rgba(141,176,255,0.14),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -10px 18px rgba(6,8,14,0.38);
}

.brand-copy {
  display: grid;
  gap: 5px;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #f4f7ff;
}

.brand-copy small {
  color: #d5b06d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.nav a,
.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav a {
  position: relative;
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217,180,107,0.95), rgba(133,166,255,0.95));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.desktop-cta {
  position: relative;
  z-index: 1;
  padding-left: 24px;
  padding-right: 24px;
  border-color: rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 12px 24px rgba(0,0,0,0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #0a0d14;
  background: linear-gradient(135deg, #f0cb83 0%, #d9b46b 45%, #8db0ff 100%);
  box-shadow: 0 16px 40px rgba(137, 170, 255, 0.18), 0 12px 30px rgba(217,180,107,0.16);
}

.btn-hero-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 18px 42px rgba(137,170,255,0.22),
    0 14px 32px rgba(217,180,107,0.20),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn-hero-glow span {
  position: relative;
  z-index: 2;
}

.btn-hero-glow::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  background:
    linear-gradient(120deg,
      transparent 20%,
      rgba(255,255,255,0.08) 36%,
      rgba(255,255,255,0.62) 49%,
      rgba(255,255,255,0.16) 60%,
      transparent 74%);
  transform: translateX(-145%) skewX(-18deg);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.btn-hero-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.22), transparent 58%),
    radial-gradient(circle at 20% 20%, rgba(141,176,255,0.18), transparent 36%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.btn-hero-glow:hover,
.btn-hero-glow:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 24px 56px rgba(137,170,255,0.32),
    0 18px 42px rgba(217,180,107,0.26),
    0 0 26px rgba(255,255,255,0.14);
}

.btn-hero-glow:hover::before,
.btn-hero-glow:focus-visible::before {
  transform: translateX(145%) skewX(-18deg);
}

.btn-hero-glow:hover::after,
.btn-hero-glow:focus-visible::after {
  opacity: 1;
}

.btn-secondary,
.btn-ghost {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.whatsapp-float {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(37,211,102,0.30);
  background:
    radial-gradient(circle at 30% 30%, rgba(117, 242, 164, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(8,11,18,0.94), rgba(10,15,24,0.88));
  box-shadow:
    0 20px 42px rgba(0,0,0,0.36),
    0 0 0 1px rgba(37,211,102,0.08),
    0 0 34px rgba(37,211,102,0.16);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappDockFloat 4.8s ease-in-out infinite;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37,211,102,0.26), rgba(141,176,255,0.14), rgba(217,180,107,0.16));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float::after,
.whatsapp-float__icon {
  position: relative;
  z-index: 1;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(37,211,102,0.14);
  box-shadow: inset 0 0 22px rgba(37,211,102,0.08);
  pointer-events: none;
}

.whatsapp-float__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c15e 0%, #25d366 45%, #74f0a0 100%);
  color: #06210f;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 12px 24px rgba(37,211,102,0.24),
    0 0 26px rgba(37,211,102,0.16);
}

.whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(calc(-50% - 4px)) scale(1.04);
  border-color: rgba(37,211,102,0.48);
  box-shadow:
    0 24px 52px rgba(0,0,0,0.42),
    0 0 0 1px rgba(37,211,102,0.12),
    0 0 42px rgba(37,211,102,0.22);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 1;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: white;
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle span:first-child { top: 14px; }
.menu-toggle span:last-child { top: 24px; }

.mobile-menu {
  display: none;
  padding: 0 16px 18px;
  gap: 12px;
  flex-direction: column;
}

.mobile-menu a {
  padding: 10px 6px;
  color: var(--muted);
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  --hero-visual-offset: 78px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.hero-copy {
  align-self: start;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d5dbeb;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--blue));
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d9b46b 32%, #a9c1ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.section-head p,
.service-card p,
.project-card p,
.process-card p,
.cta-wrap p,
.tech-point span,
.implementation-box li,
.site-footer p,
.metric-card span {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 24px 0 0;
}

.hero-launch-card {
  margin: 26px 0 0;
  max-width: 760px;
}

.hero-launch-card__frame {
  position: relative;
  padding: 14px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(217,180,107,0.10), rgba(133,166,255,0.08));
  box-shadow:
    0 24px 58px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}

.hero-launch-card__frame::before {
  content: "";
  position: absolute;
  inset: auto 10% -10% 10%;
  height: 160px;
  background: radial-gradient(circle, rgba(217,180,107,0.18), rgba(133,166,255,0.10), transparent 72%);
  filter: blur(32px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-launch-card__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 26%, transparent 74%, rgba(217,180,107,0.08)),
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 26%);
  pointer-events: none;
}

.hero-launch-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 24px;
}

.hero-launch-card figcaption {
  margin: 18px 10px 0;
  max-width: 58ch;
  color: #dbe4f4;
  line-height: 1.7;
}

.hero-launch-card figcaption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.hero-offer {
  margin-top: 24px;
  max-width: 620px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(217,180,107,0.22);
  background:
    linear-gradient(135deg, rgba(217,180,107,0.14), rgba(133,166,255,0.10)),
    rgba(255,255,255,0.04);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

.offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0d14;
  background: linear-gradient(135deg, #f0cb83 0%, #d9b46b 45%, #8db0ff 100%);
}

.hero-offer p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: #dce5f5;
}

.hero-offer strong {
  color: var(--text);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.hero-metrics article,
.metric-card,
.service-card,
.project-card,
.process-card,
.review-card,
.tech-point,
.contact-card,
.implementation-box,
.trust-item,
.side-panel,
.main-dashboard,
.hero-balance-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  border-radius: 20px;
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  height: calc(100% - var(--hero-visual-offset));
  min-height: calc(100% - var(--hero-visual-offset));
  margin: var(--hero-visual-offset) 0 0 auto;
  gap: 14px;
}

.glass-card {
  backdrop-filter: blur(18px);
}

.main-dashboard {
  flex: 1 1 auto;
  position: relative;
  border-radius: 30px;
  padding: 22px;
  min-height: 340px;
  overflow: hidden;
  width: 100%;
  margin-right: 0;
  z-index: 1;
}

.dashboard-top,
.dashboard-grid,
.side-row,
.projects-toolbar,
.footer-wrap,
.reviews-meta,
.tech-grid,
.cta-wrap,
.section-head {
  display: flex;
}

.dashboard-top,
.side-row,
.footer-wrap {
  justify-content: space-between;
  align-items: center;
}

.chip,
.status,
.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #d7dff0;
}

.status {
  color: #9be6b4;
}

.dashboard-title {
  margin-top: 26px;
}

.dashboard-title h2 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

.dashboard-title p {
  margin-top: 10px;
  color: var(--muted);
}

.dashboard-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-card {
  border-radius: 20px;
  padding: 16px 18px;
  min-height: 88px;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.code-lines {
  position: absolute;
  inset: auto 22px 22px 22px;
  display: grid;
  gap: 8px;
}

.code-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(217,180,107,0.18), rgba(133,166,255,0.18), rgba(255,255,255,0.08));
}

.code-lines span:nth-child(1) { width: 88%; }
.code-lines span:nth-child(2) { width: 70%; }
.code-lines span:nth-child(3) { width: 92%; }
.code-lines span:nth-child(4) { width: 56%; }

.side-panel {
  flex: 0 0 auto;
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  margin-right: 0;
  border-radius: 24px;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: linear-gradient(180deg, rgba(16, 19, 28, 0.90), rgba(10, 13, 20, 0.74));
  box-shadow: 0 24px 54px rgba(0,0,0,0.34);
  z-index: 2;
}

.side-row {
  display: grid;
  gap: 8px;
  align-items: start;
  min-height: 100%;
  padding: 14px 15px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.side-row label {
  color: #9aa6be;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-row strong {
  display: block;
  color: #eef3ff;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

.hero-balance-card {
  flex: 0 0 auto;
  margin-top: auto;
  position: relative;
  width: 100%;
  min-height: 112px;
  padding: 16px 18px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  gap: 16px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(217,180,107,0.10), rgba(133,166,255,0.09)),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

.hero-balance-card::before {
  content: "";
  position: absolute;
  inset: auto auto -30% -8%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(133,166,255,0.20), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-balance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), transparent 30%, transparent 72%, rgba(217,180,107,0.08)),
    radial-gradient(circle at top right, rgba(217,180,107,0.10), transparent 28%);
  pointer-events: none;
}

.hero-balance-copy,
.hero-balance-points {
  position: relative;
  z-index: 1;
}

.hero-balance-copy {
  display: grid;
  gap: 10px;
}

.hero-balance-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #d5b06d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-balance-copy strong {
  display: block;
  max-width: 28ch;
  color: #f3f6ff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.hero-balance-points {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 10px;
}

.hero-balance-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #edf2ff;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.65;
}

.orb-a {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(217,180,107,0.55), transparent 70%);
  top: 30px;
  right: 40px;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(133,166,255,0.45), transparent 72%);
  bottom: 60px;
  left: -20px;
}

.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.trust-strip {
  padding-top: 0;
}

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

.trust-item,
.service-card,
.process-card,
.review-card,
.tech-point {
  border-radius: 24px;
  padding: 22px;
}

.trust-item span,
.process-card span {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif;
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
}

.section-head {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.section-head p {
  max-width: 70ch;
  line-height: 1.75;
}

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

.service-card h3,
.process-card h3,
.project-content h3,
.review-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.projects-toolbar {
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, rgba(217,180,107,0.20), rgba(133,166,255,0.15));
  border-color: rgba(217,180,107,0.4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,180,107,0.22);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.02);
}

.project-thumb {
  display: block;
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(217,180,107,0.22), transparent 35%),
    radial-gradient(circle at bottom left, rgba(133,166,255,0.22), transparent 35%),
    #0d1119;
  overflow: hidden;
}

.project-thumb::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    radial-gradient(circle at top right, rgba(217,180,107,0.08), transparent 28%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 18px 34px rgba(0,0,0,0.18);
  pointer-events: none;
}

.project-thumb-link {
  cursor: pointer;
}

.project-thumb-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.05);
  background: #0b0f17;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,13,0.02) 0%, rgba(6,8,13,0.08) 100%),
    radial-gradient(circle at top right, rgba(217,180,107,0.10), transparent 28%),
    radial-gradient(circle at bottom left, rgba(133,166,255,0.12), transparent 32%);
  pointer-events: none;
}

.project-card:hover .project-thumb-image {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.02);
}

.project-art {
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 40%);
  overflow: hidden;
}

.project-art::before,
.project-art::after {
  content: "";
  position: absolute;
  border-radius: 18px;
}

.project-art::before {
  inset: 18px 18px auto 18px;
  height: 16px;
  background: linear-gradient(90deg, rgba(255,255,255,0.10), rgba(217,180,107,0.18));
}

.project-art::after {
  inset: 52px 18px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.project-content {
  flex: 1 1 auto;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 22px 22px 24px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0;
  min-height: 40px;
}

.project-meta small {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #9aa6be;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-content h3 {
  margin: 0;
  line-height: 1.08;
}

.project-content p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.6;
}

.project-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.project-links a,
.project-link-placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  color: #dce5ff;
  font-weight: 600;
}

.project-link-placeholder {
  color: var(--muted);
}

.implementation-box {
  margin-top: 24px;
  border-radius: 28px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(217,180,107,0.06), rgba(133,166,255,0.05));
}

.implementation-panel {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(217,180,107,0.10), transparent 26%),
    linear-gradient(180deg, rgba(14, 18, 28, 0.92), rgba(10, 13, 20, 0.80));
}

.implementation-panel h3 {
  margin: 10px 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.implementation-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d6def0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.implementation-panel-ops .implementation-kicker {
  color: #b7f0c9;
  border-color: rgba(37,211,102,0.18);
  background: rgba(37,211,102,0.08);
}

.implementation-panel-sales .implementation-kicker {
  color: #d8e5ff;
  border-color: rgba(133,166,255,0.16);
  background: rgba(133,166,255,0.08);
}

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

.impact-card {
  border-radius: 20px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.impact-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.impact-card span {
  display: block;
  margin-top: 10px;
  color: #c6d0e5;
  line-height: 1.35;
  min-height: 2.7em;
}

.impact-bar {
  margin-top: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.impact-bar span {
  display: block;
  height: 100%;
  width: var(--impact-fill, 50%);
  margin-top: 0;
  min-height: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(217,180,107,0.92), rgba(133,166,255,0.96));
  box-shadow: 0 0 18px rgba(133,166,255,0.18);
}

.impact-points {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.impact-points li {
  color: #dbe3f3;
  line-height: 1.6;
}

.impact-note {
  margin: 18px 0 0;
  color: #9aa6be;
  font-size: 0.92rem;
  line-height: 1.55;
}

.implementation-panel-ops .impact-card strong {
  color: #7cf0ac;
}

.implementation-panel-sales .impact-card strong {
  color: #dfe9ff;
}

.implementation-panel-sales .impact-bar span {
  background: linear-gradient(90deg, rgba(133,166,255,0.96), rgba(217,180,107,0.9));
}

.reviews-shell {
  overflow: hidden;
}

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

.review-card {
  min-height: 250px;
}

.review-stars {
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 18px;
}

.review-card blockquote {
  margin: 0 0 18px;
  line-height: 1.8;
  color: #dde5f5;
}

.review-author strong {
  display: block;
  margin-bottom: 4px;
}

.tech-grid {
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.tech-copy {
  gap: 0;
}

.tech-grid > * {
  flex: 1;
}

.tech-points {
  display: grid;
  gap: 16px;
}

.tech-summary {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tech-summary-card {
  border-radius: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(135deg, rgba(217,180,107,0.05), rgba(133,166,255,0.04));
}

.tech-summary-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.tech-summary-card span {
  color: #c7d2e8;
  line-height: 1.55;
}

.tech-point-advanced {
  padding: 20px 22px;
  background:
    radial-gradient(circle at top right, rgba(217,180,107,0.08), transparent 24%),
    linear-gradient(180deg, rgba(17, 21, 31, 0.92), rgba(11, 14, 22, 0.82));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.tech-point-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tech-point-top strong {
  font-size: 1.08rem;
}

.tech-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #d9e4f9;
  font-size: 0.82rem;
  white-space: nowrap;
}

.tech-stat b {
  color: #f3cb83;
  font-size: 0.98rem;
}

.tech-point-advanced > span {
  display: block;
  margin-top: 12px;
  line-height: 1.65;
}

.tech-meter {
  margin-top: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.tech-meter span {
  display: block;
  width: var(--tech-fill, 60%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(217,180,107,0.96), rgba(133,166,255,0.96));
  box-shadow: 0 0 18px rgba(133,166,255,0.18);
}

.cta-band {
  padding-bottom: 120px;
}

.cta-wrap {
  align-items: stretch;
  gap: 24px;
  justify-content: space-between;
}

.cta-wrap > * {
  flex: 1;
}

.contact-card {
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 14px;
}

.contact-card label {
  display: grid;
  gap: 8px;
  color: #d8e1f3;
  font-size: 0.95rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(217,180,107,0.5);
  box-shadow: 0 0 0 4px rgba(217,180,107,0.08);
}

.site-footer {
  padding: 26px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

@keyframes circuitGridShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.62;
  }
  50% {
    transform: translate3d(1.2%, -1.6%, 0) scale(1.02);
    opacity: 0.78;
  }
  100% {
    transform: translate3d(-1.4%, 1.4%, 0) scale(1.04);
    opacity: 0.66;
  }
}

@keyframes circuitAuraShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, 1.2%, 0);
  }
  100% {
    transform: translate3d(1.8%, -1.6%, 0);
  }
}

@keyframes circuitDriftA {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.4%, -1.2%, 0) scale(1.018);
  }
  100% {
    transform: translate3d(-1.2%, 1.4%, 0) scale(1.032);
  }
}

@keyframes circuitDriftB {
  0% {
    transform: translate3d(0, 0, 0) scale(1.01);
  }
  50% {
    transform: translate3d(-1.8%, 1.1%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(1.4%, -1.3%, 0) scale(1.02);
  }
}

@keyframes circuitBlink {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
  }
}

@keyframes whatsappDockFloat {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes brandLogoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 16px 34px rgba(0,0,0,0.28),
      0 0 24px rgba(217,180,107,0.16),
      0 0 42px rgba(141,176,255,0.10),
      inset 0 1px 0 rgba(255,255,255,0.12),
      inset 0 -10px 18px rgba(6,8,14,0.34);
  }

  50% {
    transform: translateY(-1px) scale(1.015);
    box-shadow:
      0 18px 38px rgba(0,0,0,0.30),
      0 0 32px rgba(217,180,107,0.24),
      0 0 56px rgba(141,176,255,0.16),
      inset 0 1px 0 rgba(255,255,255,0.18),
      inset 0 -10px 18px rgba(6,8,14,0.38);
  }
}

@keyframes brandLogoSweep {
  0% {
    transform: translateX(-135%) skewX(-18deg);
    opacity: 0;
  }

  12% {
    opacity: 0.95;
  }

  38% {
    transform: translateX(138%) skewX(-18deg);
    opacity: 0.78;
  }

  100% {
    transform: translateX(138%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes brandLogoAura {
  0%,
  100% {
    transform: translateY(-50%) scale(0.96);
    opacity: 0.72;
  }

  50% {
    transform: translateY(-50%) scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .tech-grid,
  .cta-wrap,
  .services-grid,
  .process-grid,
  .projects-grid,
  .reviews-track,
  .trust-grid,
  .implementation-box {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .cta-wrap,
  .tech-grid {
    display: grid;
  }

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

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

  .tech-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-cta,
  .nav {
    display: none;
  }

  .nav-wrap {
    min-height: 82px;
    padding: 12px 14px;
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 94px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .whatsapp-float {
    top: auto;
    bottom: 18px;
    right: 18px;
    width: 72px;
    height: 72px;
    transform: none;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    transform: translateY(-4px) scale(1.02);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
  }

  .mobile-menu.active {
    display: flex;
  }

  .hero-grid,
  .services-grid,
  .process-grid,
  .projects-grid,
  .reviews-track,
  .trust-grid,
  .implementation-box,
  .cta-wrap,
  .tech-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: auto;
    margin: 42px 0 0;
  }

  .main-dashboard {
    flex: 0 0 auto;
    min-height: 360px;
    width: 100%;
    margin-right: 0;
  }

  .side-panel {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .hero-balance-card {
    grid-template-columns: 1fr;
    margin-top: 0;
    min-height: auto;
  }

  .hero-balance-points {
    justify-content: flex-start;
  }

  .section {
    padding: 78px 0;
  }

  .hero-copy h1,
  .section-head h2 {
    max-width: none;
  }

  .project-thumb {
    aspect-ratio: 16 / 10;
  }
}

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

  .tech-point-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-launch-card__frame {
    padding: 10px;
    border-radius: 24px;
  }

  .hero-launch-card__image {
    border-radius: 18px;
  }

  .hero-launch-card figcaption {
    margin-left: 4px;
    margin-right: 4px;
  }

  .implementation-panel {
    padding: 20px;
  }

  .whatsapp-float {
    width: 68px;
    height: 68px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .btn,
  .filter-btn {
    width: 100%;
  }

  .hero-actions,
  .project-links {
    flex-direction: column;
  }

  .project-thumb {
    padding: 12px;
  }

  .project-thumb::before,
  .project-art {
    inset: 12px;
  }

  .project-content {
    padding: 18px 18px 20px;
  }

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

  .hero-visual {
    gap: 14px;
    margin-top: 28px;
  }

  .main-dashboard {
    min-height: 320px;
    padding: 18px;
  }

  .side-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .side-row {
    padding: 14px 14px 16px;
  }

  .hero-balance-card {
    padding: 16px;
    gap: 14px;
  }

  .hero-balance-copy strong {
    max-width: none;
    font-size: 0.96rem;
  }

  .hero-balance-points span {
    width: 100%;
    justify-content: flex-start;
  }

  .project-links a,
  .project-link-placeholder {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .circuit-bg::before,
  .circuit-bg::after,
  .circuit-svg,
  .brand::before,
  .brand-logo-wrap,
  .brand-logo-wrap::before,
  .whatsapp-float__icon,
  .btn,
  .btn-hero-glow::before,
  .btn-hero-glow::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
