.pc-commercial {
    --pc-commercial-pink: #e8377f;
    --pc-commercial-pink-dark: #bd185b;
    --pc-commercial-blue: #098db7;
    --pc-commercial-cyan: #03aae3;
    --pc-commercial-yellow: #f3bd34;
    --pc-commercial-green: #347b69;
    --pc-commercial-ink: #1b2026;
    --pc-commercial-dark: #13272f;
    --pc-commercial-muted: #626a74;
    --pc-commercial-line: #e3e7ea;
    --pc-commercial-soft: #f3f6f7;
    --pc-commercial-white: #fff;
    overflow: hidden;
    color: var(--pc-commercial-ink);
    font-family: 'ApexNew-Book', Arial, sans-serif;
}

.pc-commercial *,
.pc-commercial *::before,
.pc-commercial *::after {
    box-sizing: border-box;
}

.pc-commercial img {
    display: block;
    max-width: 100%;
}

.pc-commercial a {
    color: inherit;
}

.pc-commercial h1,
.pc-commercial h2,
.pc-commercial h3,
.pc-commercial p {
    margin-top: 0;
}

.pc-commercial h1,
.pc-commercial h2,
.pc-commercial h3,
.pc-commercial strong,
.pc-commercial button {
    font-family: 'ApexNew-Bold', Arial, sans-serif;
}

.pc-commercial h1,
.pc-commercial h2,
.pc-commercial h3 {
    color: var(--pc-commercial-ink);
    font-weight: 700;
    text-transform: none;
}

.pc-commercial h1 {
    max-width: 760px;
    margin-bottom: 23px;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: .97;
    letter-spacing: -.045em;
}

.pc-commercial h2 {
    margin-bottom: 19px;
    font-size: clamp(35px, 3.6vw, 54px);
    line-height: 1.03;
    letter-spacing: -.037em;
}

.pc-commercial h3 {
    margin-bottom: 11px;
    font-size: 24px;
    line-height: 1.12;
}

.pc-commercial p {
    color: var(--pc-commercial-muted);
    font-family: 'ApexNew-Book', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
}

.pc-commercial__container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.pc-commercial__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    color: var(--pc-commercial-pink);
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pc-commercial__eyebrow::before {
    width: 29px;
    height: 3px;
    border-radius: 99px;
    background: currentColor;
    content: '';
}

.pc-commercial__eyebrow--light {
    color: #fff;
}

.pc-commercial__hero {
    position: relative;
    padding: 48px 0 62px;
    background: linear-gradient(120deg, #fff 0%, #fff 51%, #eef6f8 51%, #eef6f8 100%);
}

.pc-commercial__hero::before,
.pc-commercial__hero::after {
    position: absolute;
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.pc-commercial__hero::before {
    top: 26px;
    right: clamp(26px, 4vw, 66px);
    width: 180px;
    height: 180px;
    background: rgba(3, 170, 227, .11);
}

.pc-commercial__hero::after {
    right: clamp(190px, 17vw, 260px);
    bottom: 34px;
    width: 86px;
    height: 86px;
    background: rgba(232, 55, 127, .13);
}

.pc-commercial__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .93fr);
    gap: clamp(40px, 5.7vw, 78px);
    align-items: center;
}

.pc-commercial__lead {
    max-width: 680px;
    margin-bottom: 26px;
    font-size: 20px !important;
    line-height: 1.52 !important;
}

.pc-commercial__hero-points,
.pc-commercial__check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-commercial__hero-points li,
.pc-commercial__check-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 32px;
    color: var(--pc-commercial-ink);
    font-size: 16px;
    line-height: 1.43;
}

.pc-commercial__hero-points li::before,
.pc-commercial__check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(3, 170, 227, .12);
    color: var(--pc-commercial-blue);
    content: '✓';
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    place-items: center;
}

.pc-commercial__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 31px;
}

.pc-commercial__button,
.pc-commercial__button:link,
.pc-commercial__button:visited {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border: 0;
    border-radius: 8px;
    color: #fff !important;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    text-transform: none;
    transition: box-shadow .25s ease, background .25s ease, color .25s ease;
}

