:root {
  --navy: #06345f;
  --navy-2: #082a4b;
  --blue: #0b5a9c;
  --red: #e51f2d;
  --red-2: #c8101d;
  --green: #22b358;
  --ink: #10253f;
  --muted: #61738a;
  --line: #dce6ef;
  --soft: #f2f7fb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(8, 42, 75, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy-2);
  color: #dcebf7;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-height: 34px;
  align-items: center;
}
.topbar i { color: var(--red); margin-right: 7px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(10, 40, 80, .08);
  backdrop-filter: blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
  background: white;
}
.brand strong { color: var(--navy); }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
}
.main-nav a {
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--red); }
.header-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn small { display: block; font-size: 11px; font-weight: 800; margin-top: 2px; }
.btn--call { background: var(--red); color: white; }
.btn--call:hover { background: var(--red-2); }
.btn--whatsapp { background: var(--green); color: white; }
.btn--light { background: white; color: var(--navy); border: 1px solid #b7d0e4; }
.btn--light i { color: var(--green); font-size: 23px; }
.btn--large { min-height: 56px; padding: 14px 24px; font-size: 16px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  padding: 48px 0 36px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 39%, rgba(255,255,255,.42) 63%, rgba(255,255,255,.06) 100%),
    linear-gradient(180deg, #f8fbfe 0%, #edf5fb 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 430px;
  height: 250px;
  background: rgba(229, 31, 45, .08);
  border-radius: 48px;
  transform: rotate(-8deg);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 38px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f0f8;
  color: var(--navy);
  border: 1px solid #d4e2ef;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 {
  margin: 16px 0 14px;
  color: var(--navy);
  font-size: clamp(39px, 5vw, 64px);
  line-height: .96;
  font-weight: 950;
  max-width: 690px;
}
.hero h1::first-line { color: var(--navy); }
.hero h1 { text-wrap: balance; }
.hero h1 span, .section-title h2 span { color: var(--red); }
.hero__content > p {
  max-width: 610px;
  color: #304760;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 26px;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.hero__stats span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.hero__stats i { grid-row: span 2; color: var(--navy); font-size: 24px; }
.hero__stats b { display: block; color: var(--navy); }
.hero__visual {
  position: relative;
  min-height: 465px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.hero__visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-bottom-left-radius: 80px;
  box-shadow: var(--shadow);
}
.service-badge {
  position: absolute;
  top: 28px;
  right: 0;
  background: var(--navy);
  color: white;
  border-radius: 8px 0 0 8px;
  padding: 22px 28px;
  text-align: center;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.45;
}

.trust-strip { margin-top: -1px; padding: 0 0 18px; background: linear-gradient(180deg, #edf5fb, #fff); }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-strip__grid div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 2px 14px;
  padding: 25px 28px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.trust-strip__grid div:last-child { border-right: 0; }
.trust-strip i { grid-row: span 2; font-size: 32px; }
.trust-strip strong { text-transform: uppercase; font-size: 14px; }
.trust-strip span { color: #cfe0ef; font-size: 13px; }

.section { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section-title { text-align: center; margin: 0 auto 34px; }
.section-title span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  margin: 7px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  font-weight: 950;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin: 12px auto 0;
  background: var(--red);
  border-radius: 4px;
}
.section-title--left { text-align: left; margin: 0; }
.section-title--left h2::after { margin-left: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.service-card, .why-grid article, .mini-card-grid article, .testimonial-grid article, .faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 42, 75, .07);
}
.service-card {
  padding: 18px 14px 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card > i {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 10px;
}
.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 13px;
}
.service-card p {
  margin: 0;
  color: #40566f;
  font-size: 13px;
  line-height: 1.55;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.about-image img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-content h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.3vw, 43px);
  line-height: 1.08;
  margin: 16px 0;
}
.about-content p { color: #40566f; line-height: 1.72; margin: 0 0 12px; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 11px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-grid article {
  position: relative;
  text-align: center;
  padding: 4px 10px;
}
.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -29px;
  width: 32px;
  height: 2px;
  background: var(--line);
}
.process-grid b {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(20px);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 13px;
}
.process-grid i {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 38px;
  box-shadow: 0 10px 25px rgba(8, 42, 75, .08);
}
.process-grid h3 { color: var(--navy); margin: 0 0 8px; }
.process-grid p { color: var(--muted); margin: 0; line-height: 1.55; font-size: 14px; }

.section--gallery { background: linear-gradient(180deg, white, #f7fbff); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform .28s ease;
}
.gallery-grid span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(6, 52, 95, .9);
  color: white;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.center { text-align: center; margin-top: 24px; }

.areas-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 0;
  align-items: stretch;
}
.area-card {
  background: var(--navy);
  color: white;
  padding: 42px;
  border-radius: 8px 0 0 8px;
}
.area-card .eyebrow { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.2); }
.area-card h2 { font-size: clamp(28px, 3vw, 42px); line-height: 1.1; margin: 18px 0 12px; }
.area-card p { color: #d4e3f0; line-height: 1.65; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.chips span {
  padding: 8px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}
.map-card {
  min-height: 380px;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 32px;
  border-radius: 0 8px 8px 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,.35)),
    repeating-linear-gradient(45deg, #dfe7ee 0 1px, transparent 1px 30px),
    #edf2f6;
  color: var(--navy);
}
.map-card i { font-size: 62px; color: var(--red); margin: 0 auto 16px; }
.map-card strong { font-size: 21px; max-width: 330px; }
.map-card span { color: var(--muted); margin-top: 10px; }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.why-grid .section-title { grid-row: span 2; align-self: center; }
.why-grid article, .mini-card-grid article {
  padding: 24px;
}
.why-grid i, .mini-card-grid i {
  color: var(--navy);
  font-size: 30px;
  margin-bottom: 13px;
}
.why-grid h3, .mini-card-grid h3 { color: var(--navy); margin: 0 0 8px; }
.why-grid p, .mini-card-grid p { color: var(--muted); margin: 0; line-height: 1.55; font-size: 14px; }

