:root {
  --navy: #071827;
  --navy-2: #0b2538;
  --ink: #10202f;
  --muted: #5c6b77;
  --line: rgba(12, 42, 62, 0.12);
  --cyan: #10d4f6;
  --blue: #1769ff;
  --white: #ffffff;
  --soft: #f4f8fb;
  --card: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 80px rgba(5, 22, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background: var(--navy);
  color: var(--white);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader__mark {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.preloader__bar {
  width: min(240px, 60vw);
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.preloader__bar span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation: loadbar 1.1s ease-in-out infinite alternate;
}

body.is-loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(8, 31, 49, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(5, 22, 34, 0.12);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

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

.brand__logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 212, 246, 0.3);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand__text {
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.brand__text strong {
  display: block;
  color: var(--cyan);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a {
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--cyan);
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(23, 105, 255, 0.26);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.section-light .btn-secondary,
.section-muted .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(23, 105, 255, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-dark,
.section-light,
.section-muted {
  position: relative;
  padding: 112px max(22px, calc((100vw - 1180px) / 2));
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(16, 212, 246, 0.22), transparent 30%),
    radial-gradient(circle at 16% 8%, rgba(23, 105, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #061420, #092034 58%, #061420);
}

.section-light {
  background: var(--white);
}

.section-muted {
  background: #eef5f8;
}

.visual-showcase,
.problems,
.industries,
.why,
.cta,
.footer {
  overflow: hidden;
}

.visual-showcase {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 248, 251, 0.9) 46%, rgba(229, 241, 239, 0.78) 100%),
    url("../assets/images/solutions-bg-premium.png") center / cover;
}

.visual-showcase::before,
.problems::before,
.industries::before,
.why::before,
.cta::before,
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-showcase::before {
  background:
    radial-gradient(circle at 21% 48%, rgba(16, 212, 246, 0.12), transparent 22%),
    linear-gradient(110deg, transparent 0 44%, rgba(20, 136, 91, 0.12) 45%, transparent 47% 100%);
  animation: driftLines 14s ease-in-out infinite alternate;
}

.visual-showcase > * {
  position: relative;
  z-index: 1;
}

.problems {
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(4, 14, 23, 0.94) 0%, rgba(7, 24, 39, 0.88) 50%, rgba(6, 20, 32, 0.7) 100%),
    radial-gradient(circle at 80% 22%, rgba(20, 136, 91, 0.26), transparent 30%),
    url("../assets/images/problems-bg-premium.png") center / cover fixed;
}

.problems::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 26% 18%, rgba(238, 170, 70, 0.12), transparent 26%);
  background-size: 70px 70px, 70px 70px, auto;
  mask-image: linear-gradient(120deg, black, rgba(0, 0, 0, 0.32) 72%, transparent);
}

.problems::after,
.industries::after,
.why::after,
.cta::after {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
    linear-gradient(130deg, transparent 0 42%, rgba(16, 212, 246, 0.16) 43%, transparent 44% 100%);
  background-size: 120px 120px, auto;
  opacity: 0.36;
  animation: particleDrift 18s linear infinite;
  pointer-events: none;
}

.problems > *,
.industries > *,
.why > *,
.cta > * {
  position: relative;
  z-index: 1;
}

.industries {
  background:
    linear-gradient(105deg, rgba(239, 247, 250, 0.95) 0%, rgba(255, 255, 255, 0.86) 43%, rgba(219, 236, 234, 0.72) 100%),
    url("../assets/images/solutions-bg-premium.png") center / cover fixed;
}

.industries::before {
  background:
    radial-gradient(circle at 15% 18%, rgba(16, 212, 246, 0.16), transparent 27%),
    radial-gradient(circle at 78% 74%, rgba(20, 136, 91, 0.14), transparent 26%);
}

.why {
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(4, 14, 23, 0.94) 0%, rgba(6, 20, 32, 0.82) 48%, rgba(6, 20, 32, 0.64) 100%),
    url("../assets/images/consulting-bg-premium.png") center / cover fixed;
}

.why::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 68% 28%, rgba(238, 170, 70, 0.1), transparent 24%);
  background-size: 76px 76px, 76px 76px, auto;
}

