:root {
  --blue: #155DAA;
  --blue-dark: #0E4788;
  --carbon: #1F1F1F;
  --steel: #6F7780;
  --light: #F3F5F7;
  --white: #FFFFFF;
  --line: #DCE2E8;
  --shadow: 0 18px 50px rgba(31, 31, 31, 0.10);
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--carbon);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 226, 232, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 206px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--carbon);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(21, 93, 170, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: var(--white);
  color: var(--carbon);
}

.btn-secondary {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--carbon);
  border-radius: 99px;
}

.section {
  padding: 94px 0;
  scroll-margin-top: var(--header-height);
}

.muted {
  background: var(--light);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #7DB3EE;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after,
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.91) 0%, rgba(10, 12, 14, 0.74) 40%, rgba(10, 12, 14, 0.25) 100%);
}

.hero-bg img,
.cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 118px 0 66px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 630px;
  margin-bottom: 32px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.benefit-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:last-child {
  border-right: 0;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--blue);
}

.benefit-item .icon-wrap,
.whatsapp-bubble {
  color: var(--white);
}

.icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-item .icon-wrap img,
.whatsapp-bubble img {
  filter: brightness(0) invert(1);
}

.icon-wrap.large {
  width: 58px;
  height: 58px;
}

.icon-wrap.small {
  width: 34px;
  height: 34px;
}

.split-grid,
.coverage-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.media-card,
.map-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.media-card:hover img,
.map-card:hover img,
.product-card:hover > img {
  transform: scale(1.025);
}

.section-copy > p,
.coverage-copy > p,
.contact-copy > p {
  max-width: 680px;
  color: var(--steel);
}

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

.info-grid article,
.large-card,
.product-card,
.advantage-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(31, 31, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-grid article:hover,
.large-card:hover,
.product-card:hover,
.advantage-card:hover,
.contact-form:hover {
  border-color: rgba(21, 93, 170, 0.2);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.10);
  transform: translateY(-3px);
}

.info-grid article {
  padding: 24px;
}

.info-grid p,
.advantage-card p,
.product-body p,
.large-card p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 0.95rem;
}

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

.large-card {
  padding: 44px;
}

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

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading.compact {
  display: block;
  text-align: center;
}

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

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  background: var(--light);
  transition: transform 0.45s ease;
}

.product-body {
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-dark);
}

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

.advantage-card {
  padding: 28px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.coverage-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.map-card {
  padding: 24px;
}

.map-card img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta > img {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2,
.cta-content p {
  max-width: 650px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list strong {
  display: block;
  color: var(--carbon);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.contact-list span:last-child {
  color: var(--steel);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--carbon);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--carbon);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 93, 170, 0.12);
}

.form-error {
  min-height: 20px;
  margin: -6px 0 0;
  color: #B3261E;
  font-size: 0.85rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 60px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--carbon);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
  gap: 34px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 410px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

.whatsapp-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 18px 34px rgba(31, 31, 31, 0.28);
  transition: transform 0.2s ease;
}

.whatsapp-bubble:hover,
.whatsapp-bubble:focus-visible {
  transform: translateY(-3px) scale(1.06);
}

.whatsapp-bubble img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.form-response-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--light);
}

.response-card {
  max-width: 820px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.response-logo img {
  width: 240px;
  margin-bottom: 34px;
}

.response-card h1 {
  color: var(--carbon);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.response-card > p {
  color: var(--steel);
}

.response-errors {
  margin: 24px 0;
  padding: 18px 22px;
  border: 1px solid rgba(179, 38, 30, 0.22);
  border-radius: var(--radius);
  color: #B3261E;
  background: rgba(179, 38, 30, 0.06);
}

.response-contact {
  margin-top: 26px;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.72rem;
  }

  .header-cta {
    display: none;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 174px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg::after,
  .cta::after {
    background: linear-gradient(90deg, rgba(10, 12, 14, 0.92), rgba(10, 12, 14, 0.72));
  }

  .hero-content {
    padding: 96px 0 52px;
  }

  .benefit-strip,
  .split-grid,
  .coverage-grid,
  .contact-grid,
  .mission-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    margin-bottom: 18px;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .media-card img {
    height: 360px;
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .center-action .btn,
  .contact-form .btn {
    width: 100%;
  }

  .info-grid,
  .product-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .large-card,
  .contact-form {
    padding: 24px;
  }

  .product-card img {
    aspect-ratio: 1.45;
  }

  .cta {
    min-height: 380px;
  }

  .whatsapp-bubble {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
