* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f7fa;
    color: #1e2b3c;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 203, 57, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(254, 203, 57, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(254, 203, 57, 0);
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    animation: fadeInUp 1s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.logo span {
    color: #fecb39;
    font-weight: 800;
}

.header-contacts {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(254, 203, 57, 0.3);
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
    background: transparent;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    transition: 0.3s;
}

.social-link:hover {
    background: #fecb39;
    border-color: #fecb39;
}

.social-link:hover svg {
    fill: #1e2b3c;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.eurolege.pl/wp-content/uploads/2025/03/niezaplacenie-nakazu-zaplaty.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: -2;
    transform: scale(1.1);
    animation: scaleIn 2s ease forwards;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title span {
    color: #fecb39;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #fecb39;
    color: #1e2b3c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btn:hover {
    background: #e5b42a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(254, 203, 57, 0.3);
}

.form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    animation: scaleIn 1s ease 0.5s both;
}

.form-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e2b3c;
    letter-spacing: -0.5px;
}

.form-card p {
    color: rgba(0,0,0,0.5);
    margin-bottom: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    font-size: 16px;
    transition: 0.3s;
    color: #1e2b3c;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fecb39;
    background: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-group a {
    color: #fecb39;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn {
    width: 100%;
    padding: 18px;
    background: #fecb39;
    color: #1e2b3c;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background: #e5b42a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(254, 203, 57, 0.3);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.benefits {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    transition: 0.3s;
}

.benefit-item:hover {
    background: rgba(254, 203, 57, 0.05);
    transform: translateY(-5px);
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }

.benefit-icon {
    font-size: 48px;
    color: #fecb39;
    margin-bottom: 15px;
    display: inline-block;
}

.benefit-item strong {
    display: block;
    color: #1e2b3c;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
}

.numbers-section {
    padding: 80px 0;
    background: #fecb39;
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: rotate(30deg);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.number-item {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.number-value {
    font-size: 60px;
    font-weight: 800;
    color: #1e2b3c;
    line-height: 1;
    margin-bottom: 15px;
}

.number-label {
    font-size: 18px;
    font-weight: 500;
    color: #1e2b3c;
    opacity: 0.8;
}

.steps-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title span {
    color: #fecb39;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fecb39;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1e2b3c;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e2b3c;
    margin-bottom: 10px;
}

.step-text {
    color: rgba(0,0,0,0.6);
    font-size: 14px;
    line-height: 1.6;
}

.reviews-section {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.3s; }
.review-card:nth-child(3) { animation-delay: 0.5s; }

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #fecb39;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fecb39;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1e2b3c;
}

.review-info p {
    font-size: 12px;
    color: rgba(0,0,0,0.4);
}

.review-rating {
    color: #fecb39;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(0,0,0,0.7);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.review-amount {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eef2f7;
    font-weight: 600;
    color: #fecb39;
}

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e2b3c;
    transition: 0.3s;
}

.faq-question:hover {
    color: #fecb39;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fecb39;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e2b3c;
    font-weight: 600;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.about-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-title span {
    color: #fecb39;
}

.about-text {
    color: rgba(0,0,0,0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
}

.about-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fecb39;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 14px;
    color: rgba(0,0,0,0.6);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    background: #f8fafc;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.cta-section {
    padding: 80px 0;
    background: #fecb39;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e2b3c;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.cta-text {
    color: rgba(0,0,0,0.7);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.cta-btn-primary {
    background: #1e2b3c;
    color: #ffffff;
}

.cta-btn-primary:hover {
    background: #2a3c4c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid #1e2b3c;
    color: #1e2b3c;
}

.cta-btn-secondary:hover {
    background: #1e2b3c;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer {
    padding: 40px 0;
    background: #1e2b3c;
    text-align: center;
}

.footer p {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.footer .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(254, 203, 57, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.footer .social-link svg {
    width: 20px;
    height: 20px;
    fill: rgba(254, 203, 57, 0.5);
    transition: 0.3s;
}

.footer .social-link:hover {
    border-color: #fecb39;
}

.footer .social-link:hover svg {
    fill: #fecb39;
}

.footer .info-text {
    font-size: 11px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
}

.footer a:hover {
    color: #fecb39;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.modal-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #fecb39;
    position: relative;
    transform: scale(0.95);
    animation: scaleIn 0.3s ease forwards;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: rgba(0,0,0,0.3);
    transition: 0.3s;
}

.modal-close:hover {
    color: #fecb39;
}

.modal h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1e2b3c;
}

.modal p {
    color: rgba(0,0,0,0.5);
    margin-bottom: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-error {
    display: none;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.phone-error.show {
    display: block;
}

.success-message {
    background: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 15px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .benefits-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefits-grid,
    .steps-grid,
    .reviews-grid,
    .numbers-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

    .about-title {
        font-size: 32px;
    }

    .review-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}