.services {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 14, 23, 0.92) 0%, rgba(7, 24, 39, 0.76) 46%, rgba(238, 245, 248, 0.62) 100%),
    radial-gradient(circle at 77% 18%, rgba(16, 212, 246, 0.28), transparent 32%),
    url("../assets/images/services-bg-premium.png") center / cover fixed;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 70% 56%, rgba(16, 212, 246, 0.18), transparent 26%);
  background-size: 74px 74px, 74px 74px, auto;
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(16, 212, 246, 0.18) 31%, transparent 33% 100%),
    linear-gradient(155deg, transparent 0 48%, rgba(23, 105, 255, 0.16) 49%, transparent 51% 100%);
  opacity: 0.7;
  transform: translateX(-8%);
  animation: driftLines 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.services > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  min-height: 100vh;
  padding-top: 160px;
  overflow: hidden;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5.3vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.hero__lead,
.section-heading p,
.dashboard__copy p,
.why__content p,
.cta__copy p,
.benefits__copy p {
  max-width: 680px;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 1.08rem;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.hero__proof,
.benefit-list,
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__proof span,
.benefit-list span,
.why-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: color-mix(in srgb, currentColor 86%, transparent);
  font-weight: 700;
}

.hero-visual {
  perspective: 1200px;
}

.network-card {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);
  transform: rotateX(7deg) rotateY(-8deg);
  transform-style: preserve-3d;
  animation: floatCard 7s ease-in-out infinite;
  backdrop-filter: blur(16px);
}

.network-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 20, 32, 0.18), rgba(6, 20, 32, 0.54)),
    url("../assets/images/premium-logistics-command.png") center / cover;
  opacity: 0.66;
  filter: saturate(0.95) contrast(1.06);
}

.network-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 8px;
  background: radial-gradient(circle at 68% 24%, rgba(16, 212, 246, 0.26), transparent 28%);
  pointer-events: none;
}

.hero-logo-card {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 265px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-logo-card img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.hero-logo-card span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.route-map {
  position: absolute;
  inset: 42px;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
}

.route-map svg {
  width: 100%;
  height: 100%;
  fill: none;
}

.route {
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  filter: drop-shadow(0 0 10px rgba(16, 212, 246, 0.8));
  animation: dash 5s linear infinite;
}

.route-2 {
  stroke: #68a9ff;
  animation-duration: 6s;
}

.route-3 {
  stroke: rgba(255, 255, 255, 0.62);
  animation-duration: 7s;
}

.node {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 10px rgba(16, 212, 246, 0.13), 0 0 28px rgba(16, 212, 246, 0.8);
}

.node-a { left: 11%; top: 71%; }
.node-b { left: 17%; top: 24%; }
.node-c { left: 48%; top: 34%; }
.node-d { left: 76%; top: 20%; }
.node-e { left: 83%; top: 73%; }

.floating-pill,
.metric-tile {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(6, 20, 32, 0.74);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.floating-pill {
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 800;
  animation: floatPill 5s ease-in-out infinite;
}

.pill-1 { top: 48px; left: 34px; }
.pill-2 { top: 44%; right: 24px; animation-delay: -1.4s; }
.pill-3 { bottom: 44px; left: 42px; animation-delay: -2.3s; }

.metric-tile {
  right: 46px;
  bottom: 54px;
  display: grid;
  gap: 2px;
  min-width: 188px;
  padding: 18px;
}

.metric-tile strong,
.kpi strong {
  color: var(--cyan);
  font-size: 2.3rem;
  line-height: 1;
}

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

.visual-showcase {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.visual-showcase__image {
  position: relative;
}

.visual-showcase__image::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 105, 255, 0.12), rgba(16, 212, 246, 0.18));
  filter: blur(8px);
}

.visual-showcase__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(7, 24, 39, 0.12);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(5, 22, 34, 0.2);
}

.visual-showcase__copy p {
  max-width: 620px;
  color: var(--muted);
}

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

