/* ================================
   Desk Crew - モダンデザイン 2025
   参考: クールでプロフェッショナルなB2B LP
================================ */

/* ================================
   リセット & ベース設定
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* モダンカラーパレット */
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #4d94ff;
    --secondary-color: #00d9b5;
    --accent-color: #ff6b35;
    
    /* テキストカラー */
    --text-dark: #0a1f44;
    --text-medium: #4a5568;
    --text-light: #718096;
    
    /* 背景カラー */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-ultra-light: #fafbfd;
    --border-color: #e2e8f0;
    
    /* アクセントカラー */
    --highlight: #ffd166;
    --success: #06d6a0;
    --warning: #ff9f1c;
    --error: #ff5757;
    
    /* フォント */
    --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
    
    /* スペーシング */
    --section-padding: 140px;
    --section-padding-mobile: 80px;
    --container-width: 1240px;
    
    /* 角丸 */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* シャドウ */
    --shadow-sm: 0 1px 3px rgba(10, 31, 68, 0.04), 0 1px 2px rgba(10, 31, 68, 0.02);
    --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.06), 0 2px 4px rgba(10, 31, 68, 0.03);
    --shadow-lg: 0 12px 32px rgba(10, 31, 68, 0.08), 0 4px 8px rgba(10, 31, 68, 0.04);
    --shadow-xl: 0 24px 48px rgba(10, 31, 68, 0.12), 0 8px 16px rgba(10, 31, 68, 0.06);
    
    /* トランジション */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.75;
    font-size: 16px;
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ================================
   ヘッダー - モダンでクリーン
================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-image {
        height: 32px !important;
    }
    
    .logo-text {
        font-size: 16px !important;
    }
    
    .logo-sub {
        font-size: 12px !important;
    }
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 0;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

.btn-header-mobile {
    display: none;
}

.btn-header-desktop {
    display: inline-block;
}