.emergency { background: #fff; }
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section--dark {
  background:
    linear-gradient(135deg, rgba(6,52,95,.97), rgba(8,42,75,.97)),
    var(--navy);
  color: white;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.tech-grid .eyebrow { background: rgba(255,255,255,.11); color: white; border-color: rgba(255,255,255,.2); }
.tech-grid h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 18px 0 14px; }
.tech-grid p { color: #dce8f2; line-height: 1.72; }
.tech-grid img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-grid article { padding: 26px; }
.stars { color: #ffc107; font-size: 19px; margin-bottom: 12px; }
.testimonial-grid p { color: #40566f; line-height: 1.65; margin: 0 0 18px; }
.testimonial-grid strong { color: var(--navy); display: block; }
.testimonial-grid span { color: var(--muted); font-size: 13px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.faq-item { overflow: hidden; }
.faq-item button {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.is-open p { display: block; }
.faq-item.is-open i { transform: rotate(45deg); color: var(--red); }
.faq-item i { transition: transform .2s ease; }

.final-cta {
  background: white;
  padding: 34px 0;
}
.final-cta__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(6,52,95,.98), rgba(6,52,95,.9) 58%, rgba(229,31,45,.9)),
    var(--navy);
  color: white;
  box-shadow: var(--shadow);
}
.final-cta__inner::after {
  content: "7/24";
  position: absolute;
  right: 32px;
  top: 6px;
  color: rgba(255,255,255,.08);
  font-weight: 950;
  font-size: 104px;
  line-height: 1;
}
.final-cta span { text-transform: uppercase; font-weight: 900; color: #d9e8f5; }
.final-cta h2 { margin: 7px 0 0; font-size: clamp(27px, 3.8vw, 43px); }
.final-cta__actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

.footer {
  background: var(--navy-2);
  color: white;
  padding: 48px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1.25fr;
  gap: 36px;
}
.brand--footer { color: white; margin-bottom: 16px; }
.brand--footer strong { color: white; }
.footer p { color: #d4e0ea; line-height: 1.65; margin: 0 0 12px; }
.footer h3 { margin: 4px 0 16px; font-size: 18px; }
.footer a { display: block; color: #d4e0ea; margin: 0 0 10px; }
.footer a:hover { color: white; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  margin: 0;
}
.footer-map {
  height: 92px;
  display: grid;
  place-items: center;
  margin-top: 12px;
  border-radius: 8px;
  color: var(--red);
  font-weight: 900;
  background:
    repeating-linear-gradient(35deg, #ecf2f6 0 1px, #dbe5ee 1px 2px, transparent 2px 22px),
    #f7fafc;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #c9d8e5;
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 31px;
  box-shadow: 0 14px 30px rgba(34, 179, 88, .35);
}

@media (max-width: 1120px) {
  .nav { flex-wrap: wrap; padding: 10px 0; }
  .main-nav { order: 3; flex-basis: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: auto; }
  .hero__visual img { height: 430px; border-radius: 8px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1180px); }
  .topbar__inner { flex-wrap: wrap; justify-content: center; gap: 8px 14px; padding: 7px 0; line-height: 1.2; }
  .nav { min-height: 68px; gap: 12px; }
  .brand { font-size: 19px; }
  .brand img { width: 46px; height: 46px; }
  .menu-toggle { display: block; position: absolute; left: min(calc(100vw - 58px), 330px); top: 12px; }
  .main-nav {
    display: none;
    order: 5;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
    padding: 8px 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 4px; border-top: 1px solid var(--line); }
  .header-actions { display: none; }
  .hero { padding-top: 34px; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .hero__content > p { font-size: 16px; }
  .hero__buttons, .final-cta__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__buttons .btn, .final-cta__actions .btn { width: min(100%, 340px); max-width: 100%; white-space: normal; text-align: center; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__visual img { height: 320px; }
  .service-badge { top: 14px; font-size: 12px; padding: 14px 16px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid div { padding: 18px; }
  .services-grid, .mini-card-grid, .testimonial-grid, .faq-grid, .footer__grid { grid-template-columns: 1fr; }
  .about-grid, .areas-grid, .tech-grid { grid-template-columns: 1fr; }
  .about-image img, .tech-grid img { height: 300px; }
  .check-list { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .process-grid article::after { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { gap: 0; }
  .area-card { border-radius: 8px 8px 0 0; padding: 30px 22px; }
  .map-card { border-radius: 0 0 8px 8px; min-height: 260px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid .section-title { grid-column: 1 / -1; grid-row: auto; }
  .final-cta__inner { flex-direction: column; align-items: stretch; padding: 28px 20px; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .section { padding: 46px 0; }
  .topbar { font-size: 12px; }
  .topbar__inner span:nth-child(3) { display: none; }
  .hero h1 { line-height: 1.02; }
  .hero__visual img { height: 250px; }
  .btn--large { font-size: 15px; padding-left: 14px; padding-right: 14px; }
  .hero__buttons .btn, .final-cta__actions .btn { width: min(100%, 330px); min-width: 0; }
  .hero__buttons .btn small { font-size: 10px; }
  .hero__visual { overflow: hidden; border-radius: 8px; }
  .service-badge { left: 12px; right: auto; max-width: 160px; font-size: 10px; padding: 10px 12px; border-radius: 8px; }
  .trust-strip__grid, .process-grid, .gallery-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-strip__grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .service-card img { aspect-ratio: 1.45 / 1; }
  .faq-item button { font-size: 14px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
