/* =============================================
   LaLa GLOBAL LANGUAGE - ネパール語LP
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* =============================================
   Header
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-cta {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px 60px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-lang {
    display: inline-block;
    position: relative;
}

.hero-lang::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-note {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(241, 39, 17, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(241, 39, 17, 0.5);
}

.cta-button-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

/* =============================================
   Sections Common
   ============================================= */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* =============================================
   Problem Section
   ============================================= */
.problem {
    background: #f8f9fa;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.problem-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #667eea;
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-text {
    font-size: 1rem;
    line-height: 1.8;
}

.problem-text strong {
    color: #e74c3c;
}

/* =============================================
   Agitation Section
   ============================================= */
.agitation {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.agitation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.agitation .section-title {
    color: #fff;
}

.agitation-text {
    text-align: left;
    font-size: 1.05rem;
    line-height: 2;
}

.agitation-text p {
    margin-bottom: 20px;
}

.agitation-text strong {
    color: #f5af19;
}

.agitation-list {
    margin: 20px 0;
    padding-left: 20px;
}

.agitation-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.agitation-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* =============================================
   Solution Section
   ============================================= */
.solution {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.solution-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.solution-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.solution .section-title {
    color: #fff;
}

.solution-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 40px;
}

.solution-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 30px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* =============================================
   Benefits Section
   ============================================= */
.benefits {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    padding: 35px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Evidence */
.evidence {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: #fff;
}

.evidence-item {
    text-align: center;
}

.evidence-number {
    font-size: 3rem;
    font-weight: 700;
}

.evidence-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* =============================================
   CTA Mid Section
   ============================================= */
.cta-mid {
    background: #f8f9fa;
}

.cta-mid-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-mid-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-mid-text {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
}

/* =============================================
   Contents Section (Course & Pricing)
   ============================================= */
.contents {
    background: #fff;
}

.course-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.course-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.course-table th,
.course-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.course-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 500;
}

.course-table td strong {
    font-size: 1.1rem;
}

.course-label {
    display: inline-block;
    padding: 3px 10px;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
}

.course-table .recommended {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.course-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
}

/* Offer Box */
.offer-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 3px solid #f5af19;
    border-radius: 20px;
    text-align: center;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 25px;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.offer-sessions {
    font-size: 1.1rem;
    font-weight: 500;
}

.offer-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f12711;
}

.offer-tax {
    font-size: 0.9rem;
    color: #666;
}

.offer-benefit {
    font-size: 1.1rem;
}

.offer-benefit strong {
    color: #f12711;
}

/* =============================================
   Narrow Section
   ============================================= */
.narrow {
    background: #f8f9fa;
}

.narrow-content {
    max-width: 600px;
    margin: 0 auto;
}

.narrow-list {
    margin-bottom: 40px;
}

.narrow-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.narrow-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #fff;
}

.narrow-icon svg {
    width: 18px;
    height: 18px;
}

.narrow-note {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
}

.narrow-note p {
    color: #667eea;
}

/* =============================================
   FAQ Section
   ============================================= */
.faq {
    background: #fff;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.faq-question,
.faq-answer {
    display: flex;
    gap: 15px;
}

.faq-question {
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-q,
.faq-a {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
}

.faq-q {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.faq-a {
    background: #e9ecef;
    color: #667eea;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
}

/* =============================================
   Action Section (Final CTA)
   ============================================= */
.action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
}

.action-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.action-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.action-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 40px;
    opacity: 0.95;
}

.action-note {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
    .header-content {
        height: 60px;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 20px 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .agitation .section-title {
        font-size: 1.4rem;
    }

    .solution-features {
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .evidence {
        gap: 30px;
        padding: 30px;
    }

    .evidence-number {
        font-size: 2.2rem;
    }

    .course-table th,
    .course-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .offer-box {
        padding: 30px 20px;
    }

    .offer-amount {
        font-size: 2rem;
    }

    .action {
        padding: 70px 0;
    }

    .action-title {
        font-size: 1.6rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Animation on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