.pc-commercial__button:hover,
.pc-commercial__button:focus-visible {
    box-shadow: 0 12px 34px rgba(232, 55, 127, .28);
    color: #fff;
}

.pc-commercial__button:focus-visible,
.pc-commercial__phone-link:focus-visible,
.pc-commercial__text-link:focus-visible {
    outline: 3px solid var(--pc-commercial-cyan);
    outline-offset: 4px;
}

.pc-commercial__button--primary {
    background: var(--pc-commercial-pink);
}

.pc-commercial__button--primary:hover,
.pc-commercial__button--primary:focus-visible {
    background: var(--pc-commercial-pink-dark);
}

.pc-commercial__button--white,
.pc-commercial__button--white:link,
.pc-commercial__button--white:visited {
    background: #fff;
    color: var(--pc-commercial-pink) !important;
}

.pc-commercial__button--white:hover,
.pc-commercial__button--white:focus-visible {
    background: #fff;
    color: var(--pc-commercial-pink-dark) !important;
}

.pc-commercial__phone-link {
    display: flex;
    flex-direction: column;
    color: var(--pc-commercial-ink) !important;
    font-size: 14px;
    line-height: 1.25;
    text-decoration: none !important;
}

.pc-commercial__phone-link span {
    color: var(--pc-commercial-muted);
    font-size: 12px;
}

.pc-commercial__phone-link strong {
    margin-top: 4px;
    font-size: 18px;
}

.pc-commercial__microcopy {
    margin: 13px 0 0;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.pc-commercial__hero-visual {
    position: relative;
    min-width: 0;
    margin: 0;
}

.pc-commercial__hero-visual::before {
    position: absolute;
    top: 18px;
    right: -18px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(3, 170, 227, .25);
    border-radius: 26px;
    content: '';
}

.pc-commercial__hero-visual img {
    position: relative;
    width: 100%;
    height: 590px;
    min-height: 590px;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(21, 40, 48, .18);
    object-fit: cover;
    object-position: 58% center;
}

.pc-commercial__visual-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: flex;
    max-width: 300px;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 38px rgba(16, 35, 43, .2);
    color: var(--pc-commercial-muted);
    font-size: 13px;
    line-height: 1.3;
    backdrop-filter: blur(10px);
}

.pc-commercial__visual-badge strong {
    display: block;
    color: var(--pc-commercial-ink);
    font-size: 14px;
}

.pc-commercial__visual-badge-icon {
    display: grid;
    width: 42px;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--pc-commercial-blue);
    color: #fff;
}

.pc-commercial__visual-badge-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.pc-commercial__trust {
    border-top: 1px solid var(--pc-commercial-line);
    border-bottom: 1px solid var(--pc-commercial-line);
    background: #fff;
}

.pc-commercial__trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pc-commercial__trust article {
    display: flex;
    min-height: 120px;
    align-items: center;
    gap: 14px;
    padding: 24px 20px;
    border-left: 1px solid var(--pc-commercial-line);
}

.pc-commercial__trust article:first-child {
    border-left: 0;
}

.pc-commercial__trust-number {
    color: var(--pc-commercial-pink);
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 25px;
    line-height: 1;
}

.pc-commercial__trust strong,
.pc-commercial__trust article span:last-child {
    display: block;
}

.pc-commercial__trust strong {
    margin-bottom: 5px;
    color: var(--pc-commercial-ink);
    font-size: 16px;
    line-height: 1.2;
}

.pc-commercial__trust article span:last-child {
    color: var(--pc-commercial-muted);
    font-size: 12px;
    line-height: 1.35;
}

.pc-commercial__section {
    padding: 88px 0;
}

.pc-commercial__section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}

.pc-commercial__section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.pc-commercial__section-heading > p {
    max-width: 480px;
    margin-bottom: 4px;
}

