:root {
  --brand: #003b7f;
  --brand-2: #0a559d;
  --ink: #101820;
  --muted: #5e6b7a;
  --soft: #f4f8fc;
  --line: #dbe6f0;
  --white: #ffffff;
  --dark: #07192c;
  --green: #1fbf75;
  --shadow: 0 18px 45px rgba(0, 34, 72, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
}

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

figure {
  margin: 0;
}

button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 230, 240, 0.9);
  backdrop-filter: blur(14px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  width: 132px;
}

.logo-link img,
.footer img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--brand);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.menu-button svg,
.button svg,
.card svg,
.quick-strip svg,
.contact-line svg,
.served-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 14px;
  right: 14px;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.nav.is-open {
  display: grid;
}

.nav a {
  padding: 13px 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 8px;
}

.nav a:hover {
  background: var(--soft);
  color: var(--brand);
}

.hero {
  display: grid;
  gap: 18px;
  padding: 22px 18px 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(158deg, #003b7f 0%, #07192c 76%);
}

.hero-copy {
  display: grid;
  gap: 14px;
  max-width: 590px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  color: var(--brand);
  background: rgba(0, 59, 127, 0.08);
  border: 1px solid rgba(0, 59, 127, 0.12);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
}

.tag.light {
  color: #dceeff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

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

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

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

h1 {
  max-width: 760px;
  font-size: clamp(1.85rem, 7vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.65rem, 7vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 1.03rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 16px;
  font-size: 0.94rem;
  font-weight: 800;
  border-radius: 9px;
}

.button.primary {
  color: var(--brand);
  background: var(--white);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  width: min(100%, 330px);
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(7, 25, 44, 0.18);
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-photo figcaption {
  display: grid;
  gap: 2px;
  padding: 12px;
  color: var(--white);
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-photo strong {
  font-size: 0.9rem;
}

.hero-photo span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 34, 72, 0.08);
}

.quick-strip div {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 12px 8px;
  color: var(--brand);
  background: var(--white);
  text-align: center;
}

.quick-strip span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.section,
.product-section,
.contact {
  padding: 64px 18px;
}

.section-title {
  display: grid;
  gap: 13px;
  max-width: 740px;
  margin-bottom: 24px;
}

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

.card {
  display: grid;
  gap: 14px;
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 34, 72, 0.07);
}

.card svg {
  width: 30px;
  height: 30px;
  color: var(--brand);
}

.product-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(10, 85, 157, 0.4), transparent 42%),
    var(--dark);
}

.product-panel {
  display: grid;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-copy {
  display: grid;
  gap: 18px;
}

.product-panel h2,
.contact h2 {
  color: var(--white);
}

.product-panel p,
.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.test-list {
  display: grid;
  gap: 10px;
}

.test-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 800;
}

.test-list svg {
  width: 18px;
  height: 18px;
  color: #63e6a8;
}

.product-gallery {
  display: grid;
  gap: 10px;
}

.gallery-main,
.gallery-thumbs img {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.gallery-main img,
.gallery-thumbs img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.gallery-main img {
  aspect-ratio: 1 / 1;
  object-position: 50% 44%;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-thumbs img {
  aspect-ratio: 1.15 / 1;
}

.map-section {
  background: var(--soft);
}

.map-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.map-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff, #eef6fb);
}

.map-info {
  display: grid;
  gap: 2px;
  padding: 14px;
  background: var(--soft);
  border-radius: 10px;
}

.map-info strong {
  color: var(--brand);
  font-size: 1.15rem;
}

.map-info span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.served-layout {
  display: grid;
  gap: 18px;
}

.served-map {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 0;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.served-map img {
  display: block;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: contain;
}

.served-list {
  display: grid;
  gap: 10px;
}

.served-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.served-list svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.served-list div {
  display: grid;
  gap: 3px;
}

.served-list strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.served-list span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
}

.contact {
  display: grid;
  gap: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(160deg, #003b7f, #07192c);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-weight: 800;
}

.trust-section {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.trust-section div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.trust-section svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.trust-section strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.trust-section span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer img {
  width: 116px;
}

.footer span {
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.whatsapp-float img {
  display: block;
  width: 30px;
  height: 30px;
}

@media (min-width: 760px) {
  .topbar {
    padding-inline: max(28px, calc((100vw - 1180px) / 2));
  }

  .logo-link {
    width: 156px;
  }

  .menu-button {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav a {
    font-size: 0.86rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 52px;
    min-height: calc(100svh - 68px);
    padding: 72px max(28px, calc((100vw - 1180px) / 2));
  }

  .hero-photo {
    width: min(100%, 380px);
  }

  .hero-photo img {
    aspect-ratio: 4 / 5;
  }

  .hero-photo figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(7, 25, 44, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    backdrop-filter: blur(12px);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-proof {
    max-width: 520px;
  }

  .quick-strip {
    width: min(1180px, calc(100% - 56px));
    margin: -28px auto 0;
    position: relative;
    z-index: 2;
  }

  .quick-strip div {
    min-height: 96px;
  }

  .section,
  .product-section,
  .contact {
    padding: 96px max(28px, calc((100vw - 1180px) / 2));
  }

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

  .product-panel,
  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
    align-items: center;
  }

  .map-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
    gap: 54px;
    align-items: center;
  }

  .map-section .section-title {
    margin-bottom: 0;
  }

  .served-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
    gap: 44px;
    align-items: center;
  }

  .served-section .section-title {
    margin-bottom: 0;
  }

  .served-layout {
    gap: 16px;
  }

  .served-map {
    min-height: 360px;
    padding: 14px;
  }

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

  .footer {
    padding-inline: max(28px, calc((100vw - 1180px) / 2));
  }

  .trust-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 26px max(28px, calc((100vw - 1180px) / 2));
  }

  .whatsapp-float {
    right: 26px;
    bottom: 26px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 380px) {
  .logo-link {
    width: 118px;
  }

  h1 {
    font-size: 1.72rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  .quick-strip span {
    font-size: 0.72rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}
