:root {
    --ink: #101828;
    --muted: #596579;
    --soft: #f5f7fa;
    --paper: #ffffff;
    --line: #d9e1ea;
    --line-strong: #c5ceda;
    --accent: #08786f;
    --accent-dark: #075f59;
    --accent-soft: #e8f5f3;
    --navy: #0b1f33;
    --gold: #9a713a;
    --gold-soft: #f7efe2;
    --warning: #fff8e8;
    --shadow: 0 16px 36px rgba(16, 24, 40, .08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: #fbfcfd;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand,
.site-footer .brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: block;
    width: auto;
    height: 68px;
}

.site-footer .brand-logo {
    height: 72px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #46556b;
    font-size: 14px;
    font-weight: 750;
}

.nav-links a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
    border-bottom-color: var(--accent);
}

.mobile-menu-button {
    display: none;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 13px 0;
    color: #334155;
    font-weight: 750;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

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

.btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--line-strong);
}

.btn-secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--line-strong);
}

.btn-light {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

.hero {
    padding: 68px 0 68px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #fff 0%, #f8fbfb 100%);
}

.page-hero {
    padding: 62px 0 54px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.hero-grid,
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 58px;
    align-items: center;
}

.balanced-hero {
    grid-template-columns: minmax(0, .98fr) minmax(340px, .72fr);
    gap: 44px;
}

.hero-grid > *,
.page-hero-grid > *,
.contact-hero-grid > *,
.contact-layout > *,
.image-text-grid > *,
.path-row > *,
.pricing-item > *,
.benefit-combined > *,
.hero-copy {
    min-width: 0;
}

.hero h1,
.page-hero h1 {
    max-width: 780px;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 900;
    overflow-wrap: break-word;
    word-break: normal;
}

.page-hero h1 {
    font-size: clamp(36px, 4vw, 54px);
}

.hero p,
.page-hero p {
    max-width: 760px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-benefit-list {
    display: grid;
    gap: 12px;
    max-width: 720px;
    margin-top: 24px;
    list-style: none;
}

.hero-benefit-list li {
    display: grid;
    grid-template-columns: minmax(190px, .44fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.hero-benefit-list strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.hero-benefit-list span {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.summary-board,
.definition-box,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.summary-board {
    padding: 24px;
}

.summary-board-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.summary-board-header span,
.eyebrow {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: none;
}

.summary-board-header strong {
    max-width: 230px;
    text-align: right;
    font-size: 20px;
    line-height: 1.2;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
}

.summary-grid div {
    min-height: 126px;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.summary-grid div:nth-child(2n) {
    border-right: 0;
}

.summary-grid div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.summary-grid span,
.metric-grid span,
.stage-mini-grid span {
    display: block;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.summary-grid strong {
    display: block;
    margin-top: 10px;
    color: #263348;
    font-size: 15px;
    line-height: 1.45;
}

.image-panel {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(16, 24, 40, .13);
}

.hero-image-panel {
    min-height: 440px;
}

.page-image-panel,
.contact-image-panel {
    min-height: 320px;
}

.image-panel img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.image-panel:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0) 34%, rgba(7, 17, 31, .28) 100%);
    pointer-events: none;
}

.image-panel.media-only {
    border-radius: 18px;
}

.image-panel.media-only:after {
    display: none;
}

.image-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    padding: 24px;
    box-shadow: 0 18px 42px rgba(16, 24, 40, .18);
    backdrop-filter: blur(12px);
}

.image-caption.compact {
    padding: 20px;
}

.image-caption h2 {
    margin-top: 8px;
    font-size: 25px;
    line-height: 1.16;
}

.image-caption p:not(.eyebrow) {
    margin-top: 10px;
    color: var(--muted);
}

.image-caption a {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-dark);
    font-size: 20px;
    font-weight: 900;
}

.caption-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    list-style: none;
}

.caption-list li {
    position: relative;
    padding-left: 18px;
    color: #334155;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 720;
}

.caption-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 7px;
    height: 7px;
    background: var(--accent);
}

