:root {
  --navy: #071d34;
  --navy2: #0c2f50;
  --gold: #d5a33a;
  --gold2: #efc865;
  --cream: #f7f3ea;
  --ink: #172333;
  --muted: #667085;
  --line: #e6e1d8;
  --green: #19744a;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 29, 52, 0.1);
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; }
body {
  font-family: "Plus Jakarta Sans", Inter, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.hero-grid > *,
.ctagrid > *,
.process-wrap > *,
.method-wrap > *,
.why-wrap > * { min-width: 0; }

nav {
  height: 84px;
  background: #fff;
  border-bottom: 1px solid rgba(7,29,52,.06);
  position: sticky;
  top: 0;
  z-index: 80;
  overflow: visible;
}
.navin { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { display: flex; align-items: center; min-width: 0; flex-shrink: 0; }
.logo img { height: 52px; width: auto; max-width: 220px; }
.navlinks { display: flex; flex: 1; justify-content: center; gap: 16px; font-size: 13px; font-weight: 700; align-items: center; min-width: 0; }
.navlinks a:not(.btn) { padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.navlinks a:not(.btn):hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-book { flex-shrink: 0; white-space: nowrap; }
.navtoggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 0;
}
.navtoggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.navtoggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle.is-open span:nth-child(2) { opacity: 0; }
.navtoggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open { overflow: hidden; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
  max-width: 100%;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.gold { background: var(--gold); color: #111; box-shadow: 0 10px 24px rgba(213,163,58,.28); }
.dark { background: var(--navy); color: #fff; }
.outline { border-color: #ccd3dc; color: var(--navy); background: #fff; }
.navlinks .nav-cta { display: none; }
@media (min-width: 981px) {
  .navtoggle { display: none; }
}

.hero {
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 12% 18%, #fff4d4 0, transparent 28%),
    linear-gradient(115deg, var(--cream), #fff 58%, #eef4f6);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8d681b;
  background: #fff3d2;
  border: 1px solid #efd28b;
  border-radius: 30px;
  padding: 7px 12px;
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  line-height: 1.45;
}
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 18px 0 16px;
}
h1 span { color: var(--gold); }
.hero p { font-size: 18px; color: #505b6a; max-width: 620px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0; font-weight: 700; }
.checks div { display: flex; align-items: center; gap: 8px; }
.checks div:before {
  content: "✓";
  background: var(--gold);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  flex-shrink: 0;
}
.actions { display: flex; gap: 11px; flex-wrap: wrap; }
.mini { margin-top: 16px; color: var(--muted); font-size: 13px; }

.visual {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: #e4dfd6;
}
.visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7,29,52,.28) 100%);
}
.report {
  position: absolute;
  left: 6%;
  bottom: 8%;
  width: min(250px, 70%);
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  z-index: 2;
}
.report h4 { color: var(--navy); font-size: 16px; }
.rrow {
  display: flex;
  justify-content: space-between;
  background: #f5f7f9;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 13px;
}
.rrow b { color: var(--green); }
.independent {
  position: absolute;
  right: 5%;
  top: 7%;
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  text-align: center;
  font-size: 13px;
  line-height: 1.35;
  z-index: 2;
}
.independent span { color: var(--gold2); }

.trust {
  background:
    radial-gradient(circle at 12% 0%, rgba(213,163,58,.18), transparent 34%),
    radial-gradient(circle at 88% 100%, rgba(239,200,101,.1), transparent 30%),
    var(--navy);
  color: #fff;
  position: relative;
}
.trustgrid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustitem { padding: 26px 18px; border-right: 1px solid #ffffff2d; }
.trustitem:last-child { border: 0; }
.trustitem b { display: block; color: var(--gold2); font-size: 18px; margin-bottom: 4px; }
.trustitem small { color: #cbd6e0; }

section, .hero, .trust, .coverage, footer { overflow-x: clip; }
.faq, .process { overflow: visible; }
section { padding: 88px 0; }
.head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 12px;
}
.head p { color: var(--muted); font-size: 16px; }

.servicegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7,29,52,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media,
.scope-media,
.process-visual,
.method-visual,
.why-visual {
  position: relative;
  overflow: hidden;
  background: #e4dfd6;
  line-height: 0;
}
.card-media,
.scope-media {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 210px;
}
.card-media img,
.scope-media img,
.process-visual img,
.method-visual img,
.why-visual img,
.visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 16%;
  transform-origin: 50% 16%;
}
.media-left img { object-position: 22% 16%; transform-origin: 22% 16%; }
.media-right img { object-position: 72% 16%; transform-origin: 72% 16%; }
.visual > img { object-position: 50% 42%; transform-origin: 50% 42%; }
.icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fff3d2;
  color: #8e6613;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.card-media .icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.card-body { padding: 20px 22px 24px; }
.card h3 { font-size: 19px; color: var(--navy); margin-bottom: 7px; }
.card p { font-size: 14px; color: var(--muted); }

#services {
  position: relative;
  isolation: isolate;
  background: #f8f6f1;
}
#services:before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(248,246,241,.93) 0%, rgba(255,255,255,.9) 48%, rgba(248,246,241,.94) 100%),
    url("../images/pdi-services.jpg") 50% 16% / cover no-repeat;
}
.scope {
  position: relative;
  isolation: isolate;
  background: #f6f4ef;
}
.scope:before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(246,244,239,.93) 0%, rgba(246,244,239,.9) 55%, rgba(255,252,246,.94) 100%),
    url("../images/pdi-villa.jpg") 22% 16% / cover no-repeat;
}
.scopegrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.scopebox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7,29,52,.05);
}
.scopebox .scope-body { padding: 24px 26px 26px; }
.scopebox h3 { color: var(--navy); margin-bottom: 14px; font-size: 22px; }
.scopebox ul { list-style: none; }
.scopebox li {
  padding: 8px 0;
  border-bottom: 1px dashed #e2e5e9;
  font-size: 14px;
}
.scopebox li:before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 8px; }
.notice {
  margin-top: 20px;
  background: #fff8e6;
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  color: #5e4a1e;
  font-size: 14px;
  border-radius: 0 12px 12px 0;
}

