/* WAP index page sections (light theme) */

.container {

    padding: 0 0 24px;

}



.top {

    position: relative;

    padding: 22px 18px 18px;

    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);

    margin: 10px 16px 20px;

    border-radius: 20px;

    border: 1px solid rgba(37, 99, 235, 0.1);

    box-shadow:

        0 12px 40px rgba(37, 99, 235, 0.08),

        0 1px 0 rgba(255, 255, 255, 0.85) inset;

    overflow: hidden;

}



.top::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: linear-gradient(90deg, #2563eb, #60a5fa, #818cf8, #2563eb);

    background-size: 200% 100%;

    animation: wapHeroBarShift 8s linear infinite;

}



.top::after {

    content: '';

    position: absolute;

    top: -60px;

    right: -40px;

    width: 160px;

    height: 160px;

    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 68%);

    pointer-events: none;

}



@keyframes wapHeroBarShift {

    0% { background-position: 0% 50%; }

    100% { background-position: 200% 50%; }

}



.top.hero-convert {

    background:

        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(96, 165, 250, 0.18) 0%, transparent 55%),

        radial-gradient(circle at 100% 30%, rgba(129, 140, 248, 0.12) 0%, transparent 45%),

        linear-gradient(180deg, #ffffff 0%, #f8faff 100%);

    box-shadow:

        0 16px 48px rgba(37, 99, 235, 0.1),

        0 1px 0 rgba(255, 255, 255, 0.9) inset;

}



.top .start-button {

    margin: 0;

}



.top .hero-cta-block .start-button {

    margin: 0;

}



.section-title {

    font-size: 18px;

    font-weight: 800;

    margin: 28px 16px 14px;

    color: var(--text);

    text-align: center;

    letter-spacing: -0.02em;

}



.section-title::after {

    content: '';

    display: block;

    width: 48px;

    height: 3px;

    background: linear-gradient(90deg, var(--primary), var(--accent-light));

    margin: 10px auto 0;

    border-radius: 999px;

}



.features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin: 0 16px 24px;

    padding: 0;

    background: transparent;

    border: none;

    box-shadow: none;

}



.feature-item {

    width: 100%;

    background: var(--card);

    border-radius: 14px;

    padding: 14px 12px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

    border: 1px solid var(--border);

    border-left: none;

    box-shadow: var(--shadow-sm);

    transition: transform 0.15s ease, box-shadow 0.15s ease;

}



.feature-item:active {

    transform: scale(0.98);

}



.feature-icon {

    width: 42px;

    height: 42px;

    background: rgba(37, 99, 235, 0.12);

    border-radius: 12px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-right: 0;

    flex-shrink: 0;

}



.feature-icon--violet {

    background: rgba(129, 140, 248, 0.15);

}



.feature-icon--violet i {

    color: #6366f1;

}



.feature-icon--green {

    background: rgba(34, 197, 94, 0.12);

}



.feature-icon--green i {

    color: #16a34a;

}



.feature-icon--amber {

    background: rgba(245, 158, 11, 0.14);

}



.feature-icon--amber i {

    color: #d97706;

}



.feature-icon i {

    color: var(--primary);

    font-size: 18px;

}



.feature-title {

    font-weight: 700;

    font-size: 14px;

    margin-bottom: 4px;

    color: var(--text);

}



.feature-description {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.45;

}



.test-steps {

    background: var(--card);

    border-radius: var(--radius);

    padding: 20px 16px 10px;

    margin: 0 16px 24px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);

}



.step {

    display: flex;

    margin-bottom: 25px;

    position: relative;

}



.step:not(:last-child)::after {

    content: '';

    position: absolute;

    left: 17px;

    top: 40px;

    bottom: -8px;

    width: 2px;

    background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(37, 99, 235, 0.06));

}



.step-number {

    width: 36px;

    height: 36px;

    border-radius: 50%;

    background: linear-gradient(145deg, var(--primary-light), var(--primary));

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-right: 18px;

    font-weight: bold;

    font-size: 18px;

    flex-shrink: 0;

    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);

}



.step-content h3 {

    margin: 0 0 8px;

    font-size: 17px;

    font-weight: 700;

    color: var(--text);

}



.step-content p {

    margin: 0;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.5;

}



.testimonials {

    margin: 0 16px 24px;

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.testimonial-item {

    background: var(--card);

    border-radius: var(--radius);

    padding: 20px;

    border: 1px solid var(--border);

    border-top: 4px solid var(--primary);

    box-shadow: var(--shadow-sm);

}



.review-content,

.user-title {

    color: var(--text-muted);

}



.faq-section {

    margin: 0 16px 24px;

}



.faq-item {

    background: var(--card);

    border-radius: var(--radius-sm);

    margin-bottom: 12px;

    border: 1px solid var(--border);

    overflow: hidden;

    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);

}



.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px;

    cursor: pointer;

    border-left: 3px solid var(--primary);

    font-weight: 600;

    color: var(--text);

}



.faq-answer {

    padding: 0 15px 15px;

    display: none;

    background: #f8fafc;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.55;

}



.faq-item.active .faq-answer {

    display: block;

}



.benefits-section {

    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

    margin: 0 16px 28px;

}



.benefit-item {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 16px;

    background: var(--card);

    border-radius: 14px;

    border: 1px solid var(--border);

    box-shadow: var(--shadow-sm);

}



.benefit-icon {

    flex-shrink: 0;

    width: 44px;

    height: 44px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(96, 165, 250, 0.08));

    color: var(--primary);

    font-size: 20px;

}



.benefit-content h3 {

    margin: 0 0 6px;

    font-size: 15px;

    font-weight: 700;

    color: var(--text);

}



.benefit-content p {

    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    color: var(--text-muted);

}



.about-mbti-section {

    padding: 8px 0 28px;

    margin: 0 0 8px;

    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 12%, transparent 100%);

}



.about-container {

    margin: 0 16px;

}



.about-header {

    text-align: center;

    margin-bottom: 24px;

}



.about-title {

    font-size: 20px;

    font-weight: 800;

    margin-bottom: 10px;

    color: var(--text);

    letter-spacing: -0.02em;

}



.about-desc {

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.55;

}



.about-grid {

    display: grid;

    grid-template-columns: 1fr;

    gap: 15px;

    margin-bottom: 24px;

}



.about-card {

    background: var(--card);

    border-radius: 14px;

    padding: 20px;

    border: 1px solid var(--border);

    text-align: center;

    box-shadow: var(--shadow-sm);

}



.about-icon-circle {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 15px;

}



.about-icon-circle.primary,

.about-icon-circle.secondary {

    background: rgba(37, 99, 235, 0.12);

    color: var(--primary);

}



.about-icon-circle.tertiary {

    background: rgba(34, 197, 94, 0.12);

    color: var(--success);

}



.about-panel {

    background: var(--card);

    border-radius: var(--radius);

    border: 1px solid var(--border);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}



.about-panel-inner {

    display: flex;

    flex-direction: column;

}



.about-panel-left {

    padding: 20px;

}



.about-panel-title {

    font-size: 17px;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--text);

}



.about-panel-text {

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.55;

    margin-bottom: 10px;

}



.about-panel-right {

    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);

    min-height: 160px;

}



.about-panel-right img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    padding: 12px;

}



@media (min-width: 480px) {

    .about-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .benefits-section {

        grid-template-columns: repeat(2, 1fr);

    }




}



@media (prefers-reduced-motion: reduce) {

    .top::before {

        animation: none;

    }

}

