:root {
  --primary: #003B5C;
  --secondary: #19B5B5;
  --accent: #F28C28;
  --background: #f6fbfc;
  --dark: #003B5C;
  --text: #123344;
  --muted: #5f7280;
  --line: rgba(0, 59, 92, 0.13);
  --glass: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 59, 92, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  overflow-x: clip;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

body.menu-open {
  overflow: hidden;
}

body.preloader-active {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

input,
textarea,
select {
  user-select: text;
  -webkit-user-select: text;
}

.grid > *,
.contact-layout > *,
.overview > *,
.solutions-layout > *,
.footer-grid > * {
  min-width: 0;
}

p,
h1,
h2,
h3,
a,
button {
  overflow-wrap: anywhere;
}

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background: #041F3D;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-preloader.is-exiting {
  opacity: 0;
  visibility: hidden;
}

.source-protection-toast {
  display: none !important;
}

.source-protection-toast.is-visible {
  display: none !important;
}

.preloader-core {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.preloader-logo-wrap {
  position: relative;
  display: grid;
  width: clamp(132px, 18vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  opacity: 0;
  transform: scale(0.8);
  animation: preloaderLogoIn 0.85s ease forwards 0.25s;
}

.preloader-logo-wrap::before {
  position: absolute;
  inset: 12%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 140, 40, 0.48), transparent 58%);
  filter: blur(18px);
  opacity: 0;
  animation: lightningPulse 0.72s ease-out forwards 1.25s;
}

.preloader-logo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(25, 181, 181, 0.16));
}

.preloader-name {
  display: grid;
  gap: 5px;
  opacity: 0;
  transform: translateY(10px);
  animation: preloaderTextIn 0.7s ease forwards 1.35s;
}

.preloader-name span:first-child {
  color: var(--white);
  font-size: clamp(1.1rem, 3vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.preloader-name span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.7rem, 1.8vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.preloader-line {
  width: min(280px, 68vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0;
  animation: preloaderLineIn 0.3s ease forwards 1.75s;
}

.preloader-line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: translateX(-100%);
  animation: preloaderProgress 1s ease-in-out forwards 1.85s;
}

body.preloader-active .nav-shell,
body.preloader-active main,
body.preloader-active .footer,
body.preloader-active .whatsapp-float {
  opacity: 0;
}

body.preloader-complete main,
body.preloader-complete .footer,
body.preloader-complete .whatsapp-float {
  animation: siteReveal 0.75s ease both;
}

body.preloader-complete .nav-shell {
  animation: navbarReveal 0.75s ease both;
}

@keyframes preloaderLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lightningPulse {
  0% {
    opacity: 0;
    transform: scale(0.65);
  }
  35% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes preloaderTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderLineIn {
  to {
    opacity: 1;
  }
}

@keyframes preloaderProgress {
  to {
    transform: translateX(0);
  }
}

@keyframes siteReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navbarReveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--primary);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.35rem);
}

h3 {
  font-size: 1.35rem;
}

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

.lead {
  max-width: 760px;
  color: #536b78;
  font-size: 1.1rem;
}

.dark {
  color: var(--white);
  background: var(--dark);
}

.dark h2,
.dark h3,
.dark p {
  color: var(--white);
}

.dark p {
  opacity: 0.74;
}

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.35s ease-in-out;
  will-change: transform;
}

.nav-shell.nav-hidden {
  transform: translateY(calc(-100% - 20px));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 16px));
  min-height: 95px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(3, 59, 92, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 24, 44, 0.34);
  pointer-events: auto;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: 82px;
  max-width: none;
  margin-left: 0;
  min-width: unset;
  overflow: visible;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 72px;
  margin: 0;
  padding: 0;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  position: static;
  transform: none;
  transform-origin: center;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: center;
  margin-left: 0;
  padding-left: 0;
  min-width: unset;
  gap: 3px;
  line-height: 1.05;
  letter-spacing: 0;
  transform: translateY(0);
}

.brand-title {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 0;
  color: #0a9fa8;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1 1 auto;
  width: auto;
  justify-content: center;
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  background: transparent !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFFFFF;
  background: transparent !important;
}

.nav-links a::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 3px;
  content: "";
  border-radius: 10px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width 0.24s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 168px;
  width: 168px;
  min-width: 0;
  gap: 8px;
}

.nav-actions .btn {
  min-height: 50px;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 12px;
  max-width: 100%;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--secondary);
  box-shadow: 0 12px 30px rgba(25, 181, 181, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(25, 181, 181, 0.3);
}

