:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #142033;
  --muted: #4f5d75;
  --primary: #1f6fe5;
  --primary-dark: #1559ba;
  --border: #dbe3f0;
  --shadow: 0 14px 40px rgba(16, 36, 70, 0.12);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0f203c;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.icon-defs {
  position: absolute;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 66px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.brand img {
  width: 140px;
  padding: 8px 0;
}

.nav-links {
  position: fixed;
  top: 66px;
  text-transform: uppercase;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 24px 24px 176px;
  background: #ffffff;
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  z-index: 70;
}

.nav-links.is-open {
  opacity: 1;
  align-items: center;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  color: #4f5d75;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 14px 0;
  border-bottom: 1px solid #ebeff6;
}

body.menu-open {
  overflow: hidden;
}

.menu-toggle {
  width: 46px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.24s ease, transform 0.24s ease;
  position: relative;
  z-index: 80;
}

.menu-toggle:hover {
  border-color: #7ec8bf;
  transform: translateY(-1px);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #0b6b67;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 95;
  width: min(420px, calc(100% - 24px));
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 10px 26px rgba(16, 36, 70, 0.18);
}

.lang-toggle {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  min-height: 44px;
  font-size: 0.95rem;
  line-height: 1.1;
  font-weight: 600;
  cursor: pointer;
  transition: 0.24s ease;
}

.site-header .btn {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.header-actions .nav-cta {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
}

.lang-toggle:hover {
  border-color: #7ec8bf;
  color: #0b6b67;
  transform: translateY(-1px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
  cursor: pointer;
}

#submit-btn{
  width: 100%;
}

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

.btn-primary {
  background: #0b6b67;
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 107, 103, 0.28);
}

.btn-primary:hover {
  background: #084f4c;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #fff;
  background: rgba(8, 79, 76, 0.22);
}

.btn-secondary:hover {
  background: rgba(8, 79, 76, 0.34);
}

.btn-outline {
  border: 1px solid #0b6b67;
  color: #0b6b67;
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  background: #e8f6f4;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  will-change: transform;
  animation: heroZoomLoop 10s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(8, 17, 33, 0.0), rgba(11, 48, 105, 0.0));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 96px 0 84px;
}

h1 {
  font-size: clamp(2rem, 5.8vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 18ch;
}

.hero h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero p {
  max-width: 64ch;
  color: #e3eeff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.section {
  padding: 72px 0;
}

.about-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 17, 33, 0.72), rgba(11, 48, 105, 0.48));
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1,
.about-hero p {
  color: #fff;
}

.about-hero p {
  max-width: 64ch;
}

.section-alt {
  background: #eef3fb;
}

.pillars-section {
  position: relative;
  overflow: hidden;
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/banner-top.jpg") center/cover no-repeat;
  background-attachment: fixed;
  filter: blur(8px);
  transform: scale(1.08);
  opacity: 0.55;
  z-index: 0;
}

.pillars-section > .container {
  position: relative;
  z-index: 1;
}

.distributors-section {
  position: relative;
  overflow: hidden;
}

.distributors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/banner-top2.jpg") center/cover no-repeat;
  background-attachment: fixed;
  filter: blur(8px);
  transform: scale(1.08);
  z-index: 0;
}

.distributors-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.distributors-section > .container {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: #0f203c;
  color: #dce9ff;
}

.section-dark p {
  color: #c1d2ef;
}

.performance-section {
  position: relative;
  overflow: hidden;
}

.performance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/banner-top2.jpg") center/cover no-repeat;
  z-index: 0;
}

.performance-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 45, 0.72);
  z-index: 0;
}

.performance-section > .container {
  position: relative;
  z-index: 1;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/banner-top.jpg") center/cover no-repeat;
  z-index: 0;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 45, 0.72);
  z-index: 0;
}

.final-cta-section > .container {
  position: relative;
  z-index: 1;
}

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

.cards {
  display: grid;
  gap: 14px;
}

