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

body,
html {
    background: #fff !important;
    color: #134252 !important;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #fff !important;
        color: #134252 !important;
    }
}

.form-step {
    display: none;
    animation: fadeInUp 0.45s;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.45s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

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

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #134252;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #A60A3D;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #134252;
    font-weight: 500;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.hero-cta-btn {
    background: linear-gradient(135deg, #A60A3D, #134252);
    color: white;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 10, 61, 0.3);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 10, 61, 0.4);
}

.trust-badge {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Floating Card */
.floating-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(19, 66, 82, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(19, 66, 82, 0.2);
}

.floating-card h3 {
    color: #A60A3D;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.report-features {
    list-style: none;
}

.report-features li {
    padding: 8px 0;
    font-weight: 500;
    color: #134252;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 80px 0;
}

.stats-title {
    text-align: center;
    font-size: 2.2rem;
    color: #134252;
    margin-bottom: 20px;
}

.stats-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #A60A3D;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.stat-item h3 {
    color: #134252;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.stat-item p {
    color: #666;
    margin-bottom: 15px;
}

.stat-amount {
    color: #A60A3D;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    background: white;
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    color: #134252;
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-container p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.lead-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(19, 66, 82, 0.1);
    text-align: left;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
    text-align: center;
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e8ed;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #134252;
    color: white;
    transform: scale(1.1);
}

.progress-bar-bg {
    height: 6px;
    background: #e1e8ed;
    border-radius: 3px;
    margin: 0 auto;
    width: 200px;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #134252, #A60A3D);
    border-radius: 3px;
    width: 33%;
    transition: width 0.5s ease;
}

.progress-text {
    margin-top: 15px;
    color: #134252;
    font-weight: 500;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.form-step h3 {
    color: #134252;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-step p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #134252;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #A60A3D;
    outline: none;
    box-shadow: 0 0 0 3px rgba(166, 10, 61, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* RODO Compact Style */
.rodo-compact {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #A60A3D;
}

.checkbox-compact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 10px 0;
}

.checkbox-compact:last-child {
    margin-bottom: 0;
}

.checkbox-compact input[type="checkbox"] {
    display: none;
}

.checkmark-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-compact input[type="checkbox"]:checked + .checkmark-custom {
    background: #134252;
    border-color: #134252;
}

.checkbox-compact input[type="checkbox"]:checked + .checkmark-custom:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-text {
    color: #134252;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
}

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

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

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.checkbox-item:hover {
    border-color: #134252;
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 66, 82, 0.1);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark-custom {
    background: #A60A3D;
    border-color: #A60A3D;
}

.checkbox-item input[type="checkbox"]:checked ~ span {
    color: #A60A3D;
    font-weight: 600;
}

.checkbox-item:has(input:checked) {
    border-color: #A60A3D;
    background: linear-gradient(135deg, rgba(19, 66, 82, 0.05), rgba(166, 10, 61, 0.05));
}

.checkbox-item span {
    color: #134252;
    font-weight: 500;
    line-height: 1.4;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #134252, #A60A3D);
    color: white;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 66, 82, 0.25);
}

.btn-secondary {
    background: #f8f9fa;
    color: #134252;
    border: 2px solid #e1e8ed;
    flex: 1;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #134252;
}

.form-navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-navigation .btn-primary {
    flex: 2;
    width: auto;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #134252;
    margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e1e8ed;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #134252;
    font-size: 1.1rem;
    margin: 0;
}

.faq-icon {
    color: #A60A3D;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.open {
    max-height: 200px;
    padding: 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #134252, #A60A3D);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta-feature h3 {
    color: white;
    margin-bottom: 10px;
}

.cta-feature p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0;
}

.cta-btn {
    background: #A60A3D;
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Footer */
.footer {
    background: #134252;
    color: white;
    padding: 60px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item p:first-child {
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.contact-item p:last-child {
    color: white;
    font-weight: 600;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .lead-form {
        padding: 30px 20px;
    }

    .form-navigation {
        flex-direction: column;
    }

    .form-navigation .btn-primary {
        flex: none;
    }

    .progress-steps {
        gap: 20px;
    }

    .step-indicator {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .cta-features {
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        padding: 40px 0;
    }

    .stats {
        padding: 60px 0;
    }

    .form-section {
        padding: 60px 0;
    }

    .faq {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }
    .form-step {
  display: none;
  animation: fadeInUp 0.45s;
}
.form-step.active {
  display: block;
  animation: fadeInUp 0.45s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px);}
  to   { opacity: 1; transform: translateY(0);}
}
.progress-container {
  margin-bottom: 32px;
}
.progress-bar-bg {
  height: 8px;
  background: #e1e8ed;
  border-radius: 3px;
  width: 100%;
}
.progress-bar {
  height: 8px;
  background: linear-gradient(90deg, #134252, #A60A3D);
  border-radius: 3px;
  width: 50%;
  transition: width 0.4s;
}
.progress-steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 10px;
}
.step-indicator {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e1e8ed; color: #666;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
  transition: all 0.3s;
}
.step-indicator.active {
  background: #134252; color: white;
  transform: scale(1.12);
}
.form-navigation {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.btn-primary, .btn-secondary {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #134252, #A60A3D);
  color: white;
  width: 100%;
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19,66,82,0.25);
}
.btn-secondary {
  background: #f8f9fa;
  color: #134252;
  border: 2px solid #e1e8ed;
}
.btn-secondary:hover {
  background: #e9ecef;
  border-color: #134252;
}
.btn-primary,
.btn-secondary,
.form__next,
.form__prev,
button {
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}
button, .btn, .btn-primary, .btn-secondary, .form__next, .form__prev {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
}
.form-navigation {
    pointer-events: auto !important;
    z-index: 9 !important;
}

}