/* =========================================================
   PROCLEP — PRICING PAGE
   PURE CSS
   NO BOOTSTRAP
========================================================= */

.prc-page {

    --prc-navy: #061a2d;
    --prc-navy-2: #092f52;

    --prc-blue: #287cf0;
    --prc-blue-light: #59a8ff;

    --prc-orange: #f79a20;

    --prc-text: #091b2e;
    --prc-muted: #6b7b8d;

    --prc-light: #f5f8fc;
    --prc-border: #e1e9f1;

    color: var(--prc-text);

    overflow: hidden;
}

.prc-container {

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}

.prc-section {

    padding: 110px 0;
}

.prc-white {
    background: #fff;
}

.prc-light {
    background: #f5f8fc;
}


/* =========================================================
   COMMON
========================================================= */

.prc-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #6bb2ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.prc-blue-eyebrow {
    color: #287cf0;
}

.prc-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.prc-btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ffae2c,
            #f48714
        );

    box-shadow:
        0 12px 30px rgba(245,139,20,.25);
}

.prc-btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(245,139,20,.35);
}

.prc-btn-outline {

    color: #fff;

    border: 1px solid rgba(255,255,255,.18);

    background: rgba(255,255,255,.05);
}


/* =========================================================
   HERO
========================================================= */

.prc-hero {

    position: relative;

    min-height: 690px;

    display: flex;

    align-items: center;

    color: #fff;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(42,128,244,.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #041526,
            #092d4e 60%,
            #063c72
        );

    overflow: hidden;
}

.prc-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .3;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.prc-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);
}

.prc-glow-1 {

    width: 330px;

    height: 330px;

    right: 5%;

    top: 0;

    background: rgba(41,132,255,.15);
}

.prc-glow-2 {

    width: 250px;

    height: 250px;

    left: 10%;

    bottom: -180px;

    background: rgba(55,153,255,.1);
}

.prc-hero .prc-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: .95fr 1.05fr;

    align-items: center;

    gap: 70px;
}

.prc-hero-content h1 {

    max-width: 650px;

    margin: 17px 0 25px;

    font-size:
        clamp(48px, 5.4vw, 73px);

    line-height: .98;

    letter-spacing: -4px;
}

.prc-hero-content h1 span {

    display: block;

    color: #58a7ff;
}

.prc-hero-content > p {

    max-width: 560px;

    color: rgba(255,255,255,.62);

    font-size: 15px;

    line-height: 1.85;
}

.prc-hero-note {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 34px;

    color: rgba(255,255,255,.52);

    font-size: 9px;

    letter-spacing: .3px;
}

.prc-note-icon {

    width: 23px;

    height: 23px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #54d9a0;

    background: rgba(72,214,157,.1);
}

.prc-note-line {

    width: 25px;

    height: 1px;

    background: rgba(255,255,255,.14);
}


/* =========================================================
   HERO PRICE VISUAL
========================================================= */

.prc-hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.prc-price-orbit {

    position: absolute;

    border: 1px solid rgba(72,159,255,.14);

    border-radius: 50%;
}

.prc-orbit-1 {

    width: 510px;

    height: 510px;
}

.prc-orbit-2 {

    width: 365px;

    height: 365px;
}

.prc-hero-price-card {

    position: relative;

    z-index: 3;

    width: min(100%, 420px);

    padding: 20px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 17px;

    background:
        rgba(5,25,43,.88);

    box-shadow:
        0 35px 90px rgba(0,0,0,.4);

    backdrop-filter: blur(20px);
}

.prc-price-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 17px;

    border-bottom:
        1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.42);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.prc-live {

    color: #52d69e;

    letter-spacing: .5px;
}

.prc-price-card-body {

    padding: 28px 4px 23px;
}

.prc-price-card-body small {

    color: #59a7ff;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.prc-price-big {

    margin: 9px 0;

    font-size: 45px;

    font-weight: 700;

    letter-spacing: -2px;
}

.prc-price-card-body p {

    max-width: 310px;

    margin: 0;

    color: rgba(255,255,255,.43);

    font-size: 10px;

    line-height: 1.7;
}

.prc-price-lines {

    padding: 13px;

    border-radius: 10px;

    background: rgba(255,255,255,.035);
}