.btn-accent {
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(242, 140, 40, 0.26);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.btn-light {
  color: var(--primary);
  background: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 75vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  place-items: center;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 82% 22%, rgba(25, 181, 181, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(0, 59, 92, 0.96) 0%, rgba(0, 59, 92, 0.84) 38%, rgba(0, 59, 92, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 59, 92, 0.25), rgba(0, 59, 92, 0.9));
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-18px, -10px, 0);
  }
}

.hero-content {
  display: grid;
  width: var(--container);
  padding-top: 86px;
  gap: 22px;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 3.5rem);
}

.hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.proof-item {
  padding: 18px;
  background: rgba(0, 59, 92, 0.42);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.floating-panel {
  position: absolute;
  right: 7vw;
  bottom: 9vh;
  display: grid;
  width: 270px;
  gap: 12px;
  padding: 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 59, 92, 0.52);
  backdrop-filter: blur(18px);
  animation: floatPanel 5s ease-in-out infinite;
}

.floating-panel strong {
  font-size: 0.95rem;
}

.floating-panel small {
  color: rgba(255, 255, 255, 0.68);
}

.signal {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary) 74%, rgba(255, 255, 255, 0.18) 74%);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.overview {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 230px;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 59, 92, 0.74);
  backdrop-filter: blur(12px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat-card,
.feature-card,
.industry-card,
.solution-card,
.process-step,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
}

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

.product-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(0, 59, 92, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover,
.feature-card:hover,
.industry-card:hover,
.solution-card:hover,
.process-step:hover,
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 181, 181, 0.32);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-catalog .product-card {
  grid-template-rows: auto 1fr;
}

.product-catalog .card-body {
  grid-template-rows: auto auto 1fr auto;
}

.product-card-action {
  justify-self: start;
  min-height: 50px;
  margin-top: 8px;
  padding: 14px 22px;
  color: #FFFFFF;
  font-size: 0.92rem;
  border-color: var(--secondary);
  border-radius: 12px;
  background: #19B5B5;
  box-shadow: 0 12px 26px rgba(25, 181, 181, 0.24);
  white-space: nowrap;
}

.product-card-action:hover {
  color: #FFFFFF;
  border-color: var(--accent);
  background: #F28C28;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.3);
}

.card-body {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.card-kicker {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(25, 181, 181, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  color: var(--primary);
  font-weight: 900;
}

.text-link:hover {
  color: var(--secondary);
}

.solutions-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #003B5C 0%, #004D70 48%, #0B6E78 100%);
}

.solutions-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.solution-map {
  position: relative;
  display: grid;
  gap: 14px;
}

.solution-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 18px;
  color: var(--text);
  background: var(--white);
  backdrop-filter: blur(10px);
}

.solution-card h3 {
  color: var(--primary);
}

.solutions-band .solution-card,
.dark .solution-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.solutions-band .solution-card h3,
.dark .solution-card h3 {
  color: var(--white);
}