section {
    padding: 64px 0;
}

.band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}

.light-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin-top: 8px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
    letter-spacing: 0;
    font-weight: 900;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.75;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
    gap: 44px;
    align-items: end;
    max-width: none;
}

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

.compact-heading p:not(.eyebrow) {
    max-width: 760px;
    margin: 14px auto 0;
}

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

.value-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 26px;
}

.value-card h3 {
    margin-top: 14px;
    font-size: 24px;
    line-height: 1.16;
}

.value-card h3:first-child {
    margin-top: 0;
}

.value-card p:not(.card-kicker) {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

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

.benefit-mini-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 26px;
}

.benefit-mini-card h3 {
    margin-top: 14px;
    font-size: 23px;
    line-height: 1.16;
}

.benefit-mini-card h3:first-child {
    margin-top: 0;
}

.benefit-mini-card p:not(.card-kicker) {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.image-text-grid-tight {
    align-items: center;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.tier-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    min-height: 480px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 24px;
}

.tier-card.featured {
    border-color: #8fbab5;
    box-shadow: 0 18px 46px rgba(8, 120, 111, .12);
}

.tier-card h3 {
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.14;
}

.tier-card h3:first-child {
    margin-top: 0;
}

.tier-subtitle {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.4;
}

.tier-price {
    margin-top: 16px;
    color: var(--navy);
    font-size: 30px;
    line-height: 1.05;
    font-weight: 900;
}

.tier-copy {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.62;
}

.tier-list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.tier-list li {
    position: relative;
    padding-left: 18px;
    color: #43536a;
    font-size: 14px;
    line-height: 1.45;
}

.tier-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .67em;
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.comparison-matrix {
    display: grid;
    grid-template-columns: minmax(220px, 1.12fr) repeat(4, minmax(104px, .7fr));
    border: 1px solid var(--line);
    background: #fff;
}

.matrix-head,
.matrix-plan,
.matrix-feature,
.matrix-cell {
    min-width: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 15px 16px;
}

.matrix-head,
.matrix-plan {
    background: #f8fafc;
    color: #263348;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.matrix-plan,
.matrix-cell {
    text-align: center;
}

.matrix-feature {
    color: #263348;
    font-size: 14px;
    font-weight: 780;
    line-height: 1.45;
}

.matrix-cell {
    color: #43536a;
    font-size: 13.5px;
    line-height: 1.45;
}

.matrix-head:nth-child(5n),
.matrix-plan:nth-child(5n),
.matrix-feature:nth-child(5n),
.matrix-cell:nth-child(5n) {
    border-right: 0;
}

.comparison-matrix > :nth-last-child(-n+5) {
    border-bottom: 0;
}

.check {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 16px;
    font-weight: 900;
}

.matrix-cell.subtle {
    color: #7a8798;
}

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 940px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 18px 22px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--accent-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--line);
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--accent-soft);
}

.faq-answer {
    padding: 18px 22px 22px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.faq-answer .plain-list {
    margin-top: 0;
}

.faq-answer .plain-list li {
    font-size: 14.5px;
}

.plan-match-list strong {
    color: var(--ink);
}

.service-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .78fr);
    gap: 28px;
    align-items: stretch;
}

.profile-list {
    display: grid;
    gap: 12px;
}

.profile-row {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 22px 24px;
}

.profile-row h3 {
    font-size: 22px;
    line-height: 1.18;
}

