:root {
  --navy: #050608;
  --navy-2: #0f1419;
  --blue: #3f93d4;
  --blue-light: #88d8f8;
  --blue-dark: #2a6aa8;
  --ink: #121826;
  --text: #2c3545;
  --muted: #667085;
  --bg: #e7f2fb;
  --bg-soft: #f4fafd;
  --line: #e4ecf3;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 42, 73, 0.12);
  --shadow-lg: 0 24px 60px rgba(16, 42, 73, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3, h4, .brand__text { font-family: "Montserrat", sans-serif; color: var(--ink); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .9rem 1.6rem; border-radius: 999px;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .2s;
}
.btn--primary { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 8px 20px rgba(43, 156, 232, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(43, 156, 232, .45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; }


/* Header */
.header { position: sticky; top: 0; z-index: 50; background: #000; border-bottom: 1px solid rgba(255,255,255,.08); }
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: .75rem 0; gap: 1rem; }
.header__phone { justify-self: start; color: var(--blue-light); font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: .3px; white-space: nowrap; }
.header__phone:hover { color: #fff; }
.brand { justify-self: center; }
.header__right { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__img { height: 56px; width: auto; display: block; }
.brand__img--footer { height: 72px; }
.brand__wave {
  font-size: 1.8rem; font-weight: 900; color: var(--blue);
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--navy); border-radius: 12px; line-height: 1;
}
.brand__text { font-weight: 900; font-size: 1.25rem; letter-spacing: .5px; line-height: 1; display: flex; flex-direction: column; }
.brand__text small { font-family: "Open Sans", sans-serif; font-weight: 600; font-size: .58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-dark); margin-top: 3px; }
.brand--light .brand__text, .brand--light .brand__text small { color: #fff; }
.brand--light .brand__text small { color: var(--blue-light); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-weight: 600; font-size: .95rem; color: #e7eef5; }
.nav a:hover { color: var(--blue-light); }
.nav__cta { background: var(--blue); color: #fff !important; padding: .55rem 1.1rem; border-radius: 999px; }
.nav__cta:hover { background: var(--blue-dark); }
.nav__toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: #fff; }

/* Hero */
.hero { position: relative; color: #fff; background: linear-gradient(135deg, #000000 0%, #08243c 55%, #2a6aa8 100%); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(136,216,248,.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(63,147,212,.22), transparent 40%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: 4.5rem 0 5rem; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: .8rem; color: var(--blue-light); margin-bottom: 1rem; }
.hero__title { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.08; color: #fff; }
.hero__sub { margin: 1.2rem 0 1.8rem; font-size: 1.08rem; color: #d6e4f2; max-width: 34rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges { display: flex; gap: 1.4rem; flex-wrap: wrap; margin-top: 2rem; font-size: .85rem; color: #cfe2f2; font-weight: 600; }
.hero__badges span { display: inline-flex; align-items: center; gap: .4rem; }

/* Quote form */
.quote { background: #fff; color: var(--text); border-radius: 18px; padding: 1.8rem; box-shadow: var(--shadow-lg); }
.quote__title { font-size: 1.5rem; font-weight: 800; }
.quote__sub { color: var(--muted); font-size: .92rem; margin: .3rem 0 1.2rem; }
.field { margin-bottom: .9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-size: .92rem; background: var(--bg-soft); transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,156,232,.15); background: #fff;
}
.quote__fineprint { font-size: .72rem; color: var(--muted); margin-top: .7rem; text-align: center; }
.quote__success { margin-top: .8rem; background: #e7f7ec; color: #1b7a3d; border: 1px solid #b6e4c4; padding: .7rem; border-radius: 10px; font-size: .88rem; text-align: center; font-weight: 600; }
.quote__error { margin-top: .8rem; background: #fdecec; color: #b42323; border: 1px solid #f3c0c0; padding: .7rem; border-radius: 10px; font-size: .88rem; text-align: center; font-weight: 600; }

/* Trust strip */
.trust { background: var(--navy-2); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; text-align: center; }
.trust__item strong { display: block; font-family: "Montserrat"; font-size: 1.8rem; font-weight: 900; color: var(--blue-light); }
.trust__item span { font-size: .82rem; color: #aebfd1; text-transform: uppercase; letter-spacing: 1px; }

/* Section helpers */
.section__head { text-align: center; max-width: 42rem; margin: 0 auto 2.8rem; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: .78rem; color: var(--blue); margin-bottom: .6rem; }
.section__title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; }
.section__lead { color: var(--muted); margin-top: .8rem; font-size: 1.02rem; }

/* About */
.about { padding: 5rem 0; }
.about__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.about__text .section__title { margin: .5rem 0 1.1rem; }
.about__text p { margin-bottom: 1rem; color: var(--text); }
.about__points { list-style: none; margin: 1.2rem 0 1.8rem; display: grid; gap: .6rem; }
.about__points li { padding-left: 1.8rem; position: relative; font-weight: 600; color: var(--ink); }
.about__points li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.3rem; height: 1.3rem; background: var(--blue); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; }
.about__media {
  min-height: 380px; border-radius: var(--radius); box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.about__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Services */
.services { padding: 5rem 0; background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: 0 8px 22px rgba(16, 42, 73, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #e4f4fd, #c2e7fb); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }
.card__link { color: var(--blue-dark); font-weight: 700; font-size: .9rem; }
.card__link:hover { color: var(--blue); }

/* Results before/after */
.results { padding: 5rem 0; }
.ba {
  position: relative; max-width: 880px; margin: 0 auto; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none;
}
.ba__after, .ba__before { position: absolute; inset: 0; }
.ba__before { clip-path: inset(0 50% 0 0); }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__tag { position: absolute; bottom: 14px; left: 14px; background: rgba(0,0,0,.6); color: #fff; padding: .3rem .8rem; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.ba__after .ba__tag { left: auto; right: 14px; background: rgba(22,117,192,.85); }
.ba__range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.ba__handle::after { content: "⟺"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: #fff; color: var(--blue-dark); border-radius: 50%; display: grid; place-items: center; font-weight: 900; box-shadow: var(--shadow); }

/* Reviews */
.reviews { padding: 5rem 0; background: var(--navy); color: #fff; }
.reviews .section__title { color: #fff; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.6rem; }
.review__stars { color: #ffc94d; letter-spacing: 2px; margin-bottom: .8rem; }
.review p { color: #dce7f2; font-style: italic; margin-bottom: 1rem; }
.review cite { color: var(--blue-light); font-weight: 700; font-style: normal; font-size: .9rem; }

/* Area */
.area { padding: 5rem 0; }
.area__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.area__text .section__title { margin: .5rem 0 1rem; }
.area__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 1.2rem 0; }
.area__list li { padding-left: 1.6rem; position: relative; font-weight: 600; color: var(--ink); }
.area__list li::before { content: "📍"; position: absolute; left: 0; }
.area__note { color: var(--muted); margin-bottom: 1.3rem; }
.area__map { min-height: 360px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.area__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* CTA band */
.cta { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 3.5rem 0; }
.cta__inner { text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta p { margin: .6rem 0 1.6rem; color: #eaf5ff; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--navy); color: #aebfd1; padding: 3.5rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__brand p { margin-top: 1rem; font-size: .9rem; max-width: 22rem; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; font-size: .9rem; margin-bottom: .5rem; color: #aebfd1; }
.footer__col a:hover { color: var(--blue-light); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; font-size: .82rem; }

/* Floating call */
.floatcall { position: fixed; bottom: 22px; right: 22px; width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; display: none; place-items: center; font-size: 1.5rem; box-shadow: var(--shadow-lg); z-index: 60; }

/* Responsive */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 3.5rem; }
  .about__inner, .area__inner { grid-template-columns: 1fr; }
  .about__media { min-height: 260px; }
  .services__grid, .reviews__grid { grid-template-columns: 1fr 1fr; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,.96); flex-direction: column; padding: 1rem 5%; border-bottom: 1px solid rgba(255,255,255,.08); gap: 1rem; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav__toggle { display: block; }
  .floatcall { display: grid; }
  .header__phone-label { display: none; }
  .header__phone { font-size: 1.05rem; }
  .brand__img { height: 48px; }
}
@media (max-width: 560px) {
  .services__grid, .reviews__grid, .area__list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .header__inner { gap: .5rem; }
  .header__phone { font-size: .95rem; }
  .brand__img { height: 42px; }
}
