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

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    font-size: 16px;
    padding-top: 72px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.navbar-link:hover {
    color: #2563eb;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.025em;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-1px);
}

.arrow {
    font-size: 1.2rem;
}

/* Header/Hero Section */
.hero {
    padding: 180px 0 150px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%),
                url('assets/AdobeStock_1032440275.jpeg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 750px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-badge {
    display: inline-block;
    background-color: #2563eb;
    color: white;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
}

.hero-title {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e7ff;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    font-size: 1rem;
    color: #2563eb;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 600;
    background-color: #eff6ff;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a4193 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 400;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 320px;
}

.logo-placeholder {
    background-color: #f9fafb;
    color: #9ca3af;
    padding: 48px 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #f3f4f6;
}

/* Value Propositions Section */
.value-props {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.value-props::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.value-props .container {
    position: relative;
    z-index: 1;
}

.value-props .section-title {
    text-align: center;
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.value-props .section-subtitle {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.3);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.value-icon i {
    color: #667eea;
}

.value-card h3 {
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.value-card p {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Investor Trust Section */
.investor-trust {
    padding: 100px 0;
    background-color: #f8fafc;
}

.investor-trust h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.investor-trust .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.trust-points {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-point {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.2s ease;
}

.trust-point:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    transform: translateX(4px);
}

.point-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d1fae5;
    border-radius: 50%;
}

.point-content h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
}

.point-content p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fafafa;
}

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

.feature-card {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Stages Section - Timeline */
.stages {
    padding: 100px 0;
    background-color: #f8fafc;
}

.stages-title {
    text-align: center;
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stages-description {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
}

.timeline-line {
    width: 4px;
    flex-grow: 1;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    margin-top: 16px;
    border-radius: 2px;
    position: relative;
}

.timeline-content {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    transform: translateX(4px);
    border-color: #667eea;
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 12px;
}

.stage-header h3 {
    color: #1e3a8a;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
}

.stage-period {
    display: inline-block;
    background-color: #eff6ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.stage-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.stage-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stage-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.stage-feature:hover {
    background-color: #eff6ff;
}

.feature-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-icon i {
    color: #2563eb;
}

.feature-content h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.feature-content p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* AI Automation Section */
.ai-automation {
    padding: 100px 0;
    background-color: #f8fafc;
}

.ai-automation h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.automation-features-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.automation-feature-detail {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.automation-feature-detail:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.automation-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
    border-radius: 12px;
}

.automation-content h3 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
}

.automation-tagline {
    color: #2563eb;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.automation-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Global Service Section */
.global-service {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.global-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 40%);
    opacity: 0.6;
}

.global-service::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, transparent 30%, rgba(59, 130, 246, 0.05) 30%, transparent 31%, transparent 49%, rgba(59, 130, 246, 0.05) 49%, transparent 50%);
    background-size: 100px 100px;
    opacity: 0.3;
    pointer-events: none;
}

.global-service .container {
    position: relative;
    z-index: 1;
}