.profile-row p:not(.path-label) {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.profile-image,
.contact-detail-image {
    min-height: 100%;
}

.service-line-list {
    display: grid;
    gap: 14px;
}

.service-line {
    display: grid;
    grid-template-columns: minmax(260px, .66fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 26px;
}

.service-line-main {
    display: grid;
    gap: 14px;
}

.service-line-main h3 {
    font-size: 25px;
    line-height: 1.16;
}

.service-line-main p:not(.card-kicker) {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.service-line-main .btn {
    width: fit-content;
    margin-top: 4px;
}

.service-line-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-line-details div {
    border-left: 3px solid var(--accent);
    background: #f8fafc;
    padding: 12px 14px;
}

.service-line-details dt {
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 900;
    letter-spacing: .04em;
}

.service-line-details dd {
    margin-top: 6px;
    color: #43536a;
    font-size: 13.5px;
    line-height: 1.48;
}

.stage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
}

.stage-cell {
    min-height: 226px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.stage-cell:last-child {
    border-right: 0;
}

.stage-index {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    border: 1px solid var(--line-strong);
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.stage-cell h3 {
    font-size: 20px;
    line-height: 1.25;
}

.stage-cell p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.service-card-grid,
.benefit-card-grid,
.pricing-card-grid,
.stage-card-grid {
    display: grid;
    gap: 22px;
}

.service-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-tile {
    min-height: 178px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 22px;
}

.service-tile .card-kicker {
    letter-spacing: .08em;
}

.service-tile h3 {
    margin-top: 14px;
    font-size: 22px;
    line-height: 1.18;
}

.service-tile p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.55;
}

.path-list {
    display: grid;
    gap: 12px;
}

.path-row {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.15fr) minmax(240px, .8fr);
    gap: 24px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 24px;
}

.path-row h3 {
    font-size: 21px;
    line-height: 1.22;
}

.path-row p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.path-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-size: 13.5px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: none;
}

.path-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.path-tags li {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #f8fafc;
    padding: 7px 10px;
    color: #43536a;
    font-size: 12.5px;
    font-weight: 760;
    line-height: 1;
}

.pricing-list {
    display: grid;
    gap: 12px;
}

.pricing-item {
    display: grid;
    grid-template-columns: minmax(180px, .62fr) minmax(260px, .95fr) minmax(0, 1.25fr);
    gap: 24px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 22px 24px;
}

.pricing-amount {
    color: var(--accent-dark);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.pricing-item h3 {
    font-size: 21px;
    line-height: 1.24;
}

.pricing-item p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.58;
}

.pricing-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.pricing-scope li {
    border-left: 3px solid var(--accent);
    background: #f8fafc;
    padding: 8px 10px;
    color: #43536a;
    font-size: 13.5px;
    line-height: 1.35;
}

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

.benefit-focus-grid.three-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-primary,
.benefit-combined {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 28px;
}

.benefit-primary {
    min-height: 292px;
}

.benefit-primary.compact-benefit {
    min-height: 236px;
}

.benefit-primary h3,
.benefit-combined h3 {
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.12;
}

.benefit-primary h3:first-child {
    margin-top: 0;
}

.benefit-primary p,
.benefit-combined p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
}

.benefit-combined {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 18px;
    color: #43536a;
    font-size: 14.5px;
    line-height: 1.5;
}

.benefit-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 7px;
    height: 7px;
    background: var(--accent);
}

.eligibility-grid {
    align-items: center;
}

.logo-section.logo-section-tight {
    padding: 40px 0 34px;
}

.logo-section-tight .logo-marquee-wrap {
    margin-top: 22px;
}

.contact-hero-slim {
    padding: 48px 0 38px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .54fr);
    gap: 42px;
    align-items: center;
}

.direct-card {
    border: 1px solid var(--navy);
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    padding: 26px;
}

.direct-card h2 {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1.16;
}

.direct-card h2:first-child {
    margin-top: 0;
}

.direct-card .card-kicker {
    color: #b9dad6;
}

.direct-card p {
    margin-top: 10px;
    color: #d8e2ee;
    font-size: 14.5px;
    line-height: 1.6;
}

.direct-card a {
    display: inline-block;
    margin-top: 14px;
    color: #fff;
    font-size: 21px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.contact-layout.rebalanced {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
}

.contact-form-intro {
    margin-bottom: 24px;
}

.contact-form-intro h2 {
    margin-top: 8px;
    font-size: 26px;
    line-height: 1.16;
}

.contact-form-intro p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14.5px;
}

