
/* =========================================================================
   STYLE DLA STRONY "O TYPERKU"
========================================================================= */
.about-wrapper {
	width: 94%;
    max-width: 1350px;
    margin: 30px auto;
    padding: 0 15px;
    color: #2d3748;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* SEKCJA HERO (Góra) */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 40px;
}
.hero-title {
    font-size: 2.8em;
    font-weight: 900;
    color: #2b6cb0;
    margin-bottom: 15px;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.2em;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* PRZYCISKI CTA (Call To Action) */
.btn-cta {
    display: inline-block;
    background: linear-gradient(to right, #3182ce, #2b6cb0);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.25em;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
    transition: all 0.3s ease;
    border: none;
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.6);
    color: #ffffff;
}

/* HISTORIA PROJEKTU */
.origin-story {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-left: 6px solid #3182ce;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(45, 55, 72, 0.06);
}
.origin-story-label {
    display: inline-block;
    background: #ebf8ff;
    color: #2b6cb0;
    border: 1px solid #bee3f8;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.82em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}
.origin-story h2 {
    margin: 0 0 14px 0;
    color: #2d3748;
    font-size: 2em;
    line-height: 1.25;
}
.origin-story p {
    color: #4a5568;
    font-size: 1.02em;
    margin: 0 0 18px 0;
}
.origin-story p:last-child {
    margin-bottom: 0;
}
.origin-story a {
    color: #2b6cb0;
    font-weight: 800;
    text-decoration: none;
}
.origin-story a:hover {
    text-decoration: underline;
}
.origin-story-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0;
}
.origin-step {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
}
.origin-step strong {
    display: block;
    color: #2d3748;
    margin-bottom: 7px;
    font-size: 1.02em;
}
.origin-step span {
    display: block;
    color: #718096;
    font-size: 0.94em;
    line-height: 1.5;
}
.origin-story strong {
    color: #1f4f82;
    font-weight: 850;
}
.origin-author-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f7fafc;
    border: 1px solid #dbe7f3;
    border-radius: 999px;
    padding: 8px 14px 8px 8px;
    margin: 0 0 18px 0;
    color: #2d3748 !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(45, 55, 72, 0.05);
}
.origin-author-mini:hover {
    border-color: #90cdf4;
    background: #ebf8ff;
}
.origin-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #bee3f8;
    flex-shrink: 0;
}
.origin-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.origin-author-avatar span {
    font-size: 1.55em;
    line-height: 1;
}
.origin-author-mini-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.origin-author-mini-text strong {
    color: #2d3748;
    font-size: 0.98em;
}
.origin-author-mini-text small {
    color: #718096;
    font-size: 0.78em;
    margin-top: 3px;
}
/* KARTY Z CECHAMI GRY */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}
.feature-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    text-align: center;
    transition: transform 0.2s;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e0;
}
.feature-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}
.feature-title {
    font-size: 1.3em;
    font-weight: 800;
    margin-bottom: 10px;
    color: #2d3748;
}
.feature-text {
    font-size: 0.95em;
    color: #718096;
}

/* BANER BEZPIECZEŃSTWA */
.safe-banner {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-left: 6px solid #38a169;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.safe-icon { font-size: 2.5em; flex-shrink: 0; }
.safe-content h3 { margin: 0 0 8px 0; color: #22543d; font-size: 1.4em; }
.safe-content p { margin: 0; color: #2f855a; font-size: 1.05em; }

/* SEKCJA DOLNA */
.bottom-cta-section {
    text-align: center;
    padding: 50px 20px;
    background: #2d3748;
    color: white;
    border-radius: 16px;
    margin-bottom: 40px;
}
.bottom-cta-section h2 { margin: 0 0 15px 0; font-size: 2em; }
.bottom-cta-section p { color: #a0aec0; margin-bottom: 30px; font-size: 1.1em; }

@media (max-width: 768px) {
    .origin-story { padding: 24px 20px; }
    .origin-story h2 { font-size: 1.65em; }
    .origin-author-mini { max-width: 100%; }
    .origin-story-timeline { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .safe-banner { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.2em; }
}
/* STATSY */
/* SEKCJA STATYSTYK (CIEMNA) */
.stats-showcase {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 16px;
    padding: 40px 30px;
    color: white;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid #4a5568;
}
.stats-showcase h2 {
    color: #90cdf4;
    margin-top: 0;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 10px;
}
.stats-showcase .stats-intro {
    text-align: center;
    color: #a0aec0;
    margin-bottom: 35px;
    font-size: 1.1em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    border-radius: 12px;
    transition: transform 0.2s, background 0.2s;
}
.stat-box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}
.stat-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}
.stat-name {
    font-weight: 800;
    font-size: 1.15em;
    margin-bottom: 8px;
    color: #e2e8f0;
}
.stat-desc {
    font-size: 0.9em;
    color: #cbd5e0;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .stats-showcase { padding: 30px 20px; }
}