.prc-price-lines div {

    display: flex;

    justify-content: space-between;

    padding: 10px 0;

    color: rgba(255,255,255,.55);

    font-size: 9px;

    border-bottom:
        1px solid rgba(255,255,255,.05);
}

.prc-price-lines div:last-child {
    border-bottom: 0;
}

.prc-price-lines b {

    color: #50d49d;
}

.prc-mini-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 10px;

    background: rgba(6,28,48,.9);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

    backdrop-filter: blur(15px);
}

.prc-mini-card-top {

    top: 65px;

    right: -5px;
}

.prc-mini-card-bottom {

    left: -15px;

    bottom: 65px;
}

.prc-mini-card small {

    display: block;

    color: #62acff;

    font-size: 6px;

    letter-spacing: 1px;
}

.prc-mini-card strong {

    display: block;

    margin: 3px 0;

    color: #fff;

    font-size: 14px;
}

.prc-mini-card span {

    color: rgba(255,255,255,.4);

    font-size: 8px;
}

.prc-mini-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #51d39d;

    box-shadow:
        0 0 0 5px rgba(81,211,157,.08);
}


/* =========================================================
   VALUE INTRO
========================================================= */

.prc-value-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.prc-value-grid h2 {

    margin: 15px 0 0;

    font-size:
        clamp(36px, 4vw, 53px);

    line-height: 1.04;

    letter-spacing: -2.3px;
}

.prc-value-grid h2 span {

    display: block;

    color: var(--prc-blue);
}

.prc-value-grid > div:last-child {

    padding-left: 30px;

    border-left: 1px solid var(--prc-border);
}