.service-card-grid,
.benefit-card-grid,
.pricing-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stage-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.planning-card,
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .08);
}

.content-card {
    min-height: 320px;
}

.content-card h3,
.planning-card h3,
.pricing-card h3 {
    margin-top: 24px;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: 0;
}

.content-card p:not(.card-kicker):not(.fine-print),
.planning-card p,
.pricing-card p:not(.card-kicker):not(.price-line) {
    margin-top: 16px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.card-kicker {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: none;
}

.card-bullets {
    display: grid;
    gap: 9px;
    margin-top: 22px;
    list-style: none;
}

.card-bullets.columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
}

.card-bullets li {
    position: relative;
    padding-left: 19px;
    color: #43536a;
    font-size: 14.5px;
    line-height: 1.5;
}

.card-bullets li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 7px;
    height: 7px;
    background: var(--accent);
}

.planning-card {
    min-height: 310px;
}

.planning-card span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid #bcd9d5;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
}

.pricing-card {
    min-height: 440px;
}

.pricing-card .card-kicker {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: var(--gold-soft);
    color: #76521e;
    padding: 8px 12px;
    letter-spacing: .08em;
}

.price-line {
    margin-top: 14px;
    color: var(--accent-dark);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 900;
}

.image-text-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: stretch;
}

.feature-card {
    min-height: auto;
}

.feature-card h2 {
    margin-top: 14px;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.08;
}

.feature-card h2:first-child {
    margin-top: 0;
}

.feature-card p:not(.card-kicker):not(.fine-print) {
    font-size: 17px;
}

.info-table,
.pricing-table,
.benefit-table {
    border: 1px solid var(--line);
    background: #fff;
}

.info-row,
.pricing-row,
.benefit-row {
    display: grid;
    border-bottom: 1px solid var(--line);
}

.info-row:last-child,
.pricing-row:last-child,
.benefit-row:last-child {
    border-bottom: 0;
}

.info-row {
    grid-template-columns: .56fr .98fr 1.32fr;
}

.pricing-row {
    grid-template-columns: .9fr 1.05fr 1.12fr .85fr;
}

.benefit-row {
    grid-template-columns: .72fr 1.42fr 1fr;
}

.info-row > div,
.pricing-row > div,
.benefit-row > div {
    padding: 18px 20px;
    border-right: 1px solid var(--line);
    color: #46556b;
    font-size: 14.5px;
    line-height: 1.6;
}

.info-row > div:last-child,
.pricing-row > div:last-child,
.benefit-row > div:last-child {
    border-right: 0;
}

.header-row,
.pricing-header {
    background: #f8fafc;
}

.header-row > div,
.pricing-header > div {
    color: #263348;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.info-row div:first-child,
.benefit-row div:first-child,
.pricing-row h3 {
    color: var(--ink);
    font-weight: 880;
}

.pricing-row strong {
    display: block;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.25;
}

.pricing-row span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.service-table {
    display: grid;
    gap: 14px;
}

.service-row {
    display: grid;
    grid-template-columns: .9fr 1.25fr .9fr;
    gap: 22px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 24px;
}

.service-row h3 {
    font-size: 20px;
    line-height: 1.25;
}

.service-row p {
    color: var(--muted);
    font-size: 14.5px;
}

.price-chip {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 7px 10px;
    background: var(--gold-soft);
    color: #76521e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.price-note {
    color: var(--muted);
    font-size: 13.5px;
}

.fine-print,
.small-note,
.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.fine-print {
    margin-top: 18px;
}

.two-column {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 50px;
    align-items: start;
}

.mission-block h2 {
    margin-top: 8px;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
    font-weight: 900;
}

.mission-block p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.process-list {
    border: 1px solid var(--line);
    background: #fff;
}

.process-list div {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.process-list div:last-child {
    border-bottom: 0;
}

.process-list span {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
}

.process-list strong {
    color: var(--ink);
    font-size: 17px;
}

.process-list p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14.5px;
}

.page-hero-grid {
    align-items: start;
}

.stage-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
}

