:root {
    --ppm-navy: #071427;
    --ppm-navy-2: #0c2340;
    --ppm-blue: #1d4f8f;
    --ppm-gold: #c99a3d;
    --ppm-gold-2: #f1d48a;
    --ppm-ink: #111827;
    --ppm-muted: #667085;
    --ppm-bg: #f5f7fb;
    --ppm-surface: #ffffff;
    --ppm-surface-2: #eef3f8;
    --ppm-border: rgba(15, 23, 42, .1);
    --ppm-border-strong: rgba(15, 23, 42, .18);
    --ppm-shadow: 0 28px 80px rgba(7, 20, 39, .14);
    --ppm-shadow-soft: 0 18px 46px rgba(7, 20, 39, .1);
    --ppm-radius: 24px;
    --ppm-radius-lg: 32px;
    --ppm-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Noto Sans Thai", "Tahoma", sans-serif;
    color: var(--ppm-ink);
    background:
        linear-gradient(180deg, #f7f9fc 0%, #eef3f8 46%, #ffffff 100%);
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(201, 154, 61, .75);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, .74);
    border-bottom: 1px solid rgba(255, 255, 255, .48);
    box-shadow: 0 14px 34px rgba(7, 20, 39, .07);
    backdrop-filter: blur(20px);
    transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .92);
    border-bottom-color: var(--ppm-border);
    box-shadow: 0 18px 44px rgba(7, 20, 39, .1);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    max-width: min(500px, 42vw);
    margin-right: auto;
    text-decoration: none;
}

.brand-logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.brand-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    color: var(--ppm-ink);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.brand-subtitle {
    margin-top: 2px;
    color: var(--ppm-muted);
    font-size: .68rem;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #263244;
    font-size: .95rem;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    padding: 10px 12px;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover {
    color: var(--ppm-navy);
    background: rgba(12, 35, 64, .08);
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.portal-link,
.header-cta,
.btn-primary,
.btn-secondary,
.btn-card,
.footer-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.portal-link {
    color: var(--ppm-muted);
    padding: 10px 8px;
    font-size: .92rem;
}

.portal-link:hover {
    color: var(--ppm-navy);
}

.header-cta,
.btn-primary {
    color: #17120a;
    background: linear-gradient(135deg, var(--ppm-gold-2), var(--ppm-gold));
    box-shadow: 0 16px 36px rgba(201, 154, 61, .28);
}

.header-cta {
    padding: 11px 18px;
    white-space: nowrap;
}

.btn-primary,
.btn-secondary {
    min-height: 48px;
    padding: 12px 22px;
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
}

.btn-secondary.dark {
    color: var(--ppm-navy);
    border-color: rgba(7, 20, 39, .16);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 20, 39, .08);
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-card:hover,
.footer-portal:hover {
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: var(--ppm-navy);
    font-size: 1.35rem;
}

main {
    overflow: hidden;
}

.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(7, 20, 39, .98) 0%, rgba(9, 30, 58, .98) 47%, rgba(15, 47, 86, .94) 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 18px);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(201, 154, 61, .18), transparent 30%, rgba(255, 255, 255, .08) 64%, transparent 100%),
        url("/images/accounting-hero.svg") right center / auto 100% no-repeat;
    opacity: .34;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 88px;
    background: linear-gradient(176deg, transparent 0 48%, var(--ppm-bg) 49% 100%);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    z-index: 1;
    width: min(var(--ppm-max), calc(100% - 40px));
    margin: 0 auto;
    padding: 94px 0 112px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 46px;
    align-items: center;
}

.hero-badge,
.section-heading span,
.mini-heading span,
.card-kicker,
.seo-panel > span,
.contact-copy > span,
.leader-card span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--ppm-gold-2);
    font-size: .82rem;
    font-weight: 900;
}

.hero-badge {
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(12px);
}

.hero-copy h1 {
    max-width: 920px;
    margin: 18px 0 10px;
    font-size: 4.6rem;
    line-height: 1.06;
}

.hero-copy h2 {
    max-width: 780px;
    margin: 0 0 18px;
    color: #f7e4b3;
    font-size: 1.65rem;
    line-height: 1.42;
}

.hero-copy p {
    max-width: 760px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-bottom: 32px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 760px;
}

.hero-metrics div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--ppm-radius);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.hero-metrics strong {
    display: block;
    color: #fff;
    font-size: 1.42rem;
    line-height: 1.25;
}

