:root {
  --teal: #1caab8;
  --teal-dark: #0e7d88;
  --teal-soft: #eaf8f9;
  --red: #ef2530;
  --red-dark: #c51f29;
  --ink: #16242b;
  --muted: #60717a;
  --white: #ffffff;
  --line: #dce8ea;
  --shadow: 0 18px 50px rgba(14, 49, 57, .12);
  --radius: 22px;
}

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

.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220,232,234,.9);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 260px; max-height: 72px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--teal-dark); }
.language-toggle {
  border: 1px solid var(--teal);
  background: transparent;
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 700;
}
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(28,170,184,.14), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fcfc 100%);
  padding: 90px 0 72px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 88px;
  width: 300px;
  height: 22px;
  background: var(--red);
  transform: skewX(-34deg);
  opacity: .95;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .75fr; gap: 64px; align-items: center; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--teal-dark);
  font-size: .78rem;
  margin-bottom: 16px;
}
h1, h2, h3 { margin-top: 0; line-height: 1.12; }
h1, h2 { font-family: Montserrat, Inter, sans-serif; }
h1 { font-size: clamp(2.7rem, 5.5vw, 5.2rem); letter-spacing: -.045em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.2rem; }
.hero-lead { color: var(--muted); font-size: 1.14rem; max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 20px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; box-shadow: 0 12px 24px rgba(239,37,48,.2); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { border: 1px solid var(--teal); color: var(--teal-dark); background: white; }
.btn-white { background: white; color: var(--teal-dark); }
.stat-note { color: var(--teal-dark); font-weight: 700; }

.hero-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pulse-line {
  height: 8px;
  width: 120px;
  background: var(--red);
  clip-path: polygon(0 45%, 20% 45%, 28% 5%, 36% 90%, 44% 45%, 60% 45%, 68% 0, 76% 90%, 84% 45%, 100% 45%, 100% 60%, 84% 60%, 76% 100%, 68% 15%, 60% 60%, 44% 60%, 36% 100%, 28% 18%, 20% 60%, 0 60%);
  margin-bottom: 24px;
}
.quick-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quick-facts div { background: var(--teal-soft); border-radius: 16px; padding: 20px; }
.quick-facts strong { display: block; font-size: 1.35rem; color: var(--teal-dark); }
.quick-facts span { font-size: .9rem; color: var(--muted); }

.trust-strip { background: var(--teal-dark); color: white; }
.trust-grid { min-height: 80px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; gap: 20px; font-weight: 700; text-align: center; }
.trust-grid div::first-letter { color: white; }

.section { padding: 92px 0; }
.alt { background: #f7fbfb; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p, .split p { color: var(--muted); font-size: 1.06rem; }

.cards.four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 32px rgba(14,49,57,.06);
}
.icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--teal-soft); color: var(--teal-dark);
  font-size: 1.6rem; font-weight: 800; margin-bottom: 18px;
}
.service-card p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.location-list { display: grid; gap: 12px; }
.location-list div {
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 14px;
  padding: 16px 18px;
  background: white;
  font-weight: 700;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  position: relative;
  border-top: 4px solid var(--teal);
  background: white;
  border-radius: 0 0 18px 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(14,49,57,.07);
}
.step > span {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red); color: white; font-weight: 800; margin-bottom: 18px;
}
.step p { color: var(--muted); }

