:root {
  --ink: #12212a;
  --muted: #667783;
  --line: #dbe6eb;
  --paper: #f4f7f8;
  --white: #ffffff;
  --navy: #102b38;
  --navy-2: #071821;
  --teal: #087d86;
  --blue: #286e9b;
  --amber: #f5af2b;
  --green: #11824d;
  --red: #c34235;
  --shadow: 0 24px 70px rgba(8, 30, 42, .16);
  --radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfc;
  line-height: 1.55;
}

body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -70px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.skip-link:focus { top: 16px; }

.topbar {
  background: #06151d;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.topbar a { color: #ffd67d; font-weight: 800; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  font-weight: 900;
}
.status-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9aa8ae;
}
.status-badge.is-open i {
  background: #30d46f;
  box-shadow: 0 0 0 0 rgba(48,212,111,.7);
  animation: statusPulse 1.25s infinite;
}
.status-badge.is-closed i { background: #e26558; }
@keyframes statusPulse {
  70% { box-shadow: 0 0 0 9px rgba(48,212,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(48,212,111,0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(219,230,235,.72);
  backdrop-filter: blur(18px);
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  min-width: 0;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 30, 42, .12);
}
.brand strong {
  display: block;
  font-size: 19px;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  font-size: 13px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2a3d47;
  font-size: 15px;
  font-weight: 700;
}
.nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
}
.nav a:hover {
  color: var(--navy);
  background: #edf5f6;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.section { padding: 96px 0; }
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 { line-height: 1.2; }
.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}
.btn--primary { background: var(--amber); color: #221600; }
.btn--light { background: rgba(255,255,255,.13); color: var(--white); border-color: rgba(255,255,255,.42); }
.btn--dark { background: var(--navy); color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
  background: #06151d;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,21,29,.96) 0%, rgba(6,21,29,.82) 46%, rgba(6,21,29,.34) 100%),
    url("../images/WhatsApp Image 2026-05-26 at 14.56.55.jpeg") center / cover;
  opacity: .98;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(6,21,29,.76));
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
  padding: 76px 0 88px;
  z-index: 1;
}
.hero__content p {
  max-width: 700px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.8vw, 20px);
  margin-bottom: 28px;
}
.hero__content .section-kicker { color: #ffd67d; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}
.trust-row span {
  min-height: 86px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}
.trust-row b {
  display: block;
  color: var(--white);
  font-size: 20px;
}
.hero__visual {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
  margin-right: 42px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.hero__main-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 26px 80px rgba(0,0,0,.35);
}
.hero__badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  width: min(270px, calc(100% - 18px));
  padding: 18px 18px 17px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero__badge strong { display: block; color: var(--navy); font-size: 20px; }
.hero__badge span { color: var(--muted); font-size: 14px; }

.quick-strip {
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(8, 30, 42, .05);
}
.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.quick-strip span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.quick-strip span:first-child { border-left: 0; }

.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(10,35,48,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8,125,134,.35);
  box-shadow: 0 24px 55px rgba(10,35,48,.12);
}
.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: var(--radius);
  background: #e5f4f5;
  color: var(--teal);
  font-weight: 900;
}
.service-card h3 { margin-bottom: 10px; font-size: 21px; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.proof__grid {
  display: grid;
  grid-template-columns: 1fr .84fr;
  gap: 54px;
  align-items: center;
}
.proof p { color: var(--muted); font-size: 18px; }
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}
.proof-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16,43,56,.94), rgba(7,24,33,.98)),
    url("../images/WhatsApp Image 2026-05-26 at 14.57.08.jpeg") center / cover;
  box-shadow: var(--shadow);
}
.metric {
  min-height: 150px;
  display: grid;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.metric strong { font-size: 42px; line-height: 1; }
.metric span { color: rgba(255,255,255,.72); margin-top: 8px; }

.gallery-section { background: #fbfcfd; }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.gallery-filter button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}
.gallery-filter button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}
.gallery-shell {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(280px, 31vw, 360px);
  width: 100%;
  height: 340px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  cursor: zoom-in;
  box-shadow: 0 16px 44px rgba(10,35,48,.09);
  scroll-snap-align: start;
}
.gallery-item--wide,
.gallery-item--tall { height: 340px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .26s ease;
}
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(7,25,34,.84);
  color: var(--white);
  text-align: left;
  font-weight: 900;
}
.gallery-item.is-hidden { display: none; }
.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(7,25,34,.82);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}
.gallery-nav--prev { left: -12px; }
.gallery-nav--next { right: -12px; }
.gallery-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16,43,56,.96), rgba(8,33,45,.98)),
    url("../images/WhatsApp Image 2026-05-26 at 14.56.50.jpeg") center / cover;
}
.process .section-kicker { color: #ffd67d; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--amber);
  color: #201600;
  font-weight: 900;
}
.process-grid h3 { margin: 20px 0 10px; font-size: 22px; }
.process-grid p { color: rgba(255,255,255,.76); margin-bottom: 0; }