.hero-metrics span {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-glass-card {
    position: absolute;
    top: 58px;
    right: 24px;
    width: min(420px, 100%);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: var(--ppm-radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .12)),
        rgba(255, 255, 255, .14);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .26);
    backdrop-filter: blur(24px);
}

.insight-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.insight-card-top span {
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
}

.insight-card-top strong {
    color: #fff;
}

.insight-score {
    padding-top: 24px;
}

.insight-score span {
    color: var(--ppm-gold-2);
    font-weight: 800;
}

.insight-score strong {
    display: block;
    margin: 6px 0 12px;
    color: #fff;
    font-size: 2rem;
    line-height: 1.22;
}

.insight-score p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 290px;
    padding: 14px 16px;
    color: var(--ppm-navy);
    border: 1px solid rgba(255, 255, 255, .66);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
    font-weight: 800;
    animation: float-soft 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--ppm-gold);
    font-size: 1.15rem;
}

.floating-card-one {
    top: 8px;
    left: 4px;
}

.floating-card-two {
    top: 224px;
    left: 0;
    animation-delay: .8s;
}

.floating-card-three {
    right: 0;
    bottom: 86px;
    animation-delay: 1.4s;
}

.floating-card-four {
    left: 42px;
    bottom: 18px;
    animation-delay: 2s;
}

.section {
    position: relative;
    padding: 94px clamp(18px, 5vw, 82px);
}

.section-heading {
    width: min(860px, 100%);
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.left-heading {
    margin-left: 0;
    text-align: left;
}

.split-heading {
    width: min(var(--ppm-max), 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 32px;
    align-items: end;
    text-align: left;
}

.section-heading h2,
.contact-copy h2,
.seo-panel h2 {
    margin: 10px 0 12px;
    color: var(--ppm-navy);
    font-size: 2.72rem;
    line-height: 1.18;
}

.section-heading p,
.contact-copy p {
    margin: 0;
    color: var(--ppm-muted);
    font-size: 1.04rem;
}

.intro-section {
    background: var(--ppm-bg);
}

.pain-section {
    background: linear-gradient(180deg, var(--ppm-bg) 0%, var(--ppm-surface) 100%);
}

.section-eyebrow {
    color: var(--ppm-gold);
}

.pain-grid {
    width: min(var(--ppm-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.pain-card {
    border: 1px solid var(--ppm-border);
    border-radius: var(--ppm-radius);
    background: var(--ppm-surface);
    padding: 28px;
    box-shadow: var(--ppm-shadow-soft);
}

.solution-card {
    border-color: rgba(201, 154, 61, .32);
}

.pain-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pain-card-heading i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--ppm-gold);
    background: var(--ppm-surface-2);
    font-size: 1.25rem;
    flex: 0 0 auto;
}

.pain-card h3 {
    margin: 0;
    color: var(--ppm-navy);
    font-size: 1.22rem;
    line-height: 1.35;
}

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

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ppm-muted);
    line-height: 1.65;
}

.pain-list i {
    margin-top: 5px;
    color: var(--ppm-gold);
    flex: 0 0 auto;
}

.value-grid,
.service-grid,
.pricing-cards,
.pricing-summary-grid,
.pricing-layout,
.one-time-grid,
.trust-grid {
    width: min(var(--ppm-max), 100%);
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

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

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

.pricing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
    align-items: stretch;
}

.pricing-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    margin-top: 26px;
    align-items: stretch;
}

.one-time-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.value-card,
.service-card,
.pricing-card,
.pricing-table-card,
.benefit-card,
.one-time-card,
.trust-card,
.leader-card,
.contact-card,
.map-card,
.seo-panel {
    border: 1px solid var(--ppm-border);
    border-radius: var(--ppm-radius);
    background: var(--ppm-surface);
    box-shadow: var(--ppm-shadow-soft);
}

.lift-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.lift-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 154, 61, .42);
    box-shadow: var(--ppm-shadow);
}

.value-card,
.service-card,
.one-time-card,
.trust-card {
    padding: 26px;
}

.value-icon,
.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--ppm-gold);
    background: linear-gradient(135deg, #fff7e5, #f3ead5);
    font-size: 1.48rem;
}

