/* Extracted from dokumenty.php */

:root {
    --docs-primary: #1e3a5f;
    --docs-secondary: #e91e8c;
    --docs-accent: #10b981;
    --docs-gray: #64748b;
    --docs-light: #f8fafc;
}

/* Hero Section */
.docs-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 80px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}
.docs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 30px 30px;
}
.docs-hero .container {
    position: relative;
    z-index: 1;
}
.docs-hero-badge {
    display: inline-block;
    background: rgba(233, 30, 140, 0.2);
    color: var(--docs-secondary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.docs-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.docs-hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 600px;
}
.docs-hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.docs-stat {
    text-align: center;
}
.docs-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--docs-secondary);
}
.docs-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Hero Form */
.docs-hero-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    max-width: 500px;
}
.docs-hero-form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.docs-hero-form-row {
    display: flex;
    gap: 10px;
}
.docs-hero-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background: white;
    color: #1e293b;
}
.docs-hero-input::placeholder {
    color: #94a3b8;
}
.docs-hero-btn {
    padding: 14px 28px;
    background: var(--docs-secondary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}
.docs-hero-btn:hover {
    background: #c4177a;
    transform: translateY(-2px);
}
.docs-hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

/* Big Download Button */
.docs-hero-download {
    text-align: center;
    margin: 30px 0;
}
.docs-download-btn-big {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.docs-download-btn-big:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5);
    color: #1e293b;
    text-decoration: none;
}
.docs-download-note {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 12px;
}
@media (max-width: 768px) {
    .docs-download-btn-big {
        padding: 16px 25px;
        font-size: 14px;
    }
}

/* Documents Grid */
.docs-section {
    padding: 80px 0;
    background: var(--docs-light);
}
.docs-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--docs-primary);
    text-align: center;
    margin-bottom: 15px;
}
.docs-section-subtitle {
    font-size: 16px;
    color: var(--docs-gray);
    text-align: center;
    margin-bottom: 50px;
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}
.docs-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}
.docs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.docs-card-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--docs-secondary);
}
.docs-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--docs-primary);
    margin-bottom: 10px;
}
.docs-card p {
    font-size: 14px;
    color: var(--docs-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
.docs-card-actions {
    display: flex;
    gap: 10px;
}
.docs-card-btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}
.docs-card-btn-primary {
    background: var(--docs-primary);
    color: white;
}
.docs-card-btn-primary:hover {
    background: #2d4a6f;
    color: white;
    text-decoration: none;
}
.docs-card-btn-secondary {
    background: rgba(30, 58, 95, 0.1);
    color: var(--docs-primary);
}
.docs-card-btn-secondary:hover {
    background: rgba(30, 58, 95, 0.2);
    color: var(--docs-primary);
    text-decoration: none;
}

/* CTA Section */
.docs-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--docs-secondary) 0%, #6366f1 100%);
    text-align: center;
    color: white;
}
.docs-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.docs-cta-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}
.docs-cta-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}
.docs-cta-input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #1e293b;
}
.docs-cta-btn {
    padding: 16px 35px;
    background: white;
    color: var(--docs-secondary);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.docs-cta-btn:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.docs-faq {
    padding: 80px 0;
    background: white;
}
.docs-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--docs-primary);
    text-align: center;
    margin-bottom: 50px;
}
.docs-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.docs-faq-item {
    background: var(--docs-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}
.docs-faq-question {
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--docs-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.docs-faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--docs-secondary);
    transition: transform 0.3s;
}
.docs-faq-item.active .docs-faq-question::after {
    transform: rotate(45deg);
}
.docs-faq-answer {
    display: none;
    padding: 0 25px 20px;
    font-size: 15px;
    color: var(--docs-gray);
    line-height: 1.7;
}
.docs-faq-item.active .docs-faq-answer {
    display: block;
}

/* Trust Badges */
.docs-trust {
    padding: 50px 0;
    background: var(--docs-light);
    text-align: center;
}
.docs-trust-title {
    font-size: 18px;
    color: var(--docs-gray);
    margin-bottom: 30px;
}
.docs-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.docs-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--docs-primary);
    font-weight: 600;
}
.docs-trust-badge-icon {
    font-size: 28px;
    color: var(--docs-accent);
}