.prc-value-grid p {

    margin: 0 0 18px;

    color: var(--prc-muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   PRICING HEADING
========================================================= */

.prc-pricing-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.prc-pricing-heading h2 {

    margin: 14px 0 0;

    font-size:
        clamp(36px, 4vw, 53px);

    line-height: 1.04;

    letter-spacing: -2.3px;
}

.prc-pricing-heading h2 span {

    color: var(--prc-blue);
}

.prc-billing-switch {

    display: flex;

    padding: 4px;

    border: 1px solid var(--prc-border);

    border-radius: 9px;

    background: #fff;

    box-shadow:
        0 5px 20px rgba(20,50,80,.04);
}

.prc-billing-switch button {

    min-height: 42px;

    padding: 0 17px;

    border: 0;

    border-radius: 6px;

    color: #758597;

    background: transparent;

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;
}

.prc-billing-switch .prc-billing-active {

    color: #fff;

    background: var(--prc-navy);

    box-shadow:
        0 4px 12px rgba(6,26,45,.15);
}

.prc-billing-active span {

    margin-left: 5px;

    color: #55a6ff;

    font-size: 7px;
}


/* =========================================================
   PLAN CARDS
========================================================= */

.prc-plans {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;

    align-items: stretch;
}

.prc-plan {

    position: relative;

    display: flex;

    flex-direction: column;

    padding: 30px;

    border: 1px solid var(--prc-border);

    border-radius: 16px;

    background: #fff;

    transition: .35s ease;
}

.prc-plan:hover {

    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(10,40,70,.09);
}

.prc-plan-featured {

    border-color:
        rgba(40,124,240,.35);

    box-shadow:
        0 18px 50px rgba(40,124,240,.1);
}

.prc-popular {

    position: absolute;

    top: 0;

    right: 24px;

    padding: 7px 11px;

    border-radius: 0 0 6px 6px;

    color: #fff;

    background: var(--prc-blue);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.prc-plan-number {

    position: absolute;

    top: 30px;

    right: 28px;

    color: #c5ced8;

    font-size: 10px;

    font-weight: 800;
}

.prc-plan-icon {

    width: 47px;

    height: 47px;

    display: grid;

    place-items: center;

    margin-bottom: 23px;

    border-radius: 10px;

    color: var(--prc-blue);

    background: #eaf3ff;

    font-size: 20px;
}

.prc-plan h3 {

    margin: 0 0 8px;

    font-size: 22px;

    letter-spacing: -.6px;
}

.prc-plan-top p {

    min-height: 63px;

    margin: 0;

    color: var(--prc-muted);

    font-size: 11px;

    line-height: 1.7;
}

.prc-plan-price {

    padding: 25px 0 21px;

    margin-top: 18px;

    border-top:
        1px solid var(--prc-border);

    border-bottom:
        1px solid var(--prc-border);
}

.prc-plan-price small {

    display: block;

    color: #8594a4;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.prc-plan-price strong {

    display: block;

    margin: 7px 0;

    color: var(--prc-navy);

    font-size: 27px;

    letter-spacing: -.8px;
}

.prc-plan-price span {

    color: #8291a1;

    font-size: 8px;
}

.prc-plan-btn {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 46px;

    margin-top: 18px;

    padding: 0 16px;

    border: 1px solid var(--prc-border);

    border-radius: 7px;

    color: var(--prc-navy);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: .3s ease;
}

.prc-plan-btn:hover {

    border-color: var(--prc-blue);

    color: var(--prc-blue);

    transform: translateX(2px);
}

.prc-plan-btn-blue {

    color: #fff;

    border-color: var(--prc-blue);

    background: var(--prc-blue);
}

.prc-plan-btn-blue:hover {

    color: #fff;

    background: #176be0;
}

.prc-plan-divider {

    height: 1px;

    margin: 25px 0 22px;

    background: var(--prc-border);
}

.prc-plan-features strong {

    color: var(--prc-navy);

    font-size: 9px;

    font-weight: 800;
}

.prc-plan-features ul {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 18px 0 0;

    padding: 0;

    list-style: none;
}

.prc-plan-features li {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #68788a;

    font-size: 9px;

    line-height: 1.5;
}

.prc-plan-features li span {

    width: 18px;

    height: 18px;

    flex: 0 0 18px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #2e9e70;

    background: #e9f8f2;

    font-size: 8px;
}


/* =========================================================
   MODULES
========================================================= */

.prc-center-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.prc-center-heading h2 {

    margin: 14px 0;

    font-size:
        clamp(36px, 4vw, 53px);

    line-height: 1.04;

    letter-spacing: -2.3px;
}

.prc-center-heading h2 span {

    color: var(--prc-blue);
}

.prc-center-heading p {

    max-width: 560px;

    margin: auto;

    color: var(--prc-muted);

    font-size: 13px;

    line-height: 1.8;
}

.prc-module-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;
}

.prc-module-card {

    display: flex;

    align-items: center;

    gap: 17px;

    min-height: 125px;

    padding: 20px;

    border: 1px solid var(--prc-border);

    border-radius: 12px;

    background: #fff;

    transition: .3s ease;
}

.prc-module-card:hover {

    border-color:
        #b8d4f6;

    transform: translateY(-4px);

    box-shadow:
        0 17px 35px rgba(20,55,90,.07);
}

.prc-module-icon {

    width: 49px;

    height: 49px;

    flex: 0 0 49px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: var(--prc-blue);

    background: #eaf3ff;

    font-size: 20px;
}

.prc-module-content {

    flex: 1;
}

.prc-module-content > span {

    color: #a1adba;

    font-size: 7px;

    font-weight: 800;
}

.prc-module-content h3 {

    margin: 4px 0;

    font-size: 14px;
}

.prc-module-content p {

    margin: 0;

    color: var(--prc-muted);

    font-size: 9px;

    line-height: 1.6;
}

.prc-module-card > b {

    color: #a9b4c0;

    font-size: 18px;

    font-weight: 400;
}


/* =========================================================
   DARK VALUE SECTION
========================================================= */

.prc-dark-section {

    position: relative;

    padding: 110px 0;

    color: #fff;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(39,128,244,.19),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #041526,
            #0a3155
        );

    overflow: hidden;
}

.prc-dark-pattern {

    position: absolute;

    inset: 0;

    opacity: .2;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}

.prc-value-heading {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin-bottom: 55px;
}

.prc-value-heading h2 {

    margin: 15px 0;

    font-size:
        clamp(37px,4vw,54px);

    line-height: 1.03;

    letter-spacing: -2.4px;
}

.prc-value-heading h2 span {

    color: #58a7ff;
}

.prc-value-heading p {

    max-width: 570px;

    color: rgba(255,255,255,.48);

    font-size: 13px;

    line-height: 1.8;
}

.prc-value-cards {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 70px 1fr;

    align-items: center;

    gap: 15px;
}

.prc-value-card {

    min-height: 245px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 15px;

    background: rgba(255,255,255,.035);

    backdrop-filter: blur(10px);
}

.prc-value-card-active {

    border-color:
        rgba(70,160,255,.3);

    background:
        linear-gradient(
            135deg,
            rgba(42,124,239,.14),
            rgba(255,255,255,.035)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);
}

.prc-value-card small {

    color: rgba(255,255,255,.34);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.3px;
}

.prc-value-card-active small {

    color: #58a7ff;
}

.prc-value-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    margin: 20px 0;

    border-radius: 8px;

    color: #a0adba;

    background: rgba(255,255,255,.06);
}

