:root {
  --v2-ink: #18202f;
  --v2-muted: #667085;
  --v2-navy: #13243a;
  --v2-navy-2: #1b3554;
  --v2-blue: #2e6f95;
  --v2-teal: #2c7a78;
  --v2-orange: #e06d3a;
  --v2-orange-dark: #bf4e20;
  --v2-cream: #f6f3ed;
  --v2-paper: #fbfaf7;
  --v2-line: #dfe3e8;
  --v2-white: #fff;
  --v2-success: #216b55;
  --v2-warning: #8a5a16;
  --v2-shadow: 0 20px 50px rgba(19, 36, 58, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.portal-v2 {
  margin: 0;
  color: var(--v2-ink);
  background: var(--v2-paper);
  font: 16px/1.6 Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}
.portal-v2 a { color: inherit; }
.portal-v2 img { max-width: 100%; }
.v2-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.v2-skip { position: absolute; left: -9999px; }
.v2-skip:focus { left: 16px; top: 16px; z-index: 100; padding: 10px 14px; background: #fff; color: #111; }

.v2-independence {
  background: #0b1827;
  color: #dbe6ef;
  font-size: 12px;
  letter-spacing: .01em;
}
.v2-independence .v2-container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.v2-independence strong { color: #fff; }
.v2-independence a { color: #fff; text-underline-offset: 3px; }

.v2-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 247, .96);
  border-bottom: 1px solid var(--v2-line);
  backdrop-filter: blur(16px);
}
.v2-header-inner { min-height: 76px; display: flex; align-items: center; gap: 32px; }
.v2-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.v2-brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--v2-navy);
  font: 700 20px/1 Georgia, serif;
}
.v2-brand-copy { display: grid; line-height: 1; }
.v2-brand-copy b { color: var(--v2-navy); font: 700 22px/1 Georgia, serif; letter-spacing: .02em; }
.v2-brand-copy small { margin-top: 5px; color: var(--v2-muted); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.v2-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.v2-nav a { color: var(--v2-ink); text-decoration: none; font-weight: 650; font-size: 14px; }
.v2-nav a:hover, .v2-nav a[aria-current="page"] { color: var(--v2-orange-dark); }
.v2-nav-cta { padding: 10px 15px; border: 1px solid var(--v2-navy); border-radius: 8px; }
.v2-menu {
  display: none;
  margin-left: auto;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: #fff;
  padding: 9px 12px;
  color: var(--v2-ink);
  font: inherit;
  font-weight: 700;
}

.v2-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 85% 22%, rgba(74, 134, 164, .34), transparent 30%),
    radial-gradient(circle at 63% 88%, rgba(224, 109, 58, .16), transparent 28%),
    linear-gradient(120deg, #112137, #1c3b59 72%, #163e50);
  overflow: hidden;
}
.v2-hero:after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -300px;
  width: 740px;
  height: 740px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.v2-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding: 82px 0; }
.v2-eyebrow {
  margin: 0 0 14px;
  color: #f0a37f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.v2-hero h1, .v2-page-hero h1 {
  max-width: 800px;
  margin: 0;
  font: 500 clamp(43px, 5.4vw, 72px)/1.04 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}
.v2-hero-copy > p:not(.v2-eyebrow), .v2-page-hero .v2-lead { max-width: 720px; color: #dbe5ec; font-size: 19px; }
.v2-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.v2-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--v2-orange);
  color: #fff !important;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.v2-button:hover { background: var(--v2-orange-dark); transform: translateY(-1px); }
