/* =========================================
   PROCENT LANDING PAGE - Fundacja Projekt Starsi
   Standalone styles - does not modify existing CSS
   ========================================= */

body {
    max-width: 2400px;
    margin: 0 auto!important;
}
/* --- RESET & BASE --- */
.procent-page,
.procent-page *,
.procent-page *::before,
.procent-page *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.procent-page {
    font-family: "Poppins", sans-serif;
    color: #2d2d2d;
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.procent-page a {
    color: #9bb304;
    text-decoration: none;
    transition: color 0.2s;
}

.procent-page a:hover {
    color: #7a8f03;
}

/* Force white text on orange/green backgrounds - override generic link color */
.procent-page a.procent-btn--orange,
.procent-page a.procent-btn--green,
.procent-page a.procent-action-card--orange,
.procent-page a.procent-action-card--green {
    color: #fff;
}

.procent-page a.procent-btn--orange:hover,
.procent-page a.procent-btn--green:hover,
.procent-page a.procent-action-card--orange:hover,
.procent-page a.procent-action-card--green:hover {
    color: #fff;
}

.procent-page a.procent-btn--green-outline {
    color: #9bb304;
}

.procent-page a.procent-btn--green-outline:hover {
    color: #fff;
}

.procent-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.procent-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


/* --- STICKY HEADER --- */
.procent-header {
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
    left: 0;
    background: transparent;

    padding: 12px 0;
}

.procent-header__inner {
    display: flex;
    align-items: flex-end;
    padding-left: 0;
    padding-right: 0;
    justify-content: space-between;
}

.procent-header__logo img {
    height: 66px;
    width: auto;
}

.procent-header__right {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    gap: 16px;
}

.procent-header__krs {
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    gap: 8px;
    line-height: 100%;
    font-size: 19px;
    color: #fff;
}

.procent-header__krs strong {
    color: #fff;
    font-size: 22px;
    line-height: 100%;
}


/* --- HERO BANNER (DESKTOP) --- */
.procent-hero--desktop {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    @media (max-width: 1500px) {
        .procent-hero__text h1 {
            font-size: 32px;
        }
    }
}

.procent-hero-mobile {
    display: none;
}

.procent-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.15) 65%, transparent 100%);
    z-index: 1;
}

.procent-hero__content {
    position: relative;
    z-index: 2;
    padding: 130px 0 50px;
}

.procent-hero__text {
    max-width: 700px;
}

.procent-hero__text h1 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.procent-hero__subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #b8d30f;
    margin-bottom: 0 !important;
}

.mt_3 {
    margin-top: 3rem;
}

.procent-hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.procent-hero__btn {
    margin-top: 0;
}

/* --- HERO BANNER (MOBILE) --- */
.procent-hero-mobile__image {
    width: 100%;
    min-height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.procent-hero-mobile__content {
    background: #fff;
    padding: 36px 0 40px 0;
    text-align: center;
}

.procent-hero-mobile__content h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 16px;
}

.procent-hero-mobile__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #9bb304;
    margin-bottom: 0 !important;
}


/* --- SECTIONS --- */
.procent-section {
    padding: 70px 0;
}

.procent-section--white {
    background: #fff;
}

.procent-section--gray {
    background: #f5f5f5;
}

.procent-section__title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.procent-section__sep {
    width: 120px;
    height: 4px;
    background: #9bb304;
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.procent-subsection__title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin: 50px 0 40px 0;
}


/* --- ACTION CARDS (Module 2) --- */
.procent-actions {
    padding: 50px 0;
}

.procent-actions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.procent-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    border: none;
    gap: 16px;
    min-height: 160px;
}

.procent-action-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.procent-action-card--orange {
    background: #eb6d00;
    color: #fff;
}

.procent-action-card--orange:hover {
    color: #fff;
    background: #d46200;
}

.procent-action-card--green {
    background: #9bb304;
    color: #fff;
}

.procent-action-card--green:hover {
    color: #fff;
    background: #889e03;
}

.procent-action-card--outline {
    background: #fff;
    color: #9bb304;
    border: 2px solid #9bb304;
}

.procent-action-card--outline:hover {
    background: #f7f9e6;
    color: #889e03;
}

.procent-action-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.procent-action-card--outline .procent-action-card__icon {
    background: rgba(155, 179, 4, 0.1);
}


/* --- BUTTONS --- */
.procent-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    color: #fff;
}

.procent-btn--orange {
    background: #eb6d00;
    color: #fff;
}

.procent-btn--orange:hover {
    background: #d46200;
    color: #fff;
}

.procent-btn--green {
    background: #9bb304;
    color: #fff;
}

.procent-btn--green:hover {
    background: #889e03;
    color: #fff;
}