.showcase-tags span {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(248, 251, 253, 0.78);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(5, 22, 34, 0.08);
  backdrop-filter: blur(12px);
}

.showcase-tags span::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a36c, var(--cyan));
  box-shadow: 0 0 20px rgba(16, 212, 246, 0.55);
}

.problem-grid,
.service-grid,
.industry-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

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

.problem-card,
.service-card,
.industry-card,
.timeline-item,
.contact-form,
.benefit-panel,
.dashboard-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.problem-card,
.service-card,
.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.problem-card::before,
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 16%, rgba(16, 212, 246, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: none;
}

.problem-card > *,
.service-card > *,
.industry-card > * {
  position: relative;
  z-index: 1;
}

.problem-card:hover,
.service-card:hover,
.industry-card:hover {
  border-color: rgba(16, 212, 246, 0.48);
  box-shadow: 0 28px 90px rgba(5, 22, 34, 0.2);
  transform: translateY(-8px) rotateX(2deg);
}

.problem-card:hover::before,
.industry-card:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.problem-icon,
.service-icon,
.industry-icon {
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.problem-icon,
.service-icon,
.industry-icon {
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/service-icons-premium-sprite.png");
  background-repeat: no-repeat;
  background-size: 400% 200%;
  box-shadow: 0 18px 42px rgba(23, 105, 255, 0.18), 0 0 0 1px rgba(16, 212, 246, 0.12);
  animation: iconFloat 5.2s ease-in-out infinite;
}

.service-icon {
  width: 74px;
  height: 74px;
}

.problem-icon {
  width: 68px;
  height: 68px;
}

.industry-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.problem-icon::after,
.service-icon::after,
.industry-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 44%, rgba(16, 212, 246, 0.14));
  pointer-events: none;
}

.problem-icon i {
  position: absolute;
  right: -4px;
  bottom: -4px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  font-size: 0.78rem;
  font-style: normal;
}

.icon-1 { background-position: 0% 0%; }
.icon-2 { background-position: 33.333% 0%; animation-delay: -0.4s; }
.icon-3 { background-position: 66.666% 0%; animation-delay: -0.8s; }
.icon-4 { background-position: 100% 0%; animation-delay: -1.2s; }
.icon-5 { background-position: 0% 100%; animation-delay: -1.6s; }
.icon-6 { background-position: 33.333% 100%; animation-delay: -2s; }
.icon-7 { background-position: 66.666% 100%; animation-delay: -2.4s; }
.icon-8 { background-position: 100% 100%; animation-delay: -2.8s; }

.service-card {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 212, 246, 0.36), transparent 35%, rgba(23, 105, 255, 0.2));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.problem-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.problem-card p {
  color: rgba(255, 255, 255, 0.76);
}

.industry-card {
  min-height: 236px;
  border-color: rgba(8, 31, 49, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
}

.industry-card p {
  color: var(--muted);
}

.methodology {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 14, 23, 0.96) 0%, rgba(4, 14, 23, 0.88) 44%, rgba(4, 14, 23, 0.72) 100%),
    radial-gradient(circle at 76% 28%, rgba(16, 212, 246, 0.24), transparent 32%),
    url("../assets/images/methodology-bg-premium.png") center / cover fixed;
}

.methodology::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
  pointer-events: none;
}

.methodology::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(6, 20, 32, 0.22), rgba(6, 20, 32, 0.7));
  pointer-events: none;
}

.methodology > * {
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin-left: auto;
}

.timeline::before,
.timeline__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42px;
  width: 3px;
  border-radius: 999px;
  content: "";
}

.timeline::before {
  background: rgba(255, 255, 255, 0.14);
}

.timeline__progress {
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(var(--blue), var(--cyan));
  box-shadow: 0 0 28px rgba(16, 212, 246, 0.7);
}

