/* =========================================================
   PC SECURITY EXPERTS
   CSSBYDSSURYAWANSHI
   PRICING + CONTACT PAGE
   BODY STYLES ONLY
   ========================================================= */

:root {
    --pse-red: #C01818;
    --pse-red-dark: #960F0F;
    --pse-red-light: #E32626;
    --pse-black: #1B1B1B;
    --pse-dark: #101010;
    --pse-white: #FFFFFF;
    --pse-light: #F7F7F7;
    --pse-gray: #666666;
    --pse-border: #E5E5E5;
    --pse-green: #22C55E;
    --pse-shadow: 0 12px 35px rgba(0, 0, 0, .09);
    --pse-radius: 14px;
}

.pse-pricing-page,
.pse-contact-page {
    width: 100%;
    overflow: hidden;
    background: var(--pse-light);
    color: var(--pse-black);
}

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


/* =========================================================
   COMMON
   ========================================================= */

.pse-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.pse-small-title {
    display: inline-block;
    color: var(--pse-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.pse-section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 800;
}

.pse-section-heading h2 span,
.pse-pricing-hero h1 span,
.pse-contact-hero h1 span,
.pse-contact-form-intro h2 span {
    color: var(--pse-red);
}

.pse-section-heading p {
    color: var(--pse-gray);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   PRICING HERO
   ========================================================= */

.pse-pricing-hero,
.pse-contact-hero {
    position: relative;
    padding: 94px 0 90px;
    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(192, 24, 24, .25),
            transparent 35%
        ),
        linear-gradient(
            125deg,
            #101010 0%,
            #1B1B1B 55%,
            #680909 100%
        );
    color: white;
}

.pse-pricing-hero::before,
.pse-contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.pse-pricing-hero-content,
.pse-contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.pse-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

.pse-breadcrumb a {
    color: white;
    text-decoration: none;
}

.pse-breadcrumb a:hover {
    color: #ffaaaa;
}

.pse-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-radius: 50px;
    background: rgba(192,24,24,.18);
    border: 1px solid rgba(255,255,255,.18);
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pse-pricing-hero h1,
.pse-contact-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.05;
    font-weight: 850;
    color: white;
}

.pse-pricing-hero h1 span,
.pse-contact-hero h1 span {
    display: block;
}

.pse-pricing-hero p,
.pse-contact-hero p {
    max-width: 680px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.pse-hero-security {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.pse-hero-security div {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
}

.pse-hero-security i {
    color: #ff6b6b;
}


/* =========================================================
   PRICING
   ========================================================= */

.pse-pricing-section {
    padding: 90px 0;
    background: #fff;
}

.pse-billing-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-bottom: 45px;
}

.pse-billing-label {
    color: #888;
    font-weight: 700;
    font-size: 14px;
}

.pse-billing-label.active {
    color: var(--pse-red);
}

.pse-save-badge {
    background: #DCFCE7;
    color: #15803D;
    padding: 6px 11px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
}


/* Toggle */

.pse-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    display: inline-block;
}

.pse-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pse-toggle-slider {
    position: absolute;
    inset: 0;
    cursor: pointer;
    border-radius: 30px;
    background: #ddd;
    transition: .3s;
}

.pse-toggle-slider::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 4px;
    top: 4px;
    background: white;
    border-radius: 50%;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}

.pse-toggle input:checked + .pse-toggle-slider {
    background: var(--pse-red);
}

.pse-toggle input:checked + .pse-toggle-slider::before {
    transform: translateX(24px);
}


/* Pricing grid */

.pse-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.pse-price-card {
    position: relative;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 40px 30px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    transition: .3s ease;
}

.pse-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.13);
}

.pse-price-card.popular1 {
    background:
        linear-gradient(
            145deg,
            #C01818,
            #8F0D0D
        );
    color: white;
    border-color: var(--pse-red);
    transform: translateY(-10px);
}

.pse-price-card.popular1:hover {
    transform: translateY(-16px);
}

.pse-popular-badge {
    position: absolute;
    left: 50%;
    top: -14px;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #fff;
    color: var(--pse-red);
    border: 1px solid #eee;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}

.pse-plan-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF0F0;
    color: var(--pse-red);
    font-size: 25px;
    margin-bottom: 20px;
}

.pse-price-card.popular .pse-plan-icon {
    background: rgba(255,255,255,.15);
    color: white;
}

.pse-price-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
}

.pse-plan-description {
    min-height: 52px;
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}

.pse-price-card.popular1 .pse-plan-description {
    color: #FFF;
}

.pse-price {
    display: flex;
    align-items: baseline;
    margin: 28px 0 20px;
}

.pse-currency {
    font-size: 20px;
    font-weight: 800;
}

.pse-price-number {
    font-size: 48px;
    line-height: 1;
    margin-left: 4px;
}

.pse-price-period {
    margin-left: 6px;
    font-size: 13px;
    color: #777;
}

.pse-price-card.popular1 .pse-price-period {
    color: #FFF;
}

.pse-plan-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.pse-price-card.popular1 .pse-plan-divider {
    background: #FFF;
}