.global-service h2 {
    text-align: center;
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-tagline {
    text-align: center;
    color: #60a5fa;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-intro {
    text-align: center;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-heading {
    text-align: center;
    color: #60a5fa;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    margin-top: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.global-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.global-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.global-feature-item:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.feature-check {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.feature-check i {
    color: #60a5fa;
}

.global-feature-item .feature-content h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.global-feature-item .feature-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #f8fafc;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.pricing-header .btn {
    margin-top: 1rem;
}

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

.pricing-card {
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.pricing-card h3 {
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 8px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    padding: 10px 0;
    color: #64748b;
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Pricing Box */
.pricing-box {
    margin-top: 4rem;
    background-color: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.pricing-box-left {
    flex: 1;
}

.pricing-box-label {
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-box-price {
    color: #667eea;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.pricing-box-period {
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing-box-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-box-right {
    flex-shrink: 0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 3rem;
    align-items: start;
}

.testimonial-card {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.testimonial-card.highlight:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

.testimonial-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.testimonial-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.testimonial-card li {
    padding: 10px 0;
    color: #64748b;
    position: relative;
    padding-left: 24px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-card.highlight li {
    color: #f8fafc;
}

.testimonial-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.testimonial-card.highlight li::before {
    color: #a7f3d0;
}

.testimonial-author {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.testimonial-card.highlight .testimonial-author {
    color: white;
    border-top-color: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

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

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}

.faq-question:hover {
    color: #1e3a8a;
}

.faq-arrow {
    color: #94a3b8;
    font-size: 1.2rem;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 100px 0;
    background-color: #2563eb;
    color: white;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-content p {
    color: #dbeafe;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: #2563eb;
}

.cta-buttons .btn-primary:hover {
    background-color: #f8fafc;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: #bfdbfe;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 80px 0 32px;
    background-color: #1f2937;
    color: #f9fafb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column:first-child {
    align-items: flex-start;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    align-self: flex-start;
}

.footer-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-icon {
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #667eea;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Page */
.contact-section {
    padding: 120px 0 100px;
    background-color: #f8fafc;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.7;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto 5rem;
    background-color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.required {
    color: #dc2626;
    font-size: 0.875rem;
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group select {
    cursor: pointer;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: #f8fafc;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.125rem;
}

.contact-faq {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-card h3 {
    color: #1e3a8a;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 64px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .navbar-content {
        padding: 12px 0;
    }
    
    .logo {
        height: 32px;
    }
    
    .navbar-menu {
        gap: 16px;
    }
    
    .navbar-menu .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 120px 0 100px;
        min-height: 600px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .hero-buttons .btn-primary {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .hero-highlight {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .value-props {
        padding: 80px 0;
    }
    
    .value-props .section-title {
        font-size: 2rem;
    }
    
    .value-props .section-subtitle {
        margin-bottom: 3rem;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-card {
        padding: 32px;
    }
    
    .trust-point {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stages {
        padding: 80px 0;
    }
    
    .stages-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .timeline-number {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 28px;
    }
    
    .stage-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-box {
        padding: 24px;
    }
    
    .pricing-box-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .pricing-box-right {
        width: 100%;
    }
    
    .pricing-box-right .btn {
        width: 100%;
        justify-content: center;
    }
    
    .automation-feature-detail {
        flex-direction: column;
        padding: 24px;
    }
    
    .automation-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .global-service {
        padding: 80px 0;
    }
    
    .global-service h2 {
        font-size: 2rem;
    }
    
    .global-feature-item {
        flex-direction: column;
        padding: 24px;
        align-items: flex-start;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.highlight {
        transform: scale(1);
    }
    
    .testimonial-card.highlight:hover {
        transform: translateY(-4px);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .contact-form {
        padding: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .logo {
        height: 28px;
    }
    
    .navbar-menu {
        gap: 12px;
    }
    
    .navbar-menu .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn-primary {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .value-props .section-title {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 24px;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    
    .feature-check {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .stages-title {
        font-size: 1.75rem;
    }
    
    .stages-description {
        font-size: 1rem;
    }
    
    .timeline-item {
        gap: 16px;
    }
    
    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .stage-header h3 {
        font-size: 1.25rem;
    }
    
    .stage-period {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .stage-feature {
        padding: 12px;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.875rem;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .automation-feature-detail {
        padding: 20px;
    }
    
    .automation-content h3 {
        font-size: 1.125rem;
    }
    
    .global-feature-item {
        padding: 20px;
    }
    
    .global-feature-item .feature-content h4 {
        font-size: 1rem;
    }
    
    .global-service h2 {
        font-size: 1.75rem;
    }
    
    .services-heading {
        font-size: 1.25rem;
    }
    
    .section-intro {
        font-size: 0.9375rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card li {
        font-size: 0.875rem;
    }
    
    .pricing-box {
        padding: 20px;
    }
    
    .pricing-box-price {
        font-size: 2rem;
    }
    
    .pricing-box-period {
        font-size: 1rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .faq-card {
        padding: 24px;
    }
}