.timeline-item {
  padding: 24px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.timeline-item span {
  color: var(--cyan);
  font-weight: 900;
}

.benefits {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(4, 14, 23, 0.94) 0%, rgba(5, 18, 30, 0.9) 42%, rgba(5, 18, 30, 0.72) 100%),
    radial-gradient(circle at 72% 30%, rgba(16, 212, 246, 0.22), transparent 32%),
    url("../assets/images/benefits-bg-premium.png") center / cover fixed;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.9), transparent 82%);
  pointer-events: none;
}

.benefits::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 44%, rgba(16, 212, 246, 0.18), transparent 18%),
    linear-gradient(130deg, transparent 0 42%, rgba(16, 212, 246, 0.18) 43%, transparent 45% 100%);
  opacity: 0.75;
  animation: driftLines 13s ease-in-out infinite alternate;
  pointer-events: none;
}

.benefits > * {
  position: relative;
  z-index: 1;
}

.benefit-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.kpi {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: metricLift 6s ease-in-out infinite;
}

.kpi:nth-child(2) {
  animation-delay: -1.2s;
}

.kpi:nth-child(3) {
  animation-delay: -2.4s;
}

.benefit-list {
  grid-column: 1 / -1;
}

.benefit-list span,
.why-grid span {
  border-color: var(--line);
  color: var(--ink);
  background: #f8fbfd;
}

.benefits .benefit-list span {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.dashboard {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(4, 14, 23, 0.94), rgba(7, 24, 39, 0.88)),
    url("../assets/images/problems-bg-premium.png") center / cover fixed;
}

.dashboard-board {
  position: relative;
  overflow: hidden;
  padding: 12px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 212, 246, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.07);
  transform-style: preserve-3d;
}

.dashboard-board::before {
  display: none;
}

.dashboard-board > * {
  position: relative;
  z-index: 1;
}

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

.dashboard-top span,
.dashboard-kpis div {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 36px rgba(0, 0, 0, 0.16);
}

.dashboard-top span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-top span::after,
.dashboard-kpis div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.12) 37%, transparent 39% 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.dashboard-board:hover .dashboard-top span::after,
.dashboard-board:hover .dashboard-kpis div::after {
  transform: translateX(100%);
}

.dashboard-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a36c, var(--cyan));
  box-shadow: 0 0 18px rgba(16, 212, 246, 0.7);
}

.flow {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1fr 0.5fr 1fr;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}

.flow span {
  min-height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 212, 246, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 212, 246, 0.24), transparent 48%),
    rgba(16, 212, 246, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 44px rgba(0, 0, 0, 0.18);
  font-weight: 900;
  transform: translateZ(18px);
}

.flow small {
  color: var(--cyan);
  font-size: 0.7rem;
  line-height: 1;
  opacity: 0.9;
}

.flow i {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 24px rgba(16, 212, 246, 0.42);
  animation: routePulse 2.8s ease-in-out infinite;
}

.analytics-stage {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 82% 22%, rgba(16, 212, 246, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(5, 18, 30, 0.82), rgba(10, 38, 54, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 80px rgba(0, 0, 0, 0.24);
}

.analytics-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.12) 37%, transparent 39% 100%);
  transform: translateX(-110%);
  animation: scanner 7s ease-in-out infinite;
  pointer-events: none;
}