.stage-mini-grid div {
    min-height: 150px;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stage-mini-grid div:nth-child(2n) {
    border-right: 0;
}

.stage-mini-grid div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.stage-mini-grid strong {
    display: block;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.28;
}

.stage-mini-grid p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.comparison-grid > div,
.definition-box,
.contact-card,
.aside-block,
.aside-note,
.contact-form,
.legal-content,
.panel,
.overview-card,
.mission-card,
.contact-info,
form {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 28px;
}

.comparison-grid h3,
.definition-box h2,
.contact-card h2,
.aside-block h2,
.aside-note h3 {
    font-size: 24px;
    line-height: 1.2;
}

.comparison-grid p,
.definition-box p,
.contact-card p,
.aside-note p,
.legal-content p,
.panel p,
.overview-card p,
.contact-info p {
    margin-top: 12px;
    color: var(--muted);
}

.plain-list {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    list-style: none;
}

.plain-list li {
    position: relative;
    padding-left: 18px;
    color: #46556b;
    font-size: 14.5px;
}

.plain-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .74em;
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.benefit-table {
    margin-top: 8px;
}

.definition-box,
.contact-card {
    padding: 28px;
}

.contact-card a {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent-dark);
    font-size: 20px;
    font-weight: 900;
}

.logo-section {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 58px 0 48px;
}

.logo-marquee-wrap {
    overflow: hidden;
    margin-top: 28px;
}

.logo-marquee {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: scroll 34s linear infinite;
}

.logo-marquee:hover {
    animation-play-state: paused;
}

.logo-card {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 210px;
    height: 94px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: #fff;
}

.logo-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-card img[src$="virtuoso.png"],
.logo-card img[src$="accor-step.png"] {
    width: 88%;
    height: 88%;
}

.logo-card img[src$="four-seasons-preferred-partner.png"] {
    width: 82%;
    height: 88%;
}

