/* ========================================
   CSS Variables - Color Scheme & Typography
   ======================================== */
:root {
    /* Color Palette */
    --primary-navy: #0D47A1;
    --metallic-silver: #B0BEC5;
    --accent-blue: #00B0FF;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --dark-gray: #37474F;
    --text-primary: #212121;
    --text-secondary: #546E7A;

    /* Typography */
    --font-primary: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 71, 161, 0.08);
    --shadow-md: 0 4px 16px rgba(13, 71, 161, 0.12);
    --shadow-lg: 0 8px 32px rgba(13, 71, 161, 0.16);

    /* Transitions */
    --transition-base: all 0.3s ease;
}

/* ========================================
   Global Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.3;
    color: var(--primary-navy);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.desktop-only {
    display: inline;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline;
    }
}

/* ========================================
   CTA Buttons
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
    font-family: var(--font-primary);
    text-decoration: none;
}

.cta-button-primary {
    background: #F68C0F;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button-primary:hover {
    background: #D97A0D;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-button-secondary:hover {
    background: #0091D9;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.cta-button-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.cta-button-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.cta-button-full {
    width: 100%;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 14px 24px;
        font-size: 0.875rem;
    }

    .cta-button-large {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 40px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--accent-blue);
}

/* お問い合わせボタンスタイル */
.nav-link-cta {
    background: #F68C0F;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(246, 140, 15, 0.3);
}

.nav-link-cta:hover {
    background: #D97A0D;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(246, 140, 15, 0.4);
    transform: translateY(-2px);
}

.cta-button-header {
    padding: 12px 24px;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.125rem;
    display: block;
}

.mobile-nav-cta {
    background: #F68C0F;
    color: var(--white) !important;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(246, 140, 15, 0.3);
}

@media (max-width: 1000px) {
    .nav {
        display: none;
    }

    .cta-button-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-image {
        height: 40px;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    margin-top: 72px;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* PC版：1600×750の比率 (750/1600 = 0.46875 = 46.875%) */
    padding-top: 46.875%;
    display: block;
}

/* 背景画像 */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-pc {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-sp {
    display: none;
}

/* オーバーレイ（PC版：左側のみ濃いグラデーション） */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(13, 71, 161, 0.9) 0%,
        rgba(13, 71, 161, 0.7) 35%,
        rgba(13, 71, 161, 0.3) 50%,
        transparent 65%);
    z-index: 1;
}

/* コンテンツコンテナ */
.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding: 60px 0;
}

/* 1501px以上で左側の位置を固定 */
@media (min-width: 1501px) {
    .hero-content {
        margin-left: 8%;
    }

    .hero-title-image {
        max-width: 650px;
        margin-bottom: 40px;
    }

    .hero-cta {
        max-width: 650px;
        gap: 20px;
    }

    .cta-button-inquiry,
    .cta-button-download {
        font-size: 1.25rem;
        padding: 20px 40px;
    }
}

/* 右側画像エリア（PC版で右側のスペースを確保） */
.hero-image-area {
    flex: 1;
    min-width: 400px;
}

/* SP版ビジネスチーム画像（PC版では非表示） */
.hero-sp-image {
    display: none;
}

.hero-sp-team-image {
    width: 100%;
    height: auto;
    display: block;
}

/* タイトル画像（画面幅に応じてサイズ調整） */
.hero-title-image {
    width: 100%;
    max-width: min(45vw, 650px); /* 画面幅の45%、最大650px */
    height: auto;
    margin-bottom: clamp(16px, 2vw, 24px); /* 16px〜24px */
    display: block;
}

/* CTAボタン（PC版：横並び、画面幅に応じてサイズ調整） */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 8px; /* ボタンと注釈の間隔を狭く */
    max-width: min(45vw, 650px); /* タイトル画像と同じ幅 */
}

