:root {
  --navy: #08122d;
  --navy-2: #17245b;
  --ink: #101522;
  --muted: #697083;
  --line: #e5e8ef;
  --soft: #f7f8fb;
  --white: #ffffff;
  --green: #23875a;
  --gold: #b89a5d;
  --shadow: 0 22px 54px rgba(8, 18, 45, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  z-index: 20;
}
.skip-link:focus { left: 8px; }

.site-header {
  min-height: 82px;
  padding: 14px clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  color: #5b6273;
  font-size: 15px;
}
.nav a:hover { color: var(--navy-2); }

.header-cta,
.btn,
.mid-cta a,
.lead-form button,
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
}

.header-cta,
.btn-primary {
  background: var(--navy-2);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(255,255,255,.55);
}

.hero {
  min-height: min(760px, calc(100vh - 82px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 5.5vw, 74px) clamp(28px, 6vw, 108px);
  background:
    linear-gradient(110deg, rgba(8,18,45,.98), rgba(12,24,58,.94) 58%, rgba(26,38,75,.9)),
    radial-gradient(circle at 88% 18%, rgba(184,154,93,.18), transparent 32%);
  color: #fff;
  overflow: hidden;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 16px;
  color: #cbb271;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.75vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  color: #dce4f4;
  font-size: clamp(17px, 1.55vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-strip li {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  padding: 8px 11px;
  color: #f4f6fb;
  font-size: 13px;
}

.hero-panel {
  align-self: center;
  min-height: 0;
  display: grid;
  align-content: center;
  position: relative;
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: clamp(24px, 4vw, 48px);
}
.hero-panel img {
  width: min(100%, 455px);
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.18);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.hero-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-panel li {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  padding: 16px;
}
.hero-panel strong {
  display: block;
  color: #fff;
  font-size: 16px;
}
.hero-panel span {
  display: block;
  margin-top: 4px;
  color: #dce4f4;
  font-size: 14px;
}

section {
  padding: clamp(66px, 7vw, 104px) clamp(28px, 6vw, 108px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}
.section-heading.compact { max-width: 720px; }
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.55vw, 54px);
  line-height: 1.06;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-heading p,
.authority-copy p,
.diagnostic-copy p {
  color: var(--muted);
  font-size: 18px;
}

.risk-section,
.solutions-section,
.qualification-section,
.faq-section {
  background: var(--soft);
}

.risk-grid,
.solution-list,
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.risk-grid article,
.solution-list article,
.insights-grid a,
.proof-card,
.metrics div,
.lead-form,
details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
}

.risk-grid h3,
.solution-list h3 {
  color: var(--navy);
  margin-bottom: 10px;
}
.risk-grid p,
.solution-list p,
.insights-grid strong,
details p { color: var(--muted); }

.mid-cta {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: #101b42;
  color: #fff;
}
.mid-cta p { margin: 0; font-size: 18px; }
.mid-cta a {
  background: #fff;
  color: var(--navy);
  min-width: 180px;
}

.cost-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.cost-list {
  border-top: 1px solid var(--line);
}
.cost-list div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cost-list strong { color: var(--navy); }
.cost-list span { color: var(--muted); }

.authority-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.authority-section h2 {
  max-width: 620px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}
.authority-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.authority-points span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}
.partners {
  display: grid;
  gap: 18px;
}
.partners article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(8,18,45,.08);
  padding: 16px;
}
.partners img {
  width: 132px;
  height: 156px;
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
}
.partners h3 { color: var(--navy); margin-bottom: 8px; }
.partners p { color: var(--muted); font-size: 15px; margin: 0; }

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .86fr);
  gap: 18px;
  background: linear-gradient(135deg, #08122d, #132251);
  color: #fff;
}
.proof-card,
.metrics div {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.proof-card span { color: #d5bd7c; font-weight: 900; text-transform: uppercase; font-size: 12px; }
.proof-card h2 { color: #fff; font-size: clamp(30px, 3vw, 48px); }
.proof-card p,
.metrics span { color: #d9e1ef; }
.metrics { display: grid; grid-template-columns: 1fr; gap: 12px; }
.metrics div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 24px;
}
.metrics strong {
  display: block;
  font-size: 31px;
  color: #fff;
  font-family: Georgia, serif;
  line-height: 1;
  white-space: nowrap;
}

.solution-list article span {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.diagnostic-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: clamp(30px, 5vw, 70px);
  background: linear-gradient(135deg, #08122d, #15265d);
  color: #fff;
}
.diagnostic-section h2 { color: #fff; }
.diagnostic-copy p,
.diagnostic-copy li { color: #dce4f4; }
.diagnostic-copy ul { padding-left: 20px; }

.lead-form {
  color: var(--ink);
  display: grid;
  gap: 14px;
  align-self: start;
}
.lead-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}
input, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 0 12px;
  font: inherit;
  background: #fff;
}
.full { width: 100%; }
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.check-grid label {
  min-height: 82px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 34px rgba(8,18,45,.045);
}
.check-grid input {
  appearance: none;
  width: 22px;
  height: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  border: 2px solid #c6ccda;
  border-radius: 50%;
  padding: 0;
  position: relative;
}
.check-grid input:checked {
  background: var(--navy-2);
  border-color: var(--navy-2);
}
.check-grid input:checked::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  left: 5px;
  top: 6px;
}
.check-grid span {
  display: block;
  line-height: 1.25;
}
.qualification-result {
  margin: 24px 0 0;
  padding: 22px 24px;
  background: #fff;
  border-left: 4px solid var(--gold);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.qualification-result strong {
  font-size: 19px;
  line-height: 1.35;
}
.qualification-result a {
  flex: 0 0 auto;
  background: var(--navy-2);
  color: #fff;
  padding: 13px 16px;
  font-weight: 900;
}

.insights-grid a {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.insights-grid span {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.insights-grid strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.2;
}

.seo-hub-section {
  background: #fff;
  padding-top: 40px;
}
.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-links a {
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 800;
  background: var(--soft);
}
.seo-links a:hover {
  background: var(--navy);
  color: #fff;
}

details {
  max-width: 980px;
  margin-bottom: 12px;
}
summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 19px;
}
details p { margin: 14px 0 0; }

.final-cta {
  text-align: center;
  background: #fff;
}
.final-cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 19px;
}

.site-footer {
  padding: 38px clamp(22px, 6vw, 110px);
  background: var(--navy);
  color: #dce4f4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.site-footer img {
  width: 140px;
  max-height: 60px;
  object-fit: contain;
}
.site-footer p { margin: 0 auto 0 0; }
.site-footer a { color: #fff; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 12;
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0,0,0,.2);
}
.mobile-contact-bar { display: none; }

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }
  .nav { display: none; }
  .brand img { width: 150px; }
  .hero,
  .cost-section,
  .authority-section,
  .proof-section,
  .diagnostic-section {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-panel { min-height: 0; padding-left: 0; border-left: 0; }
  .hero-panel img { aspect-ratio: 16 / 10; }
  .hero-panel ul { grid-template-columns: 1fr 1fr; }
  .risk-grid,
  .solution-list,
  .insights-grid,
  .check-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }
  .header-cta { display: none; }
  .hero,
  section {
    padding-left: 18px;
    padding-right: 18px;
  }
  h1 { font-size: clamp(42px, 14vw, 66px); }
  h2 { font-size: 34px; }
  .hero-actions,
  .mid-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .btn,
  .mid-cta a { width: 100%; }
  .risk-grid,
  .solution-list,
  .insights-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
  .cost-list div,
  .partners article {
    grid-template-columns: 1fr;
  }
  .partners img {
    width: 100%;
    height: 300px;
  }
  .hero-panel ul,
  .metrics div,
  .qualification-result {
    grid-template-columns: 1fr;
  }
  .hero-panel ul,
  .qualification-result {
    display: grid;
  }
  .qualification-result a {
    text-align: center;
  }
  .whatsapp-float { display: none; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 12;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mobile-contact-bar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
  }
  .mobile-contact-bar a:first-child { background: var(--navy-2); }
  .mobile-contact-bar a:last-child { background: var(--green); }
  body { padding-bottom: 54px; }
}
