/* =====================================================
   [O NAS] Stylowy template O Nas
   Beauty Care Global Sp. z o.o. - iOS-inspired design
===================================================== */

/* ==================
   HERO SECTION
================== */
.onas-hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #fef8f0 0%, #ffffff 100%);
    border-radius: 10px;
    margin-bottom: 60px;
    margin-top: 30px;
}

.onas-badge {
    display: inline-block;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f7a736;
    background: rgba(247, 167, 54, 0.08);
    padding: 6px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.onas-hero-title {
    font-family: 'Bodoni Moda SC', serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.onas-hero-subtitle {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================
   STORY SECTION
================== */
.onas-story {
    margin-bottom: 80px;
    padding: 60px 0;
}

.story-visual svg {
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.story-badge {
    display: inline-block;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f7a736;
    background: rgba(247, 167, 54, 0.08);
    padding: 6px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.story-title {
    font-family: 'Bodoni Moda SC', serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
}

.story-text {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    margin-bottom: 16px;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* ==================
   VALUES SECTION
================== */
.onas-values {
    margin-bottom: 80px;
}

.section-header {
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f7a736;
    background: rgba(247, 167, 54, 0.08);
    padding: 6px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Bodoni Moda SC', serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.values-grid {
    margin-top: 48px;
}

.value-card {
    background: #ffffff;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    padding: 32px 24px;
    height: 100%;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(247, 167, 54, 0.3);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.value-title {
    font-family: 'Bodoni Moda SC', serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-desc {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* ==================
   STATS SECTION
================== */
.onas-stats {
    margin-bottom: 80px;
}

.stats-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 10px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(247, 167, 54, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Bodoni Moda SC', serif;
    font-size: 48px;
    font-weight: 600;
    color: #f7a736;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* ==================
   WHY US SECTION
================== */
.onas-why {
    margin-bottom: 80px;
}

.why-visual svg {
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why-list {
    margin-top: 32px;
}

.why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    border-left: 3px solid #f7a736;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(247, 167, 54, 0.3);
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-icon {
    width: 32px;
    height: 32px;
    background: rgba(247, 167, 54, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #f7a736;
    flex-shrink: 0;
}

.why-text h4 {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.why-text p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
    margin: 0;
}

/* ==================
   CTA SECTION
================== */
.onas-cta {
    margin-bottom: 60px;
}

.cta-card {

    border-radius: 10px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(247, 167, 54, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;

}

.cta-title {
    font-family: 'Bodoni Moda SC', serif;
    font-size: 40px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.cta-text {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================
   CUSTOM CONTENT
================== */
.onas-custom-content {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-300);
}


.onas-why__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .onas-why__layout {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .onas-why__media-col {
        width: 42%;
        flex: 0 0 42%;
        margin-left: -3.5rem;
    }

    .onas-why__content-col {
        width: 58%;
        flex: 0 0 58%;
    }

    .onas-why .why-list {
        width: min(100%, 56rem);
    }

    .onas-why__media-col .why-visual img {
        width: 100%;
        max-width: none;
    }
}
/* ==================
   RESPONSIVE DESIGN
================== */
@media (max-width: 991px) {
    .onas-hero {
        padding: 60px 20px 50px;
    }

    .onas-hero-title {
        font-size: 38px;
    }

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

    .onas-story,
    .onas-values,
    .onas-stats,
    .onas-why,
    .onas-cta {
        margin-bottom: 50px;
    }

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

    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .onas-hero {
        padding: 50px 20px 40px;
        margin-top: 20px;
    }

    .onas-hero-title {
        font-size: 32px;
    }

    .onas-hero-subtitle {
        font-size: 15px;
    }

    .story-title,
    .section-title {
        font-size: 28px;
    }

    .stats-container {
        padding: 40px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-card {
        padding: 40px 24px;
    }

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

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

    .cta-actions .btn {
        width: 100%;
    }

    .story-visual,
    .why-visual {
        margin-bottom: 40px;
    }

    .onas-stats .stats-container {
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .onas-hero-title {
        font-size: 28px;
    }

    .story-title,
    .section-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .value-icon {
        font-size: 32px;
    }

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