.hero-cta-note {
    color: var(--white);
    font-size: clamp(0.75rem, 1vw, 0.875rem); /* 12px〜14px */
    text-align: center;
    margin-top: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button-inquiry {
    background: linear-gradient(135deg, #F68C0F 0%, #FF6B00 100%);
    color: var(--white);
    font-size: clamp(1rem, 1.4vw, 1.5rem); /* 16px〜24px */
    font-weight: 700;
    padding: clamp(18px, 2.2vw, 26px) clamp(36px, 4vw, 56px); /* 上下18-26px、左右36-56px */
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    flex: 1;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
}

.cta-button-inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button-inquiry:hover::before {
    left: 100%;
}

.cta-button-inquiry:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #F68C0F 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: none;
}

.cta-button-download {
    background: #FF9800;
    color: var(--white);
    font-size: clamp(0.875rem, 1.2vw, 1.25rem); /* 14px〜20px */
    font-weight: 700;
    padding: clamp(14px, 1.8vw, 20px) clamp(24px, 3vw, 40px); /* 上下14-20px、左右24-40px */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    flex: 1;
    white-space: nowrap;
}

.cta-button-download:hover {
    background: #FB8C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.4);
}

/* スマホ版レイアウト（640px以下） */
@media (max-width: 640px) {
    .hero {
        /* スマホ版は高さ自動 */
        padding-top: 0;
        min-height: auto;
        margin-top: 72px;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* SP版背景画像に切り替え */
    .hero-bg-pc {
        display: none;
    }

    .hero-bg-sp {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* SP版オーバーレイ（上部のみグラデーション） */
    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(13, 71, 161, 0.85) 0%,
            rgba(21, 101, 192, 0.75) 25%,
            rgba(0, 176, 255, 0.3) 50%,
            transparent 70%);
    }

    .hero-container {
        position: relative;
        flex-direction: column;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 40px 0 32px 0;
    }

    .hero-image-area {
        display: none;
    }

    /* SP版ビジネスチーム画像を表示 */
    .hero-sp-image {
        display: block;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-sp-team-image {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-title-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    /* SP版CTAボタン：縦並び */
    .hero-cta {
        flex-direction: column;
        max-width: 100%;
    }

    .hero-cta-note {
        font-size: 0.75rem;
        margin-top: 0;
    }

    .cta-button-inquiry,
    .cta-button-download {
        font-size: 1.125rem;
        padding: 18px 24px;
        width: 100%;
    }
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
    margin-bottom: 60px;
}

/* ========================================
   Challenges Section
   ======================================== */
.challenges {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.challenges-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.challenge-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
}

.challenge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.challenge-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.challenge-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 20px 0 24px;
}

.challenge-title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-navy);
    line-height: 1.4;
}

.challenge-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.challenge-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    margin: 24px 0;
}

/* PC版：提供価値とROIを横並び */
.challenge-value-roi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.challenge-value-section,
.challenge-roi-section {
    /* 各セクションのスタイル */
}

.challenge-solution-title,
.challenge-roi-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.challenge-solution,
.challenge-roi {
    font-weight: 700;
    color: var(--text-primary);
    padding: 16px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .challenges {
        padding: 60px 0;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* スマホ版：縦並びに戻す */
    .challenge-value-roi {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .challenge-value-section {
        margin-bottom: 24px;
    }

    .challenge-value-section::after {
        content: '';
        display: block;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-blue), transparent);
        margin: 24px 0;
    }

    .challenge-number-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .challenge-header {
        gap: 16px;
        margin-top: 0;
    }

    .challenge-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.features-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.features-brand-image {
    height: 60px;
    width: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: transparent;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
    line-height: 1.4;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-card {
        padding: 40px 32px;
    }
}

/* ========================================
   AI Tools Section
   ======================================== */
.ai-tools-section {
    margin-top: 40px;
    text-align: center;
    padding: 60px 40px;
    background: var(--light-gray);
    border-radius: 16px;
}

.ai-tools-title {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 40px;
    font-weight: 700;
}

.ai-tools-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.ai-tool-item {
    background: var(--white);
    color: var(--primary-navy);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--accent-blue);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.ai-tool-item:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .ai-tools-section {
        margin-top: 30px;
        padding: 40px 20px;
    }

    .ai-tools-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .ai-tools-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ai-tool-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ========================================
   Curriculum Section
   ======================================== */
.curriculum {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.phase-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin: 60px auto 80px;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
}

.phase-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--accent-blue);
    z-index: 0;
}

.phase-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.phase-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 176, 255, 0.3);
    border: 4px solid var(--white);
}

.phase-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .phase-steps {
        gap: 0;
        margin: 40px auto 60px;
    }

    .phase-steps::before {
        width: 70%;
        height: 3px;
        top: 30px;
    }

    .phase-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border: 3px solid var(--white);
    }

    .phase-label {
        font-size: 0.9rem;
    }
}