.number-chip,
.icon-chip {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.icon-chip svg,
.process-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card,
.feature-card,
.value-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.industry-card .icon-chip,
.feature-card .icon-chip {
  color: var(--secondary);
  background: #E7F8F8;
  box-shadow: inset 0 0 0 1px rgba(25, 181, 181, 0.18);
}

.contact-row .icon-chip,
.why-grid .feature-card .icon-chip {
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 12px 24px rgba(0, 59, 92, 0.18);
}

.why-grid .feature-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.why-grid .feature-card h3 {
  color: var(--white);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 14px;
  color: var(--primary);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  border-color: var(--secondary);
  background: var(--secondary);
}

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

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 59, 92, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-card[hidden] {
  display: none;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 181, 181, 0.32);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card-top {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.project-card-top .card-kicker {
  width: auto;
}

.project-status {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 900;
  border: 1px solid rgba(4, 120, 87, 0.18);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
}

.project-industry {
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pill {
  display: inline-flex;
  padding: 5px 9px;
  color: #006d78;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  background: #E7F8F8;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  align-items: start;
}

.process-timeline::before {
  position: absolute;
  top: 31px;
  left: 7%;
  right: 7%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(25, 181, 181, 0.2), rgba(242, 140, 40, 0.38), rgba(25, 181, 181, 0.2));
}

.process-timeline .process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 2px;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-step {
  position: relative;
}

.process-step strong {
  display: block;
  color: var(--secondary);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.process-step h3,
.industry-card h3,
.feature-card h3 {
  overflow-wrap: normal;
}

.process-step h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.process-step p {
  color: #586c78;
  font-size: 0.8rem;
  line-height: 1.45;
}

.process-icon {
  display: grid;
  width: 62px;
  height: 62px;
  color: var(--white);
  place-items: center;
  border: 4px solid var(--background);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 32px rgba(0, 59, 92, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: -16px;
  content: ">";
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.process-step:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.process-step:hover .process-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 38px rgba(25, 181, 181, 0.28);
}

.timeline:not(.process-timeline) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.timeline:not(.process-timeline) .process-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-shell {
  display: grid;
  gap: 20px;
}

.testimonial-track {
  position: relative;
  min-height: 250px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.icon-btn {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--primary);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  place-items: center;
  cursor: pointer;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #003B5C, #004D70 55%, #0B6E78);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.product-detail-section {
  background: var(--background);
}

.product-detail-layout {
  align-items: center;
}

.product-detail-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 59, 92, 0.12);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail-content {
  display: grid;
  gap: 14px;
}

.detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.detail-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(25, 181, 181, 0.28);
  border-radius: 999px;
  background: rgba(25, 181, 181, 0.1);
}

.product-detail-card .rich-list {
  margin-top: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-card,
.form-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(0, 59, 92, 0.08);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-row > div {
  min-width: 0;
}

.contact-row a:hover {
  color: var(--secondary);
}

.form-card {
  padding: 28px;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(0, 59, 92, 0.14);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--primary);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(25, 181, 181, 0.14);
}

.form-message {
  min-height: 22px;
  color: #047857;
  font-weight: 800;
}

body.consultation-open {
  overflow: hidden;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 19000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.consultation-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.consultation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 31, 61, 0.78);
  backdrop-filter: blur(12px);
}

.consultation-dialog {
  position: relative;
  width: min(620px, calc(100vw - 48px));
  max-width: 800px;
  max-height: min(90dvh, 760px);
  overflow-y: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(250, 254, 255, 0.96);
  box-shadow: 0 34px 100px rgba(0, 20, 38, 0.5), 0 0 48px rgba(25, 181, 181, 0.14);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
}

.consultation-modal.is-open .consultation-dialog {
  transform: translateY(0) scale(1);
}

.consultation-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--primary);
  font-size: 1.6rem;
  line-height: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.consultation-close:hover {
  color: var(--white);
  background: var(--primary);
  transform: rotate(6deg);
}

.consultation-header {
  display: grid;
  justify-items: center;
  gap: 7px;
  max-width: 540px;
  margin: 0 auto 18px;
  padding: 0 34px;
  text-align: center;
}

.consultation-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 2px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 59, 92, 0.2));
  opacity: 0;
}

.consultation-modal.is-open .consultation-logo {
  animation: consultationLogoIn 0.55s ease-out 0.08s both;
}

@keyframes consultationLogoIn {
  from { opacity: 0; transform: translateY(6px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.consultation-header h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.8rem);
  line-height: 1.15;
}

.consultation-header p {
  max-width: 460px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 12px;
}

.consultation-form .field {
  gap: 5px;
  min-width: 0;
}

.consultation-form label {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.consultation-form .field.full,
.consultation-form .consultation-submit,
.consultation-form .form-message {
  grid-column: 1 / -1;
}

.consultation-form textarea {
  min-height: 76px;
}

.consultation-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  box-shadow: 0 14px 30px rgba(242, 140, 40, 0.26);
}

.consultation-submit:hover {
  box-shadow: 0 18px 36px rgba(242, 140, 40, 0.34);
}

.consultation-success {
  display: none;
  max-width: 590px;
  margin: 0 auto;
  padding: 34px 20px 18px;
  text-align: center;
}

.consultation-success.is-visible {
  display: grid;
  gap: 12px;
}

.consultation-success h3 {
  color: var(--primary);
  font-size: 1.55rem;
}

.consultation-success p {
  color: var(--muted);
}

.map-card {
  display: grid;
  min-height: 320px;
  color: #475569;
  place-items: center;
  background:
    linear-gradient(rgba(0, 59, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 59, 92, 0.05) 1px, transparent 1px),
    #eef8fa;
  background-size: 34px 34px;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 40vh;
  padding: 150px 0 44px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 59, 92, 0.96), rgba(0, 77, 112, 0.9)), url("../images/manufacturing-floor.png") center/cover;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero h1 {
  max-width: 820px;
  font-size: 3rem;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.rich-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.rich-list li {
  position: relative;
  padding-left: 28px;
  color: #475569;
}

.rich-list li::before {
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(242, 140, 40, 0.12);
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.spec-row {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row strong,
.spec-row span {
  padding: 15px 18px;
}

.spec-row strong {
  background: #f1f5f9;
}

.dark .spec-table {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 54px rgba(0, 20, 38, 0.18);
}

.dark .spec-row {
  border-bottom-color: rgba(0, 59, 92, 0.12);
}

.dark .spec-row strong,
.dark .spec-row span {
  color: var(--primary);
  font-weight: 800;
}

.dark .spec-row strong {
  background: rgba(25, 181, 181, 0.12);
}

.dark .spec-row span {
  background: #ffffff;
  font-weight: 700;
}

.dark .spec-row:nth-child(even) span {
  background: #f4fbfc;
}

.clients-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2fafb 100%);
}

.clients-head {
  justify-content: center;
  text-align: center;
}

.clients-head > div:first-child {
  max-width: none;
}

.clients-head .eyebrow {
  justify-content: center;
}

.clients-marquee {
  position: relative;
  width: 100%;
  padding: 0 58px;
}

.clients-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: scrollClients 35s linear infinite;
  will-change: transform;
}

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

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

