:root {
  --blue: #0d3478;
  --blue-dark: #09265d;
  --red: #d31619;
  --text: #10203d;
  --muted: #5e6b7d;
  --light: #f7f9fc;
  --white: #ffffff;
  --border: #dfe5ee;
  --shadow: 0 16px 40px rgba(8, 38, 93, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.topbar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-tagline { margin-left: auto; font-weight: 700; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(13,52,120,.08);
}
.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-name {
  font: 800 30px/1 "Montserrat", sans-serif;
  color: var(--blue);
}
.brand-name span { color: var(--red); }
.brand-tagline {
  margin-top: 7px;
  font-size: 9px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 1.1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
.nav-links a:not(.btn):hover { color: var(--red); }
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--blue);
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.btn-red { color: #fff; background: var(--red); }
.btn-blue { color: #fff; background: var(--blue); }
.btn-outline { color: #fff; border: 1px solid rgba(255,255,255,.8); }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(211,22,25,.05), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}
.hero-banner {
  width: 100%;
  background: var(--blue-dark);
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: auto;
  min-height: 210px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-intro {
  padding: 52px 0 62px;
  text-align: center;
}
.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.hero h1 {
  margin: 12px auto 22px;
  max-width: 980px;
  font: 800 clamp(40px, 5vw, 66px)/1.02 "Montserrat", sans-serif;
  color: var(--blue);
  letter-spacing: -2px;
}
.hero h1 span { color: var(--red); }
.hero-text {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.65;
  color: #2e3b52;
}
.hero-text.secondary { font-size: 16px; color: var(--muted); }
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.section { padding: 84px 0; }
.service-section { background: #fff; }
.service-section.alt { background: var(--light); }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-section.reverse .split-copy { order: 2; }
.split-section.reverse .split-image { order: 1; }
.split-copy h2,
.ecosystem h2 {
  margin: 10px 0 20px;
  color: var(--blue);
  font: 800 40px/1.12 "Montserrat", sans-serif;
}
.split-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.lead-line {
  color: var(--text) !important;
  font-weight: 800;
  font-size: 18px !important;
}
.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.red-text { color: var(--red) !important; }

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 30px;
}
.pill-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(13,52,120,.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.red-pills span {
  background: rgba(211,22,25,.08);
  color: var(--red);
}

.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading h2 {
  margin: 0;
  color: var(--blue);
  font: 800 34px/1.15 "Montserrat", sans-serif;
  text-transform: uppercase;
}
.section-heading span {
  width: 50px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  background: var(--red);
}
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-card {
  text-align: center;
  padding: 24px 30px;
  border-right: 1px solid var(--border);
}
.why-card:last-child { border-right: 0; }
.why-icon { font-size: 40px; color: var(--blue); }
.why-card h3 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 14px;
}
.why-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.ecosystem {
  background: linear-gradient(100deg, var(--blue-dark), var(--blue));
  color: #fff;
  padding: 62px 0;
}
.ecosystem-inner {
  display: grid;
  grid-template-columns: 1.7fr .7fr;
  gap: 50px;
  align-items: center;
}
.light-kicker { color: #fff; opacity: .8; }
.ecosystem h2 { color: #fff; font-size: 36px; }
.ecosystem p { color: rgba(255,255,255,.86); line-height: 1.7; }
.ecosystem-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr .9fr;
  gap: 36px;
  padding: 50px 0;
}
.footer h3 {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}
.footer p, .footer a {
  display: block;
  margin: 8px 0;
  color: #445064;
  font-size: 13px;
  line-height: 1.5;
}
.footer-brand .brand-name { font-size: 22px; }
.footer-brand .footer-btn { margin-top: 10px !important; color: #fff !important; }
.footer-bottom {
  padding: 16px 0;
  background: var(--blue-dark);
  color: rgba(255,255,255,.8);
  font-size: 12px;
}
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #16c761;
  font-size: 23px;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}

@media (max-width: 980px) {
  .topbar-tagline { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .split-section, .ecosystem-inner { grid-template-columns: 1fr; }
  .split-section.reverse .split-copy,
  .split-section.reverse .split-image { order: initial; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-card { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .container { width: min(100% - 24px, 1180px); }
  .topbar-inner { font-size: 11px; gap: 12px; justify-content: space-between; }
  .nav-inner { min-height: 74px; }
  .nav-links { top: 74px; }
  .brand-name { font-size: 24px; }
    .hero h1 { font-size: 45px; }
  .hero-visual img, .split-image img { height: 330px; }
  .split-copy h2, .ecosystem h2 { font-size: 32px; }
  .why-grid, .footer-grid { grid-template-columns: 1fr; }
}

#delivery .split-image img {
  height: 430px;
  object-fit: cover;
  object-position: center;
}

#cleaning .split-section {
  grid-template-columns: 42% 58%;
}

#cleaning .split-image img {
  height: 310px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  #cleaning .split-section {
    grid-template-columns: 1fr;
  }
  #cleaning .split-image img {
    height: auto;
    min-height: 250px;
  }
}

@media (max-width: 680px) {
  .hero-banner img {
    min-height: 180px;
    object-position: center;
  }
  .hero-intro {
    padding: 38px 0 46px;
  }
  #delivery .split-image img,
  #cleaning .split-image img {
    height: auto;
    min-height: 230px;
  }
}