.pc-commercial__section-heading--center {
    display: block;
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.pc-commercial__section-heading--center .pc-commercial__eyebrow {
    justify-content: center;
}

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

.pc-commercial__audience-card {
    --pc-card-color: var(--pc-commercial-pink);
    display: grid;
    min-height: 230px;
    grid-template-columns: 82px 1fr;
    gap: 24px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--pc-commercial-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(26, 38, 45, .06);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.pc-commercial__audience-card:hover {
    border-color: color-mix(in srgb, var(--pc-card-color) 42%, transparent);
    box-shadow: 0 18px 50px rgba(26, 38, 45, .09), 0 0 30px color-mix(in srgb, var(--pc-card-color) 15%, transparent);
}

.pc-commercial__audience-card--blue { --pc-card-color: var(--pc-commercial-blue); }
.pc-commercial__audience-card--yellow { --pc-card-color: #ae840d; }
.pc-commercial__audience-card--green { --pc-card-color: var(--pc-commercial-green); }

.pc-commercial__audience-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 19px;
    background: color-mix(in srgb, var(--pc-card-color) 11%, #fff);
    color: var(--pc-card-color);
}

.pc-commercial__audience-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.pc-commercial__audience-card small {
    display: block;
    margin-bottom: 12px;
    color: var(--pc-card-color);
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: .12em;
}

.pc-commercial__audience-card p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
}

.pc-commercial__audience-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.pc-commercial__audience-cta,
.pc-commercial__audience-cta:link,
.pc-commercial__audience-cta:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    color: var(--pc-card-color) !important;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
}

.pc-commercial__audience-cta span {
    transition: transform .2s ease;
}

.pc-commercial__audience-cta:hover span,
.pc-commercial__audience-cta:focus-visible span {
    transform: translateX(4px);
}

.pc-commercial__audience-cta:focus-visible {
    border-radius: 3px;
    outline: 3px solid color-mix(in srgb, var(--pc-card-color) 32%, transparent);
    outline-offset: 4px;
}

.pc-commercial__logos {
    padding: 58px 0 64px;
    border-top: 1px solid var(--pc-commercial-line);
    border-bottom: 1px solid var(--pc-commercial-line);
    background: var(--pc-commercial-soft);
}

.pc-commercial__logos-heading {
    max-width: 720px;
    margin-bottom: 31px;
}

.pc-commercial__logos-heading h2 {
    margin-bottom: 11px;
    font-size: clamp(30px, 3.3vw, 44px);
}

.pc-commercial__logos-heading p {
    margin-bottom: 0;
}

.pc-commercial__logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.pc-commercial__logo-slot {
    display: flex;
    min-height: 105px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px dashed #c8d0d5;
    border-radius: 12px;
    background: rgba(255, 255, 255, .72);
    color: #99a2a9;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    line-height: 1.1;
}

.pc-commercial__logo-slot > span {
    font-size: 17px;
    letter-spacing: .12em;
}

.pc-commercial__logo-slot small {
    margin-top: 5px;
    font-family: 'ApexNew-Book', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pc-commercial__logo-slot--filled {
    border-style: solid;
}

.pc-commercial__logo-slot--filled img {
    width: auto;
    max-width: 76%;
    height: auto;
    max-height: 56px;
}

.pc-commercial__section--planning {
    position: relative;
    overflow: hidden;
    background: var(--pc-commercial-dark);
}

.pc-commercial__section--planning::after {
    position: absolute;
    right: 44px;
    bottom: -130px;
    width: 300px;
    height: 300px;
    border: 54px solid rgba(3, 170, 227, .08);
    border-radius: 50%;
    content: '';
}

.pc-commercial__planning-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(55px, 8vw, 105px);
    align-items: start;
}

.pc-commercial__planning-copy {
    position: sticky;
    top: 30px;
}

.pc-commercial__planning-copy h2,
.pc-commercial__planning-copy p {
    color: #fff;
}

.pc-commercial__planning-copy p {
    max-width: 540px;
    color: #becbd0;
}

.pc-commercial__text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
    color: var(--pc-commercial-pink) !important;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 16px;
    text-decoration: none !important;
}

.pc-commercial__text-link span {
    font-size: 23px;
    transition: transform .2s ease;
}

.pc-commercial__text-link:hover span {
    transform: translateX(4px);
}

.pc-commercial__text-link--light {
    color: #fff !important;
}

.pc-commercial__planning-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    list-style: none;
}