.client-logo-card {
  flex: 0 0 auto;
  display: grid;
  width: 220px;
  height: 120px;
  padding: 24px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(0, 59, 92, 0.08);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 59, 92, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client-logo-card img,
.client-logo {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 85px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo.small-logo {
  transform: scale(1.8);
}

.clients-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.65rem;
  line-height: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(3, 59, 92, 0.88);
  box-shadow: 0 14px 30px rgba(0, 24, 44, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.clients-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.28);
}

.clients-arrow-left {
  left: 10px;
}

.clients-arrow-right {
  right: 10px;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 181, 181, 0.35);
  box-shadow: 0 20px 46px rgba(0, 59, 92, 0.14);
}

.client-logo-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.client-logo-card:hover img.small-logo {
  transform: scale(1.9);
}

.footer {
  padding: 64px 0 26px;
  color: var(--white);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.88fr 1.35fr;
  gap: clamp(28px, 3.5vw, 54px);
  align-items: start;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.35;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 190px;
  height: 190px;
  min-width: 0;
  padding: 10px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  animation: floatingLogo 4s ease-in-out infinite;
  transition: box-shadow 0.35s ease, filter 0.35s ease;
}

.footer-logo-card:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15), 0 0 25px rgba(25, 181, 181, 0.4);
  filter: brightness(1.06);
}

.footer-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.footer-logo-card img {
  width: 168px;
  height: auto;
}

.footer-logo-card:hover .footer-logo {
  transform: scale(1.08);
}

@keyframes floatingLogo {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.65;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: rgba(25, 181, 181, 0.72);
  box-shadow: 0 0 18px rgba(25, 181, 181, 0.42);
}

