:root {
  --color-primary: #002B49;
  --color-primary-2: #01456f;
  --color-accent: #F5A400;
  --color-accent-soft: #fff2cf;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F5F7FA;
  --color-text: #1F2937;
  --color-muted: #4B5563;
  --color-line: #DDE5EE;
  --shadow-soft: 0 18px 42px rgba(0, 43, 73, 0.12);
  --shadow-card: 0 12px 30px rgba(0, 43, 73, 0.08);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  flex: 0 0 auto;
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.site-nav {
  position: fixed;
  inset: 74px 0 auto 0;
  display: none;
  padding: 18px 16px 22px;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
}

.site-nav.open {
  display: grid;
  gap: 12px;
}

.site-nav a:not(.btn) {
  color: var(--color-primary);
  font-weight: 700;
  padding: 10px 2px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-primary);
}

.nav-cta.btn {
  display: none;
}

.nav-mobile-cta {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #101820;
  box-shadow: 0 12px 24px rgba(245, 164, 0, 0.27);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffb21a;
}

.btn-secondary {
  color: var(--color-primary);
  background: #fff;
  border: 1px solid #bfcbd8;
}

.btn-large {
  min-height: 52px;
  padding-inline: 1.35rem;
}

.hero {
  padding: 38px 0 48px;
  background:
    linear-gradient(90deg, rgba(0, 43, 73, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #fff 72%);
  background-size: 44px 44px, auto;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-primary-2);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.service-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.38rem 0.78rem;
  border: 1px solid #cfd9e5;
  border-radius: 999px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.94rem;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-note {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-left: 5px solid var(--color-accent);
  border-radius: 8px;
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-card);
  min-width: 0;
}

.hero-note strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.hero-note span {
  color: #dceaf5;
  font-weight: 700;
  text-align: left;
  min-width: 0;
}

.section {
  padding: 58px 0;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-title {
  margin: 0;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-copy {
  margin: 12px 0 0;
  color: var(--color-muted);
  max-width: 64ch;
}

.services-section {
  padding-top: 62px;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.benefit,
.contact-card {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--color-primary);
}

.service-card.featured::before {
  background: var(--color-accent);
}

.service-card.emergency {
  background: #fffaf0;
  border-color: #f1d391;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-bg-soft);
  color: var(--color-primary);
}

.featured .service-icon,
.emergency .service-icon {
  background: var(--color-accent-soft);
  color: #8a5800;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  margin: 18px 0 8px;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card p,
.benefit p,
.contact-card p {
  margin: 0;
  color: var(--color-muted);
}

.whatsapp-strip {
  padding: 38px 0;
  background: var(--color-primary);
  color: #fff;
}

.strip-grid {
  display: grid;
  gap: 20px;
  align-items: center;
}

.whatsapp-strip .eyebrow {
  color: var(--color-accent);
}

.whatsapp-strip h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.whatsapp-strip p {
  margin: 10px 0 0;
  color: #dceaf5;
}

.benefits-grid {
  display: grid;
  gap: 16px;
}

.benefit {
  padding: 20px;
}

.benefit strong {
  display: block;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.benefit p {
  margin-top: 8px;
}

.contact-section {
  padding-bottom: 86px;
}

.contact-grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.contact-card {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.contact-card a {
  color: var(--color-primary);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.whatsapp-float svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (min-width: 640px) {
  .hero-note {
    display: flex;
    justify-content: space-between;
  }

  .hero-note span {
    text-align: right;
  }

  h1 {
    font-size: 2.9rem;
  }

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

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

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

@media (min-width: 900px) {
  .menu-toggle,
  .nav-mobile-cta {
    display: none;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-text {
    font-size: 1.1rem;
  }

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

  .site-nav a:not(.btn) {
    padding: 0;
  }

  .nav-cta.btn {
    display: inline-flex;
    min-width: 190px;
  }

  .hero {
    padding: 64px 0 76px;
  }

  .hero-grid {
    min-height: 520px;
    align-items: center;
  }

  h1 {
    font-size: 4.25rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-visual img {
    width: min(55vw, 620px);
    max-height: 430px;
    object-fit: contain;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    width: min(55vw, 620px);
    transform: translateY(-50%);
  }

  .hero-content {
    width: min(56%, 660px);
  }

  .section {
    padding: 78px 0;
  }

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

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

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text {
    max-width: 142px;
  }

  .hero {
    padding-top: 32px;
  }

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

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding-inline: 0.9rem;
  }
}