.procent-btn--green-outline {
    background: transparent;
    color: #9bb304;
    border: 2px solid #9bb304;
}

.procent-btn--green-outline:hover {
    background: #9bb304;
    color: #fff;
}

.procent-btn--white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.procent-btn--white-outline:hover {
    background: #fff;
    color: #2d2d2d;
}


/* --- CTA PAIR --- */
.procent-cta-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}


/* --- COPY BUTTON & TOOLTIP --- */
.procent-copy-btn {
    position: relative;
    cursor: pointer;
}

.procent-copy-btn--small {
    background: none;
    border: none;
    color: #9bb304;
    padding: 4px;
    display: inline-flex;
    align-items: center;
}

.procent-copy-btn--small:hover {
    color: #7a8f03;
}

.procent-copy-btn--inline {
    background: none;
    border: none;
    color: #9bb304;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 8px;
}

.procent-copy-btn--inline:hover {
    color: #7a8f03;
}

.procent-copy-btn__tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #2d2d2d;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.procent-copy-btn__tooltip.active {
    opacity: 1;
}


/* --- MISSION (Module 3) --- */
.procent-mission {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.procent-mission__lead {
    font-size: 20px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.procent-mission__cta-text {
    font-size: 22px;
    font-weight: 600;
    color: #9bb304;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 0;
}


/* --- BENEFIT CARDS --- */
.procent-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 10px;
}

.procent-benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.procent-section--gray .procent-benefit-card {
    background: #fff;
}

.procent-benefit-card:hover {
    transform: translateY(-3px);
}

.procent-benefit-card__icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.procent-benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #9bb304;
    margin-bottom: 12px;
}

.procent-benefit-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}


/* --- STORIES (Module 4) --- */
.procent-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
}

.procent-story--reverse {
    direction: rtl;
}

.procent-story--reverse > * {
    direction: ltr;
}

.procent-story__image img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.procent-story__content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #9bb304;
    margin-bottom: 20px;
}

.procent-story__content p {
    font-size: 16px;
    line-height: 1.7;
}

.procent-story__cta-text {
    font-size: 18px !important;
    font-weight: 600;
    color: #eb6d00;
}

.procent-story .procent-cta-pair {
    justify-content: flex-start;
    margin-top: 24px;
}

.procent-story--reverse .procent-cta-pair {
    justify-content: flex-start;
}

.procent-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 50px 0;
}


/* --- PIT METHODS (Module 5) --- */
.procent-pit-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.procent-pit-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.procent-section--gray .procent-pit-card {
    background: #fff;
}

.procent-pit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #9bb304;
    margin-bottom: 12px;
}

.procent-pit-card p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}

.procent-pit-card .procent-btn {
    margin-top: auto;
    align-self: flex-start;
    font-size: 14px;
    padding: 10px 22px;
}

.procent-summary-box {
    text-align: center;
    padding: 40px 0 0 0;
}

.procent-summary-box__text {
    font-size: 22px;
    font-weight: 600;
    color: #2d2d2d;
}


/* --- MINISTRY SECTION (Module 6) --- */
.procent-ministry__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.procent-ministry__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.procent-ministry__step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.procent-ministry__step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #9bb304;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.procent-ministry__step p {
    margin-bottom: 8px;
    font-size: 16px;
}

.procent-ministry__info-box {
    background: #f5f7e6;
    border-left: 4px solid #9bb304;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.procent-ministry__info-box strong {
    font-size: 16px;
    color: #2d2d2d;
}

.procent-ministry__image img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 100%;
}


/* --- PIT FORMS (Module 7) --- */
.procent-pit-forms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.procent-pit-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #2d2d2d;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.procent-pit-form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #2d2d2d;
}

.procent-pit-form-card strong {
    font-size: 20px;
    font-weight: 700;
    color: #9bb304;
}

.procent-pit-form-card span {
    font-size: 13px;
    color: #777;
}


/* --- ABOUT / STATS (Module 8) --- */
.procent-about__text {
    max-width: 860px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.procent-about__text p {
    font-size: 17px;
}

.procent-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.procent-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    border-top: 4px solid #9bb304;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.procent-stat-card__number {
    font-size: 48px;
    font-weight: 800;
    color: #9bb304;
    line-height: 1;
    margin-bottom: 12px;
}

.procent-stat-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}

.procent-about__cta-text {
    font-size: 20px;
    text-align: center;
}


/* --- FAQ (Module 9) --- */
.procent-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    margin-bottom: 10px;
}

.procent-faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.procent-faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: left;
    transition: background 0.2s;
}

.procent-faq-item__question:hover {
    background: #fafafa;
}

.procent-faq-item__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #9bb304;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.procent-faq-item__arrow {
    flex-shrink: 0;
    margin-left: auto;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s;
}