/* SEO Section (03.12.2025) */
.docs-seo {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.docs-seo-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}
.docs-seo-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--docs-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}
.docs-seo-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--docs-primary);
    margin: 40px 0 20px;
}
.docs-seo-content p {
    margin-bottom: 15px;
}
.docs-seo-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.docs-seo-list li {
    padding: 8px 0;
    padding-left: 10px;
    border-left: 3px solid var(--docs-secondary);
    margin-bottom: 10px;
    background: white;
    border-radius: 0 8px 8px 0;
}
.docs-seo-certs {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}
.docs-seo-cert {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--docs-secondary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.docs-seo-cert strong {
    display: block;
    color: var(--docs-primary);
    margin-bottom: 8px;
    font-size: 17px;
}
.docs-seo-cert p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
}
.docs-seo-steps {
    background: white;
    padding: 25px 25px 25px 45px;
    border-radius: 12px;
    margin: 20px 0;
}
.docs-seo-steps li {
    padding: 10px 0;
    color: #1e293b;
}
.docs-seo-cta-box {
    background: linear-gradient(135deg, var(--docs-primary) 0%, #1e40af 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-top: 50px;
    text-align: center;
}
.docs-seo-cta-box h3 {
    color: white;
    margin: 0 0 15px;
    font-size: 26px;
}
.docs-seo-cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}
.docs-seo-cta-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.docs-seo-cta-box li {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
}
.docs-seo-cta-btn {
    background: white;
    color: var(--docs-primary);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.docs-seo-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* Reviews */
.docs-reviews {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}
.docs-review {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--docs-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.docs-review-text {
    font-style: italic;
    color: #374151;
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.7;
}
.docs-review-author {
    font-weight: 600;
    color: var(--docs-primary);
    font-size: 14px;
}

/* Final CTA Form */
.docs-final-cta {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    margin-top: 50px;
    text-align: center;
}
.docs-final-cta h3 {
    color: white;
    margin: 0 0 15px;
    font-size: 26px;
}
.docs-final-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-size: 16px;
}
.docs-final-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.docs-final-input {
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    color: white;
    min-width: 200px;
}
.docs-final-input::placeholder {
    color: rgba(255,255,255,0.7);
}
.docs-final-btn {
    background: white;
    color: #dc2626;
    border: none;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}
.docs-final-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.docs-final-note {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}
.docs-seo-footer {
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .docs-seo { padding: 50px 0; }
    .docs-seo-title { font-size: 24px; }
    .docs-seo-content h3 { font-size: 18px; }
    .docs-seo-cta-box { padding: 25px; }
    .docs-seo-cta-box ul { flex-direction: column; gap: 10px; }
    .docs-final-cta { padding: 30px 20px; }
    .docs-final-form { flex-direction: column; }
    .docs-final-input { min-width: 100%; }
}

/* Sticky Bar */
.docs-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--docs-primary);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.docs-sticky-text {
    color: white;
    font-size: 15px;
}
.docs-sticky-phone {
    color: var(--docs-secondary);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.docs-sticky-btn {
    padding: 12px 25px;
    background: var(--docs-secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.docs-sticky-btn:hover {
    background: #c4177a;
}

/* Modal */
.docs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.docs-modal.active {
    display: flex;
}
.docs-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
}
.docs-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--docs-gray);
}
.docs-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--docs-primary);
    margin-bottom: 10px;
}
.docs-modal-subtitle {
    font-size: 15px;
    color: var(--docs-gray);
    margin-bottom: 25px;
}
.docs-modal-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    color: #1e293b;
}
.docs-modal-input:focus {
    border-color: var(--docs-secondary);
    outline: none;
}
.docs-modal-btn {
    width: 100%;
    padding: 16px;
    background: var(--docs-secondary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.docs-modal-note {
    font-size: 13px;
    color: var(--docs-gray);
    margin-top: 15px;
    text-align: center;
}
.docs-modal-success {
    display: none;
    text-align: center;
}
.docs-modal-success.active {
    display: block;
}
.docs-modal-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .docs-hero h1 { font-size: 28px; }
    .docs-hero-stats { gap: 30px; }
    .docs-stat-value { font-size: 32px; }
    .docs-hero-form-row { flex-direction: column; }
    .docs-grid { grid-template-columns: 1fr; }
    .docs-sticky { 
        flex-direction: column; 
        gap: 10px;
        padding: 12px 15px;
    }
    .docs-cta-form { flex-direction: column; }
}

/* Audit Section */
.docs-audit {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}
.docs-audit-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}
.docs-audit-icon {
    font-size: 48px;
    color: #fbbf24;
    margin-bottom: 20px;
}
.docs-audit-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}
.docs-audit-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}
.docs-audit-form {
    margin-bottom: 25px;
}
.docs-audit-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.docs-audit-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s;
}
.docs-audit-input::placeholder {
    color: rgba(255,255,255,0.6);
}
.docs-audit-input:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255,255,255,0.15);
}
.docs-audit-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    border: none;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}
.docs-audit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}
.docs-audit-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.docs-audit-feature {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}
.docs-audit-feature span {
    color: #10b981;
    font-weight: bold;
}
.docs-audit-note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
    .docs-audit { padding: 40px 0; }
    .docs-audit-title { font-size: 22px; }
    .docs-audit-row { flex-direction: column; }
    .docs-audit-input { min-width: 100%; }
    .docs-audit-features { flex-direction: column; gap: 10px; }
}

/* Bottom padding for sticky */
.docs-page {
    padding-bottom: 80px;
}