.service-area { background: linear-gradient(135deg, #ffffff 55%, #f2fbfb); }
.highlight { color: var(--teal-dark) !important; font-weight: 800; }
.area-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.area-city {
  padding: 12px 18px;
  border-radius: 12px;
  background: #f5f9f9;
  font-weight: 700;
  text-align: center;
}
.area-city.featured { background: var(--teal); color: white; }
.area-line { width: 3px; height: 18px; background: var(--red); margin: 0 auto; }

.about-box {
  background: var(--teal-dark);
  color: white;
  border-radius: 30px;
  padding: 54px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.big-number { font-family: Montserrat, sans-serif; font-size: 6rem; font-weight: 800; line-height: 1; }

.cta-section { background: linear-gradient(135deg, var(--teal-dark), #1196a2); color: white; padding: 58px 0; position: relative; overflow: hidden; }
.cta-section::after { content:""; position:absolute; right:-80px; top:20px; width:360px; height:22px; background:var(--red); transform:skewX(-34deg); }
.cta-wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-wrap h2 { margin-bottom: 8px; }
.cta-wrap p { margin: 0; max-width: 760px; color: rgba(255,255,255,.86); }
.eyebrow.light { color: white; opacity: .9; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: white;
  min-width: 0;
}
.contact-card span { display: block; color: var(--muted); font-size: .9rem; margin-bottom: 5px; }
.contact-card strong { display: block; overflow-wrap: anywhere; }

.site-footer { background: #112128; color: white; padding: 48px 0 26px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-grid p { color: #a9bac1; }
.footer-right { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.legal {
  margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  color: #93a8b0; font-size: .85rem; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; left: 18px; right: 18px; top: 88px;
    display: none; flex-direction: column; align-items: stretch;
    background: white; border: 1px solid var(--line); border-radius: 18px;
    padding: 18px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 38px; }
  .cards.four, .steps, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1160px); }
  .brand img { width: 220px; }
  .hero { padding: 62px 0 54px; }
  .hero::after { width: 190px; right: -70px; top: 52px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .quick-facts, .cards.four, .steps, .contact-grid, .trust-grid { grid-template-columns: 1fr; }
  .trust-grid { text-align: left; }
  .section { padding: 68px 0; }
  .about-box { min-height: auto; padding: 36px; }
  .big-number { font-size: 4.8rem; }
  .footer-grid { flex-direction: column; }
  .footer-right { text-align: left; }
}

/* Internal anchor links stay visible below the sticky header */
section[id] {
  scroll-margin-top: 104px;
}

/* Responsive navigation refinements */
.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  color: var(--ink);
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.menu-toggle:focus-visible,
.language-toggle:focus-visible,
.nav-links a:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(28,170,184,.35);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 15px;
    font-size: .9rem;
  }
  .brand img {
    width: 225px;
  }
}

@media (max-width: 960px) {
  .nav-wrap {
    min-height: 78px;
  }

  .nav-links {
    top: 78px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nav-links a,
  .language-toggle {
    width: 100%;
  }

  .nav-links a {
    padding: 13px 10px;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--teal-soft);
  }

  .nav-links a::after {
    display: none;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: sticky;
  }

  .brand img {
    width: 185px;
    max-height: 60px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .hero-lead,
  .section-heading p,
  .split p {
    font-size: 1rem;
  }

  .hero-card {
    padding: 24px;
  }

  .contact-card {
    padding: 18px;
  }
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 2000;
  background: #fff;
  color: #0b5961;
  border: 3px solid #0b5961;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.privacy-section { background: #f7fbfb; }
.privacy-card {
  max-width: 900px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 32px rgba(14,49,57,.06);
}
.privacy-card p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.quick-intro {
  color: var(--muted);
  margin: -8px 0 24px;
}

.quick-facts div {
  position: relative;
  padding: 22px 18px 20px 50px;
}

.checkmark {
  position: absolute;
  left: 16px;
  top: 21px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: .9rem;
  font-weight: 900;
}

.trust-strip {
  position: relative;
  padding-top: 24px;
}

.heartbeat-track {
  width: min(620px, calc(100% - 50px));
  height: 26px;
  margin: 0 auto -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: .92;
}

.heart-line {
  height: 2px;
  flex: 1;
  background: rgba(255,255,255,.65);
}

.heart-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 26px;
  font-size: 3rem;
  line-height: 1;
  color: white;
  transform: scaleX(1.35);
}

@media (max-width: 620px) {
  .heartbeat-track {
    width: calc(100% - 34px);
  }
}

/* Subtle heartbeat divider tying the page back to the brand */
.heartbeat-divider {
  width: min(700px, calc(100% - 40px));
  margin: 6px auto -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .9;
}
.heartbeat-divider .hb-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(28,170,184,.45));
}
.heartbeat-divider .hb-line:last-child {
  background: linear-gradient(90deg, rgba(28,170,184,.45), transparent);
}
.heartbeat-divider svg {
  width: 120px;
  height: 28px;
  overflow: visible;
}
.heartbeat-divider polyline {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.faq-grid details { border:1px solid var(--line); border-radius:16px; padding:18px 20px; background:#fff; }
.faq-grid summary { cursor:pointer; font-weight:800; color:var(--ink); }
.faq-grid details p { color:var(--muted); margin-bottom:0; }
.seo-area-copy { margin-top:18px; }
@media(max-width:720px){ .faq-grid{grid-template-columns:1fr;} }

/* Prominent brand confirmation directly below the quick-link/service bar */
.brand-confirmation {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 48px 0 44px;
  text-align: center;
}
.brand-confirmation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-confirmation-kicker {
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.brand-confirmation h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  color: var(--ink);
  letter-spacing: -.045em;
}
.brand-confirmation p {
  margin: 9px 0 0;
  color: var(--muted);
  font-weight: 600;
}
.brand-heartbeat {
  width: min(440px, 80%);
  display: flex;
  align-items: center;
  margin-top: 12px;
}
.brand-heartbeat span {
  height: 1px;
  flex: 1;
  background: var(--teal);
  opacity: .45;
}
.brand-heartbeat svg {
  width: 100px;
  height: 25px;
}
.brand-heartbeat polyline {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width:620px) {
  .brand-confirmation { padding: 36px 0 34px; }
  .brand-confirmation p { font-size: .9rem; }
}
