
:root {
  --navy-950: #040b17;
  --navy-900: #071426;
  --navy-850: #0b1b31;
  --navy-800: #102541;
  --blue-600: #0879ef;
  --blue-500: #1687ff;
  --blue-400: #54b0ff;
  --cyan-300: #84ddff;
  --white: #ffffff;
  --ink: #101828;
  --muted: #5f6b7a;
  --line: #dfe7ef;
  --surface: #f5f8fc;
  --surface-blue: #eaf5ff;
  --success: #10b981;
  --shadow: 0 18px 45px rgba(7, 20, 38, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section { scroll-margin-top: 88px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-500);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin: 0 0 13px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  box-shadow: 0 12px 30px rgba(8, 121, 239, .3);
}
.btn-primary:hover { box-shadow: 0 16px 35px rgba(8, 121, 239, .38); }
.btn-light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.btn-dark {
  color: var(--white);
  background: var(--navy-900);
}
.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 11, 23, .94);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 10px;
  position: relative;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255,255,255,.75) 47% 53%, transparent 53%),
    linear-gradient(transparent 47%, rgba(255,255,255,.75) 47% 53%, transparent 53%),
    linear-gradient(135deg, #1687ff, #55c7ff);
  box-shadow: inset 0 0 0 4px var(--navy-900);
}
.brand-mark::after {
  content: "✦";
  position: absolute;
  right: -8px;
  top: -11px;
  color: var(--blue-400);
  font-size: 20px;
}
.brand-copy strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: -.025em;
}
.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--blue-400);
  font-size: .70rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: .93rem;
  font-weight: 720;
  text-decoration: none;
}
.main-nav a:hover { color: var(--white); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: var(--white);
  background: transparent;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(22,135,255,.22), transparent 38%),
    var(--navy-950);
}
.hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: 46% 54%;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px max(32px, calc((100vw - var(--container))/2)) 82px max(20px, calc((100vw - var(--container))/2));
  padding-right: 48px;
}
.hero .eyebrow { color: var(--blue-400); }
.hero h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.hero h1 span {
  color: var(--blue-400);
}
.hero-copy > p {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  margin-top: 34px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.84);
  font-size: .91rem;
  font-weight: 700;
}
.hero-proof b {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--blue-400);
  font-size: .78rem;
}
.hero-media {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-950) 0, rgba(4,11,23,.15) 18%, transparent 43%),
    linear-gradient(0deg, rgba(4,11,23,.55), transparent 45%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 28px;
  max-width: 310px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  color: var(--white);
  background: rgba(4,11,23,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.hero-float strong { display: block; margin-bottom: 4px; }
.hero-float span { color: rgba(255,255,255,.72); font-size: .91rem; }

/* Trust bar */
.trust-strip {
  color: var(--white);
  background: linear-gradient(90deg, #075dbe, #1687ff);
}
.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.22);
  text-align: left;
}
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { display: block; color: rgba(255,255,255,.77); font-size: .79rem; }

/* Services */
.services {
  padding: 105px 0;
  background: var(--surface);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(16, 37, 65, .06);
  transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22,135,255,.35);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 15px;
  color: var(--blue-600);
  background: var(--surface-blue);
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.18;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent, rgba(22,135,255,.09));
}

/* Pure water */
.pure-water {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(22,135,255,.22), transparent 30%),
    var(--navy-900);
}
.pure-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}
.pure-media {
  position: relative;
}
.pure-media img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0,0,0,.33);
}
.pure-badge {
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: 170px;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(145deg, #1687ff, #075dbe);
  box-shadow: var(--shadow);
}
.pure-badge strong {
  font-size: 2rem;
  line-height: 1;
}
.pure-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.pure-copy > p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.72);
  font-size: 1.04rem;
}
.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefit {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
}
.benefit strong { display: block; margin-bottom: 4px; }
.benefit span { color: rgba(255,255,255,.65); font-size: .88rem; }

/* Local/about */
.local {
  padding: 105px 0;
}
.local-grid {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 70px;
  align-items: center;
}
.local-media {
  position: relative;
}
.local-media img {
  width: 100%;
  aspect-ratio: 16/12;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.local-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 18px;
  border-radius: 15px;
  color: var(--white);
  background: rgba(4,11,23,.86);
  backdrop-filter: blur(12px);
}
.local-note strong { display: block; }
.local-note span { color: rgba(255,255,255,.7); font-size: .9rem; }
.local-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.local-copy > p {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 1.04rem;
}
.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.check-list b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-500);
  font-size: .8rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.area-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--surface);
  font-size: .85rem;
  font-weight: 720;
}

