:root {
  --navy-950: #04172f;
  --navy-900: #062f62;
  --navy-800: #0b407e;
  --navy-100: #e8f0f8;
  --ink: #172234;
  --slate: #4e5b6b;
  --muted: #6f7b89;
  --line: #dbe2ea;
  --surface: #f4f7fa;
  --white: #ffffff;
  --gold: #c9a14a;
  --gold-soft: #f6edd9;
  --success: #176b4d;
  --shadow-sm: 0 10px 30px rgba(4, 23, 47, 0.08);
  --shadow-lg: 0 28px 70px rgba(4, 23, 47, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 104px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.review-banner {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  color: #5b430c;
  background: var(--gold-soft);
  border-bottom: 1px solid #ead7ac;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.review-banner span + span::before {
  content: "•";
  margin-right: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 234, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(4, 23, 47, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 50px;
  height: 50px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand-copy strong span {
  color: var(--navy-800);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #354257;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(6, 47, 98, 0.15);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(6, 47, 98, 0.2);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-ghost {
  color: var(--navy-900);
  background: transparent;
  border-color: #bdc9d6;
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--white);
  border-color: var(--navy-800);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.eyebrow.light {
  color: #dfeaf7;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 161, 74, 0.12), transparent 24%),
    linear-gradient(135deg, #f8fafc 0%, #edf3f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(6, 47, 98, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 47, 98, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 72px;
  min-height: 660px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: #3f4f63;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-note {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 226, 234, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 900;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--success);
  font-weight: 800;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2ba676;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43, 166, 118, 0.12);
}

.mini-process {
  display: grid;
  gap: 0;
  margin: 12px 0 26px;
  padding: 0;
  list-style: none;
}

.mini-process li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #edf1f5;
}

.mini-process li > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mini-process div {
  display: grid;
  gap: 2px;
}

.mini-process strong {
  color: var(--navy-950);
  font-size: 15px;
}

.mini-process small {
  color: var(--muted);
  font-size: 12px;
}

.document-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--navy-900);
  background: var(--navy-100);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.document-chip svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(6, 47, 98, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 620px;
  height: 620px;
}

.trust-strip {
  color: var(--white);
  background: var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 12px;
  padding: 30px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.trust-grid strong {
  font-size: 14px;
}

.trust-grid small {
  color: #aebdd0;
  font-size: 12px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 100px;
  align-items: start;
}

.body-copy {
  padding-top: 42px;
  color: var(--slate);
  font-size: 18px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.services-section,
.faq-section {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  color: var(--slate);
  font-size: 18px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(4, 23, 47, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #b6c5d5;
  box-shadow: var(--shadow-sm);
}

.service-card > span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3 {
  font-size: 21px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.audiences-section {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-label {
  display: inline-flex;
  margin-bottom: 40px;
  padding: 5px 10px;
  color: var(--navy-800);
  background: var(--navy-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--slate);
}

.professional-section {
  background: #f2f5f8;
}

.professional-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 80px;
  align-items: center;
}

.professional-photo {
  position: relative;
  margin: 0;
}

.professional-photo::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 18px;
  bottom: 18px;
  left: -16px;
  border: 1px solid rgba(201, 161, 74, 0.55);
  border-radius: var(--radius-lg);
}

.professional-photo img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.professional-copy h2 {
  margin-bottom: 22px;
}

.professional-lead {
  color: var(--slate);
  font-size: 19px;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.credentials-list li {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
}

.credential-logo,
.credential-monogram {
  display: grid;
  place-items: center;
  height: 74px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 7px;
}

.credential-logo img {
  display: block;
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.credential-logo-icali {
  padding: 12px;
  background: var(--navy-950);
}

.credential-monogram {
  color: var(--white);
  background: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
}

.credentials-list strong {
  color: var(--navy-950);
}

.credentials-list span {
  color: var(--slate);
  font-size: 13px;
}

.professional-copy > p:not(.eyebrow, .professional-lead, .verification-note, .professional-association-note) {
  color: var(--slate);
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 28px;
  color: var(--navy-800);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(11, 64, 126, 0.3);
  text-underline-offset: 5px;
}

.profile-link:hover {
  color: var(--navy-950);
  text-decoration-color: var(--gold);
}

.verification-note,
.professional-association-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.professional-association-note {
  margin: 0;
}

.verification-note {
  max-width: 600px;
  margin: 14px 0 0;
}

.professional-details {
  margin-top: 86px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.professional-details .section-heading {
  max-width: 900px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.expertise-grid article {
  min-height: 285px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.expertise-grid article > span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.expertise-grid h3,
.qualification-grid h3 {
  color: var(--navy-950);
}

.expertise-grid p,
.qualification-grid p,
.qualification-grid li {
  color: var(--slate);
}

.expertise-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 20px;
  padding: 38px;
  background: #e8eef4;
  border-radius: 12px;
}

.qualification-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.qualification-grid p:last-child {
  margin-bottom: 0;
}

.identity-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 161, 74, 0.17), transparent 26%),
    var(--navy-900);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 90px;
  align-items: center;
}

.identity-copy h2,
.safeguards-section h2,
.contact-copy h2 {
  color: var(--white);
}

.identity-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #d5e1ef;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #ecf3fa;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--navy-950);
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.identity-panel {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.panel-kicker {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pending-price {
  display: block;
  margin-bottom: 20px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.05;
}

.identity-panel > p:not(.panel-kicker) {
  color: var(--slate);
}

.legal-price-note {
  margin-top: 24px;
  padding: 16px;
  color: #5b430c;
  background: var(--gold-soft);
  border-radius: 10px;
  font-size: 12px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin-bottom: 6px;
  font-size: 23px;
}

.process-list p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--slate);
}

.fees-section {
  background: #eef3f7;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin-inline: auto;
}

.fee-card {
  position: relative;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.fee-card-featured {
  border-top: 5px solid var(--gold);
}

.fee-number {
  position: absolute;
  top: 26px;
  right: 30px;
  color: #b9c5d2;
  font-size: 12px;
  font-weight: 900;
}

.fee-card h3 {
  padding-right: 48px;
  font-size: 23px;
}

.fee-title {
  margin: 30px 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.15;
}

.fee-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--slate);
}

.price-disclaimer {
  margin: 26px 0 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.safeguards-section {
  color: var(--white);
  background: var(--navy-950);
}

.safeguards-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.safeguards-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.safeguards-list li {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.safeguards-list strong {
  color: var(--white);
}

.safeguards-list span {
  color: #b9c7d8;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 50px 24px 0;
  color: var(--slate);
}

.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 15%, rgba(201, 161, 74, 0.14), transparent 22%),
    var(--navy-900);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  color: #d1deec;
  font-size: 18px;
}

.contact-copy .contact-email {
  margin-top: 26px;
  font-size: 15px;
  font-weight: 800;
}

.contact-email a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.privacy-callout {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding: 20px;
  color: #f2e5c9;
  background: rgba(201, 161, 74, 0.11);
  border: 1px solid rgba(201, 161, 74, 0.32);
  border-radius: 12px;
}

.privacy-callout span {
  color: #dce7f3;
  font-size: 13px;
}

.contact-form {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-banner {
  margin-bottom: 24px;
  padding: 12px 14px;
  color: #5b430c;
  background: var(--gold-soft);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label:not(.check-field) {
  display: grid;
  gap: 7px;
  color: #344255;
  font-size: 13px;
  font-weight: 800;
}

.contact-form label span {
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bcc8d5;
  border-radius: 7px;
}

.contact-form input:hover,
.contact-form select:hover {
  border-color: #8ea0b3;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--navy-800);
  outline: 3px solid rgba(11, 64, 126, 0.13);
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--slate);
  font-size: 13px;
}

.form-privacy-summary {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding: 16px;
  color: var(--slate);
  background: #f3f6f9;
  border: 1px solid #d4dde6;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.55;
}

.form-privacy-summary p {
  margin: 0;
}

.form-privacy-summary a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.check-field input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.check-field a {
  color: var(--navy-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .button-full {
  margin-top: 22px;
}

.contact-form .button-full:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.recaptcha-block {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.recaptcha-activate {
  justify-self: start;
}

.recaptcha-block p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.recaptcha-block a {
  color: var(--navy-800);
  text-decoration: underline;
}

.form-error {
  color: #8a2c17;
  font-size: 13px;
  font-weight: 800;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-warning {
  color: #76510a;
}

.form-status.is-error {
  color: #8a2c17;
}

.site-footer {
  padding: 70px 0 24px;
  color: #b9c7d8;
  background: #031225;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr;
  gap: 70px;
  padding-bottom: 50px;
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: #91a3b9;
}

.footer-grid > div:first-child p {
  max-width: 430px;
  margin: 22px 0 0;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-grid a:not(.brand) {
  font-size: 14px;
}

.footer-grid a:not(.brand):hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.legal-main {
  min-height: 70vh;
  padding: 80px 0 110px;
  background: var(--surface);
}

.legal-card {
  max-width: 900px;
  margin-inline: auto;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-card h1 {
  font-size: clamp(42px, 6vw, 64px);
}

.legal-card h2 {
  margin-top: 42px;
  font-size: 28px;
}

.legal-card p,
.legal-card li {
  color: var(--slate);
}

.legal-warning {
  margin-bottom: 30px;
  padding: 16px 18px;
  color: #5b430c;
  background: var(--gold-soft);
  border: 1px solid #ead7ac;
  border-radius: 10px;
  font-weight: 700;
}

.placeholder {
  padding: 2px 6px;
  color: #7a240f;
  background: #fcebe6;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

.back-link {
  display: inline-flex;
  margin-top: 34px;
  color: var(--navy-800);
  font-weight: 800;
}

.professional-bar {
  color: #e9f1fa;
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.professional-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 20px;
}

.professional-bar a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.hero-price-line {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 10px 14px;
  margin: -6px 0 28px;
  padding: 13px 18px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d5dfe9;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.hero-price-line .price-pill {
  padding: 4px 8px;
  color: #5b430c;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-price-line strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.hero-price-line small {
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}

.body-emphasis {
  padding-left: 18px;
  color: var(--navy-950) !important;
  border-left: 3px solid var(--gold);
  font-weight: 750;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.scope-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.scope-card-primary {
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.scope-card > span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 5px 10px;
  color: var(--navy-800);
  background: var(--navy-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scope-card-primary > span {
  color: #fff7e7;
  background: rgba(201, 161, 74, 0.2);
}

.scope-card-primary h3 {
  color: var(--white);
}

.check-list-dark li {
  color: #dce7f3;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding-left: 20px;
  color: var(--slate);
}

.coverage-section {
  background: var(--surface);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coverage-card {
  min-height: 205px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(4, 23, 47, 0.04);
}

.coverage-zone {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.coverage-card h3 {
  margin-bottom: 8px;
}

.coverage-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.coverage-note {
  display: flex;
  align-items: center;
  gap: 14px 24px;
  margin-top: 24px;
  padding: 20px 24px;
  color: var(--slate);
  background: #e6edf4;
  border-radius: 12px;
}

.coverage-note strong {
  flex: 0 0 auto;
  color: var(--navy-950);
}

.services-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.b2b-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(201, 161, 74, 0.16), transparent 28%),
    var(--navy-900);
}

.b2b-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.b2b-grid h2 {
  color: var(--white);
}

.b2b-copy > p {
  color: #d8e4f0;
  font-size: 18px;
}

.b2b-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.b2b-list li {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.b2b-list strong {
  color: var(--white);
}

.b2b-list span {
  color: #b9cadb;
}

.price-from {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 12px;
  margin: 26px 0 10px;
}

.price-from > span {
  align-self: center;
  padding: 5px 9px;
  color: #5b430c;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-from strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 0.95;
}

.price-from small {
  grid-column: 2;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-context {
  margin-bottom: 26px;
  color: var(--slate);
  font-weight: 750;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-grid,
  .services-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .split-heading,
  .professional-grid,
  .identity-grid,
  .b2b-grid,
  .safeguards-grid,
  .faq-grid,
  .contact-grid {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 80px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: calc(100vh - 82px);
    padding: 30px 20px;
    overflow-y: auto;
    background: var(--white);
    clip-path: inset(0 0 0 100%);
    visibility: hidden;
    transition: clip-path 220ms ease, visibility 220ms ease;
  }

  .main-nav.is-open {
    clip-path: inset(0);
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav .button {
    margin-top: 24px;
  }

  .hero-grid,
  .split-heading,
  .professional-grid,
  .identity-grid,
  .b2b-grid,
  .safeguards-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
    min-height: auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .body-copy {
    padding-top: 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .professional-photo {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .credentials-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .fees-grid {
    grid-template-columns: 1fr;
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .qualification-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .faq-grid .section-heading {
    margin-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 66px 0;
  }

  .review-banner {
    display: grid;
    gap: 0;
    text-align: center;
  }

  .professional-bar-inner {
    justify-content: center;
    min-height: 42px;
    text-align: center;
  }

  .professional-bar-inner > span {
    display: none;
  }

  .review-banner span + span::before {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    min-height: calc(100vh - 72px);
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-price-line {
    grid-template-columns: auto 1fr;
    width: 100%;
  }

  .hero-price-line small {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-card {
    padding: 24px;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 500px;
    height: 500px;
  }

  .trust-grid,
  .services-grid,
  .services-grid-six,
  .coverage-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(3) {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card {
    min-height: 220px;
  }

  .credentials-list {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .professional-details {
    margin-top: 58px;
    padding-top: 52px;
  }

  .expertise-grid article {
    min-height: auto;
  }

  .qualification-grid {
    padding: 26px;
  }

  .scope-card {
    padding: 28px;
  }

  .coverage-note {
    display: grid;
  }

  .b2b-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .identity-panel,
  .fee-card,
  .contact-form,
  .legal-card {
    padding: 26px;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .safeguards-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .contact-grid {
    gap: 42px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
