body.projective-landing-page {
    --projective-lp-bg-warm: #F8F7F2;
    --projective-lp-surface: #FFFFFF;
    --projective-lp-brand-teal: #006D77;
    --projective-lp-brand-teal-dark: #004952;
    --projective-lp-brand-navy: #12324A;
    --projective-lp-accent-gold: #E9C46A;
    --projective-lp-text: #1F2937;
    --projective-lp-text-secondary: #666666;
    --projective-lp-border: #CCCCCC;
    --projective-lp-on-dark: #EDF6F5;
    --projective-lp-space-1: 8px;
    --projective-lp-space-2: 12px;
    --projective-lp-space-3: 16px;
    --projective-lp-space-4: 24px;
    --projective-lp-space-5: 32px;
    --projective-lp-space-6: 48px;
    --projective-lp-space-7: 64px;
    --projective-lp-space-8: 80px;
    --projective-lp-space-9: 96px;
    --projective-lp-container-max: 1140px;
    --projective-lp-container-narrow: 760px;
    --projective-lp-shadow-soft: 0 18px 45px rgba(31, 41, 55, 0.08);
    --projective-lp-transition: 0.24s ease;
    --projective-lp-page-accent: rgba(233, 196, 106, 0.22);
    background: var(--projective-lp-bg-warm);
    color: var(--projective-lp-text);
    font-family: 'Work Sans', sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.projective-landing-page *,
body.projective-landing-page *::before,
body.projective-landing-page *::after {
    box-sizing: border-box;
}

body.projective-landing-page img {
    display: block;
    height: auto;
    max-width: 100%;
}

body.projective-landing-page a {
    color: inherit;
}

body.projective-landing-page main {
    display: block;
}

body.projective-landing-page p,
body.projective-landing-page ul,
body.projective-landing-page ol {
    margin: 0;
}

body.projective-landing-page code {
    padding: 0.12rem 0.35rem;
    background: rgba(31, 41, 55, 0.08);
    color: var(--projective-lp-brand-teal-dark);
    font-size: 0.92em;
}

.projective-lp-container {
    width: min(calc(100% - 32px), var(--projective-lp-container-max));
    margin-inline: auto;
}

.projective-lp-container--narrow {
    max-width: var(--projective-lp-container-narrow);
}

.projective-lp-main {
    overflow: visible;
}

.projective-lp-section {
    padding: var(--projective-lp-space-9) 0;
}

.projective-lp-section--hero {
    padding-top: 72px;
}

.projective-lp-section--warm {
    background: var(--projective-lp-bg-warm);
}

.projective-lp-section--white {
    background: var(--projective-lp-surface);
}

.projective-lp-section--dark {
    background: var(--projective-lp-brand-teal);
    color: var(--projective-lp-on-dark);
}

.projective-lp-section--dark code {
    background: rgba(255, 255, 255, 0.12);
    color: var(--projective-lp-on-dark);
}

.projective-lp-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #FAF7F1;
    border-bottom: 1px solid rgba(110, 128, 155, 0.14);
}

.projective-lp-header__inner {
    position: relative;
    width: min(calc(100% - 48px), 1216px);
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto auto;
    grid-template-areas: 'brand utility . phone cta';
    align-items: center;
    column-gap: 24px;
    row-gap: 16px;
    padding: 18px 0;
}

