padding: 120px 20px 90px;
    background: linear-gradient(140deg, #0d2040, #0a1833);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../hero-map-bg.png") center/cover no-repeat;
    background-color: rgba(12, 31, 60, .5);
    background-blend-mode: overlay;
    opacity: .18;
}
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(80% 80% at 20% 20%, rgba(242,163,59,.18), transparent 60%),
      radial-gradient(70% 70% at 80% 10%, rgba(255,255,255,.10), transparent 55%);
    pointer-events: none;
}
.header-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .header-grid {
        grid-template-columns: 1fr;
    }
}
.header-content {
    padding: 28px 28px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(10, 31, 66, .1);
    border: 1px solid rgba(15, 57, 115, .08);
    max-width: 720px;
}
.header-content .hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #0a234a;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.1;
}
.page-header .section-lead {
    max-width: 640px;
    margin-bottom: 22px;
    color: #4a5b73;
    line-height: 1.6;
}
.header-content .btn-primary {
    margin-top: 14px;
}
.hero-meta {
    margin-top: 26px;
    padding: 10px 12px 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 57, 115, .05);
    border-radius: 12px;
}
.hero-meta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(12, 54, 106, .08);
    color: #0c366a;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .02em;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #0c366a;
    background: rgba(12, 54, 106, .1);
    border-radius: 999px;
    margin-bottom: 10px;
    font-weight: 700;
}
.hero-trust-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 6px 0 0;
    margin: 0;
    color: #24354f;
    font-weight: 600;
    font-size: .95rem;
}
.hero-trust-points li {
    position: relative;
    padding-left: 26px;
}
.hero-trust-points li::before {
  content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    color: #0f7ad0;
    font-weight: 800;
}
.header-image-placeholder {
    position: relative;
    height: 340px;
    border-radius: 14px;
    overflow: hidden;
    background: url('../services.png') center/cover no-repeat;
    box-shadow: 0 18px 40px rgba(12, 31, 60, .25);
    border: 1px solid rgba(10, 42, 82, .2);
}
.header-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 26, 60, .25), rgba(14, 90, 150, .2));
    pointer-events: none;
}

.services .section-label {
    letter-spacing: 2px;
    opacity: 1;
}
.services--premium {
    background: #0c1f3c;
    color: var(--white);
}
.services--premium .container {
    max-width: 1240px;
}
.services--premium .services-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 70px clamp(28px, 5vw, 64px);
    box-shadow: none;
    backdrop-filter: none;
}
.services--premium .section-label { text-align: center; }
.services--premium .section-title,
.services--premium .section-lead { text-align: center; max-width: 900px; margin-left: auto; margin-right: auto; }
.services .service-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    max-width: 1240px;
}
@media (max-width: 900px) {
    .services .service-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}
@media (max-width: 640px) {
    .services .service-grid {
        grid-template-columns: 1fr;
    }
}
.services .service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    min-height: 240px;
    background: rgba(7, 16, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 26px;
    box-shadow: 0 20px 44px rgba(4, 10, 20, 0.4);
    text-align: center;
}
.services .section-title + .service-grid {
    margin-top: 24px;
}
.services .service-grid + .section-title {
    margin-top: 48px;
}
.services .service-card__eyebrow {
    font-size: .85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}
.services .service-card__lead {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}
.services .service-card__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}
.services .service-card__list-title {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}
.services .service-card__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}
.services .service-card__list li {
    margin-bottom: 6px;
}
.services .service-card__outcome {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}
.services .service-card__outcome strong {
    color: var(--white);
}
.services .service-cta {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}
.services .btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-weight: 600;
    transition: .25s;
}
.services .btn-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(242, 163, 59, .6);
    color: var(--white);
}
.services .service-followup {
    margin-top: 28px;
    font-weight: 600;
    text-align: center;
}
.validation-block {
    margin-top: 56px;
    padding: 36px clamp(22px, 4vw, 36px);
    background: rgba(7, 16, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(4, 10, 20, 0.5);
}
.validation-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) {
    .validation-grid {
        grid-template-columns: 1fr;
    }
}
.validation-card {
    background: rgba(7, 16, 32, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 16px 36px rgba(4, 10, 20, 0.4);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.validation-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
}
.validation-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}
.deliverables-note {
    font-size: .95rem;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
}
.services .icon-box--custom {
    margin-bottom: 10px;
    width: 32px;
    height: 32px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.services .icon-box--custom::before {
    content: none;
}
.services .icon-box--custom svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    stroke-width: 2;
    fill: none;
}

