@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --sky: #68bce9;
  --sky-dark: #2583b8;
  --sky-soft: #e9f7ff;
  --navy: #102f46;
  --navy-2: #173f5c;
  --text: #264255;
  --muted: #657b89;
  --white: #ffffff;
  --line: #dbe8ef;
  --sun: #ffd46a;
  --shadow: 0 24px 70px rgba(26, 78, 108, .14);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -60px; left: 20px; z-index: 1000;
  background: var(--navy); color: white; padding: 12px 18px; border-radius: 10px;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,232,239,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1.15rem; font-weight: 700;
}
.brand strong { color: var(--sky-dark); }
.brand-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; background: var(--sun); box-shadow: 0 8px 22px rgba(255,212,106,.4);
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .95rem; font-weight: 600; }
.nav-links a:not(.nav-cta):hover { color: var(--sky-dark); }
.nav-cta {
  padding: 11px 18px; border-radius: 999px; color: white; background: var(--navy);
}
.language-toggle {
  min-width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: white; color: var(--navy); font-weight: 800;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--navy); }

.hero {
  position: relative; overflow: hidden;
  padding: 94px 0 88px;
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 88%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 14px; color: var(--sky-dark);
  font-size: .77rem; letter-spacing: .17em; font-weight: 800;
}
.hero h1, .section h2, .quote-section h2 {
  font-family: "Manrope", sans-serif; color: var(--navy); letter-spacing: -.045em; line-height: 1.07;
}
.hero h1 { margin: 0; max-width: 680px; font-size: clamp(3rem, 6vw, 5.6rem); }
.hero-lead { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: 1.13rem; }
.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: 13px 23px; border: 0; border-radius: 999px;
  font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--sky-dark); box-shadow: 0 15px 30px rgba(37,131,184,.22); }
.button-secondary { color: var(--navy); background: white; border: 1px solid var(--line); }
.button-white { width: 100%; color: var(--navy); background: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 34px; color: var(--muted); font-size: .9rem; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--sky-dark); font-weight: 900; }

.hero-card {
  position: relative; padding: 14px; border-radius: 38px; background: white;
  box-shadow: var(--shadow); transform: rotate(1.2deg);
}
.hero-card svg { border-radius: 28px; }
.hero-card-badge {
  position: absolute; left: -28px; bottom: 30px;
  display: flex; gap: 12px; align-items: center;
  padding: 15px 18px; border-radius: 18px; background: rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(23,63,92,.17);
}
.hero-card-badge strong, .hero-card-badge small { display: block; }
.hero-card-badge strong { color: var(--navy); }
.hero-card-badge small { color: var(--muted); }
.badge-icon { font-size: 1.45rem; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-shape-one { width: 280px; height: 280px; right: -110px; top: 60px; background: rgba(104,188,233,.12); }
.hero-shape-two { width: 160px; height: 160px; left: -70px; bottom: 30px; background: rgba(255,212,106,.13); }

.benefits-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.benefit-grid article { position: relative; padding: 38px 38px 40px; }
.benefit-grid article + article { border-left: 1px solid var(--line); }
.benefit-number { color: var(--sky); font-size: .78rem; font-weight: 800; }
.benefit-grid h2 { margin: 10px 0 8px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1.15rem; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: .95rem; }

.section { padding: 100px 0; }
.section-heading { max-width: 700px; margin-bottom: 45px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section h2, .quote-section h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.6rem); }
.section-heading > p:last-child { margin-top: 18px; color: var(--muted); font-size: 1.05rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  min-height: 290px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: white; box-shadow: 0 14px 35px rgba(31,83,111,.06);
}
.service-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 16px; color: var(--navy); background: var(--sky-soft);
  font-size: 1.45rem; font-weight: 900;
}
.service-card h3 { margin: 24px 0 10px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--muted); }

