/* =====================================================
   WAY Curiosity Box Page Styles
   ===================================================== */

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

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

/* Section Titles - WAY Startup Style */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    letter-spacing: 1.2px;
    background: linear-gradient(90deg, #53EAFD 0%, #C4B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #D1D5DC;
    margin-bottom: 48px;
}

/* Hero Section */
.curiosity-hero {
    position: relative;
    padding: 120px 24px 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.curiosity-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/way-startup/core-experience-bg.png') center / cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.curiosity-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(83, 234, 253, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(157, 78, 221, 0.1), transparent),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(83, 234, 253, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
}

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

.curiosity-hero-content {
    position: relative;
    z-index: 1;
}

.curiosity-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 40px;
    margin-bottom: 24px;
    background: linear-gradient(to right, #22d3ee, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.curiosity-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.feature-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.curiosity-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.curiosity-hero-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.curiosity-hero-img {
    width: 130%;
    max-width: 785px;
    height: auto;
    transform: rotate(13.52deg);
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

.curiosity-hero-img:hover {
    transform: rotate(13.52deg) scale(1.03);
}

.mockup-frame {
    position: relative;
    width: 307px;
    height: 510px;
}

.mockup-device {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.mockup-screen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(0.9);
    object-fit: cover;
    border-radius: 32px;
    z-index: 1;
}

/* Problem Section */
.curiosity-problem {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 39, 0.5));
}

.problem-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.problem-card {
    width: 260px;
    padding: 2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(83, 234, 253, 0.3);
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.problem-card:hover {
    border-color: rgba(83, 234, 253, 0.6);
}

.problem-card.purple {
    background: linear-gradient(180deg, rgba(157, 78, 221, 0.1), transparent);
    border-color: rgba(157, 78, 221, 0.3);
}

.problem-card.purple:hover {
    border-color: rgba(157, 78, 221, 0.6);
}

.problem-card.blue {
    border-color: rgba(59, 130, 246, 0.3);
}

.problem-card.blue:hover {
    border-color: rgba(59, 130, 246, 0.6);
}

.problem-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(83, 234, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(83, 234, 253, 0.1), transparent);
}

.problem-icon img {
    width: 48px;
    height: 48px;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: center;
}

/* How It Works Section */
.curiosity-how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
}

.how-it-works-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

/* What's Inside Section */
.curiosity-whats-inside {
    padding: 100px 0;
}

.whats-inside-image {
    max-width: 1200px;
    margin: 3rem auto 0;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.whats-inside-image img {
    width: 100%;
    height: auto;
}

/* Skills Section */
.curiosity-skills {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.5), transparent);
}

.curiosity-skills .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.curiosity-skills .skill-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(83, 234, 253, 0.2);
    background: linear-gradient(135deg, rgba(83, 234, 253, 0.05), transparent);
}

.curiosity-skills .skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(83, 234, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(83, 234, 253, 0.1), transparent);
}

.curiosity-skills .skill-icon img {
    width: 24px;
    height: 24px;
}

.curiosity-skills .skill-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.curiosity-skills .skill-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .curiosity-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .curiosity-hero-content {
        order: 1;
    }

    .curiosity-hero-mockup {
        order: 2;
    }

    .curiosity-hero-img {
        width: 120%;
    }

    .feature-bullets li {
        text-align: left;
    }

    .curiosity-hero-buttons {
        justify-content: center;
    }

    .mockup-frame {
        width: 250px;
        height: 416px;
    }
}

@media (max-width: 768px) {
    .curiosity-hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .curiosity-hero-title {
        font-size: 2.5rem;
    }

    .curiosity-hero-subtitle {
        font-size: 1.1rem;
    }

    .feature-bullets li {
        font-size: 1rem;
    }

    .curiosity-hero-img {
        width: 100%;
    }

    .problem-cards {
        flex-direction: column;
        align-items: center;
    }

    .problem-card {
        width: 100%;
        max-width: 300px;
    }

    .curiosity-skills .skills-grid {
        grid-template-columns: 1fr;
    }

    .curiosity-skills .skill-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .curiosity-hero-title {
        font-size: 2rem;
    }

    .curiosity-hero-img {
        width: 100%;
    }

    .mockup-frame {
        width: 200px;
        height: 332px;
    }

    .curiosity-hero-buttons {
        flex-direction: column;
    }

    .curiosity-hero-buttons .btn {
        width: 100%;
    }
}