/* JAPAN-SPEC ABOUT PAGE STYLE */

.jspec-about-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #06122a;
    color: #ffffff;
    overflow: hidden;
    line-height: 1.6;
    padding-bottom: 0;
    margin-bottom: 5rem;
}

/* 1. HERO SECTION */
.jspec-about-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(6, 18, 42, 0.6) 0%, #06122a 100%),
                url('../images/about_hero_port.png') no-repeat center center;
    background-size: cover;
    padding: 4rem 1.5rem;
}

.jspec-about-hero-content {
    max-width: 800px;
    z-index: 2;
}

.jspec-about-hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a90d9;
    margin-bottom: 1rem;
    display: inline-block;
}

.jspec-about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0aec0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jspec-about-hero-desc {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 2rem;
}

/* 2. STATS SECTION */
.jspec-about-section {
    padding: 5rem 1.5rem;
    position: relative;
}

.jspec-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jspec-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.jspec-about-stat-card {
    background: rgba(13, 31, 60, 0.8);
    border: 1px solid rgba(138, 155, 174, 0.25);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(6, 18, 42, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.jspec-about-stat-card:hover {
    transform: translateY(-5px);
    border-color: #4a90d9;
}

.jspec-about-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: #4a90d9;
    margin-bottom: 0.5rem;
}

.jspec-about-stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.jspec-about-stat-desc {
    font-size: 0.85rem;
    color: #a0aec0;
}

/* SECTION HEADER */
.jspec-about-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.jspec-about-section-subtitle {
    color: #4a90d9;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.jspec-about-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* 3. FEATURES SECTION (GLASSMORPHISM) */
.jspec-about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.jspec-about-feature-card {
    background: rgba(13, 31, 60, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jspec-about-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 144, 217, 0.4);
    background: rgba(13, 31, 60, 0.6);
    box-shadow: 0 20px 40px rgba(6, 18, 42, 0.4);
}

.jspec-about-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 217, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #4a90d9;
}

.jspec-about-feature-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.jspec-about-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.jspec-about-feature-text {
    font-size: 0.95rem;
    color: #a0aec0;
    flex-grow: 1;
}

/* 4. LOGISTICS & DELIVERY (2 COLUMNS) */
.jspec-about-logistics-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.jspec-about-logistics-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(138, 155, 174, 0.15);
}

.jspec-about-logistics-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.jspec-about-logistics-img:hover img {
    transform: scale(1.03);
}

.jspec-about-logistics-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.jspec-about-logistics-text {
    color: #a0aec0;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.jspec-about-logistics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jspec-about-logistics-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.jspec-about-logistics-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2dd4bf;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 5. TIMELINE SECTION */
.jspec-about-timeline {
    position: relative;
    padding: 2rem 0;
}

.jspec-about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(138, 155, 174, 0.2);
    transform: translateX(-50%);
}

.jspec-about-timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    box-sizing: border-box;
}

.jspec-about-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.jspec-about-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.jspec-about-timeline-badge {
    position: absolute;
    top: 2.5rem;
    width: 40px;
    height: 40px;
    background: #06122a;
    border: 2px solid #4a90d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a90d9;
    font-weight: 700;
    z-index: 10;
}

.jspec-about-timeline-item:nth-child(odd) .jspec-about-timeline-badge {
    right: -20px;
}

.jspec-about-timeline-item:nth-child(even) .jspec-about-timeline-badge {
    left: -20px;
}

.jspec-about-timeline-content {
    background: rgba(13, 31, 60, 0.6);
    border: 1px solid rgba(138, 155, 174, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(6, 18, 42, 0.3);
    transition: border-color 0.3s ease;
}

.jspec-about-timeline-content:hover {
    border-color: rgba(74, 144, 217, 0.3);
}

.jspec-about-timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.jspec-about-timeline-content p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
}

/* 6. TRUST & EEAT SECTION */
.jspec-about-trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.jspec-about-trust-box {
    background: rgba(13, 31, 60, 0.4);
    border: 1px solid rgba(138, 155, 174, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.jspec-about-trust-box h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.jspec-about-trust-box h4 svg {
    color: #4a90d9;
    width: 24px;
    height: 24px;
}

.jspec-about-trust-box p {
    font-size: 0.95rem;
    color: #a0aec0;
    margin-bottom: 0;
}

/* 7. CTA SECTION */
.jspec-about-cta-block {
    background: linear-gradient(135deg, rgba(13, 31, 60, 0.9) 0%, rgba(6, 18, 42, 0.95) 100%),
                url('../images/about_hero_port.png') no-repeat center center;
    background-size: cover;
    border: 1px solid rgba(138, 155, 174, 0.25);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(6, 18, 42, 0.6);
}

.jspec-about-cta-content {
    max-width: 650px;
    margin: 0 auto;
}

.jspec-about-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.jspec-about-cta-text {
    font-size: 1.1rem;
    color: #a0aec0;
    margin-bottom: 2.5rem;
}

.jspec-about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.jspec-about-btn-primary {
    background: linear-gradient(180deg, #c8cdd3 0%, #b0b8c0 15%, #97a0a9 35%, #7a838c 60%, #5a6570 85%, #4a5560 100%) !important;
    border: none !important;
    color: #06122a !important;
    font-weight: 700 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 15px rgba(74, 85, 96, 0.4) !important;
    transition: all 0.3s ease !important;
}

.jspec-about-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(74, 85, 96, 0.6) !important;
}

.jspec-about-btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 1rem 2.5rem !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.jspec-about-btn-secondary:hover {
    border-color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* ========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ======================================== */
@media (max-width: 1024px) {
    .jspec-about-hero-title {
        font-size: 2.5rem;
    }
    
    .jspec-about-logistics-block {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .jspec-about-hero {
        min-height: 450px;
    }
    
    .jspec-about-hero-title {
        font-size: 2rem;
    }
    
    .jspec-about-hero-desc {
        font-size: 1rem;
    }
    
    .jspec-about-section {
        padding: 3.5rem 1.5rem;
    }
    
    .jspec-about-section-title {
        font-size: 1.75rem;
    }
    
    .jspec-about-logistics-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Timeline Mobile */
    .jspec-about-timeline::before {
        left: 20px;
    }
    
    .jspec-about-timeline-item {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 0;
        text-align: left !important;
    }
    
    .jspec-about-timeline-item:nth-child(even) {
        left: 0;
    }
    
    .jspec-about-timeline-badge {
        left: 0 !important;
    }
    
    .jspec-about-trust-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jspec-about-cta-block {
        padding: 3rem 1.5rem;
    }
    
    .jspec-about-cta-title {
        font-size: 1.6rem;
    }
    
    .jspec-about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}