.curriculum-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
}

.curriculum-card {
    display: flex;
    gap: 30px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-left: 6px solid var(--accent-blue);
}

.curriculum-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.curriculum-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-blue);
    line-height: 1;
    min-width: 100px;
    opacity: 0.2;
}

.curriculum-content {
    flex: 1;
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.curriculum-title {
    font-size: 1.75rem;
    color: var(--primary-navy);
    font-weight: 700;
}

.curriculum-week {
    background: var(--primary-navy);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.curriculum-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.curriculum-section-title {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 6px;
}

.curriculum-section-title:first-of-type {
    margin-top: 0;
}

.curriculum-section-title:last-of-type {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.curriculum-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
    margin: 4px 0;
}

.curriculum-text::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.curriculum-goal {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
    margin-top: 4px;
}

/* カリキュラムCTAボタン */
.curriculum-cta {
    text-align: center;
    margin-top: 60px;
}

.curriculum-cta .cta-button-large {
    box-shadow: 0 8px 24px rgba(246, 140, 15, 0.35);
    transition: all 0.3s ease;
    min-width: 300px;
}

.curriculum-cta .cta-button-large:hover {
    box-shadow: 0 12px 32px rgba(246, 140, 15, 0.45);
}

@media (max-width: 768px) {
    .curriculum {
        padding: 60px 0;
    }

    .curriculum-timeline {
        gap: 30px;
        padding: 0 16px;
    }

    .curriculum-card {
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
    }

    .curriculum-number {
        font-size: 2.5rem;
        min-width: auto;
    }

    .curriculum-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .curriculum-title {
        font-size: 1.4rem;
    }

    .curriculum-week {
        font-size: 0.85rem;
    }

    .curriculum-text {
        font-size: 0.9rem;
    }

    .curriculum-goal {
        font-size: 0.95rem;
        padding: 12px;
    }

    .curriculum-cta {
        margin-top: 40px;
    }

    .curriculum-cta .cta-button-large {
        min-width: 100%;
        width: 100%;
    }
}

/* ========================================
   Results Section (Simple Version)
   ======================================== */
.results {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

/* Comparison Chart Styles */
.comparison-chart-wrapper {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.chart-container {
    position: relative;
    height: 400px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.table-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-chart-wrapper {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .chart-container {
        height: 280px;
        padding: 12px 8px;
    }

    .table-note {
        font-size: 0.7rem;
        padding: 0 6px;
        line-height: 1.5;
    }
}

.results-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.result-card-simple {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-base);
    border: 3px solid transparent;
    box-shadow: var(--shadow-md);
}

.result-card-simple:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.result-number-large {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 20px;
    line-height: 1;
}

.result-unit-large {
    font-size: 3rem;
}

.result-title-simple {
    font-size: 1.2rem;
    color: var(--primary-navy);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .results {
        padding: 60px 0;
    }

    .results-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }

    .result-card-simple {
        padding: 48px 32px;
    }

    .result-number-large {
        font-size: 4.5rem;
    }

    .result-unit-large {
        font-size: 3rem;
    }
}

/* ========================================
   Case Studies Section
   ======================================== */
.case-studies {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-base);
    border-top: 4px solid var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--white);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.case-title-area {
    flex: 1;
}

.case-company-name {
    font-size: 1.5rem;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.case-category {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.case-meta {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.case-section-title {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 700;
}

.case-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.case-result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: #F68C0F;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 16px;
    border: 2px solid #F68C0F;
    box-shadow: 0 2px 8px rgba(246, 140, 15, 0.15);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .case-studies {
        padding: 60px 0;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .case-card {
        padding: 30px 24px;
    }

    .case-header {
        gap: 16px;
        margin-bottom: 24px;
    }

    .case-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .case-company-name {
        font-size: 1.25rem;
    }

    .case-category {
        font-size: 0.85rem;
    }

    .case-meta {
        font-size: 0.85rem;
    }

    .case-content {
        gap: 20px;
    }

    .case-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   Pricing Section Styles
   ======================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.pricing-highlight {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.2em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.pricing-card-featured {
    border: 3px solid var(--accent-blue);
    transform: scale(1.02);
}

.pricing-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.pricing-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-plan-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--light-gray);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-badge i {
    color: var(--accent-blue);
}

.pricing-price-section {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}
@media (max-width: 768px) {
    .pricing-price-section {
        padding: 0;
    }
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-right: 4px;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
}

.pricing-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-left: 8px;
}

.pricing-breakdown {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-primary);
}

.pricing-feature i {
    color: var(--accent-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0 20px;
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }

    .pricing-plan-name {
        font-size: 1.6rem;
    }

    .pricing-amount {
        font-size: 2.8rem;
    }

    .pricing-currency {
        font-size: 1.4rem;
    }

    .pricing-period {
        font-size: 1rem;
    }

    .pricing-featured-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
}

/* ========================================
   Old Results Section Styles (Keep for compatibility)
   ======================================== */
.results {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.result-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.result-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-8px);
}

.result-icon {
    font-size: 4rem;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.result-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.result-unit {
    font-size: 2.5rem;
}

.result-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-navy);
}

.result-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.result-chart {
    margin-top: 24px;
}

.result-bar {
    width: 100%;
    height: 12px;
    background: rgba(13, 71, 161, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.result-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-navy));
    border-radius: 6px;
    transition: width 1s ease;
}

.result-chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.result-chart-after {
    color: var(--accent-blue);
    font-weight: 700;
}

.result-testimonial {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-blue);
    margin-top: 24px;
    text-align: left;
}