.projective-lp-header__brand {
    grid-area: brand;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.projective-lp-header__logo-image {
    display: block;
    width: clamp(174px, 14vw, 220px);
    height: auto;
}

.projective-lp-header__utility,
.projective-lp-card__kicker,
.projective-lp-eyebrow,
.projective-lp-button {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.projective-lp-header__utility {
    grid-area: utility;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    margin-left: 4px;
    padding-left: 20px;
    border-left: 1px solid rgba(110, 128, 155, 0.24);
}

.projective-lp-header__utility-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    color: #7887A0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

.projective-lp-header__utility-text--mobile,
.projective-lp-header__phone-number--mobile {
    display: none;
}

.projective-lp-header__phone {
    grid-area: phone;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--projective-lp-brand-teal);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.projective-lp-header__phone:hover,
.projective-lp-header__phone:focus-visible {
    color: var(--projective-lp-brand-teal-dark);
}

.projective-lp-header__phone-icon {
    width: 18px;
    height: 18px;
    flex: none;
    color: currentColor;
}

.projective-lp-header__phone-number {
    font-variant-numeric: tabular-nums;
}

.projective-lp-button--header {
    min-height: 46px;
    padding-inline: 24px;
    font-size: 11px;
    letter-spacing: 0.13em;
    box-shadow: none;
}

body.projective-landing-page .projective-lp-header__consultation {
    grid-area: cta;
    justify-self: end;
    white-space: nowrap;
    background: var(--projective-lp-brand-teal);
    border-color: var(--projective-lp-brand-teal);
    color: #FFFFFF;
}

body.projective-landing-page .projective-lp-header__consultation-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    color: inherit;
}

.projective-lp-header__consultation:hover,
.projective-lp-header__consultation:focus-visible {
    background: var(--projective-lp-brand-teal-dark);
    border-color: var(--projective-lp-brand-teal-dark);
}

.projective-lp-page-intro {
}

.projective-lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--projective-lp-brand-teal);
    margin-bottom: var(--projective-lp-space-3);
}

.projective-lp-eyebrow::before {
    content: '';
    width: 46px;
    height: 2px;
    background: currentColor;
}

.projective-lp-title,
.projective-lp-heading,
.projective-lp-subheading {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
}

.projective-lp-title {
    font-size: clamp(2.75rem, 6vw, 3.75rem);
    line-height: 1.05;
}

.projective-lp-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.12;
}

.projective-lp-subheading {
    font-size: clamp(1.35rem, 2vw, 1.5rem);
    line-height: 1.25;
}

.projective-lp-page-intro__highlight {
    color: var(--projective-lp-brand-teal);
    box-shadow: inset 0 -0.28em 0 var(--projective-lp-page-accent);
}

.projective-lp-lead {
    margin-top: var(--projective-lp-space-4);
    color: var(--projective-lp-text-secondary);
    font-size: 16px;
    line-height: 1.85;
}

.projective-lp-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--projective-lp-space-3);
    margin-top: var(--projective-lp-space-5);
}

.projective-lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--projective-lp-brand-teal);
    background: var(--projective-lp-brand-teal);
    color: #FFFFFF;
    text-decoration: none;
    transition: transform var(--projective-lp-transition), background-color var(--projective-lp-transition), color var(--projective-lp-transition), border-color var(--projective-lp-transition);
}

.projective-lp-button:hover,
.projective-lp-button:focus-visible {
    background: var(--projective-lp-brand-teal-dark);
    border-color: var(--projective-lp-brand-teal-dark);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.projective-lp-button.is-secondary {
    background: transparent;
    color: var(--projective-lp-brand-teal);
    border-color: rgba(0, 109, 119, 0.24);
}

.projective-lp-button.is-secondary:hover,
.projective-lp-button.is-secondary:focus-visible {
    background: rgba(0, 109, 119, 0.08);
    color: var(--projective-lp-brand-teal-dark);
    border-color: rgba(0, 73, 82, 0.28);
}

.projective-lp-card {
    padding: clamp(24px, 3vw, 32px);
    background: var(--projective-lp-surface);
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: var(--projective-lp-shadow-soft);
}

.projective-lp-card > * + * {
    margin-top: var(--projective-lp-space-3);
}

.projective-lp-card__kicker {
    display: inline-flex;
    color: var(--projective-lp-brand-teal);
}

.projective-lp-placeholder-card,
.projective-lp-stage-card,
.projective-lp-success__card,
.projective-lp-form-card,
body.projective-landing-page .wpforms-container {
    border-top: 4px solid var(--projective-lp-accent-gold);
}

.projective-lp-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--projective-lp-space-4);
}