.process {
  position: relative;
  isolation: isolate;
  background: var(--cream);
}
.process:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 10% 18%, rgba(213,163,58,.18), transparent 26%),
    radial-gradient(circle at 96% 88%, rgba(7,29,52,.08), transparent 28%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23d5a33a' fill-opacity='.16'/%3E%3C/svg%3E");
}
.process-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.process-visual {
  position: sticky;
  top: 108px;
  border-radius: 24px;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.processgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.num {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  background: #fff2cf;
  color: #8c6616;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}
.step h3 { color: var(--navy); margin-bottom: 6px; font-size: 16px; }
.step p { color: var(--muted); font-size: 14px; }

.method {
  position: relative;
  isolation: isolate;
  background: #fff;
}
.method:before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.93) 0%, rgba(250,247,241,.92) 100%),
    url("../images/inspection-report.jpg") 50% 50% / cover no-repeat;
}
.method-wrap { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.method-visual {
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  min-height: 0;
  box-shadow: var(--shadow);
}
.method-visual img {
  object-position: 50% 50%;
  transform-origin: 50% 50%;
}
.methodgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.methodbox {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.methodbox strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 6px; }
.methodbox p { font-size: 14px; color: var(--muted); }

.pricing {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #fbfaf6, #fff 40%);
}
.pricing:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 18% 0%, rgba(213,163,58,.16), transparent 32%),
    radial-gradient(circle at 82% 100%, rgba(7,29,52,.06), transparent 34%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44'%3E%3Cpath d='M0 44L44 0' stroke='%23d5a33a' stroke-opacity='.08'/%3E%3C/svg%3E");
}
.pricegrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .pricegrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pricecard {
  border: 1px solid #dfe4e9;
  border-radius: 22px;
  padding: 26px 20px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricecard.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 18px 48px rgba(213,163,58,.18);
  transform: translateY(-6px);
}
.popular {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--gold);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 20px;
}
.pricecard h3 { color: var(--navy); font-size: 18px; }
.price { font-size: clamp(26px, 2.4vw, 34px); font-weight: 800; color: var(--navy); margin: 8px 0; }
.price.on-request { font-size: clamp(22px, 2vw, 28px); color: var(--gold); }
.sub { font-size: 13px; color: var(--muted); }
.features { list-style: none; border-top: 1px solid var(--line); margin-top: 14px; padding-top: 12px; flex: 1; }
.features li { font-size: 13px; margin: 7px 0; }
.features li:before { content: "✓"; color: var(--green); font-weight: 800; margin-right: 8px; }
.pricecard .btn { width: 100%; margin-top: 16px; }
.otherprices { text-align: center; margin-top: 22px; color: var(--muted); font-size: 14px; }