.faq { background: var(--paper); }
.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}
.faq details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(10,35,48,.05);
}
.faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
}
.faq p { color: var(--muted); margin: 12px 0 0; }

.contact {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7,24,33,.97), rgba(16,43,56,.96)),
    url("../images/WhatsApp Image 2026-05-26 at 14.57.03.jpeg") center / cover;
}
.contact .section-kicker { color: #ffd67d; }
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.contact p {
  max-width: 650px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  font-style: normal;
}
.contact-card strong {
  display: block;
  color: #ffd67d;
  margin-bottom: 2px;
}
.contact-card span,
.contact-card a { color: rgba(255,255,255,.88); }

.map-section {
  padding: 76px 0;
  background: var(--paper);
}
.map-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-card > div {
  padding: clamp(24px, 4vw, 42px);
}
.map-card p {
  color: var(--muted);
  margin-bottom: 18px;
}
.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(202, 36, 36, .18);
}
.map-link:hover {
  transform: translateY(-1px);
}
.map-card iframe {
  width: 100%;
  min-height: 430px;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 24px 0 34px;
  color: rgba(255,255,255,.72);
  background: #041016;
  font-size: 14px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__inner a { color: #ffd67d; font-weight: 800; }

.floating-contact {
  position: fixed;
  right: 14px;
  top: 50%;
  z-index: 60;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.floating-contact__btn {
  width: 76px;
  min-height: 64px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.floating-contact__btn:hover {
  transform: translateX(-3px);
  box-shadow: 0 20px 42px rgba(0,0,0,.24);
}
.floating-contact__btn i {
  font-size: 24px;
  line-height: 1;
}
.floating-contact__btn span {
  display: block;
  max-width: 100%;
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.floating-contact__btn--phone { background: var(--blue); }
.floating-contact__btn--whatsapp { background: var(--green); }
.floating-contact__btn--instagram { background: linear-gradient(135deg, #7d3fd1, #e94274 54%, #f7b536); }
.floating-contact__btn--facebook { background: #1c63b7; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3,12,17,.88);
}
.lightbox.is-open { display: grid; }
.lightbox figure {
  width: min(960px, 100%);
  margin: 0;
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #000;
}
.lightbox figcaption {
  margin-top: 12px;
  color: var(--white);
  text-align: center;
  font-weight: 800;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 980px) {
  .header__inner { min-height: 74px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: grid; }
  .hero__grid,
  .proof__grid,
  .contact__grid,
  .section-head--split {
    grid-template-columns: 1fr;
  }
  .hero__visual { justify-self: stretch; width: 100%; max-width: 520px; }
  .hero__visual { margin-right: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { flex-basis: calc((100% - 14px) / 2); }
  .process-grid { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .floating-contact {
    top: auto;
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: repeat(4, 1fr);
    transform: none;
  }
  .floating-contact__btn { width: auto; min-height: 54px; }
  .floating-contact__btn:hover { transform: none; }
  .site-footer { padding-bottom: 88px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  .topbar__inner {
    min-height: 46px;
    justify-content: space-between;
    text-align: center;
  }
  .topbar__inner > span:not(.status-badge) { display: none; }
  .status-badge { min-width: auto; font-size: 13px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 12px; }
  .hero { min-height: auto; }
  .hero__grid { padding: 48px 0 58px; gap: 28px; }
  h1 { font-size: 42px; }
  .hero__actions .btn,
  .contact__actions .btn { width: 100%; }
  .trust-row,
  .service-grid,
  .quick-strip__grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }
  .hero__badge {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
  .section { padding: 60px 0; }
  .service-card { min-height: auto; }
  .service-card__icon { margin-bottom: 24px; }
  .gallery-item { flex-basis: 86%; }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall { height: 310px; }
  .gallery-nav { display: none; }
  .map-card iframe { min-height: 320px; }
  .floating-contact__btn {
    padding: 9px 10px;
    text-align: center;
  }
  .floating-contact__btn i { font-size: 22px; }
  .floating-contact__btn span { font-size: 9px; }
}