.water-section { background: var(--sky-soft); }
.water-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.water-visual { position: relative; min-height: 390px; display: grid; place-items: center; }
.water-circle {
  position: relative; z-index: 2; width: 260px; height: 260px; display: grid; place-content: center;
  text-align: center; border-radius: 50%; color: white; background: linear-gradient(145deg, var(--sky), var(--sky-dark));
  box-shadow: 0 35px 70px rgba(37,131,184,.25);
}
.water-circle span { font-family: "Manrope", sans-serif; font-size: 7rem; font-weight: 800; line-height: .9; }
.water-circle small { font-weight: 700; letter-spacing: .05em; }
.drop { position: absolute; border-radius: 50% 50% 50% 10%; transform: rotate(-45deg); background: rgba(104,188,233,.25); }
.drop-one { width: 86px; height: 86px; left: 18%; top: 12%; }
.drop-two { width: 46px; height: 46px; right: 12%; bottom: 15%; }
.water-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.check-list li { font-weight: 700; color: var(--navy); }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 10px; border-radius: 50%; color: white; background: var(--sky-dark); font-size: .78rem; }

.process-section { background: var(--navy); color: white; }
.process-section h2 { color: white; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; margin-top: 55px; }
.process-grid article { text-align: center; }
.process-grid article > span {
  width: 62px; height: 62px; display: inline-grid; place-items: center;
  border-radius: 50%; background: var(--sky); color: var(--navy); font-family: "Manrope"; font-size: 1.35rem; font-weight: 900;
}
.process-grid h3 { margin: 22px 0 10px; font-family: "Manrope"; }
.process-grid p { margin: 0; color: #c5d8e5; }

.areas-section { background: #fbfdfe; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.areas-grid p:not(.eyebrow) { color: var(--muted); }
.city-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.city-list span {
  padding: 18px 20px; border-radius: 16px; background: white; border: 1px solid var(--line);
  color: var(--navy); font-weight: 700; box-shadow: 0 9px 25px rgba(31,83,111,.05);
}
.city-list span::before { content: "•"; margin-right: 9px; color: var(--sky-dark); }

.quote-section { color: white; background: linear-gradient(135deg, var(--sky-dark), var(--navy-2)); }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.quote-section h2 { color: white; }
.quote-section p { color: #d9edf7; }
.eyebrow.light { color: #c6edff; }
.contact-note {
  margin-top: 30px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px;
  background: rgba(255,255,255,.08);
}
.contact-note strong, .contact-note span { display: block; }
.contact-note span { color: #d9edf7; font-size: .92rem; }

.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px; border-radius: 26px; background: white; box-shadow: 0 30px 70px rgba(9,38,57,.25); }
.quote-form label { display: grid; gap: 7px; color: var(--navy); font-size: .88rem; font-weight: 700; }
.quote-form label:nth-of-type(4), .quote-form label:nth-of-type(6), .quote-form button, .form-status { grid-column: 1 / -1; }
.quote-form input, .quote-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px;
  color: var(--text); background: #fbfdfe; outline: none;
}
.quote-form input:focus, .quote-form textarea:focus { border-color: var(--sky-dark); box-shadow: 0 0 0 4px rgba(104,188,233,.18); }
.quote-form textarea { resize: vertical; }
.quote-form .button-white { background: var(--navy); color: white; margin-top: 4px; }
.form-status { margin: 0; min-height: 24px; color: var(--muted) !important; font-size: .88rem; }

.site-footer { padding: 68px 0 24px; background: #0b2538; color: #bad0dc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 60px; }
.footer-brand { color: white; }
.footer-grid > div { display: grid; align-content: start; gap: 9px; }
.footer-grid strong { color: white; margin-bottom: 5px; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; left: 20px; right: 20px; top: 70px; display: none;
    padding: 20px; border-radius: 18px; background: white; box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .language-toggle { align-self: center; }
  .hero-grid, .water-grid, .areas-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-card { max-width: 650px; margin: 0 auto; }
  .water-grid { gap: 28px; }
  .benefit-grid, .card-grid, .process-grid { grid-template-columns: 1fr; }
  .benefit-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding: 68px 0 64px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-card-badge { left: 12px; right: 12px; bottom: 18px; }
  .section { padding: 76px 0; }
  .section h2, .quote-section h2 { font-size: 2.35rem; }
  .city-list, .quote-form { grid-template-columns: 1fr; }
  .quote-form label, .quote-form label:nth-of-type(4), .quote-form label:nth-of-type(6) { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
