:root {
  --blue: #0756d8;
  --blue-dark: #042f6f;
  --blue-deep: #061b3a;
  --orange: #1ba7ff;
  --ink: #0b1930;
  --muted: #58708f;
  --line: #d8e8fb;
  --soft: #f3f8ff;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(7, 86, 216, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.top-strip {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.88rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1rem;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 1rem;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 900;
  color: var(--blue-dark);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(7, 86, 216, 0.13);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 750;
  color: #263548;
}

.nav-links a {
  position: relative;
  padding: 0.55rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

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

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.btn.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 24, 58, 0.9), rgba(4, 47, 111, 0.66), rgba(7, 86, 216, 0.22)),
    url("https://images.unsplash.com/photo-1550009158-9ebf69173e03?auto=format&fit=crop&w=1800&q=80") center / cover;
  content: "";
}

.hero .container {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-top: 0.75rem;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
}

.hero p {
  max-width: 700px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.24);
}

.hero-stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  color: var(--orange);
  font-size: 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section.dark {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}

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

.section-head p,
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark .section-head p,
.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

h2 {
  margin-top: 0.45rem;
  color: var(--blue-dark);
  font-size: clamp(1.85rem, 4vw, 3rem);
}

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

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.service-tile,
.value-tile,
.product-card,
.review,
.info-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 31, 59, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-tile:hover,
.value-tile:hover,
.product-card:hover,
.review:hover,
.info-box:hover {
  border-color: rgba(7, 86, 216, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-tile,
.value-tile {
  padding: 1.1rem;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  background: #eaf3ff;
  color: var(--blue);
}

.icon svg {
  width: 22px;
  height: 22px;
}

.service-tile h3,
.value-tile h3,
.product-card h3,
.info-box h3 {
  color: var(--blue-dark);
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 2rem;
  align-items: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 190px;
  gap: 0.8rem;
}

.photo-grid .tall {
  grid-row: span 2;
}

.photo-grid img,
.feature-photo img,
.gallery img {
  border-radius: 8px;
}

.gallery.product-gallery img {
  padding: 1rem;
  background: linear-gradient(135deg, #ffffff, #eaf4ff);
  object-fit: contain;
}

.feature-photo {
  height: min(520px, 72vw);
}

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

.review {
  padding: 1.4rem;
}

.stars {
  color: var(--orange);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.product-card {
  overflow: hidden;
}

.product-card .media {
  height: 210px;
  background: #dfe7f1;
}

.product-card .media.product-shot {
  display: grid;
  place-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, #ffffff, #eaf4ff);
}

.product-card .media.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card .body {
  padding: 1.1rem;
}

.product-card p {
  color: var(--muted);
}

.price {
  display: inline-flex;
  margin: 0.35rem 0 1rem;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
}

.page-hero {
  position: relative;
  color: var(--white);
  background: var(--blue-deep);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 24, 58, 0.9), rgba(4, 47, 111, 0.56)),
    var(--hero-image, url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1700&q=80")) center / cover;
  content: "";
}

.page-hero .container {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.55rem);
}

.content-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.content-list li::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  flex: 0 0 auto;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
  align-items: start;
}

.info-box {
  padding: 1.3rem;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 31, 59, 0.06);
}

.logo-card img {
  width: 100%;
  max-width: 170px;
  height: 82px;
  object-fit: contain;
}

.service-logo {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.service-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  color: var(--blue-dark);
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 86, 164, 0.12);
}

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

.map-grid iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
}

.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.76);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 2rem;
}

.footer h3,
.footer strong {
  color: var(--white);
}

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

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: grid;
  gap: 0.65rem;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.float-btn svg {
  width: 25px;
  height: 25px;
}

.float-btn.whatsapp {
  background: #17a85a;
}

.float-btn.call {
  background: var(--blue-dark);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .top-strip .container {
    display: grid;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .grid.five,
  .grid.three,
  .grid.two,
  .split,
  .reviews,
  .contact-grid,
  .map-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .hero {
    min-height: 720px;
  }

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

  .section {
    padding: 3.6rem 0;
  }

  .section-head {
    display: block;
  }

  .photo-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-auto-rows: 210px;
  }

  .photo-grid .tall {
    grid-row: span 1;
  }

  .product-card .media {
    height: 230px;
  }

  .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
