/* 
 * JCDA Member Benefits Page - Bento Professional Edition
 * Version 8.0: High-End Bento Grid, 3D Micro-interactions, JCDA Brand Colors
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');

:root {
    --jcda-blue: #003366;
    --jcda-blue-light: #f0f7ff;
    --jcda-accent: #ff6600;
    --jcda-text-dark: #1e293b;
    --jcda-text-gray: #475569;
    --jcda-bg: #f8fafc;
    --jcda-white: #ffffff;
    --jcda-border: rgba(0, 51, 102, 0.08);
    --jcda-shadow-bento: 0 10px 30px -10px rgba(0, 51, 102, 0.1);
    --jcda-radius: 24px;
}

.notification-page.jcda-custom-page {
    all: initial;
    display: block;
    background-color: var(--jcda-bg);
    font-family: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
    color: var(--jcda-text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

.hero-feature-bg-wrapper {
    position: relative;
    overflow: hidden;
}

/* --- ANIMATED MESH BACKGROUND --- */
.bg-mesh-wrap {
    position: absolute;
    /* Changed from fixed to absolute to limit scope */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #f0f9ff;
    /* Brighter, more refreshing sky base */
    pointer-events: none;
}

.mesh-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
    /* Increased blur for softness */
    opacity: 0.2;
    animation: meshFlow 25s infinite alternate ease-in-out;
}

.blob-1 {
    background: #7dd3fc;
    /* Soft Sky Blue */
    top: -10%;
    left: -10%;
}

.blob-2 {
    background: #fdf6b2;
    /* Soft Lemon/Sunny */
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.blob-3 {
    background: #86efac;
    /* Soft Mint */
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    opacity: 0.15;
    animation-duration: 22s;
}

@keyframes meshFlow {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(10%, 5%) rotate(10deg) scale(1.1);
    }

    66% {
        transform: translate(-5%, 15%) rotate(-5deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

header,
.snsrightwrap,
.pcnav,
.smpnav {
    z-index: 9999 !important;
}

.jcda-custom-page * {
    box-sizing: border-box;
}

.jcda-custom-page .content-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- HERO: EMOTIVE & BALANCED --- */
.jcda-hero {
    position: relative;
    padding: 100px 0 80px;
    background: transparent;
    overflow: hidden;
}

/* Update aura with animation */
.hero-aura {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: auraFloat 15s infinite alternate ease-in-out;
}

@keyframes auraFloat {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(-5%, 5%);
    }
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 0.9;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 51, 102, 0.05);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--jcda-blue);
    margin-bottom: 24px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--jcda-accent);
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--jcda-accent);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.hero-title {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: var(--jcda-blue);
    padding: 6px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.15);
}

.hero-catchcopy {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--jcda-blue);
    letter-spacing: -0.03em;
    font-family: 'Noto Sans JP', sans-serif;
}

.hero-desc {
    font-size: 18px;
    color: var(--jcda-text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.btn-bento-main {
    background: var(--jcda-accent);
    color: #fff;
    padding: 20px 48px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 19px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-bento-main:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 102, 0, 0.4);
}

.hero-right {
    flex: 1.2;
    perspective: 2000px;
}

.glass-dashboard {
    background: #fff;
    padding: 16px;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 51, 102, 0.15), 0 0 0 1px var(--jcda-border);
    transform: rotateY(-20deg) rotateX(10deg);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-dashboard:hover {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 60px 120px -30px rgba(0, 51, 102, 0.25), 0 0 0 1px var(--jcda-border);
}

.glass-dashboard img {
    border-radius: 24px;
    display: block;
    width: 100%;
}

/* --- BENTO GRID LAYOUT --- */
.bento-section {
    padding: 100px 0;
    background: transparent;
}

.section-info {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--jcda-accent);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 16px;
}

.section-info p {
    max-width: 700px;
    margin: 0 auto;
}

.bento-grid-jcda {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
}

.bento-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--jcda-radius);
    padding: 32px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bento-box:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--jcda-blue);
    box-shadow: 0 30px 60px -12px rgba(0, 51, 102, 0.15);
}