.procent-faq-item__arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #9bb304;
    border-bottom: 2px solid #9bb304;
    transform: translate(-50%, -60%) rotate(45deg);
    transition: transform 0.3s;
}

.procent-faq-item.active .procent-faq-item__arrow::before {
    transform: translate(-50%, -30%) rotate(-135deg);
}

.procent-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.procent-faq-item.active .procent-faq-item__answer {
    max-height: 300px;
    padding: 0 20px 20px 60px;
}

.procent-faq-item__answer p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
}


/* --- MODAL --- */
.procent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.procent-modal.active {
    display: flex;
}

.procent-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.procent-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.procent-modal__content {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.procent-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    transition: color 0.2s;
}

.procent-modal__close:hover {
    color: #333;
}

.procent-modal__body {
    padding: 40px 36px 20px 36px;
}

.procent-modal__body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.procent-modal__info-box {
    background: #f5f7e6;
    border-left: 4px solid #9bb304;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
}

.procent-modal__info-box p {
    margin-bottom: 4px;
    font-size: 15px;
}

.procent-highlight {
    color: #eb6d00;
    font-weight: 700;
    font-size: 18px;
}

.procent-modal__footer {
    display: flex;
    gap: 12px;
    padding: 20px 36px 30px 36px;
    flex-wrap: wrap;
}


/* --- FOOTER --- */
.procent-footer {
    background: linear-gradient(180deg, #6f8000 0%, #9bb304 100%);
    color: #fff;
    padding: 60px 0 30px 0;
}

.procent-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.procent-footer__logo {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.procent-footer__brand p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 4px;
}

.procent-footer__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.procent-footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.procent-page .procent-footer__links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.2s;
}

.procent-page .procent-footer__links a:hover {
    color: #fff;
}

.procent-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    width: 100%;
}

.procent-footer__copy p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 4px;
}

.procent-footer__copy a {
    color: rgba(255, 255, 255, 0.6);
}

.procent-footer__copy a:hover {
    color: #fff;
}


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

@media (max-width: 1024px) {
    .procent-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .procent-pit-forms {
        grid-template-columns: repeat(3, 1fr);
    }

    .procent-hero__text h1 {
        font-size: 34px;
    }
}

@media (max-width: 900px) {
    .procent-actions__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .procent-action-card {
        min-height: auto;
        padding: 24px 20px;
        flex-direction: row;
        gap: 12px;
    }

    .procent-action-card__icon {
        width: 48px;
        height: 48px;
    }

    .procent-action-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .procent-story {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .procent-story--reverse {
        direction: ltr;
    }

    .procent-story__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .procent-story .procent-cta-pair {
        justify-content: center;
    }

    .procent-ministry__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .procent-ministry__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .procent-pit-methods {
        grid-template-columns: 1fr;
    }

    .procent-pit-forms {
        grid-template-columns: repeat(2, 1fr);
    }

    .procent-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px auto;
    }

    .procent-faq__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .procent-hero--desktop {
        display: none;
    }

    .procent-hero-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .procent-section {
        padding: 30px 0;
    }

    .procent-section__title {
        font-size: 24px;
    }

    .procent-story__content h3 {
        font-size: 22px;
        text-align: center;
    }

    .procent-story__content {
        text-align: center;
    }

    .procent-cta-pair {
        flex-direction: column;
        align-items: stretch;
    }

    .procent-btn {
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .procent-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .procent-subsection__title {
        font-size: 19px;
    }

    .procent-header__krs span {
        display: none;
    }

    .procent-footer__links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .procent-container {
        padding: 0 16px;
    }

    .procent-hero-mobile__content h1 {
        font-size: 20px;
    }

    .procent-hero-mobile__subtitle {
        font-size: 15px;
    }

    .procent-hero-mobile__image {
        min-height: 35vh;
    }

    .procent-section__title {
        font-size: 21px;
    }

    .procent-pit-forms {
        grid-template-columns: 1fr;
    }

    .procent-modal__body {
        padding: 30px 20px 16px 20px;
    }

    .procent-modal__footer {
        padding: 16px 20px 24px 20px;
        flex-direction: column;
    }

    .procent-modal__footer .procent-btn {
        width: 100%;
        justify-content: center;
    }

    .procent-stat-card__number {
        font-size: 40px;
    }

    .procent-faq-item__question {
        font-size: 14px;
        padding: 14px 16px;
    }

    .procent-faq-item.active .procent-faq-item__answer {
        padding: 0 16px 16px 48px;
    }
}


/* --- WORDPRESS ADMIN BAR ADJUSTMENT --- */
.admin-bar .procent-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .procent-header {
        top: 46px;
    }
}