.prc-value-card-active .prc-value-icon {

    color: #50d49d;

    background: rgba(80,212,157,.1);
}

.prc-value-card h3 {

    margin: 0 0 8px;

    font-size: 19px;
}

.prc-value-card p {

    max-width: 350px;

    margin: 0;

    color: rgba(255,255,255,.43);

    font-size: 10px;

    line-height: 1.7;
}

.prc-value-arrow {

    width: 50px;

    height: 50px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 50%;

    color: #60aaff;

    background: #092b4a;

    font-size: 19px;
}


/* =========================================================
   FAQ
========================================================= */

.prc-faq-layout {

    display: grid;

    grid-template-columns: .75fr 1.25fr;

    gap: 100px;
}

.prc-faq-intro h2 {

    margin: 14px 0;

    font-size:
        clamp(36px,4vw,52px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.prc-faq-intro h2 span {

    display: block;

    color: var(--prc-blue);
}

.prc-faq-intro p {

    max-width: 330px;

    color: var(--prc-muted);

    font-size: 12px;

    line-height: 1.8;
}

.prc-faq-contact {

    display: inline-flex;

    gap: 9px;

    margin-top: 15px;

    color: var(--prc-blue);

    font-size: 10px;

    font-weight: 800;

    text-decoration: none;
}

.prc-faq-list {

    border-top:
        1px solid var(--prc-border);
}

.prc-faq-list details {

    border-bottom:
        1px solid var(--prc-border);
}

.prc-faq-list summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 22px 0;

    color: var(--prc-navy);

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.prc-faq-list summary::-webkit-details-marker {
    display: none;
}

.prc-faq-list summary span {

    width: 27px;

    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #758597;

    background: #edf2f7;

    font-size: 16px;

    font-weight: 400;

    transition: .25s ease;
}

.prc-faq-list details[open] summary span {

    color: #fff;

    background: var(--prc-blue);

    transform: rotate(45deg);
}

.prc-faq-list details p {

    max-width: 650px;

    margin: -5px 40px 22px 0;

    color: var(--prc-muted);

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.prc-final-section {

    padding-top: 0;
}

.prc-final-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 60px 65px;

    overflow: hidden;

    border-radius: 20px;

    color: #fff;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(40,133,255,.3),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061a2d,
            #0a3762
        );
}

.prc-final-glow {

    position: absolute;

    width: 300px;

    height: 300px;

    left: -160px;

    bottom: -210px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.prc-final-content {

    position: relative;

    z-index: 2;
}

.prc-final-content h2 {

    max-width: 620px;

    margin: 14px 0;

    font-size:
        clamp(34px,4vw,50px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.prc-final-content h2 span {

    color: #58a7ff;
}

.prc-final-content p {

    max-width: 560px;

    margin: 0;

    color: rgba(255,255,255,.48);

    font-size: 12px;

    line-height: 1.8;
}

.prc-final-buttons {

    position: relative;

    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .prc-hero .prc-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .prc-hero-content {

        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .prc-hero-content > p {

        margin-left: auto;

        margin-right: auto;
    }

    .prc-hero-note {

        justify-content: center;
    }

    .prc-hero-visual {

        max-width: 600px;

        width: 100%;

        margin: auto;
    }

    .prc-value-grid {

        gap: 50px;
    }

    .prc-faq-layout {

        gap: 55px;
    }
}


@media (max-width: 900px) {

    .prc-plans {

        grid-template-columns: 1fr;

        max-width: 600px;

        margin: auto;
    }

    .prc-plan-top p {

        min-height: auto;
    }

    .prc-module-grid {

        grid-template-columns: 1fr;
    }

    .prc-value-cards {

        grid-template-columns: 1fr;

        max-width: 600px;

        margin: auto;
    }

    .prc-value-arrow {

        margin: -2px auto;

        transform: rotate(90deg);
    }

    .prc-faq-layout {

        grid-template-columns: 1fr;
    }

    .prc-faq-intro {

        text-align: center;
    }

    .prc-faq-intro p {

        margin-left: auto;

        margin-right: auto;
    }

    .prc-final-box {

        align-items: flex-start;

        flex-direction: column;
    }
}


@media (max-width: 700px) {

    .prc-section {

        padding: 80px 0;
    }

    .prc-container {

        width:
            min(100% - 30px, 1180px);
    }

    .prc-hero {

        min-height: auto;

        padding: 80px 0;
    }

    .prc-hero-content h1 {

        font-size: 46px;

        letter-spacing: -2.7px;
    }

    .prc-hero-content > p {

        font-size: 13px;
    }

    .prc-hero-note {

        flex-wrap: wrap;

        gap: 7px;
    }

    .prc-note-line {

        display: none;
    }

    .prc-hero-visual {

        min-height: 400px;
    }

    .prc-orbit-1 {

        width: 400px;

        height: 400px;
    }

    .prc-orbit-2 {

        width: 300px;

        height: 300px;
    }

    .prc-mini-card-top {

        right: -8px;

        top: 15px;
    }

    .prc-mini-card-bottom {

        left: -8px;

        bottom: 20px;
    }

    .prc-mini-card {

        transform: scale(.85);
    }

    .prc-value-grid {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .prc-value-grid > div:last-child {

        padding-left: 0;

        padding-top: 25px;

        border-left: 0;

        border-top:
            1px solid var(--prc-border);
    }

    .prc-pricing-heading {

        align-items: flex-start;

        flex-direction: column;
    }

    .prc-center-heading h2,
    .prc-value-grid h2,
    .prc-pricing-heading h2 {

        font-size: 36px;

        letter-spacing: -1.7px;
    }

    .prc-plan {

        padding: 26px;
    }

    .prc-module-card {

        align-items: flex-start;

        min-height: auto;

        padding: 18px;
    }

    .prc-module-content h3 {

        font-size: 13px;
    }

    .prc-dark-section {

        padding: 85px 0;
    }

    .prc-value-heading h2 {

        font-size: 37px;

        letter-spacing: -1.7px;
    }

    .prc-faq-intro h2 {

        font-size: 37px;
    }

    .prc-final-box {

        padding: 40px 28px;
    }

    .prc-final-buttons {

        width: 100%;

        flex-direction: column;
    }

    .prc-final-buttons .prc-btn {

        width: 100%;
    }
}


@media (max-width: 480px) {

    .prc-hero-content h1 {

        font-size: 40px;

        letter-spacing: -2px;
    }

    .prc-hero-visual {

        min-height: 350px;
    }

    .prc-hero-price-card {

        padding: 14px;
    }

    .prc-price-big {

        font-size: 36px;
    }

    .prc-price-card-body {

        padding: 20px 3px;
    }

    .prc-price-lines {

        padding: 9px;
    }

    .prc-price-lines div {

        padding: 8px 0;

        font-size: 8px;
    }

    .prc-mini-card {

        transform: scale(.72);
    }

    .prc-mini-card-top {

        right: -28px;
    }

    .prc-mini-card-bottom {

        left: -28px;
    }

    .prc-billing-switch {

        width: 100%;
    }

    .prc-billing-switch button {

        flex: 1;
    }

    .prc-plan {

        padding: 23px;
    }

    .prc-plan h3 {

        font-size: 20px;
    }

    .prc-module-card {

        gap: 12px;
    }

    .prc-module-icon {

        width: 42px;

        height: 42px;

        flex-basis: 42px;
    }

    .prc-module-card > b {

        display: none;
    }

    .prc-final-content h2 {

        font-size: 32px;
    }
}