:root {
  --navy-950: #061426;
  --navy-900: #0a1d35;
  --navy-800: #102b4c;
  --blue-600: #0f74ff;
  --blue-500: #198cff;
  --cyan-400: #28d7ff;
  --ink: #132033;
  --muted: #66758a;
  --soft: #f3f7fb;
  --line: #dfe8f3;
  --white: #ffffff;
  --whatsapp: #25d366;
  --phone: #1677ff;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 78px;
  --shadow: 0 22px 60px rgba(8, 31, 62, 0.13);
  --shadow-strong: 0 28px 80px rgba(1, 13, 31, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(243, 247, 251, 0.62), rgba(255, 255, 255, 0) 420px),
    var(--white);
  line-height: 1.65;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 10% 0%, rgba(40, 215, 255, 0.12), transparent 28%),
    var(--soft);
}

.section--navy {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(40, 215, 255, 0.20), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(15, 116, 255, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #0b315b);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--light .section-kicker,
.hero .section-kicker,
.cta-strip .section-kicker {
  color: var(--cyan-400);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

h1 {
  margin: 0;
  max-width: 820px;
  color: var(--white);
  font-size: clamp(2.15rem, 4.1vw, 4rem);
  line-height: 1.05;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.7rem);
  line-height: 1.16;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.section-heading p,
.split__text p,
.service-card p,
.process-grid p {
  color: var(--muted);
}

.section-heading p {
  margin: 12px 0 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header-height);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.90));
  border-bottom: 1px solid rgba(223, 232, 243, 0.8);
  box-shadow: 0 10px 34px rgba(7, 24, 48, 0.06);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: 210px;
  padding: 5px 0;
}

.brand img,
.footer-logo img {
  width: auto;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  padding: 10px 9px;
  border-radius: 999px;
  color: #263a55;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
  background:
    linear-gradient(135deg, rgba(15, 116, 255, 0.12), rgba(40, 215, 255, 0.10));
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--whatsapp), #13b957);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: center;
  padding: 92px 0 76px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(4, 14, 31, 0.97) 0%, rgba(7, 26, 51, 0.88) 48%, rgba(7, 26, 51, 0.44) 100%),
    radial-gradient(circle at 17% 78%, rgba(40, 215, 255, 0.26), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(25, 140, 255, 0.12), transparent 28%);
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  cursor: zoom-in;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d9e8f7;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero__actions,
.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--whatsapp), #10b753);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.23);
}

.btn--call {
  color: var(--white);
  background: linear-gradient(135deg, var(--phone), #0b5ed7);
  box-shadow: 0 16px 36px rgba(22, 119, 255, 0.22);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin-top: 42px;
}

.trust-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #eef7ff;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.trust-strip span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 5px rgba(40, 215, 255, 0.12);
}

.hero__quick-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  color: #ecf7ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 52px rgba(0, 9, 24, 0.18);
  backdrop-filter: blur(14px);
}

.hero__quick-card div {
  display: grid;
  gap: 2px;
}

.hero__quick-card strong,
.hero__quick-card a {
  font-weight: 900;
}

.hero__quick-card span {
  color: #cfe4f7;
  font-size: 0.94rem;
}

.hero__quick-card a {
  flex: 0 0 auto;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy-950);
  background: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split__text p {
  margin: 16px 0 0;
}

.image-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.image-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 116, 255, 0.26);
  box-shadow: 0 28px 76px rgba(8, 31, 62, 0.18);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.image-card--dark {
  background: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.12);
}

.image-card figcaption {
  padding: 15px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section--navy .image-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.section--navy .image-card figcaption,
.section-heading--light p {
  color: #cfe2f5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-grid article,
.service-card,
.process-grid article,
.reason-list,
.solution-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow);
}

.feature-grid article,
.process-grid article,
.solution-grid article {
  padding: 24px;
}

.feature-grid span,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  font-weight: 900;
}

.service-grid,
.process-grid,
.solution-grid,
.contact-grid,
.smart-grid {
  display: grid;
  gap: 20px;
}

.service-intro {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: -14px auto 26px;
}

.service-intro span {
  padding: 12px 14px;
  border: 1px solid rgba(15, 116, 255, 0.14);
  border-radius: 999px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(8, 31, 62, 0.07);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

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

.service-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(40, 215, 255, 0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  opacity: 0.82;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 116, 255, 0.28);
  box-shadow: 0 26px 70px rgba(8, 31, 62, 0.16);
}

.service-card h3 {
  margin-top: 18px;
}

.service-card p {
  margin: 10px 0 0;
}

.service-icon,
.icon {
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--blue-600);
  padding: 13px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(15, 116, 255, 0.13), rgba(40, 215, 255, 0.16));
}