.bento-box.col-8 {
    grid-column: span 8;
}

.bento-box.col-4 {
    grid-column: span 4;
}

.bento-box.col-6 {
    grid-column: span 6;
}

.bento-box.col-12 {
    grid-column: span 12;
}

.bento-icon {
    width: 54px;
    height: 54px;
    background: var(--jcda-blue-light);
    color: var(--jcda-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.bento-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* --- FEATURE PANELS SECTION (3 PANELS) --- */
.feature-panels-section {
    padding: 100px 0 60px;
    background: transparent;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.en-sub {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--jcda-accent);
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.section-title-wrap h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 12px;
    position: relative;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--jcda-accent);
    margin-bottom: 16px;
    border-radius: 2px;
}

.section-lead {
    font-size: 18px;
    color: var(--jcda-text-gray);
    text-align: center;
    max-width: 800px;
}

.feature-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}

.feature-panel:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
}

.panel-image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.panel-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-panel:hover .panel-image-wrap img {
    transform: scale(1.1);
}

.panel-content {
    padding: 24px;
}

.feature-panel h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--jcda-blue);
    margin-bottom: 12px;
}

.feature-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--jcda-text-gray);
}

@media (max-width: 1024px) {
    .feature-panels-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-panel {
        padding: 40px;
    }
}

.bento-box p {
    font-size: 15px;
    color: var(--jcda-text-gray);
    line-height: 1.8;
}

/* --- MEMBERSHIP FEE SECTION --- */
.membership-fee-section {
    padding: 80px 0 100px;
    background: #f1f5f9;
    /* Solid light background for clear distinction */
    position: relative;
    border-top: 1px solid rgba(0, 51, 102, 0.08);
    border-bottom: 1px solid rgba(0, 51, 102, 0.08);
    z-index: 1;
}

.glass-table-wrap {
    background: #ffffff;
    /* Solid white to stand out */
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.membership-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.membership-table tr {
    transition: background-color 0.3s ease;
}

.membership-table tbody tr:hover {
    background-color: rgba(59, 130, 246, 0.03);
}

.membership-table th,
.membership-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 51, 102, 0.05);
    vertical-align: middle;
}

.membership-table thead th {
    background: rgba(0, 51, 102, 0.02);
    font-size: 15px;
    font-weight: 800;
    color: var(--jcda-blue);
    padding: 20px 24px;
}

.col-item {
    width: 25%;
    text-align: left;
}

.col-cda,
.col-career {
    width: 37.5%;
    text-align: center;
}

.cda-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pulse-svg-icon {
    width: 24px;
    height: 24px;
    color: var(--jcda-accent);
}

.pulse-svg-icon svg {
    width: 100%;
    height: 100%;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.inner-dot {
    animation: dotBreath 2s infinite ease-in-out;
}

@keyframes dotBreath {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.6);
    }
}

.pulse-svg-icon circle {
    transform-origin: center;
}

.row-label {
    font-weight: 700;
    color: var(--jcda-text-gray);
    font-size: 15px;
}

.cda-val,
.career-val {
    text-align: center;
}

.table-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.table-list li {
    font-size: 14px;
    margin-bottom: 4px;
    position: relative;
    padding-left: 1.2em;
}

.table-list li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.price-blue {
    color: #0284c7;
    font-weight: 800;
}

.check-green {
    color: #10b981;
    font-size: 22px;
}

.dash-gray {
    color: #cbd5e0;
}

.table-footer-note {
    padding: 16px 32px;
    background: rgba(0, 51, 102, 0.02);
    font-size: 12px;
    color: var(--jcda-text-gray);
    opacity: 0.8;
}

/* --- BENEFITS NEW SECTION (DARK) --- */
.benefits-new-section {
    padding: 100px 0 120px;
    background: #253958;
    /* Softened from 1e293b to a richer navy-slate */
    position: relative;
    overflow: hidden;
}

.benefits-new-section h2 {
    color: #ffffff;
}

.benefits-new-section .en-sub {
    color: #38bdf8;
}