.why {
  position: relative;
  isolation: isolate;
  background: #f6f4ef;
}
.why:before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(246,244,239,.94) 0%, rgba(246,244,239,.9) 52%, rgba(246,244,239,.94) 100%),
    url("../images/pdi-why.jpg") 58% 18% / cover no-repeat;
}
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.why-visual {
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  min-height: 0;
  box-shadow: var(--shadow);
}
.why-visual img {
  object-position: 58% 22%;
  transform-origin: 58% 22%;
}
.whygrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.whybox {
  text-align: left;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.whybox .icon { margin-bottom: 12px; }
.whybox b { display: block; color: var(--navy); margin: 0 0 6px; }
.whybox p { font-size: 13px; color: var(--muted); }

.legal {
  position: relative;
  isolation: isolate;
  background: #fbfaf7;
}
.legal:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(7,29,52,.05), transparent 26%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath d='M32 0H0' stroke='%23071d34' stroke-opacity='.04'/%3E%3Cpath d='M0 0V32' stroke='%23071d34' stroke-opacity='.04'/%3E%3C/svg%3E");
}
.legalgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.legalbox { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #fbfaf7; }
.legalbox h3 { color: var(--navy); margin-bottom: 12px; }
.legalbox p, .legalbox li { font-size: 14px; color: var(--muted); }
.legalbox ul { padding-left: 18px; }
.legalbox li { margin: 7px 0; }

.faq {
  position: relative;
  isolation: isolate;
  background: #f6f4ef;
}
.faq:before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(246,244,239,.94) 0%, rgba(246,244,239,.92) 100%),
    url("../images/pdi-services.jpg") 72% 16% / cover no-repeat;
}
.faqlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  align-items: start;
}
.faqitem {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faqitem summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 750;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
.faqitem summary::-webkit-details-marker { display: none; }
.faqitem summary:after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}
.faqitem[open] summary { border-bottom: 1px solid #f0f2f5; }
.faqitem[open] summary:after { content: "–"; }
.faqitem .ans { padding: 16px 20px 18px; color: var(--muted); font-size: 14px; }
.faqitem .ans p + p, .faqitem .ans p + ul, .faqitem .ans ul + p { margin-top: 10px; }
.faqitem .ans ul { padding-left: 18px; }
.faqitem .ans li { margin: 6px 0; }
.faqitem .ans b { color: var(--navy); }

.cta {
  color: #fff;
  position: relative;
  background: var(--navy) center/cover no-repeat;
  background-image: url("../images/cta-home.jpg");
  isolation: isolate;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,14,26,.88) 0%, rgba(4,14,26,.72) 55%, rgba(4,14,26,.55) 100%);
  z-index: -1;
}
.ctagrid { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: center; }
.cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
}
.cta h2 span { color: var(--gold2); }
.cta p { color: #cad5df; margin: 15px 0; }
.cta ul { list-style: none; }
.cta li { margin: 8px 0; }
.cta li:before { content: "✓"; color: var(--gold2); font-weight: 800; margin-right: 8px; }
.form { background: #fff; color: var(--ink); padding: 28px; border-radius: 20px; box-shadow: var(--shadow); }
.form h3 { color: var(--navy); margin-bottom: 15px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
input, select, textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #d8dde4;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
textarea { grid-column: 1 / -1; min-height: 85px; }
.form .btn { width: 100%; margin-top: 11px; }

.coverage { background: #061625; color: #d2dbe4; text-align: center; padding: 22px 0; font-size: 13px; }
.coverage .container { overflow-wrap: anywhere; word-break: break-word; }
.coverage b { color: #fff; }
.coverage span { color: var(--gold2); }

.site-footer {
  background: #222;
  color: #fff;
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.35fr 1.45fr;
  gap: 36px;
  padding: 56px 20px 42px;
}
.footer-brand p {
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  font-size: 13.5px;
  margin-top: 16px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}
.footer-logo img {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
}
.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px !important;
  color: #eab308 !important;
  font-size: 13px !important;
  font-weight: 600;
}
.footer-tagline span { color: #eab308; }
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: #eab308; }
.footer-contact h4 { margin-top: 22px; }
.footer-contact h4:first-child { margin-top: 0; }
.footer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-line .fi {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
}
.footer-social a:hover {
  background: #eab308;
  border-color: #eab308;
  color: #111;
}
.footer-news {
  display: flex;
  align-items: stretch;
  max-width: 320px;
}
.footer-news input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  color: #fff;
  padding: 11px 12px;
  font: inherit;
  font-size: 13px;
}
.footer-news input::placeholder { color: rgba(255,255,255,.55); }
.footer-news button {
  border: 0;
  background: #eab308;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 0 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  white-space: nowrap;
}
.footer-news button:hover { filter: brightness(1.05); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.footer-bottom a {
  color: #3b82f6;
  font-weight: 600;
}
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 42px 20px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

.foot { display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap; }
.footlogo {
  height: 48px;
  width: auto;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
}

@media (max-width: 980px) {
  nav { height: 72px; }
  html { scroll-padding-top: 76px; }
  .logo img { height: 40px; max-width: min(190px, 58vw); }
  .nav-book { display: none; }
  .navlinks .nav-cta {
    display: inline-flex;
    margin-top: 12px;
    width: 100%;
    border-bottom: 0;
  }
  .navlinks {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px 32px;
    gap: 0;
    z-index: 90;
    overflow-y: auto;
    box-shadow: none;
  }
  .navlinks.open { display: flex; }
  .navlinks a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .navlinks a:hover { border-bottom-color: var(--line); }
  .navtoggle { display: inline-flex; }
  .hero { padding: 40px 0 48px; }
  .hero-grid,
  .ctagrid,
  .scopegrid,
  .legalgrid,
  .process-wrap,
  .method-wrap,
  .why-wrap { grid-template-columns: 1fr; gap: 24px; }
  .faqlist { grid-template-columns: 1fr; }
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
    letter-spacing: .04em;
  }
  h1 { font-size: clamp(34px, 9vw, 46px); }
  .hero p { font-size: 16px; }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }
  .visual { min-height: 280px; border-radius: 20px; }
  .report { left: 12px; right: 12px; width: auto; bottom: 12px; padding: 14px; }
  .independent { display: none; }
  .process-visual,
  .method-visual,
  .why-visual {
    position: relative;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .process-visual { position: static; }
  .trustgrid { grid-template-columns: 1fr 1fr; }
  .servicegrid, .processgrid, .methodgrid, .whygrid { grid-template-columns: 1fr; }
  .pricegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricecard.featured { transform: none; }
  .head { margin-bottom: 32px; }
  .cta:before {
    background: linear-gradient(180deg, rgba(4,14,26,.88) 0%, rgba(4,14,26,.78) 100%);
  }
}

@media (max-width: 560px) {
  .pricegrid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .hero { padding: 32px 0 40px; }
  .checks { grid-template-columns: 1fr; margin: 18px 0; font-size: 14px; }
  .trustgrid { grid-template-columns: 1fr; }
  .trustitem { border-right: 0; border-bottom: 1px solid #ffffff2d; padding: 18px 8px; }
  .fields { grid-template-columns: 1fr; }
  textarea { grid-column: auto; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 20px 28px;
  }
  .footer-brand { grid-column: auto; }
  .footer-news { max-width: 100%; }
  .foot { flex-direction: column; text-align: center; }
  h1 { font-size: 34px; }
  .cta h2 { font-size: 28px; }
  .logo img { height: 36px; max-width: 168px; }
  .footlogo { margin-left: auto; margin-right: auto; max-width: 180px; height: auto; }
  .form { padding: 20px 16px; }
  .faqitem summary { padding: 14px 16px; font-size: 14px; }
  .scopebox .scope-body, .card-body { padding: 18px; }
  .scopebox h3 { font-size: 19px; }
  .otherprices { font-size: 13px; padding: 0 4px; }
  .coverage { padding: 18px 0; line-height: 1.7; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeDown {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

nav { animation: fadeDown .55s ease both; }
.hero .eyebrow { animation: fadeUp .7s ease both; }
.hero h1 { animation: fadeUp .8s .08s ease both; }
.hero p { animation: fadeUp .8s .16s ease both; }
.hero .checks { animation: fadeUp .8s .24s ease both; }
.hero .actions { animation: fadeUp .8s .32s ease both; }
.hero .mini { animation: fadeUp .8s .4s ease both; }
.hero .visual { animation: fadeIn .9s .18s ease both; }
.hero .report { animation: fadeUp .75s .45s ease both, floatY 5s 1.4s ease-in-out infinite; }
.hero .independent { animation: fadeUp .75s .58s ease both; }

.head h2:after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 14px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .55s ease;
}
.head.in-view h2:after { transform: scaleX(1); }

.js-anim .reveal:not(.in-view) {
  opacity: 0;
  transform: translateY(28px);
}
.js-anim .reveal-left:not(.in-view),
.js-anim .reveal-right:not(.in-view) { transform: translateY(28px); }
.reveal,
.reveal-left,
.reveal-right {
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}
.js-anim .pricecard.featured.reveal:not(.in-view) { transform: translateY(20px); }
.pricecard.featured.reveal.in-view { transform: translateY(-8px); }
.pricecard.featured:hover { transform: translateY(-12px); }

.card-media img,
.scope-media img,
.process-visual img,
.method-visual img,
.why-visual img,
.visual > img {
  transition: transform .7s ease;
}
.card:hover .card-media img,
.scopebox:hover .scope-media img,
.process-visual:hover img,
.method-visual:hover img,
.why-visual:hover img,
.visual:hover > img {
  transform: scale(1.05);
}

.step,
.methodbox,
.whybox,
.legalbox,
.faqitem,
.trustitem {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover,
.methodbox:hover,
.whybox:hover,
.legalbox:hover,
.faqitem:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(7,29,52,.08);
}
.pricecard { transition: transform .25s ease, box-shadow .25s ease; }
.pricecard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.faqitem[open] .ans { animation: fadeUp .35s ease; }
.gold:hover { box-shadow: 0 12px 28px rgba(213,163,58,.4); }

@media (max-width: 980px) {
  .pricecard.featured.reveal.in-view,
  .pricecard.featured:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-anim .reveal:not(.in-view),
  .js-anim .reveal-left:not(.in-view),
  .js-anim .reveal-right:not(.in-view) {
    opacity: 1;
    transform: none;
  }
}