.result-testimonial i {
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.result-testimonial p {
    font-style: italic;
    margin-bottom: 12px;
}

.result-testimonial span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.result-example {
    margin-top: 24px;
    text-align: left;
}

.result-example-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.result-example-item i {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .results {
        padding: 60px 0;
    }

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

/* ========================================
   Case Studies Section
   ======================================== */
.cases {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--light-gray);
}

.case-industry {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 700;
}

.case-company {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-navy);
}

.case-challenge,
.case-solution,
.case-result {
    margin-bottom: 24px;
}

.case-challenge h4,
.case-solution h4,
.case-result h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-challenge i {
    color: #F44336;
}

.case-solution i {
    color: var(--accent-blue);
}

.case-result i {
    color: #4CAF50;
    font-size: 1.25rem;
}

.case-challenge p,
.case-solution p,
.case-result p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.case-result > p:not(.case-result-highlight) {
    color: var(--text-primary);
    font-weight: 500;
}

.case-solution ol {
    padding-left: 20px;
    color: var(--text-secondary);
}

.case-solution li {
    margin-bottom: 8px;
}

.case-result-highlight {
    background: #fff;
    color: var(--text-primary);
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
    border-left: 4px solid #FF9800;
}

.case-result-highlight strong {
    font-size: 1.875rem;
    font-weight: 900;
    color: #FF9800;
    display: inline-block;
    padding: 0 4px;
}

.cases-cta {
    margin-top: 60px;
    text-align: center;
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.cases-cta-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cases-cta-text i {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .cases {
        padding: 60px 0;
    }

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

    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ========================================
   Curriculum Section
   ======================================== */
.curriculum {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.curriculum-timeline {
    position: relative;
}

.curriculum-phase {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 40px;
    border-left: 6px solid var(--primary-navy);
    transition: var(--transition-base);
}

.curriculum-phase:hover {
    transform: translateX(8px);
    border-left-color: var(--accent-blue);
}

.curriculum-phase-highlight {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(0, 176, 255, 0.05));
    border-left-color: var(--accent-blue);
}

.curriculum-phase-header {
    margin-bottom: 32px;
}

.curriculum-phase-number {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 900;
    margin-bottom: 16px;
}

.curriculum-phase-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.curriculum-phase-duration {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.curriculum-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.curriculum-module {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
}

.curriculum-module-icon {
    font-size: 2rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.curriculum-module-content h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.curriculum-module-content ul {
    list-style: none;
    padding: 0;
}

.curriculum-module-content li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.curriculum-module-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.curriculum-outcome {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--accent-blue);
    color: var(--text-primary);
}

.instructor-section {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-navy), #1565C0);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.instructor-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

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

.instructor-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.instructor-highlight i {
    font-size: 3rem;
    color: var(--accent-blue);
}

.instructor-highlight p {
    font-size: 1.125rem;
}

.instructor-description {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .curriculum {
        padding: 60px 0;
    }

    .curriculum-phase {
        padding: 32px 24px;
    }

    .curriculum-modules {
        grid-template-columns: 1fr;
    }

    .instructor-section {
        padding: 40px 24px;
    }
}

/* ========================================
   LMS Section
   ======================================== */
.lms {
    padding: var(--section-padding) 0;
    background: var(--light-gray);
}

.lms-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.lms-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.lms-benefit-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.lms-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lms-benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.lms-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.lms-benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.lms-visual {
    position: sticky;
    top: 100px;
}

.lms-dashboard-mockup {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.lms-dashboard-header {
    background: var(--primary-navy);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.lms-dashboard-content {
    padding: 32px;
}

.lms-metric {
    margin-bottom: 32px;
}

.lms-metric:last-child {
    margin-bottom: 0;
}

.lms-metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.lms-metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.lms-metric-bar {
    width: 100%;
    height: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
}

.lms-metric-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-navy));
    border-radius: 6px;
    transition: width 1s ease;
}

@media (max-width: 968px) {
    .lms {
        padding: 60px 0;
    }

    .lms-content {
        grid-template-columns: 1fr;
    }

    .lms-visual {
        position: static;
    }
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.pricing-note {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.1), rgba(13, 71, 161, 0.1));
    border-left: 4px solid var(--accent-blue);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
    font-size: 1.125rem;
}

.pricing-note i {
    color: var(--accent-blue);
    margin-right: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.05), rgba(0, 176, 255, 0.05));
    border: 3px solid var(--accent-blue);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 0.875rem;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-plan-name {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.pricing-plan-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 2px solid rgba(13, 71, 161, 0.1);
    border-bottom: 2px solid rgba(13, 71, 161, 0.1);
}