.analytics-stage__header {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.analytics-stage__header strong {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(16, 212, 246, 0.46);
}

.dashboard-screen {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #061420;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.dashboard-screen--integrated {
  min-height: 0;
}

.dashboard-screen img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.dashboard-screen::after {
  display: none;
}

.screen-glow {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(16, 212, 246, 0.12), 0 0 26px rgba(16, 212, 246, 0.78);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.glow-a {
  top: 28%;
  right: 23%;
}

.glow-b {
  left: 30%;
  bottom: 27%;
  animation-delay: -1.2s;
}

.screen-metric,
.screen-status {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 14, 23, 0.66);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.screen-metric {
  display: grid;
  gap: 1px;
  min-width: 104px;
  padding: 10px 12px;
}

.screen-metric strong {
  color: var(--cyan);
  font-size: 1.35rem;
  line-height: 1;
}

.screen-metric small,
.screen-status {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 800;
}

.screen-metric.metric-a {
  top: 14px;
  left: 14px;
}

.screen-metric.metric-b {
  right: 14px;
  bottom: 14px;
}

.screen-status {
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.screen-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a36c;
  box-shadow: 0 0 16px rgba(22, 163, 108, 0.74);
}

.analytics-chart {
  position: relative;
  height: 255px;
  margin: 0 18px 18px;
  perspective: 880px;
}

.chart-grid {
  position: absolute;
  inset: 36px 0 12px;
  transform: rotateX(58deg) translateY(34px);
  transform-origin: bottom;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 42px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}

.trend-line {
  position: absolute;
  inset: 26px 12px 42px;
  z-index: 4;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(16, 212, 246, 0.78));
}

.trend-line path {
  fill: none;
  stroke: url("#trendStroke");
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 720;
  animation: trendDraw 4.8s ease-in-out infinite;
}

.trend-line circle {
  fill: var(--cyan);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 3;
  animation: nodePulse 2.8s ease-in-out infinite;
}

.bar-3d {
  position: absolute;
  bottom: 28px;
  z-index: 2;
  width: 13%;
  border-radius: 8px 8px 5px 5px;
  background: linear-gradient(180deg, #1df0ff, #1778ff 72%, #0d3d94);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.34), 0 0 32px rgba(16, 212, 246, 0.28);
  transform: skewX(-7deg) rotateX(4deg);
  transform-origin: bottom;
  animation: bars 2.8s ease-in-out infinite alternate;
}

.bar-3d::before,
.bar-3d::after {
  content: "";
  position: absolute;
  background: inherit;
}

.bar-3d::before {
  right: -12px;
  bottom: 6px;
  width: 12px;
  height: 100%;
  border-radius: 0 8px 5px 0;
  filter: brightness(0.62);
  transform: skewY(-34deg);
  transform-origin: left bottom;
}

.bar-3d::after {
  top: -10px;
  left: 6px;
  width: 100%;
  height: 12px;
  border-radius: 8px 8px 4px 4px;
  filter: brightness(1.26);
  transform: skewX(-48deg);
  transform-origin: left bottom;
}

.bar-3d span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 36%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 6px);
}

.bar-a { left: 7%; height: 36%; animation-delay: -0.2s; }
.bar-b { left: 24%; height: 62%; animation-delay: -0.7s; }
.bar-c { left: 41%; height: 48%; animation-delay: -1.1s; }
.bar-d { left: 58%; height: 70%; animation-delay: -1.5s; }
.bar-e { left: 75%; height: 54%; animation-delay: -1.9s; }

.chart-metric {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 1px;
  min-width: 104px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 14, 23, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.chart-metric strong {
  color: var(--cyan);
  font-size: 1.45rem;
  line-height: 1;
}

.chart-metric small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
}

.metric-a {
  top: 62px;
  left: 9px;
}

.metric-b {
  right: 8px;
  bottom: 36px;
}

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

.dashboard-kpis small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.why {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 40px;
  align-items: start;
}

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

.why-grid span {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.why-grid span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--cyan), #16a36c);
}

.cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(4, 14, 23, 0.95) 0%, rgba(7, 24, 39, 0.88) 48%, rgba(6, 20, 32, 0.68) 100%),
    url("../assets/images/consulting-bg-premium.png") center / cover fixed;
}