.pse-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pse-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0;
    font-size: 14px;
    line-height: 1.45;
}

.pse-check {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #DCFCE7;
    color: #16A34A;
    font-size: 10px;
}

.pse-price-card.popular .pse-check {
    background: white;
    color: var(--pse-red);
}

.pse-plan-button,
.pse-cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 50px;
    border-radius: 9px;
    background: var(--pse-red);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    border: 2px solid var(--pse-red);
    transition: .25s;
}

.pse-plan-button:hover {
    background: #9e1111;
    border-color: #9e1111;
}

.pse-price-card.popular .pse-plan-button {
    background: white;
    color: var(--pse-red);
    border-color: white;
}

.pse-price-card.popular .pse-plan-button:hover {
    background: #f5f5f5;
}

.pse-plan-security {
    text-align: center;
    margin-top: 17px;
    font-size: 11px;
    color: #000;
}

.pse-price-card.popular1 .pse-plan-security {
    color: #FFF;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.pse-pricing-benefits {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,.08),
            transparent 25%
        ),
        linear-gradient(
            130deg,
            #101010,
            #C01818
        );
    color: white;
}

.pse-light-heading h2 {
    color: white;
}

.pse-light-heading p {
    color: rgba(255,255,255,.7);
}

.pse-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pse-benefit-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 15px;
    background: rgba(0,0,0,.16);
}

.pse-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    font-size: 22px;
}

.pse-benefit-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.pse-benefit-card p {
    margin: 0;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   COMPARISON
   ========================================================= */

.pse-comparison-section {
    padding: 90px 0;
    background: white;
}

.pse-comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: var(--pse-shadow);
}

.pse-comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

.pse-comparison-table th,
.pse-comparison-table td {
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pse-comparison-table th:first-child,
.pse-comparison-table td:first-child {
    text-align: left;
}

.pse-comparison-table th {
    background: #f8f8f8;
    font-size: 14px;
}

.pse-comparison-table th.highlight-column {
    color: white;
    background: var(--pse-red);
}

.pse-comparison-table td i {
    color: var(--pse-green);
}

.pse-comparison-table .highlight-column {
    background: #FFF4F4;
}

.pse-comparison-table .highlight-column i {
    color: var(--pse-red);
}

.pse-dash {
    color: #bbb;
}


/* =========================================================
   FAQ
   ========================================================= */

.pse-pricing-faq,
.pse-contact-faq {
    padding: 90px 0;
    background: var(--pse-light);
}

.pse-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.pse-faq-item {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.pse-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 20px;
    border: 0;
    background: white;
    padding: 20px 23px;
    cursor: pointer;
    color: var(--pse-black);
    font-size: 15px;
    font-weight: 700;
}

.pse-faq-question i {
    color: var(--pse-red);
    transition: .25s;
}

.pse-faq-item.active .pse-faq-question i {
    transform: rotate(45deg);
}

.pse-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.pse-faq-answer p {
    margin: 0;
    padding: 0 23px 22px;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}


/* =========================================================
   CTA
   ========================================================= */

.pse-pricing-cta,
.pse-contact-cta {
    padding: 60px 0;
    background: white;
}

.pse-cta-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    border-radius: 16px;
    color: white;
    background:
        linear-gradient(
            120deg,
            #101010,
            #C01818
        );
    box-shadow: 0 15px 40px rgba(0,0,0,.16);
}

.pse-cta-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.pse-cta-content {
    flex: 1;
}

.pse-cta-content h2 {
    margin: 0 0 8px;
    font-size: 25px;
}

.pse-cta-content p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.pse-cta-button {
    width: auto;
    padding: 0 25px;
    border-color: white;
    background: white;
    color: var(--pse-red);
    white-space: nowrap;
}


/* =========================================================
   CONTACT CARDS
   ========================================================= */

.pse-contact-info-section {
    padding: 90px 0;
    background: white;
}

.pse-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pse-contact-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    transition: .3s;
}

.pse-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.pse-contact-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF0F0;
    color: var(--pse-red);
    font-size: 19px;
}

.pse-contact-label {
    display: block;
    font-size: 11px;
    color: var(--pse-red);
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 7px;
}

.pse-contact-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    word-break: break-word;
}

.pse-contact-card p {
    margin: 0 0 13px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.pse-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pse-red);
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.pse-contact-form-section {
    padding: 95px 0;
    background: var(--pse-light);
}

.pse-contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.pse-contact-form-intro {
    padding-top: 20px;
}

.pse-contact-form-intro h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin: 0 0 20px;
}

.pse-contact-form-intro > p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.pse-contact-security-list {
    margin-top: 35px;
}

.pse-contact-security-list > div {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.pse-security-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--pse-red);
    background: #FFE7E7;
}

.pse-security-icon.green {
    color: var(--pse-green);
    background: #DCFCE7;
}

.pse-contact-security-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.pse-contact-security-list p {
    margin: 0;
    color: #777;
    font-size: 13px;
}