.visual-row {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.visual-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

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

.pillars-grid .icon-chip {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.pillars-grid .icon-chip svg {
  width: 24px;
  height: 24px;
}

.card,
.product-item,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.icon-chip {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #e4f4f2, #cceae7);
  color: #0b6b67;
  margin-bottom: 10px;
}

.icon-chip.small {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.icon-chip svg {
  width: 20px;
  height: 20px;
}

.product-thumb {
  width: 100%;
  margin: 0 0 14px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border-bottom: 1px solid var(--border);
}

.section-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.product-item ul,
.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-item h3 {
  color: #0b6b67;
}

.feature-list li + li,
.product-item li + li {
  margin-top: 8px;
}

.feature-list li {
  position: relative;
  padding-left: 8px;
}

.feature-list li::marker {
  color: #1a67d7;
}

.feature-grid {
  display: grid;
  gap: 4px 24px;
}

.contact-wrap {
  display: grid;
  gap: 24px;
}

.section-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.section-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.trust-brand {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.trust-brand img {
  width: 170px;
  opacity: 0.92;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li + li {
  margin-top: 8px;
}

.contact-list .icon-chip {
  margin-bottom: 0;
  flex: 0 0 auto;
  border-radius: 999px;
}

#contact .eyebrow {
  color: #0b6b67;
}

.contact-list a {
  color: #0b6b67;
  font-weight: 600;
}

.contact-map {
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-map-title {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c8d5ea;
  padding: 12px;
  margin-bottom: 14px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #d7e8ff;
  border-color: var(--primary);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  margin-top: 12px;
  min-height: 24px;
  font-weight: 500;
}

.form-status.success {
  color: #14893f;
}

.form-status.error {
  color: #b42033;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 60;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  animation: pulse 2.3s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

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

.site-footer {
  background: #0f203c;
  color: #d2def2;
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy p {
  margin: 0;
}

.footer-credit a {
  color: #d2def2;
  text-decoration: underline;
}

.footer-wrap img {
  width: 148px;
}

.reveal-up {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance, 28px), 0);
  transition:
    opacity var(--reveal-duration, 680ms) ease var(--reveal-delay, 0ms),
    transform var(--reveal-duration, 680ms) ease var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.route-transitioning {
  overflow: hidden;
}

body.route-transitioning::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 130;
  pointer-events: none;
  background: var(--bg);
  transform: translateX(100%);
  animation: routeSlideFromRight 340ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

body.route-transitioning .site-header,
body.route-transitioning main,
body.route-transitioning footer {
  animation: routeSlideContentOut 340ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.route-transitioning::after,
  body.route-transitioning .site-header,
  body.route-transitioning main,
  body.route-transitioning footer {
    animation: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes heroZoomLoop {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes routeSlideFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes routeSlideContentOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-40px);
    opacity: 0.22;
  }
}

@media (max-width: 759px) {
  .site-header {
    backdrop-filter: none;
  }

  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: calc(116px + env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    bottom: 124px;
  }
}

@media (min-width: 760px) {
  .nav-wrap {
    min-height: 76px;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 90vw;
    max-width: 90vw;
  }

  .brand img {
    width: 200px;
    padding: 10px 0;
  }

  .header-actions {
    gap: 8px;
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: auto;
    width: auto;
    justify-content: flex-end;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }

  .lang-toggle {
    padding: 10px 14px;
    font-size: 16px;
    line-height: normal;
  }

  .site-header .btn {
    padding: 12px 20px;
    font-size: 16px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    z-index: auto;
    overflow: visible;
    padding: 0;
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-weight: 600;
  }

  .nav-links a {
    display: inline-block;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    padding: 0;
    border-bottom: 0;
    transition: transform 0.22s ease, color 0.22s ease;
  }

  .nav-links a:hover {
    color: var(--text);
    transform: translateY(-3px);
  }

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

  .whatsapp-float {
    bottom: 16px;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .visual-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .contact-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg {
    animation: none !important;
  }
}