.v2-button.secondary { background: #fff; color: var(--v2-navy) !important; }
.v2-button.outline { border-color: var(--v2-line); background: transparent; color: var(--v2-navy) !important; }
.v2-button.dark { background: var(--v2-navy); }
.v2-button.small { min-height: 40px; padding: 8px 14px; font-size: 14px; }

.v2-finder {
  position: relative;
  z-index: 2;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  color: var(--v2-ink);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .2);
}
.v2-finder-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.v2-finder h2 { margin: 0; color: var(--v2-navy); font: 500 28px/1.15 Georgia, serif; }
.v2-finder-badge { border-radius: 999px; background: #e6f2ef; color: var(--v2-success); padding: 5px 10px; font-size: 11px; font-weight: 800; white-space: nowrap; }
.v2-tabs { display: flex; gap: 8px; margin: 22px 0 16px; border-bottom: 1px solid var(--v2-line); }
.v2-tab { border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--v2-muted); padding: 9px 3px; margin-right: 12px; font: inherit; font-weight: 750; cursor: pointer; }
.v2-tab.is-active { border-color: var(--v2-orange); color: var(--v2-navy); }
.v2-field { display: grid; gap: 7px; margin-bottom: 13px; }
.v2-field span, .v2-field-label { color: var(--v2-navy); font-size: 13px; font-weight: 750; }
.v2-input, .v2-select, .v2-textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfd6dd;
  border-radius: 8px;
  background: #fff;
  color: var(--v2-ink);
  font: inherit;
}
.v2-textarea { min-height: 130px; resize: vertical; }
.v2-input:focus, .v2-select:focus, .v2-textarea:focus { outline: 3px solid rgba(46,111,149,.16); border-color: var(--v2-blue); }
.v2-finder-note { margin: 13px 0 0; color: var(--v2-muted); font-size: 12px; line-height: 1.45; }

