@charset "UTF-8";

/* ==========================================================================
   Project: World Blue AI Studio - AI Creative Business Intro
   Theme: Premium / Business / Creative / Future
   ========================================================================== */

:root {
    --wb-biz-bg-light: #ffffff;
    --wb-biz-bg-soft: #f8f9fa;
    --wb-biz-bg-dark: #111827;

    --wb-biz-primary: #0f172a;
    /* Slate 900 - Deep Business Blue */
    --wb-biz-secondary: #dda15e;
    /* Muted Gold */
    --wb-biz-accent: #bc6c25;
    /* Earthy Orange/Gold */
    --wb-biz-highlight: #3b82f6;
    /* Bright Blue for CTAs */

    --wb-biz-text-main: #334155;
    --wb-biz-text-light: #94a3b8;
    --wb-biz-text-white: #ffffff;

    --wb-biz-font-heading: "Montserrat", "Noto Sans JP", sans-serif;
    --wb-biz-font-body: "Noto Sans JP", sans-serif;

    --wb-biz-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --wb-biz-gradient-gold: linear-gradient(45deg, #dda15e, #fefae0, #dda15e);
}

/* Base Setup */
.wb-biz-wrapper {
    background-color: var(--wb-biz-bg-light);
    color: var(--wb-biz-text-main);
    font-family: var(--wb-biz-font-body);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
}

.wb-biz-container {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

.section-title {
    font-family: var(--wb-biz-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--wb-biz-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--wb-biz-secondary);
}

/* Buttons */
.wb-btn-gold {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--wb-biz-gradient-gold);
    color: var(--wb-biz-primary);
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(221, 161, 94, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.wb-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 161, 94, 0.6);
}

/* HERO SECTION */
.wb-biz-hero {
    position: relative;
    /* Changed from height: 80vh to min-height to accommodate content */
    min-height: 100vh;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wb-biz-gradient-hero);
    color: white;
    overflow: hidden;
    text-align: center;
}

/* Placeholder for Hero Image - would be replaced by generated image */
.wb-biz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/ai-business-hero.jpg') center/cover no-repeat;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.wb-biz-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.wb-urgent-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.wb-biz-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
}

.wb-biz-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

/* HERO SUB-CONTENT */
.wb-hero-sub-content {
    margin-top: 3rem;
    width: 100%;
}

.wb-hero-video {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wb-hero-video iframe {
    width: 100%;
    height: 100%;
}

.wb-shifts-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wb-shifts-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.wb-shifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.wb-shift-item {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.wb-shift-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.wb-shift-item h4 {
    color: var(--wb-biz-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.wb-shift-item p {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.4;
}

.wb-hero-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.wb-meta-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* CONCEPT SECTION */
.wb-biz-concept {
    padding: 5rem 0;
    background: white;
}

.wb-concept-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wb-concept-lead {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--wb-biz-primary);
    margin-bottom: 2rem;
}

/* TARGET SECTION */
.wb-biz-features {
    padding: 5rem 0;
    background: var(--wb-biz-bg-soft);
}

.wb-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.wb-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--wb-biz-secondary);
    transition: transform 0.3s;
}

.wb-feature-card:hover {
    transform: translateY(-5px);
}

.wb-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* VISION COLUMN SECTION */
.wb-biz-column {
    padding: 6rem 0;
    background: #111827;
    /* Keeping the dark background */
    color: white;
    text-align: center;
}

.wb-column-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 2.2;
}

.wb-column-content p {
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.wb-column-content strong {
    color: var(--wb-biz-secondary);
    font-size: 1.25rem;
}

.wb-column-highlight {
    margin-top: 3rem;
    font-size: 1.4rem !important;
    font-weight: 700;
    font-family: var(--wb-biz-font-heading);
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(221, 161, 94, 0.5);
}

/* PROFILE SECTION */
.wb-biz-profile {
    padding: 5rem 0;
    background: white;
}

.wb-profile-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.wb-profile-img {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--wb-biz-secondary);
}

.wb-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-profile-txt {
    flex: 1;
}

/* FORM SECTION */
.wb-biz-form {
    padding: 5rem 0;
    background: var(--wb-biz-bg-soft);
}

.wb-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .wb-biz-title {
        font-size: 2.2rem;
    }

    .wb-profile-flex {
        flex-direction: column;
        text-align: center;
    }

    .wb-profile-img {
        width: 200px;
        height: 200px;
        flex: 0 0 200px;
        margin: 0 auto;
    }
}