.pc-commercial__planning-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.pc-commercial__planning-list li > span {
    padding-top: 2px;
    color: var(--pc-commercial-cyan);
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
}

.pc-commercial__planning-list strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 20px;
}

.pc-commercial__planning-list p {
    margin-bottom: 0;
    color: #aebcc1;
    font-size: 15px;
    line-height: 1.5;
}

.pc-commercial__impact-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(48px, 7vw, 90px);
    align-items: center;
}

.pc-commercial__impact-image {
    position: relative;
    margin: 0 20px 20px 0;
}

.pc-commercial__impact-image::after {
    position: absolute;
    z-index: -1;
    top: 22px;
    left: 22px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(3, 170, 227, .12);
    content: '';
}

.pc-commercial__impact-image img {
    width: 100%;
    height: 550px;
    border-radius: 24px;
    box-shadow: 0 24px 65px rgba(26, 38, 45, .12);
    object-fit: cover;
}

.pc-commercial__impact-image figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: 270px;
    padding: 11px 14px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .93);
    color: var(--pc-commercial-ink);
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.3;
}

.pc-commercial__impact-copy > p:not(.pc-commercial__evidence-note) {
    margin-bottom: 23px;
}

.pc-commercial__check-list {
    margin-bottom: 24px;
}

.pc-commercial__evidence-note {
    margin: 0;
    padding: 14px 16px;
    border-left: 3px solid var(--pc-commercial-yellow);
    background: #faf8f0;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

.pc-commercial__section--form {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #123543 0%, #0f536b 100%);
}

.pc-commercial__section--form::after {
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: '';
}

.pc-commercial__form-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(48px, 7vw, 90px);
    align-items: start;
}

.pc-commercial__form-intro {
    position: sticky;
    top: 28px;
}

.pc-commercial__form-intro h2,
.pc-commercial__form-intro > p {
    color: #fff;
}

.pc-commercial__form-intro > p {
    color: #cfdae0;
}

.pc-commercial__form-promise {
    display: flex;
    gap: 13px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .17);
}

.pc-commercial__form-promise > span {
    display: grid;
    width: 30px;
    min-width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--pc-commercial-pink);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.pc-commercial__form-promise strong,
.pc-commercial__form-promise small {
    display: block;
}

.pc-commercial__form-promise strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.pc-commercial__form-promise small {
    margin-top: 5px;
    color: #bdccd2;
    font-size: 13px;
    line-height: 1.4;
}

.pc-commercial__form-phone {
    display: flex;
    flex-direction: column;
    margin-top: 27px;
    color: #fff !important;
    text-decoration: none !important;
}

.pc-commercial__form-phone small {
    color: #bdccd2;
    font-size: 12px;
}

.pc-commercial__form-phone strong {
    margin-top: 4px;
    font-size: 22px;
}

.pc-commercial__form {
    padding: 34px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(5, 20, 27, .22);
}

.pc-commercial__choice-fieldset {
    margin: 0 0 22px;
    padding: 0;
    border: 0;
}

.pc-commercial__choice-fieldset legend,
.pc-commercial__field > span {
    display: block;
    margin-bottom: 8px;
    color: var(--pc-commercial-ink);
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.3;
}

.pc-commercial__choice-fieldset legend span,
.pc-commercial__field b {
    color: var(--pc-commercial-pink);
}

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

.pc-commercial__choices label {
    margin: 0;
    cursor: pointer;
}

.pc-commercial__choices input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.pc-commercial__choices span {
    display: flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 9px 11px;
    border: 1px solid var(--pc-commercial-line);
    border-radius: 8px;
    color: #4f5862;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.pc-commercial__choices input:checked + span {
    border-color: var(--pc-commercial-blue);
    background: rgba(3, 170, 227, .09);
    color: #087899;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
}

.pc-commercial__choices input:focus-visible + span {
    outline: 3px solid rgba(3, 170, 227, .25);
    outline-offset: 2px;
}

.pc-commercial__form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.pc-commercial__field {
    display: block;
    margin-bottom: 17px;
}