/* メニューオーバーレイ */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.nav-partners,
.nav-corporate {
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.nav-partners:hover,
.nav-corporate:hover {
    background: var(--primary-color);
    color: var(--bg-white) !important;
    border-color: var(--primary-color);
}

.btn-header {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ================================
   ヒーロー - インパクトのあるFV
================================ */
.hero {
    padding: 200px 0 140px;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--bg-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 32px;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-medium);
    font-weight: 500;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--text-dark);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags span {
    background: var(--bg-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.hero-detail {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-price,
.hero-speed {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta {
    margin-top: 56px;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 22px 48px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.35);
}

.btn-text-desktop {
    display: inline;
}

.btn-text-mobile {
    display: none;
}

/* Partners専用ヒーロー */
.hero-partners {
    background: linear-gradient(180deg, #e6fff9 0%, #ffffff 100%);
}

.hero-partners::before {
    background: radial-gradient(circle, rgba(0, 217, 181, 0.08) 0%, transparent 70%);
}

.hero-features-partners {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 24px;
    color: var(--secondary-color);
}

.feature-item span {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

/* ================================
   Crew体制差別化セクション
================================ */
.crew-diff {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 100px 0;
}

.crew-diff-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.crew-diff-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    box-shadow: var(--shadow-xl);
}

.crew-diff-text {
    flex: 1;
}

.crew-diff-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    color: var(--text-dark);
}

.crew-diff-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crew-diff-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.crew-diff-benefits {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.crew-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.crew-benefit i {
    color: var(--success);
    font-size: 20px;
}

.crew-benefit span {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

/* ================================
   セクション共通 - より洗練された
================================ */
section {
    padding: var(--section-padding) 0;
}

.section-title,
.section-title-center {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: -1.5px;
    color: var(--text-dark);
}

.section-title-center {
    text-align: center;
}

.section-title .highlight,
.section-title-center .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 80px;
    text-align: center;
    font-weight: 500;
}

/* ================================
   悩みセクション
================================ */
.problems {
    background: var(--bg-ultra-light);
}

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

.problem-card {
    background: var(--bg-white);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--error);
}

.problem-card i {
    font-size: 56px;
    color: var(--error);
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ================================
   強みセクション
================================ */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.strength-card {
    background: var(--bg-white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.strength-card:hover::before {
    transform: scaleX(1);
}

.strength-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.strength-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.strength-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.strength-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ================================
   AI時代セクション
================================ */
.ai-era {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.ai-content {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-point {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    background: var(--bg-white);
    padding: 56px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.ai-icon {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: var(--shadow-md);
}

.ai-text h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.ai-text p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.9;
}

.ai-conclusion {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 48px 56px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.ai-conclusion p {
    font-size: 20px;
    line-height: 1.9;
    font-weight: 600;
}

.ai-conclusion i {
    margin-right: 10px;
}

/* ================================
   サービスセクション
================================ */
.service-grid,
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card,
.work-card {
    background: var(--bg-white);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.service-card:hover,
.work-card:hover {
    background: var(--bg-ultra-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.service-icon,
.work-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.service-card h3,
.work-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p,
.work-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.service-note,
.work-note {
    margin-top: 64px;
    text-align: center;
    padding: 28px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 2px solid var(--warning);
    box-shadow: var(--shadow-sm);
}

.service-note p,
.work-note p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ================================
   比較表セクション
================================ */
.comparison {
    background: var(--bg-ultra-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    background: var(--bg-white);
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.comparison-table th {
    padding: 24px;
    text-align: center;
    font-weight: 800;
    font-size: 17px;
}

.comparison-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

.comparison-table tbody tr:hover {
    background: var(--bg-ultra-light);
}

.comparison-table .highlight-col {
    background: linear-gradient(180deg, #e6f2ff 0%, #f0f7ff 100%);
    font-weight: 700;
    color: var(--primary-color);
}

/* ================================
   料金セクション
================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-popular {
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-popular:hover {
    transform: scale(1.08) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.pricing-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-medium);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-hours {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 12px;
}

.price-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price-unit {
    font-size: 20px;
    color: var(--text-medium);
    margin-left: 6px;
    font-weight: 600;
}

.pricing-campaign {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 2px solid #f59e0b;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0 24px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.pricing-campaign strong {
    color: #d97706;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
}

.pricing-hourly {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    margin-right: 12px;
    font-size: 18px;
}

.btn-pricing {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 18px 40px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-pricing:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-note {
    margin-top: 48px;
    text-align: center;
    color: var(--text-medium);
    font-size: 15px;
}

/* 月20時間でできること例 */
.pricing-examples {
    margin-top: 80px;
    background: var(--bg-white);
    padding: 56px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.examples-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.example-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-ultra-light);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.example-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.example-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.example-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.example-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.example-text span {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
}

.examples-note {
    text-align: center;
    color: var(--text-medium);
    font-size: 14px;
}

/* ================================
   導入事例セクション
================================ */
.cases {
    background: var(--bg-ultra-light);
}

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

.case-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.case-industry {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
}

.case-plan {
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-medium);
    border: 2px solid var(--border-color);
}

.case-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-dark);
    line-height: 1.4;
}

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

.case-challenge h4,
.case-solution h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.case-challenge h4 i {
    color: var(--error);
    margin-right: 10px;
}

.case-solution h4 i {
    color: var(--warning);
    margin-right: 10px;
}

.case-challenge p,
.case-solution p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.case-result {
    background: linear-gradient(135deg, #e6fff9 0%, #ccfff0 100%);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--success);
}

.case-result p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ================================
   導入フローセクション
================================ */
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.flow-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
}

.flow-content h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.flow-content p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.flow-arrow {
    text-align: center;
    padding: 24px 0;
    color: var(--primary-color);
    font-size: 40px;
}

/* ================================
   Partners専用セクション
================================ */
.partners-page .hero {
    background: linear-gradient(180deg, #e6fff9 0%, #ffffff 100%);
}

.partners-page .hero::before {
    background: radial-gradient(circle, rgba(0, 217, 181, 0.08) 0%, transparent 70%);
}

.recommend {
    background: var(--bg-ultra-light);
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.recommend-card {
    background: var(--bg-white);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.recommend-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.recommend-card i {
    font-size: 56px;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.recommend-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.recommend-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.features-partners {
    background: var(--bg-white);
}

.features-intro {
    background: linear-gradient(135deg, #e6fff9 0%, #ccfff0 100%);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: 64px;
    border: 2px solid var(--secondary-color);
}

.features-intro p {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.feature-badge {
    background: var(--bg-white);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

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

.feature-card {
    background: var(--bg-ultra-light);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.feature-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.feature-icon-large {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--secondary-color), #00b89f);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.members {
    background: var(--bg-ultra-light);
}

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

.member-card {
    background: var(--bg-white);
    padding: 48px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.member-flag {
    font-size: 64px;
    margin-bottom: 20px;
}

.member-location {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-weight: 700;
}

.member-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.member-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.voice {
    background: var(--bg-white);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
}

.voice-card {
    background: var(--bg-ultra-light);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.voice-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

.voice-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.voice-avatar {
    font-size: 64px;
    color: var(--secondary-color);
}

.voice-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.voice-info p {
    font-size: 15px;
    color: var(--text-medium);
    font-weight: 600;
}

.voice-content {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.voice-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.9;
    font-style: italic;
}

.compensation {
    background: var(--bg-ultra-light);
}

.compensation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.compensation-main {
    margin-bottom: 64px;
}

.compensation-item {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.compensation-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #00b89f);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: var(--shadow-md);
}

.compensation-text h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.compensation-text p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
}

.compensation-example {
    background: linear-gradient(135deg, var(--secondary-color), #00b89f);
    color: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.compensation-example h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 28px;
}

.compensation-example ul {
    list-style: none;
    margin-bottom: 28px;
}

.compensation-example li {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.compensation-example li:last-child {
    border-bottom: none;
}

.compensation-example .note {
    font-size: 15px;
    opacity: 0.9;
}

/* ================================
   FAQセクション
================================ */
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 28px 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-ultra-light);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 36px 28px 84px;
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.9;
}

/* ================================
   CTAセクション
================================ */
/* ================================
   一社に一Crew
================================ */
.one-crew {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.one-crew-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.one-crew-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    color: var(--text-dark);
}

.one-crew-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.one-crew-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 64px;
}

.one-crew-description strong {
    color: var(--text-dark);
    font-weight: 700;
}

.one-crew-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
}

.one-crew-feature {
    text-align: center;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.feature-icon-circle i {
    font-size: 32px;
    color: var(--bg-white);
}

.one-crew-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.one-crew-feature p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ================================
   CTA
================================ */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-partners {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #00b89f 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 500;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 24px 56px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-partners .btn-cta {
    color: var(--secondary-color);
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 24px;
    font-size: 15px;
    opacity: 0.85;
}

/* ================================
   フッター
================================ */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ================================
   レスポンシブ対応
================================ */
@media (max-width: 1024px) {
    .nav {
        gap: 24px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 12px 0;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: var(--bg-white) !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        flex-direction: column !important;
        padding: 80px 24px 32px !important;
        gap: 0 !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        display: flex !important;
    }
    
    .nav.active {
        right: 0 !important;
    }
    
    .nav a {
        font-size: 15px !important;
        padding: 16px 16px !important;
        border-bottom: 1px solid var(--border-color) !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        border-radius: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .nav a:hover {
        background: var(--bg-light);
    }
    
    .nav a::after {
        display: none !important;
    }
    
    .btn-header-desktop {
        display: none !important;
    }
    
    .btn-header-mobile {
        display: flex !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 16px !important;
        padding: 16px 20px !important;
        font-size: 15px !important;
        border-bottom: none !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        box-sizing: border-box !important;
    }
    
    .nav-partners,
    .nav-corporate {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero {
        padding: 80px 0 40px !important;
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .hero .container {
        width: 100% !important;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.5;
    }
    
    .hero-tags {
        gap: 5px !important;
        margin-bottom: 14px !important;
        max-height: none !important;
    }
    
    .hero-tags span {
        font-size: 10px !important;
        padding: 5px 9px !important;
        white-space: nowrap !important;
    }
    
    .hero-detail {
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 14px !important;
    }
    
    .hero-price,
    .hero-speed {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-features-partners {
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .feature-item span {
        font-size: 13px;
    }
    
    .hero-cta {
        margin-top: 16px !important;
    }
    
    .btn-primary,
    .btn-cta {
        font-size: 14px !important;
        padding: 14px 20px !important;
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }
    
    .btn-primary i {
        display: none;
    }
    
    .btn-text-desktop {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    
    .hero-note {
        font-size: 11px !important;
        margin-top: 12px !important;
        line-height: 1.4 !important;
    }
    
    .section-title,
    .section-title-center {
        font-size: 36px;
    }
    
    .section-intro {
        font-size: 18px;
    }
    
    .problem-grid,
    .strength-grid,
    .service-grid,
    .work-grid,
    .recommend-grid,
    .features-grid,
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-popular {
        transform: scale(1);
    }
    
    .cases-grid,
    .voice-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-point {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }
    
    .case-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    
    .compensation-item {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    
    .voice-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .crew-diff {
        padding: 60px 0;
    }
    
    .crew-diff-content {
        flex-direction: column;
        text-align: center;
    }
    
    .crew-diff-icon {
        margin-bottom: 24px;
    }
    
    .crew-diff-title {
        font-size: 28px;
    }
    
    .crew-diff-description {
        font-size: 16px;
    }
    
    .one-crew-title {
        font-size: 32px;
        margin-bottom: 24px;
        letter-spacing: -1px;
    }
    
    .one-crew-description {
        font-size: 15px;
        margin-bottom: 40px;
        line-height: 1.7;
    }
    
    .one-crew-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .feature-icon-circle {
        width: 64px;
        height: 64px;
    }
    
    .feature-icon-circle i {
        font-size: 28px;
    }
    
    .one-crew-feature h3 {
        font-size: 18px;
    }
    
    .one-crew-feature p {
        font-size: 14px;
    }
    
    .crew-diff-benefits {
        justify-content: center;
        gap: 12px;
    }
    
    .crew-benefit {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .pricing-examples {
        margin-top: 40px;
        padding: 32px 20px;
    }
    
    .examples-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .example-item {
        padding: 16px;
        gap: 12px;
    }
    
    .example-item i {
        font-size: 24px;
    }
    
    .features-intro {
        padding: 24px 20px;
        margin-bottom: 40px;
    }
    
    .features-intro p {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .features-badges {
        gap: 8px;
    }
    
    .feature-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .sp-only {
        display: inline;
    }
}

@media (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

/* ================================
   ユーティリティ
================================ */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* プリロードアニメーション用 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
