@charset "UTF-8";

/* ==========================================================================
   Project: World Blue AI Studio - AI Training Page
   Theme: Corporate / Premium / Future
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables (Inferred from front-style.css)
   -------------------------------------------------------------------------- */
:root {
    --wb-tr-bg-light: #ffffff;
    --wb-tr-bg-soft: #f8fafc;
    --wb-tr-bg-accent: #eef7ff;

    --wb-tr-primary: #2563eb;
    /* Blue 600 */
    --wb-tr-secondary: #7c3aed;
    /* Violet 600 */
    --wb-tr-accent: #f97316;
    /* Orange 500 */

    --wb-tr-text-dark: #1e293b;
    --wb-tr-text-body: #334155;
    --wb-tr-text-muted: #64748b;

    --wb-tr-gradient-main: linear-gradient(135deg, var(--wb-tr-primary) 0%, var(--wb-tr-secondary) 100%);

    --wb-tr-font-heading: "Montserrat", "Noto Sans JP", sans-serif;
    --wb-tr-font-body: "Noto Sans JP", sans-serif;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
.wb-training-wrapper {
    background-color: var(--wb-tr-bg-light);
    color: var(--wb-tr-text-body);
    font-family: var(--wb-tr-font-body);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
}

.wb-training-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.wb-section-title {
    font-family: var(--wb-tr-font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--wb-tr-gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

.wb-section-subtitle {
    text-align: center;
    color: var(--wb-tr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.wb-training-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #fff;
    overflow: hidden;
}

.wb-training-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

.wb-training-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.wb-training-hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.wb-training-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff !important;
    /* Ensure white text */
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
    /* Strong shadow for legibility */
}

.wb-training-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.4);
    /* Darken behind text for readability */
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .wb-training-hero-title {
        font-size: 2.2rem;
    }
}

/* --------------------------------------------------------------------------
   Intro Section
   -------------------------------------------------------------------------- */
.wb-training-intro {
    padding: 6rem 0;
    text-align: center;
    background: var(--wb-tr-bg-light);
    /* Clean white background for readability */
}

.wb-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    /* Slightly larger */
    line-height: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    color: var(--wb-tr-text-dark);
    /* Ensure dark text */
}

.wb-intro-highlight {
    font-weight: 800;
    color: var(--wb-tr-primary);
    background: linear-gradient(180deg, transparent 60%, rgba(37, 99, 235, 0.15) 60%);
    padding: 0 0.2rem;
}

/* --------------------------------------------------------------------------
   Curriculum / Features
   -------------------------------------------------------------------------- */
.wb-training-features {
    padding: 6rem 0;
    background: var(--wb-tr-bg-soft);
}

.wb-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wb-feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.wb-feature-card:hover {
    transform: translateY(-5px);
}

.wb-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.wb-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wb-tr-text-dark);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .wb-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Merits
   -------------------------------------------------------------------------- */
.wb-training-merits {
    padding: 6rem 0;
}

.wb-merit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.wb-merit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--wb-tr-bg-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Added shadow for separation */
}

.wb-merit-content p {
    color: var(--wb-tr-text-body);
}


/* --------------------------------------------------------------------------
   Plans Section (New)
   -------------------------------------------------------------------------- */
.wb-training-plans {
    padding: 6rem 0;
    background: radial-gradient(circle at top, #f0f9ff 0%, #fff 100%);
}

.wb-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.wb-plan-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wb-plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--wb-tr-primary);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.wb-plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--wb-tr-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.wb-plan-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--wb-tr-text-dark);
}

.wb-plan-desc {
    font-size: 0.95rem;
    color: var(--wb-tr-text-muted);
    margin-bottom: 2rem;
    height: 3rem;
    /* Align heights */
}

.wb-plan-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--wb-tr-primary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--wb-tr-text-muted);
}

.wb-plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--wb-tr-text-muted);
}

.wb-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.wb-plan-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--wb-tr-text-body);
    line-height: 1.5;
}

.wb-plan-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--wb-tr-primary);
    font-weight: bold;
}

@media (max-width: 900px) {
    .wb-plan-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Profile Section (REUSED STYLES from front-style.css)
   -------------------------------------------------------------------------- */
.wb-fp-profile {
    padding: 6rem 0;
    background: var(--wb-tr-bg-soft);
    position: relative;
}

.wb-fp-profile-card {
    display: flex;
    gap: 4rem;
    background: #fff;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}

.wb-fp-profile-img {
    flex: 0 0 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wb-fp-profile-img img {
    width: 100%;
    display: block;
}

.wb-fp-profile-content {
    flex: 1;
}

.wb-fp-profile-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--wb-tr-gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.wb-fp-profile-name span {
    font-size: 1.5rem;
    font-weight: 400;
    margin-left: 0.5rem;
    -webkit-text-fill-color: var(--wb-tr-text-muted);
}

.wb-fp-profile-title {
    color: var(--wb-tr-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.wb-fp-profile-desc {
    color: var(--wb-tr-text-body);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.wb-fp-profile-books {
    background: var(--wb-tr-bg-accent);
    padding: 2rem;
    border-radius: 16px;
}

.wb-fp-profile-books h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--wb-tr-text-dark);
}

.wb-fp-profile-books ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wb-fp-profile-books li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--wb-tr-text-body);
    font-size: 0.95rem;
}

.wb-fp-profile-books li::before {
    content: '📚';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .wb-fp-profile-card {
        flex-direction: column;
        padding: 2.5rem;
    }

    .wb-fp-profile-img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .wb-fp-profile-img {
        max-width: 350px;
    }
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.wb-training-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #7c3aed 100%);
    color: #fff;
}

.wb-training-btn {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: #ffffff;
    color: var(--wb-tr-primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.wb-training-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}