.pain-wrap {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.pain {
    background: #0c1f3c;
    color: var(--white);
}
.pain .section-title { color: var(--white); }
.pain .section-lead { color: rgba(255, 255, 255, 0.82); }
.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}
@media (max-width: 640px) {
    .pain-cards {
        grid-template-columns: 1fr;
    }
}
.pain-card {
    position: relative;
    padding: 26px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(7, 16, 32, 0.7), rgba(7, 16, 32, 0.35));
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 18px 40px rgba(4, 10, 20, 0.45);
    text-align: left;
    overflow: hidden;
}
.pain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(242, 163, 59, 0.9), rgba(242, 163, 59, 0.15));
}
.pain-card h3 {
    margin: 0;
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
}
.pain-card p {
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.98rem;
}
.pain-cta {
    margin-top: 32px;
    text-align: center;
}
.pain-cta .btn-primary {
    padding: 14px 22px;
    font-size: 1rem;
    font-weight: 700;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 16px;
}
@media (max-width: 900px) {
    .framework-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}
@media (max-width: 600px) {
    .framework-grid {
        grid-template-columns: 1fr;
    }
}
.framework-card {
    padding: calc(var(--card-pad) * 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) * 0.85);
    box-shadow: 0 16px 36px rgba(4, 10, 20, 0.4);
    background: rgba(7, 16, 32, 0.5);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 150px;
}
.framework-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}
.framework-card h3 {
    margin: 0;
    font-weight: 800;
    color: var(--white);
}
.framework-card p {
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}
.framework-outcome {
    margin-top: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}
.framework-outcome strong {
    color: var(--white);
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: var(--grid-gap);
    margin-top: var(--gap-lead-content);
}
@media (max-width: 768px) {
    .deliverable-grid {
        grid-template-columns: 1fr;
    }
}
.deliverable-card {
    padding: calc(var(--card-pad) * 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) * 0.9);
    background: rgba(7, 16, 32, 0.5);
    box-shadow: 0 16px 36px rgba(4, 10, 20, 0.4);
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 170px;
}
.deliverable-card h3 {
    margin: 0;
    font-weight: 800;
    font-size: 1.03rem;
    color: var(--white);
    text-align: left;
}
.deliverable-card p {
    margin: 0;
    line-height: 1.6;
    text-align: left;
    color: rgba(255, 255, 255, 0.78);
}
.deliverable-card .icon-box--custom {
    margin-bottom: 4px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.icon-box--custom::before {
    content: none;
}
.deliverable-card .icon-box--custom svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent);
    stroke-width: 2;
    fill: none;
}
.deliverable-cta {
    margin-top: 32px;
    text-align: center;
}

.section:not(.contact):not(.services--premium),
.section-block,
.pain,
.process,
.deliverables {
    background: #0c1f3c;
}
.section:not(.contact) .section-title { color: var(--white); }
.section:not(.contact) .section-lead { color: rgba(255, 255, 255, 0.82); }
.section:not(.contact) .section-label { color: var(--accent); }
.contact {
    background: linear-gradient(140deg, #0c1f3c, #0a234a);
    color: #fff;
}
  
  .page-header {
    background: linear-gradient(140deg, #0d2040, #0a1833);
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../hero-map-bg.png") center/cover no-repeat;
    background-color: rgba(12, 31, 60, .5);
    background-blend-mode: overlay;
    opacity: .18;
  }
  .page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(80% 80% at 20% 20%, rgba(242,163,59,.18), transparent 60%),
      radial-gradient(70% 70% at 80% 10%, rgba(255,255,255,.10), transparent 55%);
    pointer-events: none;
  }
  .page-header .header-grid,
  .page-header .post-hero__inner {
    position: relative;
    z-index: 1;
  }
  

.page-header {
  background:
    radial-gradient(140% 120% at 15% 5%, #1a3158 0%, #0c1f3c 45%, #061127 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../hero-map-bg.png") center/cover no-repeat;
  background-color: rgba(12, 31, 60, 0.5);
  background-blend-mode: overlay;
  opacity: 0.12;
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 12% 8%, rgba(255,255,255,.08), transparent 62%),
    radial-gradient(70% 70% at 82% 12%, rgba(242,163,59,.08), transparent 60%);
  pointer-events: none;
}
.page-header > * {
  position: relative;
  z-index: 1;
}
.page-header .header-content {
  background: rgba(7, 16, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow:
    0 24px 60px rgba(4, 10, 20, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}
.page-header .hero__headline {
  color: var(--white);
  text-shadow: 0 6px 18px rgba(4, 10, 20, 0.4);
}
.page-header .section-lead {
  color: rgba(255, 255, 255, 0.85);
}
.page-header .hero-meta {
  background: rgba(7, 16, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-header .hero-meta-link {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}
.page-header .hero-eyebrow {
  color: var(--accent);
  background: rgba(242, 163, 59, 0.12);
}
.page-header .hero-trust-points {
  color: rgba(255, 255, 255, 0.82);
}
.page-header .hero-trust-points li::before {
  color: var(--accent);
}
.page-header .header-image-placeholder {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(4, 10, 20, 0.45);
}</style>