.value-card h3,
.service-card h3,
.pricing-card h3,
.pricing-table-card h3,
.benefit-card h3,
.one-time-card h3,
.trust-card h3 {
    margin: 0 0 8px;
    color: var(--ppm-navy);
    font-size: 1.18rem;
    line-height: 1.38;
}

.value-card p,
.service-card p,
.one-time-card p,
.trust-card p {
    margin: 0;
    color: var(--ppm-muted);
}

.services-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%),
        repeating-linear-gradient(90deg, rgba(7, 20, 39, .04) 0 1px, transparent 1px 38px);
}

.card-kicker {
    margin-bottom: 6px;
    color: var(--ppm-gold);
}

.service-card ul,
.pricing-card ul,
.benefit-card ul {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.service-card li {
    position: relative;
    padding-left: 20px;
    color: #344054;
    font-size: .95rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ppm-gold);
    font-weight: 900;
}

.pricing-section {
    background:
        radial-gradient(circle at 16% 12%, rgba(201, 154, 61, .14), transparent 30%),
        radial-gradient(circle at 86% 0%, rgba(29, 79, 143, .12), transparent 34%),
        linear-gradient(180deg, #f6f8fb 0%, #ffffff 78%);
}

.pricing-heading {
    max-width: 850px;
}

.pricing-detail-card {
    position: relative;
    width: min(1100px, 100%);
    margin: 0 auto 34px;
    padding: clamp(24px, 4vw, 36px);
    overflow: hidden;
    border: 1px solid rgba(201, 154, 61, .3);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(246, 248, 251, .86)),
        radial-gradient(circle at 10% 0%, rgba(201, 154, 61, .14), transparent 36%),
        radial-gradient(circle at 94% 8%, rgba(29, 79, 143, .12), transparent 34%);
    box-shadow: 0 28px 72px rgba(7, 20, 39, .11);
    backdrop-filter: blur(18px);
}

.pricing-detail-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    pointer-events: none;
}

.pricing-detail-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.pricing-detail-content span {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    color: var(--ppm-gold);
    border: 1px solid rgba(201, 154, 61, .28);
    border-radius: 999px;
    background: rgba(201, 154, 61, .1);
    font-size: .82rem;
    font-weight: 900;
}

.pricing-detail-content h3 {
    margin: 14px 0 12px;
    color: var(--ppm-navy);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.25;
}

.pricing-detail-content p {
    margin: 0;
    color: #344054;
    font-size: 1.04rem;
    line-height: 1.85;
}

.pricing-detail-content p + p {
    margin-top: 12px;
}

.pricing-detail-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.pricing-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 100%;
    padding: 15px 16px;
    color: var(--ppm-navy);
    border: 1px solid rgba(7, 20, 39, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 14px 34px rgba(7, 20, 39, .055);
    font-weight: 800;
    line-height: 1.55;
}

.pricing-detail-item i {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--ppm-gold);
    font-size: 1.08rem;
}

.pricing-summary-card {
    position: relative;
    min-height: 100%;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(7, 20, 39, .08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86)),
        radial-gradient(circle at top right, rgba(201, 154, 61, .16), transparent 42%);
    box-shadow: 0 22px 54px rgba(7, 20, 39, .09);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pricing-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 154, 61, .32);
    box-shadow: 0 30px 70px rgba(7, 20, 39, .13);
}

.pricing-summary-card.is-highlighted {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    background:
        radial-gradient(circle at 86% 10%, rgba(201, 154, 61, .38), transparent 34%),
        linear-gradient(135deg, var(--ppm-navy), #123a68 64%, #1d4f8f);
}

.pricing-summary-card span {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    color: var(--ppm-gold);
    border: 1px solid rgba(201, 154, 61, .24);
    border-radius: 999px;
    background: rgba(201, 154, 61, .1);
    font-size: .82rem;
    font-weight: 900;
}

.pricing-summary-card.is-highlighted span {
    color: #17120a;
    border-color: transparent;
    background: linear-gradient(135deg, var(--ppm-gold-2), var(--ppm-gold));
}

.pricing-summary-card strong {
    display: block;
    margin-top: 18px;
    color: var(--ppm-navy);
    font-size: 1.75rem;
    line-height: 1.2;
}

.pricing-summary-card.is-highlighted strong {
    color: #fff;
}

.pricing-summary-card p {
    margin: 12px 0 0;
    color: var(--ppm-muted);
    line-height: 1.75;
}

.pricing-summary-card.is-highlighted p {
    color: rgba(255, 255, 255, .84);
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 154, 61, .6), rgba(29, 79, 143, .16), rgba(255, 255, 255, .2));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-card.is-featured {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--ppm-navy), #123761 72%, #174a84);
    box-shadow: 0 34px 86px rgba(7, 20, 39, .24);
    transform: translateY(-12px);
}