.pc-commercial__field input,
.pc-commercial__field select,
.pc-commercial__field textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid #d9dfe3;
    border-radius: 8px;
    background: #fff;
    color: var(--pc-commercial-ink);
    font-family: 'ApexNew-Book', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pc-commercial__field textarea {
    min-height: 104px;
    resize: vertical;
}

.pc-commercial__field input:focus,
.pc-commercial__field select:focus,
.pc-commercial__field textarea:focus {
    border-color: var(--pc-commercial-blue);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(3, 170, 227, .12) !important;
}

.pc-commercial__field input::placeholder,
.pc-commercial__field textarea::placeholder {
    color: #a1a8ae;
}

.pc-commercial__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.pc-commercial__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 2px 0 21px;
    color: #727a82;
    font-size: 12px;
    line-height: 1.45;
}

.pc-commercial__consent input {
    width: 17px;
    min-width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--pc-commercial-pink);
}

.pc-commercial__consent a {
    color: var(--pc-commercial-blue) !important;
    text-decoration: underline;
}

.pc-commercial__form-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pc-commercial__submit {
    min-width: 280px;
    cursor: pointer;
}

.pc-commercial__submit:disabled {
    cursor: wait;
    opacity: .68;
}

.pc-commercial__button-arrow {
    margin-left: 11px;
    font-size: 21px;
}

.pc-commercial__form-footer p {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
}

.pc-commercial__status {
    display: none;
    margin-top: 17px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.pc-commercial__status.is-visible {
    display: block;
}

.pc-commercial__status.is-success {
    background: #eaf7ef;
    color: #1f6b40;
}

.pc-commercial__status.is-error {
    background: #fff0f2;
    color: #a7203f;
}

.pc-commercial__section--process {
    background: var(--pc-commercial-soft);
}

.pc-commercial__process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.pc-commercial__process-list li {
    position: relative;
    padding: 0 22px;
    text-align: center;
}

.pc-commercial__process-list li:not(:last-child)::after {
    position: absolute;
    top: 25px;
    right: -22px;
    width: 44px;
    height: 1px;
    background: #cfd7db;
    content: '';
}

.pc-commercial__process-list li > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--pc-commercial-blue);
    box-shadow: 0 10px 24px rgba(9, 141, 183, .22);
    color: #fff;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 17px;
}

.pc-commercial__process-list strong {
    display: block;
    margin-bottom: 7px;
    color: var(--pc-commercial-ink);
    font-size: 17px;
}

.pc-commercial__process-list p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.pc-commercial__faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(50px, 7vw, 90px);
    align-items: start;
}

.pc-commercial__faq-intro {
    position: sticky;
    top: 28px;
}

.pc-commercial__faq-intro a {
    color: var(--pc-commercial-pink) !important;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    text-decoration: none;
}

.pc-commercial__faq-list details {
    border-bottom: 1px solid var(--pc-commercial-line);
}

.pc-commercial__faq-list details:first-child {
    border-top: 1px solid var(--pc-commercial-line);
}

.pc-commercial__faq-list summary {
    position: relative;
    padding: 21px 48px 21px 0;
    color: var(--pc-commercial-ink);
    cursor: pointer;
    font-family: 'ApexNew-Bold', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.3;
    list-style: none;
}

.pc-commercial__faq-list summary::-webkit-details-marker {
    display: none;
}

.pc-commercial__faq-list summary::after {
    position: absolute;
    top: 15px;
    right: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(3, 170, 227, .1);
    color: var(--pc-commercial-blue);
    content: '+';
    font-family: Arial, sans-serif;
    font-size: 22px;
}

.pc-commercial__faq-list details[open] summary::after {
    content: '−';
}

.pc-commercial__faq-list details > div {
    padding: 0 48px 23px 0;
    color: var(--pc-commercial-muted);
    font-size: 15px;
    line-height: 1.62;
}

.pc-commercial__final-cta {
    position: relative;
    padding: 68px 0;
    overflow: hidden;
    background: var(--pc-commercial-pink);
}

.pc-commercial__final-cta::after {
    position: absolute;
    top: 16px;
    right: 38px;
    width: 190px;
    height: 190px;
    border: 38px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    content: '';
}

.pc-commercial__final-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.pc-commercial__final-cta h2 {
    max-width: 720px;
    margin-bottom: 0;
    color: #fff;
}