.service-icon::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.service-icon--bolt::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 4 14h7l-1 8 10-13h-7l0-7Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 4 14h7l-1 8 10-13h-7l0-7Z'/%3E%3C/svg%3E"); }
.service-icon--plan::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 3h11l3 3v15H5V3Zm2 2v14h10V8h-3V5H7Zm2 5h6v2H9v-2Zm0 4h6v2H9v-2Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 3h11l3 3v15H5V3Zm2 2v14h10V8h-3V5H7Zm2 5h6v2H9v-2Zm0 4h6v2H9v-2Z'/%3E%3C/svg%3E"); }
.service-icon--automation::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h3a4 4 0 0 1 8 0h5v2h-5a4 4 0 0 1-8 0H4V7Zm7-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM4 15h9a4 4 0 0 1 8 0h-2a2 2 0 1 0-2 2 2 2 0 0 0 2-2h2a4 4 0 0 1-8 0H4v-2Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h3a4 4 0 0 1 8 0h5v2h-5a4 4 0 0 1-8 0H4V7Zm7-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4ZM4 15h9a4 4 0 0 1 8 0h-2a2 2 0 1 0-2 2 2 2 0 0 0 2-2h2a4 4 0 0 1-8 0H4v-2Z'/%3E%3C/svg%3E"); }
.service-icon--home::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 3 9 8h-3v9h-5v-6h-2v6H6v-9H3l9-8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m12 3 9 8h-3v9h-5v-6h-2v6H6v-9H3l9-8Z'/%3E%3C/svg%3E"); }
.service-icon--light::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 21h6v-2H9v2Zm3-20a7 7 0 0 0-4 12.74V17h8v-3.26A7 7 0 0 0 12 1Zm2 11.97-.75.58V15h-2.5v-1.45L10 12.97A5 5 0 1 1 14 12.97Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 21h6v-2H9v2Zm3-20a7 7 0 0 0-4 12.74V17h8v-3.26A7 7 0 0 0 12 1Zm2 11.97-.75.58V15h-2.5v-1.45L10 12.97A5 5 0 1 1 14 12.97Z'/%3E%3C/svg%3E"); }
.service-icon--energy::before { mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm2 8h2v2H8v-2Zm3-4h2v6h-2v-6Zm3-2h2v8h-2V8Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v16H4V4Zm2 2v12h12V6H6Zm2 8h2v2H8v-2Zm3-4h2v6h-2v-6Zm3-2h2v8h-2V8Z'/%3E%3C/svg%3E"); }

.panel-section {
  background:
    radial-gradient(circle at 8% 20%, rgba(15, 116, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #263a55;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: 0 0 0 5px rgba(15, 116, 255, 0.10);
}

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

.smart-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.smart-list span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #e9f5ff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-align: center;
}

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

.process-grid article {
  position: relative;
  overflow: hidden;
}

.process-grid article::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(15, 116, 255, 0.08);
}

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

.reason-list li {
  position: relative;
  padding-left: 30px;
  color: #243852;
  font-weight: 800;
}

.reason-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--cyan-400) 0 34%, var(--blue-600) 38% 100%);
}

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

.solution-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  background:
    linear-gradient(145deg, #ffffff, #f8fbff);
}

.solution-grid strong {
  color: var(--navy-900);
  line-height: 1.25;
}