.logo-card img[src$="hilton-impresario.png"] {
    width: 77%;
    height: 77%;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.small-note {
    max-width: 930px;
    margin: 20px auto 0;
    text-align: center;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
}

.metric-grid div {
    min-height: 190px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.metric-grid div:last-child {
    border-right: 0;
}

.metric-grid strong {
    display: block;
    margin-top: 18px;
    font-size: 22px;
    line-height: 1.2;
}

.metric-grid p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 32px;
    align-items: start;
}

.contact-aside {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 112px;
}

.compact-contact-aside {
    align-self: start;
}

.contact-form {
    padding: 30px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

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

.form-field.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 7px;
    color: #263348;
    font-size: 13px;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #fff;
    color: #263348;
    font: inherit;
    font-size: 14px;
    padding: 12px 13px;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(8, 120, 111, .14);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.form-status {
    display: none;
    margin-top: 16px;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 760;
}

.form-status.pending,
.form-status.success,
.form-status.error {
    display: block;
}

.form-status.pending {
    background: #f8fafc;
    color: #43536a;
}

.form-status.success {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.form-status.error {
    background: #fff1f2;
    color: #9f1239;
}

button:disabled {
    cursor: wait;
    opacity: .72;
}

.legal-content {
    max-width: 940px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 28px;
    font-size: 23px;
    letter-spacing: 0;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.cta {
    padding: 0;
    background: var(--navy);
    color: #fff;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
}

.cta h2 {
    max-width: 760px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.cta p {
    max-width: 740px;
    margin-top: 10px;
    color: #d8e2ee;
    font-size: 16px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 48px;
    padding: 46px 0;
}

.footer-text {
    max-width: 500px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}

.footer-title {
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: 10px;
    color: #526176;
    font-size: 14px;
    font-weight: 680;
}

.copyright {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    color: var(--muted);
    text-align: center;
    font-size: 12px;
}

.powered-by {
    display: inline-block;
    margin-left: 10px;
    color: #7a8798;
}

@media (max-width: 1020px) {
    .nav-links,
    .nav .btn-outline,
    .nav .btn-secondary {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid,
    .page-hero-grid,
    .contact-hero-grid,
    .split-heading,
    .two-column,
    .contact-layout,
    .image-text-grid,
    .service-profile-layout,
    .service-line {
        grid-template-columns: 1fr;
    }

    .contact-aside {
        position: static;
    }

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

    .service-card-grid,
    .benefit-card-grid,
    .pricing-card-grid,
    .stage-card-grid,
    .service-tile-grid,
    .benefit-focus-grid,
    .benefit-focus-grid.three-benefit-grid,
    .benefit-mini-grid,
    .tier-grid,
    .value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .path-row,
    .pricing-item,
    .benefit-combined,
    .contact-layout.rebalanced {
        grid-template-columns: 1fr;
    }

    .stage-cell:nth-child(2n) {
        border-right: 0;
    }

    .stage-cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .pricing-row,
    .benefit-row,
    .info-row,
    .service-row {
        grid-template-columns: 1fr;
    }

    .pricing-row > div,
    .benefit-row > div,
    .info-row > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .pricing-row > div:last-child,
    .benefit-row > div:last-child,
    .info-row > div:last-child {
        border-bottom: 0;
    }

    .pricing-header,
    .header-row {
        display: none;
    }

    .tier-card {
        min-height: 430px;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 16px;
    }

    .nav {
        min-height: 78px;
    }

    .brand-logo {
        height: 56px;
    }

    .site-footer .brand-logo {
        height: 62px;
    }

    .hero,
    .page-hero,
    section {
        padding: 52px 0;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(32px, 8.8vw, 38px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .contact-hero-grid {
        gap: 24px;
    }

    .direct-card a {
        font-size: 18px;
    }

    .hero-actions,
    .form-actions,
    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .summary-grid,
    .stage-grid,
    .stage-mini-grid,
    .comparison-grid,
    .metric-grid,
    .service-card-grid,
    .benefit-card-grid,
    .pricing-card-grid,
    .stage-card-grid,
    .service-tile-grid,
    .value-grid,
    .benefit-mini-grid,
    .benefit-focus-grid,
    .benefit-focus-grid.three-benefit-grid,
    .benefit-list,
    .service-line-details,
    .tier-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .summary-grid div,
    .stage-mini-grid div,
    .metric-grid div,
    .stage-cell {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .summary-grid div:last-child,
    .stage-mini-grid div:last-child,
    .metric-grid div:last-child,
    .stage-cell:last-child {
        border-bottom: 0;
    }

    .summary-board-header {
        display: block;
    }

    .summary-board-header strong {
        display: block;
        margin-top: 8px;
        text-align: left;
    }

    .summary-board,
    .service-tile,
    .path-row,
    .pricing-item,
    .benefit-mini-card,
    .benefit-primary,
    .benefit-combined,
    .direct-card,
    .tier-card,
    .value-card,
    .profile-row,
    .service-line,
    .image-caption,
    .content-card,
    .planning-card,
    .pricing-card,
    .definition-box,
    .contact-card,
    .comparison-grid > div,
    .aside-block,
    .aside-note,
    .contact-form,
    .legal-content,
    .panel,
    .overview-card,
    .mission-card,
    .contact-info,
    form {
        padding: 22px;
    }

    .faq-list {
        max-width: none;
    }

    .faq-item summary {
        min-height: auto;
        padding: 18px 20px;
        font-size: 17px;
    }

    .faq-answer {
        padding: 16px 20px 20px;
    }

    .image-panel,
    .hero-image-panel,
    .page-image-panel,
    .contact-image-panel {
        min-height: 320px;
        border-radius: 22px;
    }

    .service-line-main .btn {
        width: 100%;
    }

    .comparison-matrix {
        display: none;
    }

    .tier-card {
        min-height: auto;
    }

    .image-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .card-bullets.columns {
        grid-template-columns: 1fr;
    }

    .hero-benefit-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