/* CTA */
.cta-section {
  padding: 30px 0 105px;
}
.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(132,221,255,.35), transparent 28%),
    linear-gradient(135deg, #075dbe, #1687ff);
  box-shadow: 0 24px 60px rgba(8, 121, 239, .25);
}
.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.cta-panel p { margin: 0; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 11px; }

/* Contact */
.contact {
  padding: 105px 0;
  background: var(--surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  gap: 48px;
  align-items: start;
}
.contact-copy {
  padding: 42px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}
.contact-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.contact-copy > p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.7);
}
.contact-methods {
  display: grid;
  gap: 12px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  text-decoration: none;
  background: rgba(255,255,255,.05);
}
.contact-method strong { display: block; }
.contact-method span { display: block; color: rgba(255,255,255,.65); font-size: .84rem; }
.contact-method:hover { background: rgba(255,255,255,.09); }

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 14px 45px rgba(16,37,65,.07);
}
.form-heading {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.form-heading h3 {
  margin: 0 0 5px;
  font-size: 1.55rem;
}
.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .87rem;
  font-weight: 760;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #cfd9e5;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(22,135,255,.12);
}
.form-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 3px;
}
.form-submit small { color: var(--muted); max-width: 380px; }
.bot-field {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

/* Footer */
.site-footer {
  padding: 65px 0 28px;
  color: rgba(255,255,255,.72);
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 60px;
  padding-bottom: 45px;
}
.footer-grid h3, .footer-grid h4 { color: var(--white); }
.footer-grid h3 { margin: 0 0 12px; }
.footer-grid h4 { margin: 0 0 14px; font-size: .94rem; }
.footer-grid p { max-width: 480px; margin: 0; font-size: .92rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .82rem;
}

/* Mobile bottom bar */
.mobile-contact-bar {
  display: none;
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(4,11,23,.94);
  box-shadow: 0 15px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.mobile-contact-bar a {
  flex: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.mobile-contact-bar a:first-child { background: var(--blue-600); }
.mobile-contact-bar a:last-child { background: #16a34a; }

/* Inner pages */
.simple-page {
  min-height: 70vh;
  padding: 90px 0;
  background: var(--surface);
}
.simple-card {
  max-width: 850px;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}
.simple-card h1 { margin: 0 0 15px; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1; }
.simple-card h2 { margin-top: 35px; }
.simple-card p, .simple-card li { color: var(--muted); }
.success-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 1050px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .main-nav.is-open {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: var(--navy-950);
  }
  .main-nav.is-open a { padding: 12px 0; }
  .header-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; padding: 70px max(20px, calc((100vw - var(--container))/2)); }
  .hero-media { min-height: 520px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(4,11,23,.55), transparent 55%); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .pure-grid, .local-grid, .contact-grid { grid-template-columns: 1fr; }
  .pure-media { max-width: 760px; }
  .local-media { order: 2; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { padding-bottom: 78px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 68px; }
  .main-nav.is-open { top: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 1.04rem; }
  .brand-copy span { font-size: .61rem; }
  .hero-copy { min-height: 535px; padding-top: 60px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .hero-media { min-height: 390px; }
  .hero-float { right: 14px; left: 14px; bottom: 14px; max-width: none; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .trust-item:last-child { border-bottom: 0; }
  .services, .pure-water, .local, .contact { padding: 78px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .pure-grid, .local-grid { gap: 40px; }
  .pure-badge { right: 10px; bottom: -20px; width: 145px; min-height: 125px; }
  .benefit-list { grid-template-columns: 1fr; }
  .cta-section { padding-bottom: 78px; }
  .cta-panel { padding: 32px 24px; }
  .cta-actions .btn { width: 100%; }
  .contact-copy, .quote-form { padding: 26px 20px; }
  .quote-form { grid-template-columns: 1fr; }
  .field, .field.full, .form-heading, .form-submit { grid-column: 1; }
  .form-submit { display: grid; }
  .form-submit .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > :first-child { grid-column: 1; }
  .footer-bottom { display: grid; }
  .mobile-contact-bar { display: flex; gap: 8px; }
  .simple-card { padding: 30px 22px; }
}
