:root {
  --navy: #073b4c;
  --blue: #087ca7;
  --yellow: #ffda00;
  --ink: #172126;
  --muted: #53636b;
  --paper: #ffffff;
  --soft: #f3f7f8;
  --line: #dce5e8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: #05668d; }
.skip { position: fixed; left: 1rem; top: 1rem; z-index: 100; padding: .75rem 1rem; background: #000; color: #fff; transform: translateY(-180%); }
.skip:focus { transform: none; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.nav { max-width: 1180px; margin: auto; min-height: 72px; padding: .65rem 1rem; display: flex; align-items: center; gap: 1rem; }
.brand { margin-right: auto; color: var(--navy); font-size: 1.05rem; font-weight: 800; text-decoration: none; }
.brand img { width: 250px; max-width: 38vw; height: auto; }
.nav-links { flex: 1; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); align-items: stretch; gap: .45rem; }
.nav-links a {
  min-height: 44px;
  padding: .5rem .55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f5f9fa;
  border: 1px solid #cbdcdf;
  border-radius: .55rem;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-links a:hover, .nav-links a:focus {
  color: var(--navy);
  background: #e9f5f8;
  border-color: var(--blue);
  text-decoration: none;
  transform: translateY(-1px);
}
.nav-links a[aria-current="page"] {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: inset 0 -4px 0 var(--yellow);
}
.call { display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1rem; border-radius: .45rem; color: #111 !important; background: var(--yellow); font-weight: 800; text-decoration: none !important; }
.nav > .call::before { margin-right: .45rem; content: "☎"; }
.hero { background: linear-gradient(135deg, var(--soft), #fff); }
.hero-grid { max-width: 1180px; margin: auto; padding: 3.5rem 1rem; display: grid; grid-template-columns: 1fr 1.08fr; gap: 2.5rem; align-items: center; }
.eyebrow { margin: 0 0 .5rem; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
h1 { margin: 0 0 1rem; color: var(--navy); font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; }
h2 { color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.2; }
h3 { color: var(--navy); line-height: 1.25; }
.lead { color: var(--muted); font-size: 1.15rem; }
.hero-image { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 1rem; box-shadow: 0 18px 45px rgba(7,59,76,.16); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.button { display: inline-flex; padding: .85rem 1.15rem; border-radius: .5rem; background: var(--navy); color: #fff; font-weight: 800; text-decoration: none; }
.button.alt { background: #1f9d55; }
.trust { background: var(--navy); color: #fff; }
.trust-grid { max-width: 1180px; margin: auto; padding: 1.25rem 1rem; display: grid; grid-template-columns: repeat(4,1fr); gap: .85rem; }
.trust-grid > div {
  position: relative;
  min-height: 94px;
  padding: 1rem .85rem 1rem 4.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .8rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  color: #eef6f8;
  line-height: 1.4;
}
.trust-grid > div::before {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .65rem;
  background-color: rgba(255,218,0,.13);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.45rem;
  content: "";
  transform: translateY(-50%);
}
.trust-grid > div:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}
.trust-grid > div:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.trust-grid > div:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5 5L3 18v3h3l6.7-6.7a4 4 0 0 0 5-5l-2.4 2.4-3-3 2.4-2.4Z'/%3E%3C/svg%3E");
}
.trust-grid > div:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V7l8-4 8 4v14'/%3E%3Cpath d='M9 21v-5h6v5M8 9h.01M12 9h.01M16 9h.01M8 13h.01M12 13h.01M16 13h.01'/%3E%3C/svg%3E");
}
.service-trust .trust-grid > div:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4M11 8v6M8 11h6'/%3E%3C/svg%3E");
}
.service-trust .trust-grid > div:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5 5L3 18v3h3l6.7-6.7a4 4 0 0 0 5-5l-2.4 2.4-3-3 2.4-2.4Z'/%3E%3C/svg%3E");
}
.service-trust .trust-grid > div:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 4.5 6v5c0 4.8 3.2 8.7 7.5 10 4.3-1.3 7.5-5.2 7.5-10V6L12 3Z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.service-trust .trust-grid > div:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffda00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m8 12 2.5 2.5L16 9M12 3v2M12 19v2'/%3E%3C/svg%3E");
}
.trust strong { display: block; margin-bottom: .2rem; color: var(--yellow); font-size: .93rem; letter-spacing: .01em; }
.content { max-width: 1080px; margin: auto; padding: 3.5rem 1rem; }
.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: start; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.card { padding: 1.2rem; background: var(--soft); border: 1px solid var(--line); border-radius: .75rem; }
.card h3 { margin-top: 0; }
.service-showcase { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.service-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: .85rem; box-shadow: 0 8px 24px rgba(7,59,76,.07); }
.service-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.service-card-body { padding: 1.2rem; }
.service-card h3 { margin-top: 0; }
.service-card a { font-weight: 800; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: center; }
.about-grid img { width: 100%; border-radius: 1rem; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: .65rem 0; padding-left: 1.7rem; }
.check-list li::before { position: absolute; left: 0; color: #12824c; content: "✓"; font-weight: 900; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: stretch; }
.contact-card { padding: 1.5rem; color: #fff; background: var(--navy); border-radius: .85rem; }
.contact-card h2 { color: #fff; }
.contact-card a { color: var(--yellow); font-weight: 800; }
.map { width: 100%; min-height: 390px; border: 0; border-radius: .85rem; }
.notice { padding: 1.2rem; background: #fff9d9; border-left: 5px solid var(--yellow); border-radius: .35rem; }
.faq { background: var(--soft); }
.faq details { margin: .75rem 0; padding: 1rem 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: .6rem; }
.faq summary { color: var(--navy); font-weight: 800; cursor: pointer; }
.faq p { margin-bottom: 0; }
.related { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.related a { padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: .55rem; font-weight: 800; text-decoration: none; }
.cta { margin: 3rem auto; padding: 2rem; background: var(--navy); color: #fff; border-radius: 1rem; }
.cta h2 { margin-top: 0; color: #fff; }
.footer { padding: 2rem 1rem; background: #172126; color: #dbe5e8; }
.footer-grid { max-width: 1080px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer a { color: #fff; }
.legal { max-width: 1080px; margin: 1rem auto 0; padding-top: 1rem; border-top: 1px solid #3e4a50; font-size: .9rem; }
@media (max-width: 900px) {
  .site-header { position: static; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; grid-template-columns: repeat(3,minmax(0,1fr)); }
  .nav-links a { min-height: 58px; padding: .55rem .4rem; font-size: .82rem; }
  .nav > .call { width: 100%; min-height: 54px; font-size: 1.05rem; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .trust-grid, .card-grid, .related, .service-showcase { grid-template-columns: repeat(2,1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .brand img { width: 230px; max-width: 82vw; }
  .trust-grid, .card-grid, .related, .service-showcase, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 2rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
