/* Shared site styles extracted from inline HTML styles. */

:root {
      --bg: #f5f7fb;
      --surface: rgba(255, 255, 255, .9);
      --text: #122033;
      --muted: #5c6b7a;
      --line: rgba(18, 32, 51, .1);
      --brand: #0d2a52;
      --brand-2: #173f7a;
      --accent: #b88a3b;
      --shadow: 0 20px 60px rgba(8, 26, 56, .12);
      --max: 1100px
    }

    * {
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 40px
    }

    [id] {
      scroll-margin-top: 40px
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: radial-gradient(circle at top left, rgba(184, 138, 59, .12), transparent 30%), radial-gradient(circle at top right, rgba(23, 63, 122, .08), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #f3f6fb 48%, #eef3f9 100%);
      line-height: 1.6
    }

    a {
      color: inherit;
      text-decoration: none
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(248, 251, 255, .78);
      border-bottom: 1px solid rgba(18, 32, 51, .06)
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 82px
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-weight: 700
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--brand), #06182f);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 18px;
      letter-spacing: .08em;
      box-shadow: 0 10px 22px rgba(13, 42, 82, .25)
    }

    .brand-copy small {
      display: block;
      color: var(--muted);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase
    }

    .brand-copy span {
      display: block;
      font-size: 18px;
      line-height: 1.1
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-weight: 600;
      font-size: 14px
    }

    .nav-links a:hover {
      color: var(--brand)
    }

    .nav-cta,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent
    }

    .nav-cta,
    .btn-primary {
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      color: #fff;
      box-shadow: 0 14px 30px rgba(13, 42, 82, .22)
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .75);
      border-color: rgba(13, 42, 82, .12);
      color: var(--brand)
    }

    .hero {
      padding: 58px 0 26px
    }

    .eyebrow {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(13, 42, 82, .06);
      color: var(--brand);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .03em
    }

    .hero-card {
      padding: 34px;
      border-radius: 34px;
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, .65);
      box-shadow: var(--shadow)
    }

    h1 {
      margin: 18px 0 16px;
      font-size: clamp(2.7rem, 6vw, 4.8rem);
      line-height: .98;
      letter-spacing: -.05em;
      color: #09172a;
      max-width: 13ch
    }

    .page-contact .hero-card h1,
    .page-support .hero-card h1 {
      max-width: 16ch;
    }

    .page-article .hero-card h1 {
      max-width: 100%;
    }

    .hero p {
      margin: 0;
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 72ch
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px
    }

    .section {
      padding: 28px 0
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px
    }

    .content-card {
      background: rgba(255, 255, 255, .88);
      border-radius: 24px;
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(8, 26, 56, .07);
      padding: 24px
    }

    .content-card h2,
    .content-card h3 {
      margin-top: 0;
      line-height: 1.15;
      letter-spacing: -.02em
    }

    .content-card p,
    .content-card li {
      color: var(--muted)
    }

    .check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px
    }

    .check-list li {
      position: relative;
      padding-left: 28px;
      color: var(--text)
    }

    .check-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 800
    }

    .article-body {
      padding: 34px
    }

    .article-body h2 {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      margin: 28px 0 10px;
      letter-spacing: -.035em
    }

    .article-body p,
    .article-body li {
      font-size: 1.03rem
    }

    .article-meta {
      color: var(--muted);
      font-weight: 600;
      margin-top: 10px
    }

    .callout {
      margin-top: 24px;
      padding: 26px;
      border-radius: 28px;
      background: linear-gradient(135deg, #0c2445 0%, #133764 48%, #1f4b84 100%);
      color: #fff;
      box-shadow: var(--shadow)
    }

    .callout p {
      color: rgba(255, 255, 255, .84);
      margin: 0 0 18px
    }

    .state-map-panel {
      padding: 26px;
      overflow: hidden;
    }

    .usa-map {
      position: relative;
      aspect-ratio: 3835 / 2102;
      width: 100%;
      border-radius: 28px;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 18%, rgba(184, 138, 59, .18), transparent 28%),
        linear-gradient(135deg, rgba(237, 243, 251, .95), rgba(255, 255, 255, .88));
      border: 1px solid rgba(13, 42, 82, .08);
    }

    .usa-map-image,
    .usa-map-art {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 22px 35px rgba(8, 26, 56, .13));
    }

    .capital-markers {
      position: absolute;
      inset: 0;
      z-index: 2;
    }

    .usa-map-image {
      opacity: .78;
    }

    .usa-map-art path {
      fill: rgba(255, 255, 255, .72);
      stroke: rgba(13, 42, 82, .2);
      stroke-width: 5;
    }

    .capital-marker {
      position: absolute;
      z-index: 2;
      width: 28px;
      height: 28px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: transparent;
      box-shadow: none;
      cursor: pointer;
      transform: translate(-50%, -50%);
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }

    .capital-marker::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 0;
    }

    .capital-marker:hover,
    .capital-marker:focus-visible,
    .capital-marker.is-active {
      background: rgba(13, 42, 82, .12);
      transform: translate(-50%, -50%) scale(1.35);
      box-shadow: 0 0 0 2px rgba(13, 42, 82, .2);
      outline: none;
    }

    .state-office-popup {
      position: absolute;
      z-index: 5;
      width: min(270px, calc(100% - 32px));
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .95);
      border: 1px solid rgba(255, 255, 255, .8);
      box-shadow: 0 24px 60px rgba(8, 26, 56, .2);
      transform: translate(-50%, -100%);
      backdrop-filter: blur(12px);
      display: grid;
      gap: 5px;
    }

    .state-office-popup[aria-hidden="true"] {
      display: none;
    }

    .state-office-label {
      color: var(--accent);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .state-office-popup strong {
      color: var(--brand);
      font-size: 1.28rem;
      line-height: 1.1;
    }

    .state-office-popup span:not(.state-office-label) {
      color: var(--muted);
      font-weight: 600;
    }

    .state-office-popup a {
      color: #2456b0;
      font-weight: 800;
      word-break: break-word;
    }

    .state-office-close {
      position: absolute;
      top: 10px;
      right: 12px;
      width: 28px;
      height: 28px;
      border: 0;
      border-radius: 999px;
      background: rgba(13, 42, 82, .08);
      color: var(--brand);
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
    }

    .state-map-note {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: .95rem;
    }

    .site-footer {
      margin-top: 34px;
      border-top: 1px solid rgba(18, 32, 51, .08);
      background: rgba(255, 255, 255, .54)
    }

    .footer-inner {
      min-height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 0
    }

    .footer-brand strong {
      display: block;
      font-size: 1.15rem
    }

    .footer-brand span,
    .footer-note {
      color: var(--muted)
    }

    .footer-links {
      display: flex;
      gap: 24px;
      color: var(--muted);
      font-weight: 600
    }

    .footer-note {
      font-size: .95rem;
      text-align: right
    }

    @media(max-width:900px) {

      .grid-2,
      .grid-3 {
        grid-template-columns: 1fr
      }

      .nav-links {
        display: none
      }
    }

    @media(max-width:720px) {
      h1 {
        max-width: 100%
      }

      .hero-visual .hero-card,
      .article-body {
        padding: 24px
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start
      }

      .footer-note {
        text-align: left
      }

      .footer-links {
        flex-wrap: wrap;
        gap: 14px 18px
      }

      .nav-cta {
        display: none
      }
    }

:root{--bg:#f5f7fb;--surface:rgba(255,255,255,.9);--text:#122033;--muted:#5c6b7a;--line:rgba(18,32,51,.1);--brand:#0d2a52;--brand-2:#173f7a;--accent:#b88a3b;--shadow:0 20px 60px rgba(8,26,56,.12);--max:1100px}*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:var(--text);background:radial-gradient(circle at top left,rgba(184,138,59,.12),transparent 30%),radial-gradient(circle at top right,rgba(23,63,122,.08),transparent 28%),linear-gradient(180deg,#f8fbff 0%,#f3f6fb 48%,#eef3f9 100%);line-height:1.6}a{color:inherit;text-decoration:none}.container{width:min(calc(100% - 32px),var(--max));margin:0 auto}.site-header{position:sticky;top:0;z-index:40;backdrop-filter:blur(14px);background:rgba(248,251,255,.78);border-bottom:1px solid rgba(18,32,51,.06)}.nav{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:82px}.brand{display:inline-flex;align-items:center;gap:14px;font-weight:700}.brand-mark{width:48px;height:48px;border-radius:16px;background:linear-gradient(145deg,var(--brand),#06182f);color:#fff;display:grid;place-items:center;font-size:18px;letter-spacing:.08em;box-shadow:0 10px 22px rgba(13,42,82,.25)}.brand-copy small{display:block;color:var(--muted);font-weight:600;font-size:12px;letter-spacing:.08em;text-transform:uppercase}.brand-copy span{display:block;font-size:18px;line-height:1.1}.nav-links{display:flex;align-items:center;gap:26px;color:var(--muted);font-weight:600;font-size:14px}.nav-links a:hover{color:var(--brand)}.nav-cta,.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;padding:10px 20px;border-radius:999px;font-weight:700;border:1px solid transparent}.nav-cta,.btn-primary{background:linear-gradient(135deg,var(--brand),var(--brand-2));color:#fff;box-shadow:0 14px 30px rgba(13,42,82,.22)}.btn-secondary{background:rgba(255,255,255,.75);border-color:rgba(13,42,82,.12);color:var(--brand)}.hero{padding:58px 0 26px}.eyebrow{display:inline-flex;padding:8px 14px;border-radius:999px;background:rgba(13,42,82,.06);color:var(--brand);font-weight:700;font-size:13px;letter-spacing:.03em}.hero-card{padding:34px;border-radius:34px;background:var(--surface);border:1px solid rgba(255,255,255,.65);box-shadow:var(--shadow)}h1{margin:18px 0 16px;font-size:clamp(2.7rem,6vw,4.8rem);line-height:.98;letter-spacing:-.05em;color:#09172a;max-width:13ch}.hero p{margin:0;font-size:1.08rem;color:var(--muted);max-width:72ch}.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:26px}.section{padding:28px 0}.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:18px}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.content-card{background:rgba(255,255,255,.88);border-radius:24px;border:1px solid var(--line);box-shadow:0 12px 34px rgba(8,26,56,.07);padding:24px}.content-card h2,.content-card h3{margin-top:0;line-height:1.15;letter-spacing:-.02em}.content-card p,.content-card li{color:var(--muted)}.check-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}.check-list li{position:relative;padding-left:28px;color:var(--text)}.check-list li:before{content:"✓";position:absolute;left:0;top:0;color:var(--accent);font-weight:800}.article-body{padding:34px}.article-body h2{font-size:clamp(1.7rem,3vw,2.4rem);margin:28px 0 10px;letter-spacing:-.035em}.article-body p,.article-body li{font-size:1.03rem}.article-meta{color:var(--muted);font-weight:600;margin-top:10px}.callout{margin-top:24px;padding:26px;border-radius:28px;background:linear-gradient(135deg,#0c2445 0%,#133764 48%,#1f4b84 100%);color:#fff;box-shadow:var(--shadow)}.callout p{color:rgba(255,255,255,.84);margin:0 0 18px}.site-footer{margin-top:34px;border-top:1px solid rgba(18,32,51,.08);background:rgba(255,255,255,.54)}.footer-inner{min-height:104px;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:20px 0}.footer-brand strong{display:block;font-size:1.15rem}.footer-brand span,.footer-note{color:var(--muted)}.footer-links{display:flex;gap:24px;color:var(--muted);font-weight:600}.footer-note{font-size:.95rem;text-align:right}@media(max-width:900px){.grid-2,.grid-3{grid-template-columns:1fr}.nav-links{display:none}}@media(max-width:720px){h1{max-width:100%}.hero-card,.article-body{padding:24px}.footer-inner{flex-direction:column;align-items:flex-start}.footer-note{text-align:left}.footer-links{flex-wrap:wrap;gap:14px 18px}.nav-cta{display:none}}

:root {
      --bg: #f5f7fb;
      --surface: rgba(255, 255, 255, 0.9);
      --surface-strong: #ffffff;
      --text: #122033;
      --muted: #5c6b7a;
      --line: rgba(18, 32, 51, 0.1);
      --brand: #0d2a52;
      --brand-2: #173f7a;
      --accent: #b88a3b;
      --soft: #edf3fb;
      --shadow: 0 20px 60px rgba(8, 26, 56, 0.12);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(184, 138, 59, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(23, 63, 122, 0.08), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f3f6fb 48%, #eef3f9 100%);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(248, 251, 255, 0.78);
      border-bottom: 1px solid rgba(18, 32, 51, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 82px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--brand), #06182f);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 18px;
      letter-spacing: 0.08em;
      box-shadow: 0 10px 22px rgba(13, 42, 82, 0.25);
    }

    .brand-copy small {
      display: block;
      color: var(--muted);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-copy span {
      display: block;
      font-size: 18px;
      line-height: 1.1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--brand);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--brand);
      color: #fff;
      padding: 10px 20px;
      border-radius: 999px;
      box-shadow: 0 10px 20px rgba(13, 42, 82, 0.2);
      font-weight: 700;
      font-size: 14px;
    }

    .hero {
      padding: 56px 0 42px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 34px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(13, 42, 82, 0.06);
      color: var(--brand);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.03em;
    }

    .hero h1 {
      margin: 18px 0 16px;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 0.97;
      letter-spacing: -0.05em;
      max-width: 10ch;
      color: #09172a;
    }

    .hero h1 span {
      color: var(--brand);
      display: block;
    }

    .hero p {
      margin: 0 0 24px;
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 63ch;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--brand), var(--brand-2));
      color: #fff;
      box-shadow: 0 14px 30px rgba(13, 42, 82, 0.22);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.75);
      border-color: rgba(13, 42, 82, 0.12);
      color: var(--brand);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .mini-card {
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(18, 32, 51, 0.08);
      border-radius: 18px;
      padding: 16px;
      box-shadow: 0 8px 30px rgba(8, 26, 56, 0.06);
    }

    .mini-card strong {
      display: block;
      color: var(--brand);
      font-size: 14px;
      margin-bottom: 4px;
    }

    .mini-card span {
      font-size: 13px;
      color: var(--muted);
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
    }

    .hero-visual .hero-card {
      position: absolute;
      inset: 0;
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #dbe5f2;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .hero-visual .hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 18, 35, 0.06) 0%, rgba(6, 24, 47, 0.78) 100%);
    }

    .hero-visual .hero-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 22px;
      z-index: 2;
      display: grid;
      gap: 16px;
    }

    .hero-overlay-card {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
      backdrop-filter: blur(12px);
      color: #fff;
      border-radius: 24px;
      padding: 20px;
    }

    .hero-overlay-card strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .hero-overlay-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-overlay-list span {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      font-size: 13px;
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .section {
      padding: 36px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 20px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      max-width: 56ch;
    }

    .panel {
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.65);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .intro-panel {
      padding: 26px;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: center;
    }

    .intro-copy p {
      margin: 0;
      color: var(--muted);
    }

    .intro-strip {
      background: linear-gradient(135deg, rgba(13, 42, 82, 0.98), rgba(23, 63, 122, 0.92));
      color: #fff;
      border-radius: 22px;
      padding: 22px;
      display: grid;
      gap: 12px;
    }

    .intro-strip strong {
      font-size: 1.05rem;
    }

    .intro-strip span {
      color: rgba(255, 255, 255, 0.84);
    }

    .cards-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .service-card {
      padding: 24px;
      background: rgba(255, 255, 255, 0.88);
      border-radius: 24px;
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(8, 26, 56, 0.07);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(13, 42, 82, 0.12), rgba(184, 138, 59, 0.12));
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      color: var(--brand);
      font-size: 20px;
      font-weight: 800;
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 1.08rem;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 24px;
    }

    .client-card {
      padding: 26px;
      border-radius: 26px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 12px 34px rgba(8, 26, 56, 0.07);
    }

    .client-card .pill {
      display: inline-flex;
      padding: 10px 24px;
      border-radius: 999px;
      background: rgba(13, 42, 82, 0.07);
      color: var(--brand);
      font-size: 1.08rem;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .client-card h3 {
      margin: 0 0 10px;
      font-size: 1.35rem;
    }

    .client-card p {
      margin: 0 0 14px;
      color: var(--muted);
    }

    .check-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .check-list li {
      position: relative;
      padding-left: 28px;
      color: var(--text);
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 800;
    }

    .feature-grid {
      margin-top: 24px;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 22px;
      align-items: stretch;
    }

    .image-panel,
    .content-panel {
      border-radius: 28px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .image-panel {
      min-height: 100%;
      position: relative;
    }

    .image-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 520px;
    }

    .image-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(13, 42, 82, 0.08), rgba(13, 42, 82, 0.45));
    }

    .image-caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 16px 18px;
      backdrop-filter: blur(10px);
    }

    .content-panel {
      padding: 28px;
    }

    .process {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 66px 1fr;
      gap: 16px;
      padding: 18px;
      border-radius: 22px;
      background: var(--soft);
      border: 1px solid rgba(13, 42, 82, 0.07);
    }

    .step-number {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: var(--brand);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 1rem;
      box-shadow: 0 10px 18px rgba(13, 42, 82, 0.18);
    }

    .step h3 {
      margin: 0 0 6px;
      font-size: 1.08rem;
    }

    .step p {
      margin: 0;
      color: var(--muted);
    }

    .band {
      margin-top: 24px;
      padding: 26px;
      border-radius: 28px;
      background: linear-gradient(135deg, #0c2445 0%, #133764 48%, #1f4b84 100%);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .band-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 22px;
      align-items: center;
    }

    .band h3 {
      margin: 0 0 10px;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .band p {
      margin: 0;
      color: rgba(255, 255, 255, 0.84);
    }

    .band-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .metric {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .metric strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 4px;
    }

    .metric span {
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
    }

    .faq-grid {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .faq-item {
      padding: 22px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(8, 26, 56, 0.07);
    }

    .faq-item h3 {
      margin: 0 0 10px;
      font-size: 1.02rem;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
    }

    .articles {
      padding: 34px 0 18px;
    }

    .articles-header {
      text-align: center;
      margin-bottom: 26px;
    }

    .articles-header h2 {
      margin: 0 0 8px;
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.04em;
    }

    .articles-header p {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .article-card {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(8, 26, 56, 0.07);
      display: flex;
      flex-direction: column;
      min-height: 260px;
    }

    .article-card h3 {
      margin: 0 0 10px;
      font-size: 1.45rem;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .article-meta {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .article-card p {
      margin: 0 0 18px;
      color: var(--muted);
      flex: 1;
    }

    .article-link {
      color: #2456b0;
      font-weight: 700;
      width: fit-content;
    }

    .site-footer {
      margin-top: 24px;
      border-top: 1px solid rgba(18, 32, 51, 0.08);
      background: rgba(255, 255, 255, 0.54);
    }

    .footer-inner {
      min-height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 0;
    }

    .footer-brand {
      font-size: 0.98rem;
    }

    .footer-brand strong {
      display: block;
      font-size: 1.15rem;
    }

    .footer-brand span {
      color: var(--muted);
    }

    .footer-links {
      display: flex;
      gap: 24px;
      color: var(--muted);
      font-weight: 600;
    }

    .footer-note {
      color: var(--muted);
      font-size: 0.95rem;
      text-align: right;
    }

    @media (max-width: 1080px) {

      .hero-grid,
      .intro-panel,
      .feature-grid,
      .band-grid,
      .cards-4,
      .faq-grid,
      .articles-grid,
      .split {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 520px;
      }

      .hero-points {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 720px) {
      .hero {
        padding-top: 30px;
      }

      .hero h1 {
        max-width: 100%;
      }

      .hero-visual {
        min-height: 420px;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-note {
        text-align: left;
      }

      .footer-links {
        flex-wrap: wrap;
        gap: 14px 18px;
      }

      .nav-cta {
        display: none;
      }
    }