.pricing-card.is-featured h3,
.pricing-card.is-featured .pricing-price,
.pricing-card.is-featured .pricing-card-head p,
.pricing-card.is-featured .pricing-description,
.pricing-card.is-featured li {
    color: #fff;
}

.pricing-card-head span {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    margin-bottom: 16px;
    color: #17120a;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ppm-gold-2), var(--ppm-gold));
    font-size: .82rem;
    font-weight: 900;
}

.pricing-card-head p {
    margin: 0;
    color: var(--ppm-muted);
}

.pricing-price {
    display: block;
    margin: 22px 0 10px;
    color: var(--ppm-navy);
    font-size: 1.75rem;
    line-height: 1.24;
}

.pricing-description {
    margin: 0;
    color: var(--ppm-muted);
}

.pricing-card li,
.benefit-card li {
    display: flex;
    gap: 10px;
    color: #344054;
}

.pricing-card i,
.benefit-card i,
.trust-card i {
    color: var(--ppm-gold);
    flex: 0 0 auto;
    margin-top: 5px;
}

.btn-card {
    margin-top: auto;
    padding: 12px 18px;
    color: var(--ppm-navy);
    background: #fff;
    border: 1px solid rgba(7, 20, 39, .13);
    box-shadow: 0 12px 28px rgba(7, 20, 39, .08);
}

.pricing-card.is-featured .btn-card {
    color: #17120a;
    border-color: transparent;
    background: linear-gradient(135deg, var(--ppm-gold-2), var(--ppm-gold));
}

.pricing-table-card,
.benefit-card {
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .92));
    box-shadow: 0 26px 70px rgba(7, 20, 39, .1);
}

.mini-heading {
    margin-bottom: 18px;
}

.mini-heading span {
    color: var(--ppm-gold);
}

.responsive-table {
    overflow-x: auto;
}

.pricing-table {
    border: 1px solid rgba(7, 20, 39, .08);
    border-radius: 24px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.pricing-table th,
.pricing-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(7, 20, 39, .07);
}

.pricing-table th {
    color: #fff;
    background: linear-gradient(135deg, var(--ppm-navy), #123a68);
    font-weight: 800;
}

.pricing-table th:first-child {
    border-top-left-radius: 22px;
}

.pricing-table th:last-child {
    border-top-right-radius: 22px;
}

.pricing-table td:first-child {
    color: #344054;
    font-weight: 700;
}

.pricing-table td:last-child {
    text-align: right;
}

.pricing-table td:last-child strong {
    color: var(--ppm-navy);
    font-weight: 900;
}

.pricing-table tbody tr {
    transition: background .18s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(29, 79, 143, .045);
}

.pricing-table tr:last-child td {
    border-bottom: 0;
}

.pricing-custom-row {
    background:
        linear-gradient(90deg, rgba(201, 154, 61, .12), rgba(29, 79, 143, .06));
}

.pricing-custom-row td:first-child {
    color: var(--ppm-navy);
}

.custom-badge {
    display: inline-flex;
    margin-right: 10px;
    padding: 5px 9px;
    color: #17120a;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ppm-gold-2), var(--ppm-gold));
    font-size: .72rem;
    font-weight: 900;
    vertical-align: middle;
}

.pricing-note {
    width: min(var(--ppm-max), 100%);
    margin: 18px auto 0;
    padding: 16px 18px;
    color: #475467;
    border: 1px solid rgba(201, 154, 61, .22);
    border-radius: 18px;
    background: rgba(255, 248, 232, .72);
    box-shadow: 0 14px 34px rgba(7, 20, 39, .05);
    font-size: .94rem;
    line-height: 1.75;
}

.pricing-note strong {
    color: #b42318;
}

.benefit-card li {
    align-items: flex-start;
}

.benefit-card {
    display: flex;
    flex-direction: column;
}

.benefit-list {
    gap: 12px;
    margin-top: 18px;
}

.benefit-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(7, 20, 39, .07);
    line-height: 1.65;
}

