:root {
  --navy: #004e60;
  --teal: #0795a7;
  --light: #eef9fa;
  --ink: #15313a;
  --muted: #557078;
  --white: #ffffff;
  --border: #d7e6e9;
  --shadow: 0 14px 35px rgba(0, 55, 69, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 112px; height: 68px; object-fit: contain; }
nav { display: flex; gap: 24px; margin-left: auto; }
nav a { text-decoration: none; font-weight: 700; color: var(--ink); }
nav a:hover { color: var(--teal); }

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--navy);
  transition: .2s ease;
}
.button:hover { transform: translateY(-1px); background: #003a47; }
.button-small { padding: 10px 16px; white-space: nowrap; }
.button-outline { background: transparent; color: var(--navy); }
.button-outline:hover { color: var(--white); }
.button-light { background: var(--white); color: var(--navy); border-color: var(--white); }

.hero {
  padding: 84px 0;
  background:
    linear-gradient(120deg, rgba(238,249,250,.95), rgba(255,255,255,.98)),
    radial-gradient(circle at 80% 20%, rgba(7,149,167,.18), transparent 34%);
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .85fr; align-items: center; gap: 60px; }
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  font-weight: 800;
  color: var(--teal);
}
h1, h2, h3 { line-height: 1.15; color: var(--navy); }
h1 { margin: 0 0 20px; font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -.04em; }
h2 { margin: 0 0 18px; font-size: clamp(2rem, 3.5vw, 3rem); letter-spacing: -.025em; }
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.lead { max-width: 760px; font-size: 1.15rem; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
.quick-contact { margin: 0; }
.quick-contact a { font-weight: 700; }

.hero-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-card img { width: 260px; margin: 0 auto 18px; border-radius: 12px; }
.hero-card h2 { font-size: 1.35rem; }
.hero-card p { margin-bottom: 0; color: var(--muted); }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 24px; border-right: 1px solid var(--border); }
.trust-grid div:last-child { border-right: none; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy); }
.trust-grid span { color: var(--muted); font-size: .92rem; }

.section { padding: 84px 0; }
.section-alt { background: var(--light); }
.section-intro { max-width: 800px; color: var(--muted); font-size: 1.05rem; }

.cards {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,55,69,.05);
}
.card p { margin-bottom: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.contact-section { padding: 0 0 84px; }
.contact-box {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
}
.contact-box h2, .contact-box .eyebrow { color: var(--white); }
.contact-actions { text-align: center; }
.contact-actions .button { display: block; }
.email-link { display: inline-block; margin-top: 15px; color: var(--white); font-weight: 800; }

footer { padding: 38px 0 90px; background: #062f39; color: #dcecef; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 30px; }
footer a { color: var(--white); }

.mobile-call {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow);
}

@media (max-width: 850px) {
  nav, .site-header .button-small { display: none; }
  .nav-wrap { justify-content: center; }
  .hero { padding: 58px 0; }
  .hero-grid, .split, .contact-box { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-grid div:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call { display: block; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 2.45rem; }
  .cards { grid-template-columns: 1fr; }
  .hero-card { padding: 22px; }
  .contact-box { padding: 28px 22px; }
}