.pse-contact-form-box {
    background: white;
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 15px 45px rgba(0,0,0,.09);
    border: 1px solid #eee;
}

.pse-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pse-form-group {
    margin-bottom: 19px;
}

.pse-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-size: 13px;
    font-weight: 750;
}

.pse-form-group label span {
    color: var(--pse-red);
}

.pse-input-wrap,
.pse-textarea-wrap {
    position: relative;
}

.pse-input-wrap > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    font-size: 14px;
}

.pse-input-wrap input,
.pse-input-wrap select,
.pse-textarea-wrap textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: .25s;
    box-sizing: border-box;
}

.pse-input-wrap input,
.pse-input-wrap select {
    height: 49px;
    padding: 0 15px 0 43px;
}

.pse-input-wrap select {
    appearance: auto;
}

.pse-textarea-wrap textarea {
    resize: vertical;
    min-height: 145px;
    padding: 15px;
}

.pse-input-wrap input:focus,
.pse-input-wrap select:focus,
.pse-textarea-wrap textarea:focus {
    border-color: var(--pse-red);
    background: white;
    box-shadow: 0 0 0 3px rgba(192,24,24,.08);
}

.pse-form-checkbox {
    margin: 5px 0 20px;
}

.pse-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #666;
    font-size: 12px;
    line-height: 1.5;
}

.pse-form-checkbox input {
    margin-top: 3px;
    accent-color: var(--pse-red);
}

.pse-submit-button {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 8px;
    background: var(--pse-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
}

.pse-submit-button:hover {
    background: #9E1111;
}

.pse-submit-button.loading {
    opacity: .7;
    pointer-events: none;
}

.pse-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    color: #000;
    font-size: 11px;
}

.pse-form-note i {
    color: var(--pse-green);
}

.pse-form-message {
    display: none;
    padding: 12px 15px;
    border-radius: 7px;
    margin-bottom: 20px;
    font-size: 13px;
}

.pse-form-message.success {
    display: block;
    color: #166534;
    background: #DCFCE7;
    border: 1px solid #BBF7D0;
}

.pse-form-message.error {
    display: block;
    color: #991B1B;
    background: #FEE2E2;
    border: 1px solid #FECACA;
}


/* =========================================================
   LOCATION
   ========================================================= */

.pse-contact-location {
    padding: 90px 0;
    background: white;
}

.pse-location-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--pse-shadow);
    border: 1px solid #eee;
}

.pse-location-content {
    padding: 50px;
}

.pse-location-content h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.pse-location-content h2 span {
    color: var(--pse-red);
}

.pse-location-content > p {
    color: #666;
    line-height: 1.7;
}

.pse-address {
    display: flex;
    gap: 15px;
    margin-top: 28px;
}

.pse-address-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF0F0;
    color: var(--pse-red);
}

.pse-address strong {
    font-size: 14px;
}

.pse-address p {
    margin: 5px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.pse-map-placeholder {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #eee,
            #fafafa
        );
}

.pse-map-grid {
    position: absolute;
    inset: 0;
    opacity: .65;
    background-image:
        linear-gradient(
            30deg,
            transparent 45%,
            #ddd 46%,
            #ddd 48%,
            transparent 49%
        ),
        linear-gradient(
            110deg,
            transparent 45%,
            #ddd 46%,
            #ddd 48%,
            transparent 49%
        );
    background-size: 80px 80px;
}

.pse-map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pse-map-pin > div {
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--pse-red);
    color: white;
    box-shadow: 0 12px 25px rgba(192,24,24,.35);
}

.pse-map-pin i {
    transform: rotate(45deg);
    font-size: 25px;
}

.pse-map-pin span {
    display: inline-block;
    margin-top: 20px;
    background: white;
    padding: 8px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

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

    .pse-price-card.popular {
        transform: none;
    }

    .pse-price-card.popular:hover {
        transform: translateY(-8px);
    }

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

    .pse-contact-cards {
        grid-template-columns: 1fr;
    }

    .pse-contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


@media (max-width: 700px) {

    .pse-container {
        width: min(100% - 28px, 1180px);
    }

    .pse-pricing-hero,
    .pse-contact-hero {
        padding: 55px 0 65px;
    }

    .pse-pricing-section,
    .pse-pricing-benefits,
    .pse-comparison-section,
    .pse-pricing-faq,
    .pse-contact-info-section,
    .pse-contact-form-section,
    .pse-contact-location,
    .pse-contact-faq {
        padding: 65px 0;
    }

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

    .pse-benefit-grid {
        grid-template-columns: 1fr;
    }

    .pse-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pse-contact-form-box {
        padding: 25px 18px;
    }

    .pse-location-box {
        grid-template-columns: 1fr;
    }

    .pse-location-content {
        padding: 30px 25px;
    }

    .pse-map-placeholder {
        min-height: 320px;
    }

    .pse-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .pse-cta-button {
        width: 100%;
    }

    .pse-hero-security {
        flex-direction: column;
        gap: 13px;
    }

    .pse-billing-wrapper {
        flex-wrap: wrap;
    }

}