.projective-lp-stage-list {
    display: grid;
    gap: var(--projective-lp-space-3);
    list-style: none;
    padding: 0;
    margin-top: var(--projective-lp-space-4);
    counter-reset: projective-lp-stage;
}

.projective-lp-stage-list li {
    position: relative;
    min-height: 30px;
    padding-left: 44px;
    counter-increment: projective-lp-stage;
}

.projective-lp-stage-list li::before {
    content: counter(projective-lp-stage, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--projective-lp-accent-gold);
}

.projective-lp-section--dark .projective-lp-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    color: var(--projective-lp-on-dark);
}

.projective-lp-section--dark .projective-lp-card__kicker,
.projective-lp-section--dark .projective-lp-stage-list li::before {
    color: var(--projective-lp-accent-gold);
}

.projective-lp-section--dark .projective-lp-button.is-secondary {
    color: var(--projective-lp-on-dark);
    border-color: rgba(255, 255, 255, 0.24);
}

.projective-lp-section--dark .projective-lp-button.is-secondary:hover,
.projective-lp-section--dark .projective-lp-button.is-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--projective-lp-on-dark);
}

.projective-lp-form-card,
body.projective-landing-page .wpforms-container {
    background: var(--projective-lp-surface);
    padding: clamp(24px, 3vw, 32px);
    box-shadow: var(--projective-lp-shadow-soft);
}

.projective-lp-form-grid,
body.projective-landing-page .wpforms-container .wpforms-form {
    display: grid;
    gap: var(--projective-lp-space-3);
}

body.projective-landing-page .wpforms-container .wpforms-field,
.projective-lp-field {
    margin: 0 !important;
}

body.projective-landing-page .wpforms-field-label,
.projective-lp-field label {
    display: block;
    margin-bottom: var(--projective-lp-space-1);
    color: var(--projective-lp-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.projective-lp-field :is(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], select, textarea),
body.projective-landing-page .wpforms-container :is(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], select, textarea) {
    width: 100% !important;
    min-height: 52px;
    padding: 14px 16px !important;
    border: 1px solid rgba(31, 41, 55, 0.18);
    background: #FFFFFF;
    color: var(--projective-lp-text);
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 0;
    box-shadow: none;
}

.projective-lp-field textarea,
body.projective-landing-page .wpforms-container textarea {
    min-height: 140px;
    resize: vertical;
}

.projective-lp-field :is(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], select, textarea):focus,
body.projective-landing-page .wpforms-container :is(input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], select, textarea):focus {
    outline: none;
    border-color: var(--projective-lp-brand-teal);
}

.projective-lp-form-card button[type="submit"],
body.projective-landing-page .wpforms-container .wpforms-submit-container button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px !important;
    border: 1px solid var(--projective-lp-brand-teal) !important;
    background: var(--projective-lp-brand-teal) !important;
    color: #FFFFFF !important;
    font-family: 'Work Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    transition: background-color var(--projective-lp-transition), border-color var(--projective-lp-transition), transform var(--projective-lp-transition);
}

.projective-lp-form-card button[type="submit"]:hover,
.projective-lp-form-card button[type="submit"]:focus-visible,
body.projective-landing-page .wpforms-container .wpforms-submit-container button:hover,
body.projective-landing-page .wpforms-container .wpforms-submit-container button:focus-visible {
    background: var(--projective-lp-brand-teal-dark) !important;
    border-color: var(--projective-lp-brand-teal-dark) !important;
    transform: translateY(-1px);
}

.projective-lp-faq {
    display: grid;
    gap: var(--projective-lp-space-3);
}

.projective-lp-faq-item {
    padding: 0 var(--projective-lp-space-4);
    background: var(--projective-lp-surface);
    border-top: 1px solid rgba(31, 41, 55, 0.12);
    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
}