.v2-trust-strip { border-bottom: 1px solid var(--v2-line); background: #fff; }
.v2-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.v2-trust-item { min-height: 112px; padding: 24px 25px; border-right: 1px solid var(--v2-line); }
.v2-trust-item:last-child { border-right: 0; }
.v2-trust-item b { display: block; color: var(--v2-navy); font: 500 28px/1.15 Georgia, serif; }
.v2-trust-item span { color: var(--v2-muted); font-size: 13px; }

.v2-section { padding: 82px 0; }
.v2-section.alt { background: var(--v2-cream); }
.v2-section.dark { background: var(--v2-navy); color: #fff; }
.v2-section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 32px; }
.v2-section h2, .v2-content h2 { margin: 0; color: var(--v2-navy); font: 500 clamp(32px, 4vw, 48px)/1.1 Georgia, serif; letter-spacing: -.02em; }
.v2-section.dark h2 { color: #fff; }
.v2-section-head > p { max-width: 560px; margin: 0; color: var(--v2-muted); }

.v2-task-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.v2-task-card, .v2-card {
  min-width: 0;
  overflow-wrap: anywhere;
  border: 1px solid var(--v2-line);
  border-radius: 12px;
  background: #fff;
  color: var(--v2-ink);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.v2-task-card { min-height: 220px; display: flex; flex-direction: column; padding: 23px; }
.v2-task-card:hover, .v2-card:hover { transform: translateY(-3px); border-color: #bdc8d4; box-shadow: var(--v2-shadow); }
.v2-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eaf2f6;
  color: var(--v2-blue);
  font-weight: 900;
}
.v2-task-card:nth-child(2n) .v2-icon { color: var(--v2-orange-dark); background: #fbece5; }
.v2-task-card h3, .v2-card h3 { margin: 22px 0 7px; color: var(--v2-navy); font: 500 22px/1.2 Georgia, serif; }
.v2-task-card p, .v2-card p { margin: 0; color: var(--v2-muted); font-size: 14px; }
.v2-card-link { margin-top: auto; padding-top: 19px; color: var(--v2-orange-dark); font-weight: 800; font-size: 13px; }

.v2-region-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 22px; }
.v2-region-feature { position: relative; min-height: 390px; padding: 36px; border-radius: 15px; overflow: hidden; background: var(--v2-navy-2); color: #fff; }
.v2-region-feature:after { content: "77"; position: absolute; right: 20px; bottom: -45px; color: rgba(255,255,255,.06); font: 700 180px/1 Georgia, serif; }
.v2-region-feature h3 { max-width: 520px; margin: 10px 0; font: 500 38px/1.12 Georgia, serif; }
.v2-region-feature p { max-width: 540px; color: #d9e5ec; }
.v2-region-list { display: grid; gap: 12px; }
.v2-region-row { display: flex; gap: 18px; align-items: center; min-height: 92px; padding: 18px 20px; border: 1px solid var(--v2-line); border-radius: 12px; background: #fff; text-decoration: none; }
.v2-region-row b { display: block; color: var(--v2-navy); }
.v2-region-row span { color: var(--v2-muted); font-size: 13px; }
.v2-region-code { width: 42px; color: var(--v2-orange-dark) !important; font: 600 20px Georgia, serif; }

.v2-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.v2-step { position: relative; min-height: 190px; padding: 27px 22px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; }
.v2-step:before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 28px; color: #f0a37f; font: 600 18px Georgia, serif; }
.v2-step b { display: block; font: 500 20px/1.2 Georgia, serif; }
.v2-step p { color: #bdcad5; font-size: 13px; }

.v2-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.v2-card { padding: 24px; }
.v2-card h3 { margin-top: 0; }
.v2-card ul { margin: 15px 0 0; padding-left: 18px; color: var(--v2-muted); }
.v2-card li + li { margin-top: 5px; }
.v2-card .v2-tag { display: inline-block; margin-bottom: 14px; border-radius: 999px; background: #eef3f5; color: var(--v2-blue); padding: 4px 9px; font-size: 11px; font-weight: 800; }

.v2-cta { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: center; padding: 46px; border-radius: 16px; background: var(--v2-navy); color: #fff; }
.v2-cta h2 { color: #fff; font-size: 38px; }
.v2-cta p { color: #cbd8e1; }
.v2-cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }

.v2-page-hero { padding: 68px 0 58px; background: linear-gradient(118deg, var(--v2-navy), #214763); color: #fff; }
.v2-page-hero h1 { font-size: clamp(40px, 5vw, 62px); }
.v2-breadcrumbs { margin-bottom: 24px; color: #bfcdd8; font-size: 13px; }
.v2-breadcrumbs a { color: #fff; }
.v2-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.v2-page-shell { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 42px; padding: 56px 0 82px; }
.v2-content h2 { margin: 46px 0 18px; font-size: 35px; }
.v2-content h2:first-child { margin-top: 0; }
.v2-content { min-width: 0; overflow-wrap: anywhere; }
.v2-content h3 { margin: 28px 0 12px; color: var(--v2-navy); font: 500 24px/1.2 Georgia, serif; }
.v2-content p, .v2-content li { max-width: 840px; }
.v2-content a { color: var(--v2-blue); }
.v2-content table { width: 100%; border-collapse: collapse; background: #fff; }
.v2-content th, .v2-content td { padding: 13px; border: 1px solid var(--v2-line); text-align: left; vertical-align: top; }
.v2-content th { background: #f0f3f5; color: var(--v2-navy); }
.v2-aside { min-width: 0; }
.v2-aside-card { position: sticky; top: 106px; padding: 22px; border: 1px solid var(--v2-line); border-radius: 12px; background: #fff; overflow-wrap: anywhere; }
.v2-aside-card h2, .v2-aside-card h3 { margin: 0 0 13px; color: var(--v2-navy); font: 500 22px/1.2 Georgia, serif; }
.v2-aside-card a:not(.v2-button) { display: block; padding: 10px 0; border-top: 1px solid var(--v2-line); color: var(--v2-blue); text-decoration: none; font-weight: 700; font-size: 14px; }
.v2-aside-card p { color: var(--v2-muted); font-size: 13px; }

.v2-notice { margin: 20px 0; padding: 18px 20px; border-left: 4px solid var(--v2-blue); border-radius: 0 9px 9px 0; background: #edf5f8; }
.v2-notice.warning { border-left-color: #d18a2e; background: #fff7e9; }
.v2-notice.success { border-left-color: var(--v2-success); background: #eaf5f0; }
.v2-notice strong { color: var(--v2-navy); }
.v2-status { display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; padding: 5px 10px; background: #eaf5f0; color: var(--v2-success); font-size: 12px; font-weight: 800; }
.v2-status.pending { background: #fff3de; color: var(--v2-warning); }
.v2-status:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.v2-search-panel { padding: 28px; border: 1px solid var(--v2-line); border-radius: 14px; background: #fff; box-shadow: var(--v2-shadow); }
.v2-search-grid { display: grid; grid-template-columns: 1fr 230px auto; gap: 12px; align-items: end; }
.v2-results { display: grid; gap: 12px; margin-top: 24px; }
.v2-result { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 20px; border: 1px solid var(--v2-line); border-radius: 10px; background: #fff; }
.v2-result h3 { margin: 0 0 7px; font: 500 21px/1.2 Georgia, serif; }
.v2-result p { margin: 4px 0; color: var(--v2-muted); font-size: 13px; }
.v2-result a { align-self: center; color: var(--v2-blue); font-weight: 800; }
.v2-empty { padding: 24px; border: 1px dashed #bac4ce; border-radius: 10px; color: var(--v2-muted); text-align: center; }

.v2-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 28px; }
.v2-filter { padding: 8px 12px; border: 1px solid var(--v2-line); border-radius: 999px; background: #fff; color: var(--v2-ink); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.v2-filter.is-active { border-color: var(--v2-navy); background: var(--v2-navy); color: #fff; }
.v2-collection { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.v2-collection .v2-card[hidden] { display: none; }

.v2-faq details { border-top: 1px solid var(--v2-line); padding: 17px 0; }
.v2-faq summary { color: var(--v2-navy); font: 500 20px/1.3 Georgia, serif; cursor: pointer; }
.v2-faq p { color: var(--v2-muted); }
.v2-checklist { display: grid; gap: 10px; padding: 0; list-style: none; }
.v2-checklist li { position: relative; padding: 15px 16px 15px 46px; border: 1px solid var(--v2-line); border-radius: 9px; background: #fff; }
.v2-checklist li:before { content: "✓"; position: absolute; left: 17px; color: var(--v2-success); font-weight: 900; }

.v2-footer { padding: 54px 0 28px; background: #0b1827; color: #c3d0da; }
.v2-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 38px; }
.v2-footer strong { color: #fff; font: 500 19px Georgia, serif; }
.v2-footer a { color: #e2eaf0; text-decoration: none; }
.v2-footer a:hover { text-decoration: underline; }
.v2-footer p { font-size: 13px; }
.v2-footer-note { margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #93a5b3; font-size: 12px; }

.v2-only-panel { display: none; }
.v2-only-panel.is-active { display: block; }
[hidden] { display: none !important; }

@media (max-width: 1020px) {
  .v2-nav { gap: 16px; }
  .v2-nav a { font-size: 13px; }
  .v2-hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .v2-task-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-service-grid, .v2-collection { grid-template-columns: repeat(2, 1fr); }
  .v2-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 820px) {
  .v2-menu { display: block; }
  .v2-header-inner { flex-wrap: wrap; padding: 11px 0; }
  .v2-nav { display: none; order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 8px; }
  .v2-nav.is-open { display: flex; }
  .v2-nav a { padding: 11px 0; border-top: 1px solid var(--v2-line); }
  .v2-nav-cta { border: 0; border-radius: 0; }
  .v2-hero-grid, .v2-region-grid, .v2-page-shell, .v2-cta { grid-template-columns: 1fr; }
  .v2-hero { min-height: auto; }
  .v2-trust-grid, .v2-steps { grid-template-columns: repeat(2, 1fr); }
  .v2-trust-item:nth-child(2) { border-right: 0; }
  .v2-trust-item { border-bottom: 1px solid var(--v2-line); }
  .v2-search-grid { grid-template-columns: 1fr 1fr; }
  .v2-search-grid .v2-button { grid-column: 1 / -1; }
  .v2-aside-card { position: static; }
  .v2-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .v2-container { width: min(100% - 28px, 1180px); }
  .v2-independence .v2-container { padding: 7px 0; align-items: flex-start; flex-direction: column; gap: 2px; line-height: 1.4; }
  .v2-brand-copy small { display: none; }
  .v2-hero-grid { padding: 58px 0; }
  .v2-hero h1 { font-size: 42px; }
  .v2-finder { padding: 21px; }
  .v2-finder-head { display: block; }
  .v2-finder-badge { display: inline-block; margin-top: 12px; }
  .v2-section { padding: 58px 0; }
  .v2-section-head { display: block; }
  .v2-section-head > p { margin-top: 14px; }
  .v2-task-grid, .v2-service-grid, .v2-collection, .v2-trust-grid, .v2-steps, .v2-search-grid, .v2-footer-grid { grid-template-columns: 1fr; }
  .v2-trust-item { border-right: 0; }
  .v2-region-feature { min-height: 360px; padding: 27px; }
  .v2-region-feature h3 { font-size: 32px; }
  .v2-result { grid-template-columns: 1fr; }
  .v2-cta { padding: 29px; }
  .v2-page-hero { padding: 48px 0; }
  .v2-page-hero h1 { font-size: 40px; }
  .v2-content table, .v2-content thead, .v2-content tbody, .v2-content th, .v2-content td, .v2-content tr { display: block; }
  .v2-content thead { position: absolute; left: -9999px; }
  .v2-content tr { margin-bottom: 12px; border: 1px solid var(--v2-line); }
  .v2-content td { border: 0; border-bottom: 1px solid var(--v2-line); }
}
