:root {
  --ink: #142033;
  --muted: #5f6d7e;
  --line: #dce6ef;
  --blue: #0a72b8;
  --blue-deep: #064c86;
  --cyan: #2ec5d3;
  --sun: #f6b442;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --shadow: 0 22px 60px rgba(9, 40, 78, 0.16);
  --radius: 8px;
  font-family: Manrope, 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(--paper);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(9, 40, 78, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
}

.brand small {
  margin-top: 1px;
  color: currentColor;
  font-size: 0.74rem;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(10, 114, 184, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 720px;
  padding: 132px 0 92px;
  color: #fff;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 22, 43, 0.88) 0%, rgba(5, 22, 43, 0.68) 38%, rgba(5, 22, 43, 0.18) 72%),
    linear-gradient(0deg, rgba(4, 15, 29, 0.46), rgba(4, 15, 29, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content > * {
  max-width: 670px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 16px 34px rgba(10, 114, 184, 0.34);
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-proof span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  line-height: 1.18;
}

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

.intro p:last-child,
.feature-copy p,
.contact-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 54, 93, 0.07);
}

.service-number {
  color: var(--blue);
  font-weight: 950;
}

.service-card h3 {
  margin-top: 20px;
  font-size: 1.25rem;
}

.service-card p {
  margin: 16px 0 22px;
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--blue-deep);
  font-weight: 900;
}

.feature-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 76, 134, 0.98), rgba(10, 114, 184, 0.92)),
    var(--blue-deep);
  padding: 86px 0;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--sun);
}

.feature-panel {
  display: grid;
  gap: 14px;
}

.feature-panel div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.feature-panel strong,
.feature-panel span {
  display: block;
}

.feature-panel strong {
  font-size: 1.2rem;
}

.feature-panel span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
}

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

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

.why-grid article {
  padding: 30px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
}

.why-grid span {
  color: var(--sun);
  font-weight: 950;
}

.why-grid h3 {
  margin-top: 12px;
  font-size: 1.35rem;
}

.why-grid p,
.review-card p,
.promo-list p {
  color: var(--muted);
}

.reviews {
  background: #fff;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbfd);
  box-shadow: 0 14px 38px rgba(15, 54, 93, 0.07);
}

.stars {
  color: var(--sun);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 18px 0 24px;
}

.review-card strong {
  margin-top: auto;
  font-size: 1.02rem;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.promo-list {
  display: grid;
  gap: 16px;
}

.promo-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(15, 54, 93, 0.07);
}

.promo-list span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-list h3 {
  margin-top: 8px;
  font-size: 1.25rem;
}

.brands {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px 0;
}

.brand-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.map-section {
  padding: 82px 0 0;
  background: #fff;
}

.map-heading {
  margin-bottom: 34px;
}

.map-heading h2 {
  max-width: 720px;
}

.map-frame {
  width: 100%;
  height: clamp(300px, 34vw, 430px);
  border-top: 1px solid var(--line);
  border-bottom: 12px solid var(--blue);
  background: #eef4f1;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.22) saturate(0.74) contrast(0.94) brightness(1.08);
  opacity: 0.84;
}

.contact {
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-details div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details span,
.contact-details a {
  margin-top: 4px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd9e3;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 12px;
  outline: 0;
}

.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(10, 114, 184, 0.12);
}

.privacy {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.privacy input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 26px 0 34px;
  color: #fff;
  background: #101927;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.footer-layout p {
  margin: 0;
}

.back-top {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 140px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.back-top:hover,
.back-top:focus-visible {
  border-color: var(--cyan);
  background: rgba(46, 197, 211, 0.18);
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  background: #1fad61;
  border-radius: var(--radius);
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(31, 173, 97, 0.34);
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 16px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 18px 40px rgba(9, 40, 78, 0.14);
  }

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

  .main-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 22, 43, 0.9) 0%, rgba(5, 22, 43, 0.62) 62%, rgba(5, 22, 43, 0.28) 100%),
      linear-gradient(0deg, rgba(4, 15, 29, 0.46), rgba(4, 15, 29, 0.08));
  }

  .split,
  .feature-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .section-pad {
    padding: 64px 0;
  }

  .site-header {
    min-height: 70px;
    padding: 11px 16px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    top: 70px;
  }

  .hero {
    min-height: 720px;
    padding-top: 112px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 22, 43, 0.94), rgba(5, 22, 43, 0.66)),
      linear-gradient(0deg, rgba(4, 15, 29, 0.52), rgba(4, 15, 29, 0.06));
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.5rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .review-grid,
  .why-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-top {
    align-self: flex-end;
    margin-left: 0;
    margin-right: 0;
  }

  .whatsapp-float {
    left: 18px;
    right: auto;
    bottom: 22px;
  }
}