.projective-lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--projective-lp-space-3);
    width: 100%;
    padding: var(--projective-lp-space-4) 0;
    border: 0;
    background: transparent;
    color: var(--projective-lp-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.projective-lp-faq-answer {
    padding-bottom: var(--projective-lp-space-4);
    color: var(--projective-lp-text-secondary);
}

.projective-lp-section--dark .projective-lp-faq-item {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.16);
}

.projective-lp-section--dark .projective-lp-faq-question,
.projective-lp-section--dark .projective-lp-faq-answer {
    color: var(--projective-lp-on-dark);
}

.projective-lp-rich-text {
    margin-top: var(--projective-lp-space-4);
}

.projective-lp-rich-text > * + * {
    margin-top: var(--projective-lp-space-3);
}

.projective-lp-rich-text ul,
.projective-lp-rich-text ol {
    padding-left: 1.25rem;
}

@media (max-width: 1024px) {
    .projective-lp-section {
        padding: var(--projective-lp-space-8) 0;
    }

    .projective-lp-section--hero {
        padding-top: var(--projective-lp-space-7);
    }

    .projective-lp-header__inner {
        width: min(calc(100% - 32px), 100%);
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        grid-template-areas: 'brand utility phone cta';
        column-gap: 18px;
    }

    .projective-lp-header__logo-image {
        width: clamp(162px, 18vw, 196px);
    }

    .projective-lp-header__utility {
        margin-left: 0;
        padding-left: 16px;
    }

    .projective-lp-header__utility-text {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

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

@media (max-width: 767px) {
    .projective-lp-container {
        width: min(calc(100% - 40px), var(--projective-lp-container-max));
    }

    .projective-lp-header {
        position: static;
        background: transparent;
        border-bottom: 0;
    }

    .projective-lp-header__inner {
        width: 100%;
        max-width: none;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            'utility phone'
            'brand cta';
        grid-template-rows: 32px auto;
        align-items: center;
        column-gap: 24px;
        row-gap: 16px;
        padding: 0 24px 16px;
        background: linear-gradient(to bottom, #E9E8E7 0 32px, #FAF7F1 32px 100%);
        border-bottom: 1px solid rgba(31, 41, 55, 0.35);
    }

    .projective-lp-header__brand {
        align-self: center;
    }

    .projective-lp-header__logo-image {
        width: 174px;
    }

    .projective-lp-header__utility {
        align-self: center;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .projective-lp-header__utility-text {
        white-space: nowrap;
    }

    .projective-lp-header__utility-text--desktop,
    .projective-lp-header__phone-number--desktop {
        display: none;
    }

    .projective-lp-header__utility-text--mobile,
    .projective-lp-header__phone-number--mobile {
        display: inline;
    }

    .projective-lp-header__utility-text--mobile {
        color: #6F797A;
        font-family: 'Work Sans', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.15em;
        line-height: 1.5;
    }

    .projective-lp-header__phone {
        align-self: center;
        justify-self: end;
        gap: 6px;
        color: #00535B;
        font-family: 'Work Sans', sans-serif;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 1.333;
    }

    .projective-lp-header__phone-icon {
        width: 12px;
        height: 12px;
    }

    .projective-lp-header__consultation {
        width: auto;
        min-height: 46px;
        padding: 8px 16px;
        border-width: 0;
        background: #00535B;
        border-color: #00535B;
    }

    .projective-lp-header__consultation-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .projective-lp-button:not(.projective-lp-button--header) {
        width: 100%;
    }

    .projective-lp-header__consultation-detail {
        display: none;
    }

    .projective-lp-button--header {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .projective-lp-title {
        max-width: none;
    }

    body.projective-landing-page .projective-lp-main h2 {
        font-size: 1.8rem;
        line-height: 1.1em;
    }

    .projective-lp-section {
        padding: var(--projective-lp-space-7) 0;
    }

    .projective-lp-section--hero {
        padding-top: var(--projective-lp-space-6);
    }

    .projective-lp-faq-item {
        padding-inline: var(--projective-lp-space-3);
    }
}
