/* ==========================================================================
   1.5% PODATKU LANDING PAGE - STYLE
   ========================================================================== */

/* ==========================================================================
   FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');

/* ==========================================================================
   VARIABLES & GLOBAL STYLES
   ========================================================================== */
:root {
    --color-green: #006b2d;
    --color-green-dark: #005223;
    --color-orange: #f5a623;
    --color-red: #e30613;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #f5f5f5;
    --color-dark-gray: #333333;
    --color-light-gray: #e6e6e6;
    --spacing: 2rem;
}

.procent-landing * {
    box-sizing: border-box;
}

.procent-landing {
    font-family: 'Century Gothic', sans-serif;
    color: var(--color-dark-gray);
    line-height: 1.6;
    background: var(--color-white);
}

.procent-landing h1,
.procent-landing h2,
.procent-landing h3 {
    font-family: 'Century Gothic', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-green);
}

.procent-landing h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.procent-landing h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

.procent-landing h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
}

.procent-landing h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-green);
    margin-bottom: 0.5rem;
}

.procent-landing p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.procent-landing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hide default footer */
.page-template-page-procent footer.footer,
.page-template-page-procent .social-top {
    display: none;
}

/* ==========================================================================
   CUSTOM HEADER FOR CAMPAIGN
   ========================================================================== */
.campaign-header {
    background: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.campaign-header .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.campaign-header .logo {
    max-height: 60px;
}

.campaign-header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.campaign-header .krs-info {
    text-align: right;
}

.campaign-header .header-procent-logo {
    display: flex;
    align-items: center;
}

.campaign-header .header-procent-logo img {
    max-height: 50px;
    width: auto;
}

.campaign-header .krs-label {
    font-size: 0.9rem;
    color: var(--color-dark-gray);
    margin-bottom: 5px;
}

.campaign-header .krs-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-green);
}

.krs-copy {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
    position: relative;
}

.mt_2 {
    margin-top: 20px;
}

.primary_color, p a.primary_color {
    color: var(--color-green);
}

.mt_3 {
    margin-top: 30px;
}

.mt_4 {
    margin-top: 40px;
}

.krs-copy:hover {
    opacity: 0.8;
}
.faq-question {
    &:focus {
        outline: none!important;
    }
}
.copy-icon {
    display: inline-block;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.krs-copy:hover .copy-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero video responsive - desktop/mobile */
.hero-video-mobile {
    display: none;
}

.hero-video-desktop {
    display: block;
}

@media (max-width: 768px) {
    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    color: var(--color-white);
    padding: 40px 20px;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: clamp(1.6rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 2rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-red {
    background: var(--color-red);
    color: var(--color-white);
}

.btn-red:hover {
    background: #c00510;
}

.btn-green {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-green:hover {
    background: var(--color-green-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-size: 0.9rem;
    text-transform: none;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-green);
}

.btn-copy-krs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--color-white);
    color: var(--color-green);
    border: 2px solid var(--color-green);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.btn-copy-krs:hover {
    background: var(--color-green);
    color: var(--color-white);
}

.btn-copy-krs:hover .copy-icon {
    stroke: var(--color-white);
}

.btn-copy-krs-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-copy-krs-white:hover {
    background: var(--color-white);
    color: var(--color-green);
}

/* Copy tooltip */
.copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    animation: fadeInOut 1.5s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    20% { opacity: 1; transform: translateX(-50%) translateY(0); }
    80% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================================================
   SCROLL ARROW
   ========================================================================== */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0.9;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
}

.scroll-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-white {
    background: var(--color-white);
}

.section-gray {
    background: var(--color-gray);
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-intro-text {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.section-cta-text {
    text-align: center;
    font-size: 1.1rem;
    margin: 40px 0 20px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.cost-highlight {
    background: var(--color-gray);
    color: var(--color-green);
    padding: 15px 30px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    margin: 30px 0;
    border-left: 2px solid var(--color-green);
    border-right: 2px solid var(--color-green);
}

/* ==========================================================================
   BENEFITS GRID (Section 1)
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-gray);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
}

.benefit-item h4 {
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   VIDEO WRAPPER (Section 2)
   ========================================================================== */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* YouTube iframe responsive */
.video-wrapper-youtube {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-wrapper-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   ANIMAL STORIES (Section 3)
   ========================================================================== */
.animal-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--color-light-gray);
}

.animal-story:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.animal-story-reverse {
    direction: rtl;
}

.animal-story-reverse .animal-story-image,
.animal-story-reverse .animal-story-content {
    direction: ltr;
}

.animal-story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.animal-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.animal-story-image:hover img {
    transform: scale(1.03);
}

.animal-story-content h3 {
    color: var(--color-green);
    margin-bottom: 20px;
}

.animal-story-content .cta-buttons {
    justify-content: flex-start;
    margin-top: 20px;
}

/* ==========================================================================
   PIT OPTIONS GRID (Section 4)
   ========================================================================== */
.pit-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pit-option {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.pit-option h3 {
    margin-bottom: 15px;
}

.pit-option p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.pit-option a {
    color: white;
}

/* ==========================================================================
   INSTRUCTION WRAPPER (Section 5)
   ========================================================================== */
.instruction-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.instruction-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.instruction-image img {
    width: 100%;
    height: auto;
    display: block;
}

.instruction-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.instruction-list li {
    padding: 15px 20px;
    background: var(--color-gray);
    margin-bottom: 10px;
    border-radius: 10px;
    border-left: 4px solid var(--color-green);
}

/* ==========================================================================
   PIT FORMS GRID (Section 6)
   ========================================================================== */
.pit-forms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pit-form-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: var(--color-white);
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-dark-gray);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.pit-form-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,107,45,0.2);
    background: var(--color-green);
    color: var(--color-white);
}

.pit-form-name {
    font-size: 1.3rem;
    font-weight: bold; 
    margin-bottom: 5px;
}

.pit-form-desc {
    font-size: 0.85rem;
}

#sekcja-9 {
    padding-bottom: 0;
}

/* ==========================================================================
   STATS ROW (Section 7)
   ========================================================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: var(--color-gray);
    border-radius: 20px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 107, 45, 0.2);
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green), var(--color-green-dark));
    border-radius: 15px 15px 0 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-green);
    font-family: 'Century Gothic', sans-serif;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-dark-gray);
    line-height: 1.4;
}

/* ==========================================================================
   FAQ ACCORDION (Section 8)
   ========================================================================== */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-accordion.faq-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--color-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-gray);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.center {
    text-align: center;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin-bottom: 0;
    margin-top: 15px;
}