.social-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand-column > p {
  max-width: 310px;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.footer-contact-item strong {
  color: var(--white);
  font-size: 0.75rem;
  line-height: 1.35;
}

.footer-contact-item span,
.footer-contact-item a {
  line-height: 1.55;
}

.footer-phone-list {
  display: grid;
  gap: 2px;
}

.footer-contact-email {
  white-space: nowrap;
}

.newsletter input {
  min-width: 0;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 16px 38px rgba(0, 59, 92, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 18px 44px rgba(0, 59, 92, 0.28);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

@media (max-width: 1180px) {
  .nav {
    min-height: 85px;
    padding: 12px 18px;
    gap: 12px;
  }

  .brand {
    flex-basis: auto;
    width: auto;
    height: 74px;
    max-width: none;
    margin-left: 0;
    gap: 4px;
    padding: 5px 10px;
  }

  .brand-logo {
    width: 64px;
    margin: 0;
  }

  .brand-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
  }

  .brand-subtitle {
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
  }

  .nav-links {
    position: fixed;
    inset: 93px 20px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 101px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(3, 59, 92, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s linear 0.3s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }
}

@media (max-width: 1060px) {
  .hero {
    min-height: 65vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .nav {
    min-height: 85px;
    padding: 12px 18px;
    gap: 0;
  }

  .brand {
    flex: 0 0 auto;
    width: auto;
    height: 74px;
    max-width: none;
    margin-left: 0;
    min-width: unset;
    gap: 4px;
    padding: 5px 10px;
  }

  .brand-logo {
    width: 64px;
    margin: 0;
    height: auto;
    max-width: none;
    max-height: none;
    object-position: center;
  }

  .page-hero {
    min-height: 35vh;
    padding: 130px 0 38px;
  }

  .page-hero h1 {
    font-size: 2.375rem;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .nav-links {
    position: fixed;
    inset: 93px 20px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 101px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(3, 59, 92, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s linear 0.3s;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-links a {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

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

  .process-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .process-timeline::before,
  .process-step::after {
    display: none;
  }

  .process-timeline .process-step {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 59, 92, 0.07);
  }

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

  .overview,
  .solutions-layout,
  .contact-layout,
  .split,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .floating-panel {
    display: none;
  }

  .clients-track {
    animation-duration: 30s;
  }

  .client-logo-card {
    width: 190px;
    height: 110px;
    padding: 20px;
  }

  .client-logo-card img {
    max-width: 140px;
    max-height: 64px;
  }

  .footer-logo-card {
    width: 180px;
    height: 180px;
    padding: 10px;
  }

  .footer-logo,
  .footer-logo-card img {
    width: 158px;
  }

  .consultation-dialog {
    width: min(90vw, 620px);
  }
}

@media (max-width: 767px) {
  .nav {
    min-height: 85px;
  }

  .brand {
    height: auto;
  }

  .brand-logo {
    width: 56px;
    height: auto;
    max-height: none;
  }

  .nav-links {
    inset: 93px 18px auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section,
  .section-tight {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content {
    padding-top: 78px;
    gap: 16px;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero p {
    font-size: 0.875rem;
  }

  .hero-proof {
    margin-top: 8px;
  }

  .proof-item {
    padding: 12px;
  }

  .hero-proof,
  .stats-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .timeline,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .brand {
    flex: 0 0 auto;
    min-width: unset;
    width: auto;
    max-width: none;
    margin-left: 0;
    height: 62px;
    gap: 3px;
    padding: 4px 7px;
  }

  .nav {
    min-height: 75px;
    padding: 10px 12px;
  }

  .brand-logo {
    width: 50px;
    margin: 0;
    height: auto;
    max-width: none;
    max-height: none;
    object-position: center;
  }

  .brand-title {
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
  }

  .brand-subtitle {
    margin-top: 0;
    font-size: 7.5px;
    font-weight: 700;
    line-height: 1;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-links {
    inset: 83px 14px auto;
    gap: 6px;
    max-height: calc(100dvh - 91px);
  }

  .consultation-modal {
    padding: 12px;
  }

  .consultation-dialog {
    width: min(95vw, calc(100vw - 24px));
    max-width: min(95vw, calc(100vw - 24px));
    max-height: 92dvh;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .consultation-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .consultation-header {
    gap: 5px;
    margin-bottom: 13px;
    padding: 0 26px;
  }

  .consultation-logo {
    width: 82px;
    height: 82px;
  }

  .consultation-header h2 {
    font-size: 1.25rem;
  }

  .consultation-header p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .consultation-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .consultation-form .field.full,
  .consultation-form .consultation-submit,
  .consultation-form .form-message {
    grid-column: 1 / -1;
  }

  .process-timeline {
    gap: 14px;
  }

  .process-timeline .process-step {
    grid-template-columns: 58px 1fr;
    align-items: start;
    justify-items: start;
    gap: 6px 14px;
    padding: 16px;
    text-align: left;
  }

  .process-icon {
    grid-row: 1 / 4;
    width: 54px;
    height: 54px;
    border-width: 3px;
  }

  .process-step h3 {
    font-size: 1.02rem;
  }

  .process-step p {
    font-size: 0.84rem;
  }

  .project-card-top {
    align-items: flex-start;
  }

  .clients-window {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }

  .clients-marquee {
    padding: 0 44px;
  }

  .clients-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }

  .clients-track {
    gap: 16px;
    animation-duration: 25s;
  }

  .client-logo-card {
    width: 150px;
    height: 90px;
    padding: 16px;
  }

  .client-logo-card img {
    max-width: 112px;
    max-height: 52px;
  }

  .hero-actions,
  .newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero {
    min-height: 30vh;
    padding: 115px 0 32px;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero p {
    font-size: 0.875rem;
  }

  .breadcrumb {
    margin-bottom: 12px;
    font-size: 0.78rem;
  }

  .footer-grid > div:first-child {
    text-align: center;
  }

  .footer-grid > div:not(:first-child) {
    width: 100%;
  }

  .footer-logo-card {
    justify-content: center;
    width: 145px;
    height: 145px;
    padding: 8px;
    margin: 0 auto;
  }

  .footer-logo {
    width: 128px;
    height: auto;
    margin: 0 auto;
  }

  .footer-logo-card img {
    width: 128px;
    height: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-brand-column > p {
    max-width: none;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 380px) {
  .brand {
    flex-basis: auto;
    width: auto;
    max-width: none;
    margin-left: 0;
    height: 58px;
    gap: 3px;
    padding: 3px 6px;
  }

  .brand-logo {
    width: 46px;
    margin: 0;
    height: auto;
    max-height: none;
  }

  .brand-title {
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
  }

  .brand-subtitle {
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
  }
}

@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;
  }
}