.benefits-new-section .section-lead {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-new-section .title-line {
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
}

/* Grid Layouts */
.benefits-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefits-grid-cda {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.benefit-card-cda {
    flex: 1 1 calc(20% - 20px);
    max-width: calc(20% - 15px);
    min-width: 220px;
}

/* Card Base */
.benefit-card {
    padding: 32px 24px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered icons and text for top panels */
    text-align: center;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.benefit-card-cda {
    padding: 32px 24px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered icons and text for bottom panels */
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card-cda h3 {
    color: var(--jcda-blue);
    margin-top: 0;
}

.benefit-card-cda p {
    color: var(--jcda-text-gray);
}

.benefit-card-cda:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Header for CDA Cards (Icon + Badge) */
.cda-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally in header */
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.cda-card-header .benefit-icon-box-small {
    margin-bottom: 0;
    /* Remove bottom margin inside header */
}

/* Icons */
.benefit-icon-box,
.benefit-icon-box-small {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.benefit-icon-box-small {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

/* Icon Soft Backgrounds */
.bg-blue-soft {
    background: #eff6ff;
    color: #3b82f6;
}

.bg-green-soft {
    background: #f0fdf4;
    color: #22c55e;
}

.bg-purple-soft {
    background: #f5f3ff;
    color: #8b5cf6;
}

.bg-orange-soft {
    background: #fff7ed;
    color: #f97316;
}

/* Typography */
.benefits-new-section h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 12px;
}

.benefits-new-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--jcda-text-gray);
    margin: 0;
}

.text-accent {
    color: #f97316;
    font-weight: 800;
}

/* Badge */
.cda-badge-mini {
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    background: #0ea5e9;
    /* More solid color for visibility */
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

/* Action Button at bottom of Benefits */
.benefits-btn-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.btn-support-details {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #bce5f8;
    /* Light sky blue from image */
    color: #333;
    padding: 16px 48px;
    border-radius: 99px;
    /* Pill shape */
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-support-details:hover {
    background: #99d8f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-support-details .icon-small {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-support-details:hover .icon-small {
    transform: translateX(4px);
}

@media (max-width: 1024px) {

    .benefits-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-card-cda {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 640px) {

    .benefits-grid-main {
        grid-template-columns: 1fr;
    }
    .benefit-card-cda {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .benefit-card,
    .benefit-card-cda {
        padding: 24px;
    }
}

/* --- OTHER MEMBERSHIP WRAP --- */
.other-members-wrap {
    margin-top: 48px;
}

.other-header {
    display: flex;
    align-items: center;
    /* Vertical centering */
    gap: 12px;
    margin-bottom: 24px;
    padding-left: 4px;
    /* Slightly adjusted for better visual balance */
}

.other-header h3 {
    margin: 0;
    /* Reset default margin to fix alignment offset */
    font-size: 18px;
    font-weight: 800;
    color: var(--jcda-blue);
    line-height: 1.2;
    /* Better baseline alignment */
}

.info-icon {
    color: #3b82f6;
    font-size: 18px;
}

.other-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.other-card {
    background: #ffffff;
    /* Solid white for clarity */
    border: 1px solid rgba(0, 51, 102, 0.1);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-head {
    font-size: 16px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 13px;
    color: var(--jcda-text-gray);
    margin-bottom: 20px;
}

.card-fees {
    background: #f8fafc;
    /* Inset feel */
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 0;
}

.fee-row span {
    color: var(--jcda-text-gray);
}

.fee-row b {
    color: var(--jcda-blue);
}

.asterisk {
    color: var(--jcda-accent);
    margin-left: 2px;
}

.fee-note {
    font-size: 11px;
    color: var(--jcda-text-gray);
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .other-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer CTA */
.footer-cta-bento {
    background: linear-gradient(135deg, var(--jcda-blue) 0%, #001f3f 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    border-radius: var(--jcda-radius);
    margin: 60px 32px 100px;
    position: relative;
    overflow: hidden;
}

.footer-cta-bento::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, transparent 70%);
    animation: rotateCTA 20s infinite linear;
}

@keyframes rotateCTA {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.footer-cta-bento h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-cta-bento p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 48px;
}

.btn-white-bento {
    background: #fff;
    color: var(--jcda-blue);
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-white-bento:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .jcda-custom-page .content-container {
        padding: 0 24px;
    }

    .hero-flex {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .jcda-hero {
        padding: 60px 0 40px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .glass-dashboard {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }

    .bento-grid-jcda {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .bento-box.col-8,
    .bento-box.col-4,
    .bento-box.col-6,
    .bento-box.col-3 {
        grid-column: span 1;
    }

    .bento-box.col-12,
    .membership-bento-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-catchcopy {
        font-size: 32px;
    }

    .hero-title {
        font-size: 12px;
    }

    .bento-section {
        padding: 48px 0;
    }

    .section-info h2 {
        font-size: 28px;
    }

    .bento-grid-jcda {
        grid-template-columns: 1fr;
    }

    .bento-box {
        padding: 24px;
    }

    .bento-box.col-12,
    .membership-bento-card {
        grid-column: span 1;
    }

    .bento-table-wrap {
        overflow-x: auto;
    }

    .bento-table {
        min-width: 500px;
    }

    .membership-bento-card {
        padding: 32px 16px;
    }

    .footer-cta-bento {
        margin: 20px 16px 60px;
        padding: 48px 20px;
    }

    .footer-cta-bento h2 {
        font-size: 28px;
    }
}

/* --- ENROLLMENT DIAGNOSIS SECTION --- */
.diagnosis-section {
    padding: 100px 0;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.diagnosis-step-wrap {
    text-align: center;
    margin-bottom: 48px;
}

.diagnosis-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.diagnosis-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 80px 40px;
    box-shadow: 0 40px 120px rgba(15, 23, 42, 0.1);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.diagnosis-step-content {
    width: 100%;
    animation: diagFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes diagFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        scale: 0.95;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        scale: 1;
    }
}

.diagnosis-question-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 48px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.diagnosis-choice-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.btn-diagnosis-choice {
    flex: 1;
    padding: 32px;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
    border: 2px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-diagnosis-choice i {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.btn-diagnosis-choice.yes {
    color: #10b981;
}

.btn-diagnosis-choice.no {
    color: #ef4444;
}

.btn-diagnosis-choice:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.btn-diagnosis-choice.yes:hover {
    background: #f0fdf4;
    border-color: #10b981;
}

.btn-diagnosis-choice.no:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

/* Result Styles */
.diag-result-card {
    width: 100%;
    text-align: left;
    animation: diagFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.diag-result-badge {
    display: inline-flex;
    align-items: center;
    background: #3b82f6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 24px;
}

.diag-result-main-title {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 40px;
}

.diag-result-instruction-box {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 48px;
    border: 1px solid #e2e8f0;
}

.diag-instruction-step {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px dashed #cbd5e0;
}

.diag-instruction-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.diag-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.diag-step-num {
    width: 28px;
    height: 28px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.diag-step-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--jcda-blue);
}

.diag-step-desc {
    font-size: 15px;
    color: var(--jcda-text-gray);
    line-height: 1.7;
    padding-left: 40px;
}

.diag-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-diag-cta {
    flex: 1;
    max-width: 320px;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-diag-cta.primary {
    background: var(--jcda-accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-diag-cta.secondary {
    background: #fff;
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.btn-diag-cta:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
}

.diag-restart-btn {
    margin-top: 48px;
    background: none;
    border: none;
    color: var(--jcda-text-gray);
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.diag-restart-btn:hover {
    opacity: 1;
}

@media (max-width: 640px) {
    .diagnosis-choice-grid {
        flex-direction: column;
    }

    .btn-diagnosis-choice {
        width: 100%;
        padding: 24px;
    }

    .diag-instruction-box {
        padding: 24px;
    }

    .diag-btn-group {
        flex-direction: column;
    }

    .btn-diag-cta {
        max-width: none;
    }
}

/* --- ENROLLMENT INFO & DIFFERENTIATION SECTION --- */
.enrollment-info-section {
    padding: 100px 0;
    background: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.info-block h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.info-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--jcda-blue);
    border-radius: 2px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--jcda-text-gray);
    margin-bottom: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 800;
    text-decoration: none;
    transition: gap 0.3s;
}

.text-link:hover {
    gap: 12px;
    text-decoration: underline;
}

/* Differentiation Card */
.differentiation-card {
    background: #f8fafc;
    border-radius: 40px;
    padding: 60px;
    border: 1px solid #e2e8f0;
}

.diff-tag {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: #3b82f6;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.differentiation-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 24px;
    line-height: 1.4;
}

.diff-lead {
    font-size: 15px;
    line-height: 1.7;
    color: var(--jcda-text-gray);
    margin-bottom: 40px;
}

.diff-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.diff-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.diff-item.highlight {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 20px;
    flex-shrink: 0;
}

.diff-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 8px;
}

.diff-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--jcda-text-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .differentiation-card {
        padding: 40px 24px;
    }
}

/* --- GROWTH CYCLE SECTION --- */
.growth-cycle-section {
    padding: 100px 0;
    background: #f8fafc;
}

.growth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.growth-visual {
    background: #ffffff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.growth-visual img {
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.growth-visual .gauge-note {
    font-size: 14px;
    color: var(--jcda-text-gray);
    font-weight: 700;
}

.growth-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.growth-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.growth-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.growth-num.blue {
    background: var(--jcda-blue);
}

.growth-num.orange {
    background: var(--jcda-accent);
}

.growth-num.gray {
    background: var(--jcda-text-gray);
}

.growth-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-top: 10px;
    margin-bottom: 8px;
}

.growth-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--jcda-text-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .growth-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .growth-visual {
        padding: 40px 24px;
    }
}

/* --- POINT SYSTEM SECTION --- */
.point-system-section {
    padding: 100px 0;
    background: #ffffff;
}

.point-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.point-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    border-top: 6px solid #e2e8f0;
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.1);
}

.point-card.blue {
    border-top-color: #3b82f6;
}

.point-card.green {
    border-top-color: #10b981;
}

.point-card.purple {
    border-top-color: #a855f7;
}

.point-card.orange {
    border-top-color: #f97316;
}

.point-icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.point-card.blue .point-icon {
    color: #3b82f6;
}

.point-card.green .point-icon {
    color: #10b981;
}

.point-card.purple .point-icon {
    color: #a855f7;
}

.point-card.orange .point-icon {
    color: #f97316;
}

.point-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--jcda-blue);
    margin-bottom: 12px;
}

.point-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--jcda-text-gray);
    margin-bottom: 0;
}

.point-card .note {
    font-size: 11px;
    margin-top: 12px;
    opacity: 0.6;
}

.point-footer {
    text-align: center;
    margin-top: 48px;
}

/* --- CLOSING CTA SECTION --- */
.closing-cta-section {
    padding: 120px 0;
    background-color: var(--jcda-blue);
    background-image: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
}

.closing-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.closing-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.closing-content h2 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.3;
}

.closing-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    opacity: 0.9;
    text-align: center;
}

.closing-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-closing {
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 260px;
}

.btn-closing.primary {
    background: var(--jcda-accent);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
}

.btn-closing.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-closing:hover {
    transform: translateY(-5px);
}

.btn-closing.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.closing-note {
    font-size: 13px;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* --- ALTERNATIVE CTA SECTION --- */
.alternative-cta-section {
    padding: 100px 0;
    background: #1b263b;
    /* Softened from 0f172a to a slightly lighter navy */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.alt-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alt-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.alt-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.alt-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
}

.alt-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 15px;
    margin-top: auto;
}

.alt-link:hover {
    background: #fbbf24;
    color: #0f172a;
    border-color: #fbbf24;
    transform: translateY(-3px);
    gap: 12px;
}

@media (max-width: 1024px) {

    .point-cards-grid,
    .alt-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .point-cards-grid,
    .alt-grid {
        grid-template-columns: 1fr;
    }

    .closing-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-closing {
        width: 100%;
        max-width: 320px;
    }
}