/* ==========================================================================
   SEO SECTION (Section 9)
   ========================================================================== */
.seo-section {
    background: var(--color-gray);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto 40px;
}

.seo-preview h3,
.seo-full h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.3rem;
    color: var(--color-green);
    margin-bottom: 15px;
}

.seo-expand-btn,
.seo-collapse-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    color: var(--color-green);
    font-weight: 600;
    cursor: pointer;
    padding: 10px 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.seo-expand-btn:hover,
.seo-collapse-btn:hover {
    color: var(--color-green-dark);
}

.seo-full ul {
    margin: 20px 0;
    padding-left: 20px;
}

.seo-full li {
    margin-bottom: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.campaign-footer {
    background: var(--color-dark-gray);
    color: var(--color-white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info h3 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-info p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-krs {
    margin: 20px 0;
}

.footer-cta {
    margin: 30px 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-link-highlight {
    color: var(--color-orange) !important;
}

.footer-copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #999;
}

.footer-copyright a {
    color: #ccc;
    text-decoration: none;
}

.footer-copyright a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   E-PIT MODAL
   ========================================================================== */
.epit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.epit-modal.active {
    display: flex;
}

.epit-modal-dialog {
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.epit-modal-content {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.epit-modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px 0;
}

.epit-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-dark-gray);
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.epit-modal-close:hover {
    background: var(--color-gray);
    color: var(--color-red);
}

.epit-modal-body {
    padding: 10px 30px 30px;
    text-align: center;
}

.epit-modal-text {
    margin-bottom: 20px;
}

.epit-modal-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-dark-gray);
}

.epit-modal-text .text-green {
    color: var(--color-green);
    font-weight: bold;
}

.btn-copy-krs-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--color-dark-gray);
    color: var(--color-white);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.btn-copy-krs-inline:hover {
    background: var(--color-green);
}

.epit-modal-image {
    margin: 20px 0;
}

.epit-modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.epit-modal-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.btn-copy-krs-modal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: var(--color-dark-gray);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.btn-copy-krs-modal:hover {
    background: var(--color-green);
    transform: translateY(-2px);
}

/* Hero copy button */
.btn-copy-krs-hero {
    position: relative;
}

.btn-copy-krs-hero .copy-tooltip,
.btn-copy-krs-inline .copy-tooltip,
.btn-copy-krs-modal .copy-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    animation: fadeInOut 1.5s ease;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pit-forms-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-accordion.faq-two-columns {
        grid-template-columns: 1fr;
        max-width: 900px;
    }

    .faq-column {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .campaign-header .header-content {
        flex-direction: row;
        gap: 10px;
    }

    .campaign-header .header-right {
        gap: 10px;
    }

    .campaign-header .logo {
        max-height: 50px;
    }

    .campaign-header .header-procent-logo img {
        max-height: 40px;
    }
 
    .campaign-header .krs-number {
        font-size: 1rem;
    }

    .campaign-header .krs-label {
        font-size: 0.8rem;
        margin-bottom: 0;
    }

    .hero-section {
        margin-top: 0px;
        min-height: calc(100vh - 80px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
 
    .hero-buttons .btn-primary,
    .hero-buttons .btn-copy-krs-hero {
        width: 100%;
        max-width: 300px;
    }

    /* E-PIT Modal responsive */
    .epit-modal-body {
        padding: 10px 20px 20px;
    }

    .epit-modal-text p {
        font-size: 1rem;
    }

    .btn-copy-krs-inline {
        display: block;
        margin: 10px auto 0;
    }

    .epit-modal-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-copy-krs-modal,
    .epit-modal-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
    }

    .section {
        padding: 50px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .animal-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .animal-story-reverse {
        direction: ltr;
    }

    .animal-story-image {
        order: -1;
    }

    .animal-story-content .cta-buttons {
        justify-content: center;
    }

    .pit-options-grid {
        grid-template-columns: 1fr;
    }

    .instruction-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pit-forms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-copy-krs,
    .cta-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .scroll-arrow {
        bottom: 20px;
    }

    .scroll-arrow svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .procent-landing .container {
        padding: 0 15px;
    }

    .pit-forms-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 440px) {
    .campaign-header .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .campaign-header .header-procent-logo img {
        max-height: 35px;
    }
}