.benefit-list li:last-child {
    border-bottom: 0;
}

.pricing-cta-card {
    margin-top: auto;
    padding: 22px;
    border: 1px solid rgba(201, 154, 61, .24);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(201, 154, 61, .18), transparent 44%),
        linear-gradient(135deg, rgba(7, 20, 39, .96), #123a68);
    box-shadow: 0 22px 48px rgba(7, 20, 39, .16);
}

.pricing-cta-card h3 {
    color: #fff;
    font-size: 1.22rem;
}

.pricing-cta-card p {
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
}

.pricing-cta-card .btn-card {
    width: fit-content;
    margin-top: 0;
    color: #17120a;
    border-color: transparent;
    background: linear-gradient(135deg, var(--ppm-gold-2), var(--ppm-gold));
    box-shadow: 0 16px 34px rgba(201, 154, 61, .24);
}

.one-time-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--ppm-gold);
    font-size: 1.55rem;
    font-weight: 900;
}

.one-time-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--ppm-blue);
    font-weight: 900;
}

.trust-section {
    background:
        linear-gradient(180deg, #071427 0%, #0b203c 100%);
    color: #fff;
}

.trust-shell {
    width: min(var(--ppm-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 38px;
    align-items: start;
}

.trust-section .section-heading h2,
.trust-section .section-heading p {
    color: #fff;
}

.trust-section .section-heading p {
    color: rgba(255, 255, 255, .76);
}

.trust-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
    color: #fff;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
    backdrop-filter: blur(16px);
}

.trust-card h3 {
    color: #fff;
}

.trust-card p {
    color: rgba(255, 255, 255, .72);
}

.seo-section {
    background: #fff;
}

.seo-panel {
    width: min(var(--ppm-max), 100%);
    margin: 0 auto;
    padding: 46px;
    color: #fff;
    border-color: rgba(255, 255, 255, .16);
    background:
        linear-gradient(135deg, rgba(201, 154, 61, .22), rgba(255, 255, 255, .06)),
        linear-gradient(135deg, var(--ppm-navy), #12345d);
    box-shadow: var(--ppm-shadow);
}

.seo-panel h2 {
    color: #fff;
}

.seo-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.seo-tags span {
    padding: 8px 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .11);
    font-size: .92rem;
}

.leadership-section {
    background: var(--ppm-bg);
}

.leader-card {
    width: min(960px, 100%);
    margin: 0 auto;
    padding: 34px;
    display: grid;
    grid-template-columns: 144px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.leader-avatar {
    width: 144px;
    height: 144px;
    border: 6px solid rgba(7, 20, 39, .62);
    border-radius: 50%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: var(--ppm-surface);
    box-shadow: 0 22px 48px rgba(7, 20, 39, .22);
}

.leader-card h2 {
    margin: 8px 0 4px;
    color: var(--ppm-navy);
    font-size: 2rem;
    line-height: 1.24;
}

.leader-card p {
    margin: 6px 0 0;
    color: var(--ppm-muted);
}

.leader-position {
    color: var(--ppm-blue) !important;
    font-weight: 800;
}

.contact-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
}

.contact-shell {
    width: min(var(--ppm-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: stretch;
}

.contact-copy {
    padding: 46px;
    color: #fff;
    border-radius: var(--ppm-radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, var(--ppm-navy), #0f335c);
    box-shadow: var(--ppm-shadow);
}

.contact-copy h2 {
    color: #fff;
}

.contact-copy p {
    color: rgba(255, 255, 255, .78);
}

.contact-actions {
    margin-top: 28px;
}

.contact-card {
    padding: 28px;
    display: grid;
    gap: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ppm-border);
}

.contact-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-item i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--ppm-gold);
    background: linear-gradient(135deg, #fff7e5, #f3ead5);
    font-size: 1.35rem;
}

.contact-item h3 {
    margin: 0 0 4px;
    color: var(--ppm-navy);
    font-size: 1.05rem;
}

.contact-item p {
    margin: 0;
    color: var(--ppm-muted);
}

.line-qr-wrap {
    display: inline-grid;
    margin-top: 12px;
    padding: 10px;
    border: 1px solid var(--ppm-border);
    border-radius: 18px;
    background: var(--ppm-surface);
}

.line-qr-img {
    display: block;
    width: min(180px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 12px;
}

.map-card {
    width: min(var(--ppm-max), 100%);
    min-height: 420px;
    margin: 28px auto 0;
    overflow: hidden;
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.site-footer {
    padding: 58px clamp(18px, 5vw, 82px) 28px;
    color: #fff;
    background:
        linear-gradient(180deg, #081527, #050d19);
}

.footer-grid {
    width: min(var(--ppm-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 10px;
}

.site-footer p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .72);
}

.footer-portal {
    width: fit-content;
    margin-top: 12px;
    padding: 10px 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
}

.copyright {
    width: min(var(--ppm-max), 100%);
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62);
    text-align: center;
}

.not-found-section {
    min-height: 60vh;
    display: grid;
    place-items: center;
    padding: 80px 24px;
    text-align: center;
}

.not-found-section h1 {
    margin: 0 0 8px;
    color: var(--ppm-navy);
    font-size: 2.6rem;
}

@keyframes float-soft {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.reveal-up {
    animation: reveal-up .7s ease both;
}

.delay-1 {
    animation-delay: .14s;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 12px 18px;
    }

    .mobile-menu-button {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 16px;
        border: 1px solid var(--ppm-border);
        border-radius: var(--ppm-radius);
        background: rgba(255, 255, 255, .96);
        box-shadow: var(--ppm-shadow);
        backdrop-filter: blur(18px);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .portal-link {
        display: none;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        padding: 82px 0 96px;
    }

    .hero-copy h1 {
        font-size: 3.6rem;
    }

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

    .hero-glass-card {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .split-heading,
    .pricing-layout,
    .trust-shell,
    .contact-shell {
        grid-template-columns: 1fr;
    }

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

    .pricing-cards,
    .pricing-summary-grid,
    .one-time-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.is-featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .brand {
        min-width: 0;
        max-width: calc(100vw - 120px);
    }

    .brand-logo-img {
        width: 44px;
        height: 44px;
    }

    .brand-name {
        font-size: .78rem;
        line-height: 1.25;
    }

    .brand-subtitle {
        font-size: .64rem;
    }

    .header-cta {
        display: none;
    }

    .pricing-layout {
        grid-template-columns: 1fr;
    }

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

    .pain-section {
        padding: 56px 18px;
    }

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

    .pain-card {
        padding: 22px;
        border-radius: 20px;
    }

    .pricing-summary-card strong {
        font-size: 1.55rem;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: 2.75rem;
    }

    .hero-copy h2 {
        font-size: 1.35rem;
    }

    .hero-metrics,
    .value-grid,
    .service-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .hero-glass-card,
    .floating-card {
        position: static;
        width: 100%;
        max-width: none;
        transform: none;
        animation: none;
    }

    .hero-glass-card {
        padding: 24px;
    }

    .floating-card {
        justify-content: flex-start;
    }

    .section {
        padding: 76px 18px;
    }

    .section-heading h2,
    .contact-copy h2,
    .seo-panel h2 {
        font-size: 2.08rem;
    }

    .contact-copy,
    .seo-panel {
        padding: 30px;
    }

    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-avatar {
        margin: 0 auto;
    }

    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .site-header {
        gap: 10px;
        padding: 10px 14px;
    }

    .brand {
        gap: 10px;
        max-width: calc(100vw - 80px);
    }

    .brand-logo-img {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: .74rem;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .main-nav {
        top: 68px;
        left: 12px;
        right: 12px;
    }

    .hero-shell {
        width: min(100% - 28px, var(--ppm-max));
        padding: 62px 0 84px;
    }

    .hero-copy h1 {
        font-size: 2.28rem;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary,
    .btn-card {
        width: 100%;
    }

    .value-card,
    .service-card,
    .pricing-card,
    .pricing-detail-card,
    .pricing-summary-card,
    .pricing-table-card,
    .benefit-card,
    .one-time-card,
    .trust-card,
    .contact-card,
    .leader-card {
        padding: 22px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 14px;
        font-size: .92rem;
    }

    .pricing-table td:last-child {
        min-width: 150px;
    }

    .pricing-cta-card {
        padding: 18px;
    }

    .pricing-cta-card .btn-card {
        width: 100%;
    }

    .contact-item {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
    }

    .contact-item i {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    th,
    td {
        padding: 12px;
        white-space: nowrap;
    }

    .map-card,
    .map-card iframe {
        min-height: 340px;
    }

    .not-found-section h1 {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