.cta::before {
  background:
    radial-gradient(circle at 22% 36%, rgba(16, 212, 246, 0.15), transparent 24%),
    radial-gradient(circle at 78% 68%, rgba(20, 136, 91, 0.16), transparent 22%);
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 42%, rgba(16, 212, 246, 0.13) 43%, transparent 45% 100%);
  animation: scanner 6.2s ease-in-out infinite;
  pointer-events: none;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form label:nth-last-of-type(1),
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(16, 212, 246, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 700;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  padding: 56px max(22px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(100deg, rgba(3, 16, 26, 0.96), rgba(4, 27, 39, 0.92)),
    url("../assets/images/problems-bg-premium.png") center / cover;
}

.footer::before {
  background: radial-gradient(circle at 88% 24%, rgba(16, 212, 246, 0.14), transparent 22%);
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer h3 {
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.footer-social a:hover {
  border-color: rgba(16, 212, 246, 0.52);
  color: var(--cyan);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #12c66f, #0ba958);
  box-shadow: 0 18px 46px rgba(18, 198, 111, 0.38);
  font-weight: 900;
  animation: pulse 2.5s ease-in-out infinite;
}

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

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

@keyframes loadbar {
  from { transform: translateX(-60%); }
  to { transform: translateX(205%); }
}

@keyframes floatCard {
  50% { transform: rotateX(4deg) rotateY(-4deg) translateY(-12px); }
}

@keyframes floatPill {
  50% { transform: translateY(-12px); }
}

@keyframes dash {
  to { stroke-dashoffset: -120; }
}

@keyframes bars {
  to { filter: brightness(1.2); transform: scaleY(0.92); }
}

@keyframes routePulse {
  50% {
    filter: brightness(1.25);
    transform: scaleX(0.86);
  }
}

@keyframes trendDraw {
  0% {
    stroke-dashoffset: 720;
    opacity: 0.55;
  }

  45%,
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes nodePulse {
  50% {
    r: 7px;
    filter: brightness(1.25);
  }
}

@keyframes iconFloat {
  50% {
    filter: brightness(1.08) saturate(1.08);
    transform: translateY(-5px) rotateX(4deg);
  }
}

@keyframes driftLines {
  to {
    transform: translateX(7%) translateY(-2%);
  }
}

@keyframes metricLift {
  50% {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
  }
}

@keyframes particleDrift {
  to {
    transform: translate3d(7%, -4%, 0);
    background-position: 120px 80px, 0 0;
  }
}

@keyframes scanner {
  0% {
    opacity: 0;
    transform: translateX(-52%);
  }

  45%,
  55% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(52%);
  }
}

@keyframes pulse {
  50% { transform: translateY(-4px) scale(1.04); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(18px);
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 10px;
  }

  .hero,
  .visual-showcase,
  .benefits,
  .dashboard,
  .why,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

  .network-card {
    min-height: 460px;
    transform: none;
  }

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

@media (max-width: 680px) {
  .section-dark,
  .section-light,
  .section-muted {
    padding: 82px 18px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand__text {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .hero__actions,
  .cta__actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
    padding: 12px 16px;
    white-space: normal;
  }

  .problem-grid,
  .service-grid,
  .industry-grid,
  .benefit-panel,
  .dashboard-top,
  .dashboard-kpis,
  .why-grid,
  .contact-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 390px;
  }

  .route-map {
    inset: 22px;
  }

  .floating-pill {
    font-size: 0.75rem;
  }

  .hero-logo-card {
    top: 18px;
    right: 18px;
    max-width: 210px;
    padding: 10px;
  }

  .hero-logo-card img {
    width: 44px;
    height: 44px;
  }

  .hero-logo-card span {
    font-size: 0.78rem;
  }

  .metric-tile {
    right: 20px;
    bottom: 22px;
    min-width: 150px;
  }

  .timeline {
    margin-left: 28px;
  }

  .timeline::before,
  .timeline__progress {
    left: -24px;
  }

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

  .flow i {
    width: 3px;
    height: 28px;
    margin: 0 auto;
  }

  .analytics-chart {
    height: 230px;
    margin-inline: 12px;
  }

  .dashboard-screen {
    margin-inline: 0;
  }

  .dashboard-screen--integrated,
  .dashboard-screen img {
    min-height: 0;
  }

  .dashboard-screen img {
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .chart-metric,
  .screen-metric {
    min-width: 86px;
    padding: 8px 10px;
  }

  .chart-metric strong,
  .screen-metric strong {
    font-size: 1.18rem;
  }

  .screen-status {
    right: 10px;
    left: 10px;
    justify-content: center;
  }

  .screen-metric.metric-b {
    display: none;
  }

  .bar-3d {
    width: 12%;
  }

  .showcase-tags {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    font-size: 0.82rem;
  }
}

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