.solution-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(8, 31, 62, 0.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-item.active .faq-question span {
  background: var(--navy-900);
}

.cta-strip {
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(40, 215, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.cta-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.cta-strip h2 {
  max-width: 780px;
}

.cta-strip p:last-child {
  max-width: 690px;
  margin: 12px 0 0;
  color: #d5e6f6;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: stretch;
}

.contact-card {
  padding: 30px;
  background:
    linear-gradient(145deg, #ffffff, #f7fbff);
}

.contact-list {
  display: grid;
  gap: 15px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a {
  color: var(--blue-600);
  font-weight: 900;
}

.map-wrapper {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 58px;
  height: 58px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(2, 15, 32, 0.24);
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.floating-btn--whatsapp {
  background: var(--whatsapp);
}

.floating-btn--phone {
  background: var(--phone);
}

.icon {
  width: 22px;
  height: 22px;
  color: currentColor;
}

.icon--wa {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.5 0 .16 5.34.16 11.91c0 2.1.55 4.15 1.6 5.96L.06 24l6.29-1.65a11.88 11.88 0 0 0 5.72 1.46h.01c6.57 0 11.91-5.34 11.91-11.91 0-3.18-1.24-6.17-3.47-8.42Zm-8.44 18.32h-.01a9.89 9.89 0 0 1-5.04-1.38l-.36-.21-3.73.98.99-3.64-.24-.38a9.89 9.89 0 0 1-1.51-5.26c0-5.47 4.45-9.91 9.92-9.91a9.84 9.84 0 0 1 7 2.9 9.84 9.84 0 0 1 2.9 7c0 5.46-4.45 9.9-9.91 9.9Zm5.43-7.42c-.3-.15-1.77-.87-2.04-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.95 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.49s1.07 2.89 1.22 3.09c.15.2 2.1 3.22 5.09 4.51.71.31 1.27.49 1.7.63.72.23 1.37.2 1.88.12.57-.09 1.77-.72 2.02-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.86 11.86 0 0 0 12.08 0C5.5 0 .16 5.34.16 11.91c0 2.1.55 4.15 1.6 5.96L.06 24l6.29-1.65a11.88 11.88 0 0 0 5.72 1.46h.01c6.57 0 11.91-5.34 11.91-11.91 0-3.18-1.24-6.17-3.47-8.42Zm-8.44 18.32h-.01a9.89 9.89 0 0 1-5.04-1.38l-.36-.21-3.73.98.99-3.64-.24-.38a9.89 9.89 0 0 1-1.51-5.26c0-5.47 4.45-9.91 9.92-9.91a9.84 9.84 0 0 1 7 2.9 9.84 9.84 0 0 1 2.9 7c0 5.46-4.45 9.9-9.91 9.9Zm5.43-7.42c-.3-.15-1.77-.87-2.04-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.95 1.17-.17.2-.35.22-.65.07-.3-.15-1.26-.46-2.4-1.48-.89-.79-1.49-1.77-1.66-2.07-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.49s1.07 2.89 1.22 3.09c.15.2 2.1 3.22 5.09 4.51.71.31 1.27.49 1.7.63.72.23 1.37.2 1.88.12.57-.09 1.77-.72 2.02-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

.icon--phone {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57a1 1 0 0 1-.24 1.02l-2.21 2.2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.24.2 2.45.57 3.57a1 1 0 0 1-.24 1.02l-2.21 2.2Z'/%3E%3C/svg%3E");
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 74px 18px 24px;
  background: rgba(2, 10, 24, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(1100px, 96vw);
  max-height: 82svh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  padding: 58px 0 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(40, 215, 255, 0.14), transparent 28%),
    #061426;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.65fr) minmax(250px, 0.8fr);
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: #cddaea;
}

.footer-column h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #cddaea;
  list-style: none;
}

.footer-column a {
  color: #dce9f7;
}

.footer-column a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cddaea;
}

.footer-bottom p {
  margin: 0;
}

.digital-signature a {
  color: inherit;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav-link {
    padding-inline: 8px;
    font-size: 0.75rem;
  }

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

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    max-width: 178px;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - var(--header-height) - 28px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-strong);
  }

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

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 14, 31, 0.91), rgba(7, 26, 51, 0.80)),
      radial-gradient(circle at 20% 82%, rgba(40, 215, 255, 0.18), transparent 30%);
  }

  .hero__media img {
    object-position: center;
  }

  .trust-strip,
  .feature-grid,
  .service-intro,
  .service-grid,
  .process-grid,
  .smart-list,
  .solution-grid,
  .footer__grid,
  .contact-grid,
  .smart-grid,
  .split,
  .split--reverse,
  .cta-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .split__text,
  .section-heading,
  .footer-brand,
  .smart-list,
  .cta-strip__inner > div:first-child {
    grid-column: 1 / -1;
  }

  .cta-strip__actions {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand {
    max-width: 154px;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.12;
  }

  h2 {
    max-width: 16ch;
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .section-heading p,
  .split__text p,
  .hero__text {
    max-width: 34ch;
  }

  .section-heading h2,
  .split__text h2 {
    max-width: 16ch;
  }

  .section-heading h2,
  .section-heading p {
    margin-inline: auto;
  }

  .hero {
    padding: 62px 0 52px;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__actions,
  .cta-strip__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.86rem;
    line-height: 1.2;
    white-space: normal;
  }

  .btn .icon {
    width: 20px;
    height: 20px;
  }

  .hero__text {
    font-size: 0.98rem;
  }

  .hero__quick-card {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero__quick-card a {
    text-align: center;
  }

  .trust-strip,
  .feature-grid,
  .service-intro,
  .service-grid,
  .process-grid,
  .smart-list,
  .solution-grid,
  .footer__grid,
  .contact-grid,
  .smart-grid,
  .split,
  .split--reverse,
  .cta-strip__inner {
    grid-template-columns: 1fr;
  }

  .image-card img {
    aspect-ratio: 4 / 3;
  }

  .service-card,
  .feature-grid article,
  .process-grid article,
  .solution-grid article,
  .contact-card {
    padding: 22px;
  }

  .cta-strip {
    padding: 56px 0;
  }

  .cta-strip__inner {
    padding: 24px;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 340px;
  }

  .floating-actions {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    gap: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .floating-btn {
    flex: 1 1 0;
    min-width: 0;
    height: 56px;
    border-radius: 16px;
    padding-inline: 8px;
    font-size: 0.82rem;
  }

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

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

  .brand {
    max-width: 132px;
  }

  h1 {
    font-size: 1.58rem;
  }

  .hero__text {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .faq-question {
    padding: 18px 16px;
  }

  .faq-answer p {
    padding-inline: 16px;
  }
}