.pricing-price-note {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

.pricing-features i {
    color: var(--accent-blue);
    margin-top: 4px;
    flex-shrink: 0;
}

.pricing-feature-none {
    opacity: 0.4;
}

.pricing-feature-none i {
    color: var(--text-secondary);
}

.pricing-target {
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    text-align: center;
}

.pricing-comparison {
    margin-top: 80px;
}

.pricing-comparison-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--primary-navy);
    color: var(--white);
}

.pricing-table th,
.pricing-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    font-weight: 700;
    font-size: 1.125rem;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-table-featured {
    background: var(--accent-blue) !important;
}

.pricing-table tbody tr:hover {
    background: var(--light-gray);
}

@media (max-width: 968px) {
    .pricing {
        padding: 60px 0;
    }

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

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1565C0 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>');
    opacity: 0.5;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--white);
}

.final-cta-highlight {
    color: var(--accent-blue);
}

.final-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.final-cta-benefits {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.final-cta-benefit i {
    color: var(--accent-blue);
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* ========================================
   Modal (Contact Form)
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    color: var(--primary-navy);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: var(--text-primary);
}

.required {
    color: #F44336;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   Contact CTA Section (Before Footer)
   ======================================== */
.contact-cta-section {
    background: #125BB5;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid3" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid3)"/></svg>');
    opacity: 0.5;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.contact-cta-text {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
}

.cta-button-white {
    background: var(--white);
    color: #125BB5;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-button-white:hover {
    background: #F68C0F;
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(246, 140, 15, 0.5);
}

/* PC版のみ改行を表示 */
.pc-only-br {
    display: inline;
}

@media (max-width: 768px) {
    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* モバイルでは改行を非表示 */
    .pc-only-br {
        display: none;
    }

    .contact-cta-text {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .cta-button-white {
        width: 100%;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

/* ロゴ */
.footer-brand {
    margin-bottom: 8px;
}

.footer-brand-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ナビゲーション（横並び） */
.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-link {
    color: var(--metallic-silver);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-base);
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: var(--accent-blue);
}

/* 会社情報（横並び） */
.footer-offices {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 90px;
    justify-content: start;
}

.footer-office {
    margin-bottom: 0;
}

.footer-office-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-text {
    color: var(--metallic-silver);
    line-height: 1.8;
    margin: 0;
    font-size: 0.875rem;
}

.footer-section {
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--metallic-silver);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--metallic-silver);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 24px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 16px;
        padding-bottom: 24px;
    }

    .footer-nav-link {
        font-size: 0.875rem;
    }

    .footer-offices {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F68C0F 0%, #FF6B00 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(246, 140, 15, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #FF6B00 0%, #F68C0F 100%);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(246, 140, 15, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   Scroll Animations (triggered by JS)
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}