.pc-commercial__final-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
}

.pc-commercial__final-actions > a:last-child {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

.pc-commercial__final-actions > a:last-child strong {
    margin-left: 4px;
}

.pc-commercial__mobile-bar {
    display: none;
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
    .pc-commercial__audience-icon { background: #f1f4f5; }
}

@media (max-width: 1050px) {
    .pc-commercial__hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(365px, .82fr);
        gap: 42px;
    }

    .pc-commercial__hero-visual img {
        height: 510px;
        min-height: 510px;
    }

    .pc-commercial__trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-commercial__trust article:nth-child(3) {
        border-left: 0;
    }

    .pc-commercial__trust article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--pc-commercial-line);
    }

    .pc-commercial__logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pc-commercial__form-layout {
        grid-template-columns: .72fr 1.28fr;
        gap: 44px;
    }

    .pc-commercial__process-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 0;
    }

    .pc-commercial__process-list li:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 790px) {
    .pc-commercial__container {
        width: min(100% - 32px, 680px);
    }

    .pc-commercial__hero {
        padding: 34px 0 52px;
        background: linear-gradient(180deg, #fff 0%, #fff 68%, #eef6f8 100%);
    }

    .pc-commercial__hero::before {
        top: 14px;
        right: 14px;
        width: 130px;
        height: 130px;
    }

    .pc-commercial__hero::after {
        right: 24px;
        bottom: 22px;
        width: 64px;
        height: 64px;
    }

    .pc-commercial__hero-grid,
    .pc-commercial__planning-grid,
    .pc-commercial__impact-grid,
    .pc-commercial__form-layout,
    .pc-commercial__faq-layout {
        grid-template-columns: 1fr;
    }

    .pc-commercial__hero-visual {
        margin-top: 10px;
    }

    .pc-commercial__hero-visual img {
        height: 430px;
        min-height: 430px;
    }

    .pc-commercial__section {
        padding: 72px 0;
    }

    .pc-commercial__section-heading {
        display: block;
    }

    .pc-commercial__section-heading > p {
        margin-top: 18px;
    }

    .pc-commercial__planning-copy,
    .pc-commercial__form-intro,
    .pc-commercial__faq-intro {
        position: static;
    }

    .pc-commercial__planning-grid,
    .pc-commercial__impact-grid,
    .pc-commercial__form-layout,
    .pc-commercial__faq-layout {
        gap: 42px;
    }

    .pc-commercial__impact-image {
        margin-right: 20px;
    }

    .pc-commercial__impact-image img {
        height: 430px;
    }

    .pc-commercial__final-cta-inner {
        display: block;
    }

    .pc-commercial__final-actions {
        margin-top: 28px;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .pc-commercial {
        padding-bottom: 66px;
    }

    .pc-commercial h1 {
        font-size: 43px;
    }

    .pc-commercial h2 {
        font-size: 34px;
    }

    .pc-commercial__lead {
        font-size: 18px !important;
    }

    .pc-commercial__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .pc-commercial__phone-link {
        align-items: center;
    }

    .pc-commercial__microcopy {
        text-align: center;
    }

    .pc-commercial__hero-visual,
    .pc-commercial__hero-visual img {
        height: 360px;
        min-height: 360px;
    }

    .pc-commercial__hero-visual img {
        object-position: 61% center;
    }

    .pc-commercial__visual-badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
    }

    .pc-commercial__trust-grid,
    .pc-commercial__audience-grid,
    .pc-commercial__process-list,
    .pc-commercial__form-row,
    .pc-commercial__choices {
        grid-template-columns: 1fr;
    }

    .pc-commercial__trust article,
    .pc-commercial__trust article:first-child,
    .pc-commercial__trust article:nth-child(3) {
        min-height: 0;
        padding: 19px 14px;
        border: 0;
        border-bottom: 1px solid var(--pc-commercial-line);
    }

    .pc-commercial__audience-card {
        min-height: 0;
        grid-template-columns: 62px 1fr;
        gap: 16px;
        padding: 24px 20px;
    }

    .pc-commercial__audience-icon {
        width: 58px;
        height: 58px;
        border-radius: 15px;
    }

    .pc-commercial__audience-icon svg {
        width: 34px;
        height: 34px;
    }

    .pc-commercial__logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pc-commercial__logo-slot {
        min-height: 88px;
    }

    .pc-commercial__planning-list li {
        grid-template-columns: 44px 1fr;
        gap: 12px;
    }

    .pc-commercial__impact-image img {
        height: 330px;
        object-position: 48% center;
    }

    .pc-commercial__impact-image figcaption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }

    .pc-commercial__form {
        margin: 0 -4px;
        padding: 25px 20px;
    }

    .pc-commercial__form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .pc-commercial__submit {
        width: 100%;
        min-width: 0;
    }

    .pc-commercial__form-footer p {
        text-align: center;
    }

    .pc-commercial__process-list {
        gap: 28px;
    }

    .pc-commercial__process-list li {
        display: grid;
        padding: 0;
        grid-template-columns: 48px 1fr;
        gap: 16px;
        text-align: left;
    }

    .pc-commercial__process-list li::after {
        display: none;
    }

    .pc-commercial__process-list li > span {
        width: 46px;
        height: 46px;
        margin: 0;
    }

    .pc-commercial__faq-list summary {
        padding-right: 43px;
        font-size: 16px;
    }

    .pc-commercial__faq-list details > div {
        padding-right: 8px;
    }

    .pc-commercial__final-cta {
        padding: 52px 0;
    }

    .pc-commercial__final-actions {
        align-items: stretch;
    }

    .pc-commercial__final-actions > a:last-child {
        text-align: center;
    }

    .pc-commercial__mobile-bar {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        visibility: hidden;
        grid-template-columns: .72fr 1.28fr;
        gap: 8px;
        padding: 9px 12px max(9px, env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -8px 28px rgba(20, 30, 38, .14);
        opacity: 0;
        transform: translateY(100%);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        backdrop-filter: blur(12px);
    }

    .pc-commercial__mobile-bar.is-visible {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .pc-commercial__mobile-bar a {
        display: flex;
        min-height: 45px;
        align-items: center;
        justify-content: center;
        border-radius: 7px;
        background: var(--pc-commercial-dark);
        color: #fff !important;
        font-family: 'ApexNew-Bold', Arial, sans-serif;
        font-size: 14px;
        text-decoration: none !important;
    }

    .pc-commercial__mobile-bar a:last-child {
        background: var(--pc-commercial-pink);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-commercial *,
    .pc-commercial *::before,
    .pc-commercial *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Final cross-service cohesion pass. */
@media (min-width: 861px) {
    .pc-commercial__container {
        width: min(1180px, calc(100% - 48px));
    }
}

.pc-commercial__trust article {
    min-height: 112px;
    align-items: center;
    padding: 22px 24px;
    border-right: 1px solid var(--pc-commercial-line);
    border-left: 0;
}

.pc-commercial__trust article:first-child {
    padding-left: 0;
}

.pc-commercial__trust article:last-child {
    padding-right: 0;
    border-right: 0;
}

.pc-commercial__trust-number {
    font-size: 22px;
}

.pc-commercial__trust strong {
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.2;
}

.pc-commercial__trust article span:last-child {
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 560px) {
    .pc-commercial {
        padding-bottom: 0;
    }

    .pc-commercial__hero {
        padding: 30px 0 48px;
    }

    .pc-commercial__section {
        padding: 60px 0;
    }

    .pc-commercial__section-heading {
        margin-bottom: 32px;
    }

    .pc-commercial__planning-grid,
    .pc-commercial__impact-grid,
    .pc-commercial__form-layout,
    .pc-commercial__faq-layout {
        gap: 34px;
    }

    .pc-commercial__trust article,
    .pc-commercial__trust article:first-child,
    .pc-commercial__trust article:nth-child(3),
    .pc-commercial__trust article:last-child {
        min-height: 0;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--pc-commercial-line);
    }

    .pc-commercial__trust article:last-child {
        border-bottom: 0;
    }

    .pc-commercial__final-cta {
        padding: 50px 0;
    }
}
