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

html {
    overflow-x: hidden;
}

/* Responsive Line Break Utility Classes */
.sp-br {
    display: none;
}

.pc-br {
    display: inline;
}

/* タブレット＋スマホで改行（PCでは非表示） */
.tablet-sp-br {
    display: none;
}

@media (max-width: 1024px) {
    .tablet-sp-br {
        display: inline;
    }
}

@media (max-width: 640px) {
    .sp-br {
        display: inline;
    }

    .pc-br {
        display: none;
    }
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Accessibility & Touch Target Improvements */
/* Ensure minimum touch target size of 44x44px for interactive elements */
button,
a,
input,
select,
textarea,
[role="button"],
.clickable {
    min-height: 44px;
    min-width: 44px;
}

/* Improve focus visibility for keyboard navigation */
*:focus-visible {
    outline: 3px solid #ff6000;
    outline-offset: 2px;
}

/* Remove outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Improve link accessibility */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

/* Improve button accessibility */
button {
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Improve tap target spacing for mobile */
@media (max-width: 768px) {

    button,
    a[role="button"],
    .clickable {
        padding: 12px 16px;
    }
}

/* =========================================
   Floating CTA Bar
   ========================================= */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.floating-cta-bar.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}

.floating-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.floating-cta-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-cta-label {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.floating-cta-price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
}

.floating-cta-tax {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    margin-left: 4px;
}

.floating-cta-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.floating-cta-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.floating-cta-button {
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.4);
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
    white-space: nowrap;
}

.floating-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 96, 0, 0.5);
}

.floating-cta-button:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .floating-cta-inner {
        padding: 14px 24px;
        gap: 20px;
    }

    .floating-cta-message {
        display: none;
    }

    .floating-cta-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .floating-cta-inner {
        padding: 12px 16px;
        gap: 12px;
        justify-content: space-between;
    }

    .floating-cta-info {
        gap: 8px;
    }

    .floating-cta-label {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .floating-cta-price {
        font-size: 1.2rem;
    }

    .floating-cta-tax {
        font-size: 0.65rem;
    }

    .floating-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-cta-inner {
        padding: 10px 12px;
    }

    .floating-cta-label {
        display: none;
    }

    .floating-cta-price {
        font-size: 1.1rem;
    }

    .floating-cta-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}


/* Layout Container */
.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px 0 60px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
    background-image:
        radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%),
        radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px;
    color: #fff;
    overflow: hidden;
}

/* タイトルエリア（最上部・中央配置） */
.hero-title-area {
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
}

/* Additional decorative elements */
.hero-container::before {
    content: '';
    position: absolute;
    top: 40%;
    right: 5%;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(255, 96, 0, 0.3);
    border-radius: 50%;
    z-index: 0;
}

.hero-container::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 20%;
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 96, 0, 0.4), transparent);
    transform: rotate(45deg);
    z-index: 0;
}

/* =========================================
   PC/SP ヒーロー切り替え
   ========================================= */
/* デフォルト：PC版表示、SP版非表示 */
.hero-pc {
    display: block;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-sp {
    display: none;
}

/* 768px未満：PC版非表示、SP版表示 */
@media (max-width: 767px) {
    .hero-pc {
        display: none !important;
    }

    .hero-sp {
        display: block;
    }
}

/* =========================================
   SP版ヒーロー スタイル
   ========================================= */
.hero-sp {
    background: #000;
    padding: 32px 20px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 背景装飾 */
.hero-sp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 96, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 96, 0, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* サービス名（タイトル）エリア */
.hero-sp-brand {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.hero-sp-sub {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hero-sp-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6000;
    line-height: 0.9;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 96, 0, 0.3);
    margin: 0;
}

/* CEO写真・氏名エリア */
.hero-sp-ceo {
    position: relative;
    margin-bottom: 16px;
    z-index: 1;
}

.hero-sp-ceo-photo {
    width: 200px;
    height: 250px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.hero-sp-ceo-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero-sp-ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.92) contrast(1.08);
}

.hero-sp-ceo-info {
    background: #000;
    display: inline-block;
    padding: 14px 28px;
    border-left: 5px solid #fff;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.6);
    transform: skewX(-8deg);
    position: relative;
    margin-top: -60px;
    z-index: 2;
}

.hero-sp-ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    transform: skewX(8deg);
}

.hero-sp-ceo-title {
    font-size: 0.6rem;
    color: #aaa;
    margin-top: 4px;
    letter-spacing: 0.05em;
    transform: skewX(8deg);
}

/* キャッチコピーエリア */
.hero-sp-catch {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-sp-catch-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 8px;
}

.hero-sp-catch-highlight {
    color: #ffd700;
    font-weight: 700;
}

.hero-sp-catch-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* 年会費情報エリア */
.hero-sp-fee {
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid #ff6000;
    padding: 20px 24px;
    margin: 0 auto 16px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    transform: skewX(-8deg);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}

/* 装飾コーナー */
.hero-sp-fee::before,
.hero-sp-fee::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid #ff6000;
}

.hero-sp-fee::before {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
}

.hero-sp-fee::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.hero-sp-fee-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transform: skewX(8deg);
}

.hero-sp-fee-label-en {
    font-size: 0.65rem;
    color: #666;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.hero-sp-fee-label-ja {
    font-size: 0.85rem;
    color: #999;
}

.hero-sp-fee-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    transform: skewX(8deg);
}

.hero-sp-fee-yen {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6000;
}

.hero-sp-fee-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ff6000;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* 開始時期エリア */
.hero-sp-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 12px 28px;
    font-weight: 900;
    font-size: 0.95rem;
    transform: skewX(-8deg);
    box-shadow: 6px 6px 0 #000;
    position: relative;
    z-index: 1;
}

.hero-sp-date-icon {
    font-size: 1rem;
    transform: skewX(8deg);
}

.hero-sp-date-text {
    letter-spacing: 0.05em;
    transform: skewX(8deg);
}

/* 超小型デバイス向け調整 */
@media (max-width: 374px) {
    .hero-sp {
        padding: 28px 16px 20px;
    }

    .hero-sp-title {
        font-size: 3.2rem;
    }

    .hero-sp-ceo-photo {
        width: 180px;
        height: 220px;
    }

    .hero-sp-ceo-info {
        margin-top: -50px;
        padding: 10px 20px;
    }

    .hero-sp-ceo-name {
        font-size: 1.3rem;
    }

    .hero-sp-catch-main {
        font-size: 1.05rem;
    }

    .hero-sp-fee {
        max-width: 260px;
        padding: 16px 20px;
    }

    .hero-sp-fee-price {
        font-size: 2.6rem;
    }
}


/* Main Layout */
.hero {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 60px;
}

/* More decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 35%;
    width: 100px;
    height: 100px;
    border: 4px solid rgba(255, 96, 0, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 10%;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 96, 0, 0.35), transparent);
    transform: rotate(-15deg);
    z-index: 0;
}




/* Left Side - CEO Image Area */
.hero-left {
    position: relative;
    width: 420px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* CEO Photo Container */
.ceo-photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
    margin-bottom: 0;
}

.ceo-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: brightness(0.92) contrast(1.08);
}

/* CEO Name Card */
.ceo-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #000;
    padding: 18px 30px;
    border-left: 5px solid #fff;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.8);
    z-index: 10;
    transform: skewX(-8deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-card:hover {
    transform: skewX(-8deg) translateY(-5px);
    box-shadow: 15px 20px 50px rgba(0, 0, 0, 0.9);
}

.ceo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.05em;
    transform: skewX(8deg);
}

.ceo-title {
    font-size: 0.65rem;
    color: #aaa;
    margin-top: 6px;
    letter-spacing: 0.05em;
    transform: skewX(8deg);
}

/* Right Side - Content */
.hero-right {
    flex: 1;
    padding-left: 20px;
    max-width: 700px;
}

/* Main Titles */
.main-title-sub {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-title-large {
    font-size: 7rem;
    font-weight: 900;
    color: #ff6000;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
    font-style: italic;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 96, 0, 0.4);
}

/* Catchphrase */
.catch-copy {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.catch-highlight {
    color: #ffd700;
    font-weight: 700;
}

.sub-copy {
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: #ccc;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* Membership Box */
.membership-box {
    border: 3px solid #ff6000;
    padding: 28px 32px;
    background: rgba(0, 0, 0, 0.7);
    max-width: 580px;
    position: relative;
    margin-bottom: 24px;
    transform: skewX(-8deg);
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.membership-box:hover {
    border-color: #ff8533;
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 96, 0, 0.15);
}

/* Decorative corners for membership box */
.membership-box::before,
.membership-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #ff6000;
}

.membership-box::before {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
}

.membership-box::after {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

/* Additional decorative square at bottom-right */
.membership-box .corner-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 25px;
    height: 25px;
    background: #ff6000;
    transform: skewX(8deg);
    z-index: 5;
}

.fee-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
    margin-bottom: 25px;
    gap: 20px;
    transform: skewX(8deg);
}

.fee-label {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.fee-label strong {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.fee-amount-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fee-yen {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6000;
}

.fee-amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ff6000;
    line-height: 1;
    letter-spacing: -0.02em;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    list-style: none;
    transform: skewX(8deg);
}

.benefits-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    color: #ddd;
}

.check-icon-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #ff6000;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Date Badge */
.date-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 35px;
    font-weight: 900;
    font-size: 1rem;
    transform: skewX(-8deg);
    box-shadow: 6px 6px 0 #000;
    transition: transform 0.3s ease;
    letter-spacing: 0.05em;
}

.date-badge:hover {
    transform: skewX(-8deg) scale(1.05);
}

.date-badge span {
    display: block;
    transform: skewX(8deg);
}

/* Button styling (if needed) */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #ff6000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn:hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 96, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        flex-direction: column;
        gap: 40px;
    }

    .hero-left {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-right {
        max-width: 100%;
        padding-left: 0;
    }

    .main-title-large {
        font-size: 4rem;
    }

    .membership-box {
        max-width: 100%;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    body::before,
    body::after,
    .container::before,
    .container::after,
    .hero::before,
    .hero::after {
        display: none;
    }

    .container {
        padding: 32px 20px;
        min-height: auto;
    }

    .hero {
        flex-direction: column;
        gap: 32px;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        order: 2;
        opacity: 0.7;
    }

    .hero-right {
        width: 100%;
        padding-left: 0;
        order: 1;
    }

    .ceo-photo-container {
        height: 200px;
        margin-bottom: 45px;
        opacity: 0.9;
    }

    .ceo-card {
        left: 20px;
        right: 20px;
        transform: skewX(-6deg);
        bottom: -35px;
        width: auto;
        max-width: none;
        padding: 12px 20px;
        box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.6);
    }

    .ceo-name {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ceo-title {
        font-size: 0.55rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-title-sub {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
        margin-bottom: 6px;
    }

    .main-title-large {
        font-size: 2.8rem;
        margin-bottom: 28px;
    }

    .catch-copy {
        font-size: 1.25rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .sub-copy {
        font-size: 0.9rem;
        margin-bottom: 28px;
        line-height: 1.8;
    }

    .membership-box {
        padding: 28px 24px;
        transform: skewX(-4deg);
    }

    .fee-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 22px;
    }

    .fee-label {
        font-size: 0.8rem;
    }

    .fee-yen {
        font-size: 1.6rem;
    }

    .fee-amount {
        font-size: 3.2rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefits-list li {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .date-badge {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 24px 16px;
        width: 100%;
        max-width: 100%;
    }

    .container::before,
    .container::after {
        display: none !important;
    }

    .hero {
        flex-direction: column;
        gap: 24px;
    }

    .hero-left {
        order: 2;
        opacity: 0.65;
    }

    .hero-right {
        order: 1;
    }

    .ceo-photo-container {
        height: 160px;
        margin-bottom: 40px;
        border-radius: 6px;
        overflow: hidden;
    }

    .ceo-card {
        padding: 10px 16px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        bottom: -32px;
        transform: skewX(-4deg);
        box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.5);
    }

    .ceo-name {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ceo-title {
        font-size: 0.5rem;
        margin-top: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main-title-sub {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        margin-bottom: 6px;
    }

    .main-title-large {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }

    .catch-copy {
        font-size: 1.15rem;
        line-height: 1.65;
        margin-bottom: 14px;
    }

    .sub-copy {
        font-size: 0.875rem;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .membership-box {
        padding: 24px 20px;
        border-width: 2px;
    }

    .fee-row {
        gap: 10px;
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .fee-label {
        font-size: 0.75rem;
    }

    .fee-yen {
        font-size: 1.4rem;
    }

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

    .benefits-list {
        gap: 12px;
    }

    .benefits-list li {
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .paw-icon {
        margin-right: 10px;
        font-size: 1rem;
    }

    .date-badge {
        padding: 12px 24px;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
        box-shadow: 4px 4px 0 #000;
    }
}

/* ========================================
   SECTION 2: CURRENT ISSUES
   ======================================== */

.section-issues {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    color: #333;
    width: 100%;
    overflow: hidden;
}

.section-number {
    display: none;
}

.issues-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Header Section */
.issues-header {
    margin-bottom: 40px;
}

.current-issues-badge {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border-radius: 2px;
}

.issues-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.issues-title-highlight {
    color: #1976d2;
}

.issues-subtitle {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Target List - 7つの課題ラベル（左カラム用・縦並び） */
.target-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.target-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.target-item-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.target-item-dot.light-blue {
    background: #dbeafe;
}

.target-item-dot.medium-blue {
    background: #93c5fd;
}

.target-item-dot.dark-blue {
    background: #3b82f6;
}

.target-item-dot.orange {
    background: #f97316;
}

/* Content Layout */
.issues-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Issue Cards (Left Column) */
.issue-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.issue-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-left: 4px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.issue-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-left-color: #ff5252;
}

.issue-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef5f5;
    border-radius: 50%;
    color: #d32f2f;
}

.issue-icon svg {
    width: 24px;
    height: 24px;
}

.issue-content {
    flex: 1;
}

.issue-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.issue-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Statistics Panel (Right Column) */
.stats-panel {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(44, 82, 130, 0.85) 100%), url('../images/population-decline.png');
    background-size: cover;
    background-position: center;
    padding: 50px 40px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stats-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: inline-block;
}

.stats-heading {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #fff;
}

.stats-number {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
}

.stats-value {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
}

.stats-unit {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.stats-minus {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b6b;
    line-height: 1;
}

.stats-message {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.stats-footer {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-warning strong {
    color: #ffeb3b;
    font-weight: 700;
}

/* Responsive Design for Section 2 */
@media (max-width: 1024px) {
    .section-issues {
        padding: 80px 40px;
    }

    .section-number {
        font-size: 7rem;
        top: 40px;
        right: 40px;
    }

    .issues-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .issues-title {
        font-size: 2.2rem;
    }

    .stats-value {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .section-issues {
        padding: 48px 20px;
        min-height: auto;
    }

    .section-number {
        font-size: 5rem;
        top: 20px;
        right: 20px;
    }

    .issues-header {
        margin-bottom: 32px;
    }

    .current-issues-badge {
        padding: 6px 16px;
        font-size: 0.7rem;
        margin-bottom: 16px;
    }

    .issues-title {
        font-size: 1.65rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .issues-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* Target List Mobile */
    .target-list {
        gap: 10px;
    }

    .target-item {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .target-item-dot {
        width: 10px;
        height: 10px;
        margin-right: 8px;
    }

    .issues-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .issue-icon svg {
        width: 22px;
        height: 22px;
    }

    .issue-heading {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .issue-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .stats-panel {
        padding: 36px 28px;
        border-radius: 6px;
    }

    .stats-label {
        font-size: 0.65rem;
        margin-bottom: 16px;
    }

    .stats-heading {
        font-size: 1.15rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .stats-number {
        margin-bottom: 24px;
        gap: 6px;
    }

    .stats-value {
        font-size: 3.2rem;
    }

    .stats-unit {
        font-size: 1.6rem;
    }

    .stats-download-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .stats-warning {
        font-size: 0.75rem;
        line-height: 1.7;
        padding-top: 18px;
    }
}

@media (max-width: 480px) {
    .section-issues {
        padding: 40px 16px;
    }

    .current-issues-badge {
        padding: 6px 14px;
        font-size: 0.65rem;
    }

    .issues-title {
        font-size: 1.5rem;
        line-height: 1.55;
    }

    .issues-subtitle {
        font-size: 0.875rem;
    }

    .issues-content {
        gap: 28px;
    }

    .issue-cards {
        gap: 14px;
    }

    .issue-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .issue-icon {
        width: 40px;
        height: 40px;
    }

    .issue-icon svg {
        width: 20px;
        height: 20px;
    }

    .issue-heading {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .issue-text {
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .stats-panel {
        padding: 32px 24px;
    }

    .stats-label {
        font-size: 0.6rem;
        margin-bottom: 14px;
    }

    .stats-heading {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .stats-number {
        margin-bottom: 20px;
    }

    .stats-value {
        font-size: 2.8rem;
    }

    .stats-unit {
        font-size: 1.4rem;
    }

    .stats-download-btn {
        padding: 14px 20px;
        font-size: 0.85rem;
        min-height: 48px;
    }

    .stats-warning {
        font-size: 0.7rem;
        line-height: 1.75;
    }
}

/* ========================================
   SECTION 3: OUR SOLUTION - THREE VALUES
   ======================================== */

.section-values {
    position: relative;
    padding: 80px 60px;
    background: #ffffff;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #333;
    width: 100%;
}

/* Blue background for top 40% */
.section-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    z-index: 0;
}

.section-values::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    z-index: 0;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Header Section */
.values-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

.values-header-left {
    flex: 1;
    text-align: left;
}

.values-header-right {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.our-solution-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    border-radius: 20px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.values-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0;
    letter-spacing: 0.03em;
}

.values-title-highlight {
    color: #ffd700;
    position: relative;
}

.values-subtitle {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    letter-spacing: 0.02em;
    max-width: 500px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Value Card */
.value-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

/* Value Image Section */
.value-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.05);
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.6) 100%);
}

/* Value Content */
.value-content {
    padding: 30px 25px;
    position: relative;
}

/* Value Badge - positioned on image */
.value-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-badge-blue,
.value-badge-orange,
.value-badge-green {
    background: none;
    color: #ffffff;
}

/* Value Title Row (Icon + Heading) */
.value-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

/* Value Icon */
.value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 50%;
    color: #374151;
    transition: transform 0.3s ease, background 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: #e5e7eb;
}

/* Value Heading & Description */
.value-heading {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.2;
}

.value-description {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.value-text {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Value Features List */
.value-features {
    list-style: none;
    padding: 20px;
    margin: 0 0 20px 0;
    border-radius: 8px;
}

/* Blue theme for LEARNING */
.value-card:nth-child(1) .value-features {
    background: rgba(37, 99, 235, 0.08);
}

/* Orange theme for PREPARATION */
.value-card:nth-child(2) .value-features {
    background: rgba(255, 96, 0, 0.08);
}

/* Green theme for OPPORTUNITY */
.value-card:nth-child(3) .value-features {
    background: rgba(5, 150, 105, 0.08);
}

.value-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.value-features li:last-child {
    margin-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 2px;
}

/* Value Meta */
.value-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.value-session,
.value-count {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* CEO Message Video Section */
.ceo-message-video {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(30, 58, 138, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.ceo-message-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.video-lead-text {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.video-lead-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 80px 40px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.video-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #1e40af;
}

.video-placeholder-inner svg {
    opacity: 0.6;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.video-placeholder-inner p {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
    color: #1e3a8a;
}

/* Responsive Design for Section 3 */
@media (max-width: 1024px) {
    .section-values {
        padding: 80px 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }

    .values-title {
        font-size: 2.5rem;
    }

    .value-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .section-values {
        padding: 48px 20px;
        min-height: auto;
    }

    .section-values::before {
        height: 35%;
    }

    .section-values::after {
        display: none;
    }

    .values-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .values-header-left,
    .values-header-right {
        flex: 1;
        text-align: left;
        width: 100%;
    }

    .values-header-right {
        align-items: flex-start;
    }

    .our-solution-badge {
        padding: 6px 16px;
        font-size: 0.7rem;
        margin-bottom: 14px;
    }

    .values-title {
        font-size: 1.75rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .values-subtitle {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .value-card {
        border-width: 1px;
    }

    .value-image {
        height: 200px;
    }

    .value-badge {
        bottom: 12px;
        left: 12px;
        font-size: 0.65rem;
    }

    .value-content {
        padding: 24px 20px;
    }

    .value-title-row {
        gap: 12px;
        margin-bottom: 10px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
    }

    .value-icon svg {
        width: 26px;
        height: 26px;
    }

    .value-heading {
        font-size: 1.5rem;
    }

    .value-description {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .value-text {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .value-features {
        padding: 16px;
        gap: 12px;
        margin-bottom: 18px;
    }

    .value-features li {
        font-size: 0.825rem;
        line-height: 1.6;
    }

    .check-icon {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    .value-meta {
        gap: 10px;
        flex-wrap: nowrap;
    }

    .value-session,
    .value-count {
        font-size: 0.75rem;
        padding: 6px 12px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .section-values {
        padding: 40px 16px;
    }

    .section-values::before {
        height: 38%;
    }

    .values-header {
        gap: 20px;
        margin-bottom: 32px;
    }

    .values-header-left,
    .values-header-right {
        text-align: left;
    }

    .values-header-right {
        align-items: flex-start;
    }

    .our-solution-badge {
        padding: 6px 14px;
        font-size: 0.65rem;
    }

    .values-title {
        font-size: 1.55rem;
        line-height: 1.5;
    }

    .values-subtitle {
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .values-grid {
        gap: 24px;
    }

    .value-image {
        height: 180px;
    }

    .value-badge {
        bottom: 10px;
        left: 10px;
        font-size: 0.6rem;
    }

    .value-content {
        padding: 20px 16px;
    }

    .value-title-row {
        gap: 10px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
    }

    .value-icon svg {
        width: 24px;
        height: 24px;
    }

    .value-heading {
        font-size: 1.35rem;
    }

    .value-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .value-text {
        font-size: 0.8rem;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .value-features {
        padding: 14px;
        gap: 10px;
        margin-bottom: 16px;
    }

    .value-features li {
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .check-icon {
        width: 16px;
        height: 16px;
        font-size: 0.65rem;
        margin-right: 8px;
    }

    .value-meta {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .value-session,
    .value-count {
        font-size: 0.7rem;
        padding: 5px 10px;
        white-space: nowrap;
    }

    .ceo-message-video {
        margin-top: 40px;
        margin-left: 20px;
        margin-right: 20px;
        padding: 40px 24px;
    }

    .video-lead-title {
        font-size: 1rem;
    }

    .video-placeholder {
        padding: 60px 20px;
    }

    .video-placeholder-inner svg {
        width: 48px;
        height: 48px;
    }

    .video-placeholder-inner p {
        font-size: 0.9rem;
    }
}

/* ========================================
   SECTION 4: MEMBERSHIP PACKAGE
   ======================================== */

.section-package {
    position: relative;
    padding: 80px 60px;
    background: #fff;
    min-height: auto;
    display: flex;
    align-items: center;
    color: #333;
    width: 100%;
    overflow: hidden;
}

/* Background decorative circles */
.section-package::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 180px;
    height: 180px;
    border: 3px solid rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.section-package::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 220px;
    height: 220px;
    border: 3px solid rgba(37, 99, 235, 0.06);
    border-radius: 50%;
    z-index: 0;
}

.package-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.package-container::before {
    content: '';
    position: absolute;
    top: 40%;
    right: 25%;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 96, 0, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.package-container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 35%;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(37, 99, 235, 0.07);
    border-radius: 50%;
    z-index: 0;
}

/* Left Column: Membership Card */

.package-left {
    position: sticky;
    top: 100px;
}

.membership-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    padding: 40px 35px;
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.annual-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
    padding: 10px 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 2px rgba(255, 255, 255, 0.3);
    z-index: 10;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.annual-badge::before,
.annual-badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    width: 0;
    height: 0;
    border-style: solid;
}

.annual-badge::before {
    left: 0;
    border-width: 0 0 4px 5px;
    border-color: transparent transparent #cc4d00 transparent;
}

.annual-badge::after {
    right: 0;
    border-width: 0 5px 4px 0;
    border-color: transparent transparent #cc4d00 transparent;
}

.package-fee-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 8px 24px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    border-radius: 28px;
    margin-bottom: 12px;
    text-transform: uppercase;
    box-shadow:
        0 4px 12px rgba(30, 58, 138, 0.25),
        0 2px 6px rgba(30, 58, 138, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        inset 0 2px 2px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.membership-heading {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 5px;
}

.price-yen {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-amount {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.membership-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.membership-benefits li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.benefit-icon {
    margin-right: 10px;
    font-size: 1rem;
    color: #10b981;
    font-weight: 900;
}

.membership-note {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

/* Right Column: Features */
.package-right {
    padding-top: 20px;
}

.package-header {
    margin-bottom: 40px;
}

.everything-badge {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    border-radius: 4px;
    text-transform: uppercase;
}

.package-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.package-title-highlight {
    color: #2563eb;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.feature-main {
    background: #fff5f0;
    border: 2px solid #ff6000;
}

.feature-main:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(255, 96, 0, 0.15);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
}

.feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content {
    flex: 1;
}

.feature-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ff6000;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.feature-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.feature-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Package Footer */
.package-footer {
    background: #f3f4f6;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #374151;
    border-left: 4px solid #3b82f6;
    display: block;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: #3b82f6;
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
    margin-top: 2px;
}

.package-footer strong {
    color: #1e3a8a;
    font-weight: 700;
}

/* =========================================
   Section 4: Centered Layout (Redesign)
   ========================================= */

.package-container-centered {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.package-card-wrapper {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    padding: 50px 20px;
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 12px 48px rgba(30, 58, 138, 0.35);
    position: relative;
    overflow: hidden;
}

.package-card-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.package-card-wrapper .annual-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
    padding: 10px 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 2px rgba(255, 255, 255, 0.3);
    z-index: 10;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.package-card-wrapper .annual-badge::before,
.package-card-wrapper .annual-badge::after {
    content: '';
    position: absolute;
    bottom: -4px;
    width: 0;
    height: 0;
    border-style: solid;
}

.package-card-wrapper .annual-badge::before {
    left: 0;
    border-width: 0 0 4px 5px;
    border-color: transparent transparent #cc4d00 transparent;
}

.package-card-wrapper .annual-badge::after {
    right: 0;
    border-width: 0 5px 4px 0;
    border-color: transparent transparent #cc4d00 transparent;
}

.package-header-centered {
    margin-bottom: 40px;
    position: relative;
}

.membership-heading-centered {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: #fff;
}

.price-display-centered {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 10px;
}

.price-display-centered .price-yen {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.price-display-centered .price-amount {
    font-size: 6.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
}

.price-display-centered .price-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    align-self: center;
    margin-left: 8px;
}

.package-message {
    margin-bottom: 40px;
}

.everything-badge-centered {
    display: inline-block;
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
    text-transform: uppercase;
}

.package-title-centered {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.package-title-centered .package-title-highlight {
    color: #fbbf24;
}

/* Features Grid - 3x2 Centered */
.features-grid-centered {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card-simple {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.feature-label-simple {
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-icon-simple {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.feature-card-simple:hover .feature-icon-simple {
    transform: scale(1.1);
}

.feature-icon-simple.feature-icon-orange {
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
}

.feature-icon-simple.feature-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: #fff;
}

.feature-icon-simple svg {
    width: 32px;
    height: 32px;
}

.feature-title-simple {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.package-footer-centered {
    margin-top: 40px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-footer-centered strong {
    color: #fbbf24;
    font-weight: 700;
}

/* Responsive Design for Section 4 */
@media (max-width: 1024px) {
    .section-package {
        padding: 80px 40px;
    }

    .package-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .package-left {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .section-package {
        padding: 48px 20px;
        min-height: auto;
    }

    .section-package::before,
    .section-package::after {
        display: none;
    }

    .package-container {
        gap: 40px;
    }

    .package-container::before {
        display: none;
    }

    .package-left {
        max-width: 100%;
    }

    .membership-card {
        padding: 32px 28px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    }

    .annual-badge {
        padding: 10px 48px;
        font-size: 0.6rem;
        top: 16px;
        right: -36px;
    }

    .membership-heading {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }

    .price-display {
        margin-bottom: 8px;
    }

    .price-yen {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 4rem;
    }

    .price-note {
        font-size: 0.85rem;
        margin-bottom: 28px;
    }

    .membership-benefits {
        gap: 14px;
        margin-bottom: 28px;
    }

    .membership-benefits li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .membership-note {
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .everything-badge {
        padding: 6px 16px;
        font-size: 0.7rem;
        margin-bottom: 14px;
    }

    .package-title {
        font-size: 1.75rem;
        line-height: 1.5;
        margin-bottom: 36px;
    }

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

    .feature-card {
        padding: 20px;
        gap: 16px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-label {
        font-size: 0.65rem;
    }

    .feature-heading {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .feature-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .package-footer {
        padding: 16px 20px;
        font-size: 0.85rem;
        line-height: 1.7;
    }

    /* Centered Layout Mobile */
    .package-container-centered {
        max-width: 100%;
    }

    .package-header-centered .annual-badge {
        padding: 8px 24px;
        font-size: 0.75rem;
        margin-bottom: 20px;
    }

    .price-display-centered {
        flex-wrap: wrap;
        gap: 4px;
    }

    .price-display-centered .price-yen {
        font-size: 1.8rem;
    }

    .price-display-centered .price-amount {
        font-size: 3.5rem;
    }

    .price-display-centered .price-note {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
        font-size: 0.9rem;
    }

    .package-message {
        margin-bottom: 40px;
    }

    .package-title-centered {
        font-size: 1.5rem;
        line-height: 1.6;
    }

    .features-grid-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card-simple {
        padding: 20px 15px;
    }

    .feature-label-simple {
        font-size: 0.55rem;
        margin-bottom: 10px;
    }

    .feature-icon-simple {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .feature-icon-simple svg {
        width: 24px;
        height: 24px;
    }

    .feature-title-simple {
        font-size: 0.85rem;
    }

    .package-footer-centered {
        margin-top: 30px;
        padding: 16px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .section-package {
        padding: 40px 16px;
    }

    .package-container {
        gap: 36px;
    }

    .membership-card {
        padding: 28px 24px;
    }

    .annual-badge {
        font-size: 0.575rem;
        padding: 10px 44px;
        top: 14px;
        right: -32px;
    }

    .membership-heading {
        font-size: 1.45rem;
        margin-bottom: 24px;
    }

    .price-display {
        margin-bottom: 6px;
    }

    .price-yen {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .price-note {
        font-size: 0.8rem;
        margin-bottom: 24px;
    }

    .membership-benefits {
        gap: 12px;
        margin-bottom: 24px;
    }

    .membership-benefits li {
        font-size: 0.875rem;
        line-height: 1.65;
    }

    .benefit-icon {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .membership-note {
        font-size: 0.875rem;
        line-height: 1.8;
    }

    .everything-badge {
        padding: 6px 14px;
        font-size: 0.65rem;
    }

    .package-title {
        font-size: 1.55rem;
        line-height: 1.55;
        margin-bottom: 32px;
    }

    .features-grid {
        gap: 14px;
    }

    .feature-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-label {
        font-size: 0.6rem;
        margin-bottom: 6px;
    }

    .feature-heading {
        font-size: 0.975rem;
        line-height: 1.5;
    }

    .feature-text {
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .package-footer {
        padding: 16px 18px;
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .footer-icon {
        width: 18px;
        height: 18px;
    }

    /* Centered Layout 480px */
    .price-display-centered .price-yen {
        font-size: 1.5rem;
    }

    .price-display-centered .price-amount {
        font-size: 3rem;
    }

    .package-title-centered {
        font-size: 1.3rem;
    }

    .features-grid-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card-simple {
        padding: 16px 12px;
    }

    .feature-label-simple {
        font-size: 0.5rem;
    }

    .feature-icon-simple {
        width: 40px;
        height: 40px;
    }

    .feature-icon-simple svg {
        width: 20px;
        height: 20px;
    }

    .feature-title-simple {
        font-size: 0.75rem;
    }
}

/* ========================================
   SECTION 5: 1DAY PROGRAM FLOW
   ======================================== */

.section-program {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: auto;
    display: flex;
    align-items: stretch;
    color: #333;
    width: 100%;
    overflow: hidden;

    /* Timeline Design Variables - シンプルで保守性の高い変数 */
    --timeline-dot-size: 16px;
    --timeline-dot-border: 3px;
    --timeline-line-width: 2px;
    --timeline-marker-width: 40px;
    --timeline-gap: 16px;
    --timeline-color-primary: #3d5a80;
    --timeline-color-line: #cbd5e0;
}

.program-container {
    width: 100%;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
    min-height: auto;
}

/* Left Panel: Program Overview */
.program-left {
    background: linear-gradient(135deg, rgba(61, 90, 128, 0.8) 0%, rgba(44, 69, 99, 0.8) 100%), url('../images/workshop-collaboration.png');
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    color: #fff;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.program-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.clock-icon {
    width: 14px;
    height: 14px;
}

.program-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 0.02em;
}

.program-subtitle-wrapper {
    padding-left: 20px;
    border-left: 4px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.program-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.program-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    margin-bottom: 30px;
}

.program-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-unit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Right Panel: Timeline */
.program-right {
    padding: 60px 50px;
}

/* Timeline Container */
.timeline {
    display: flex;
    flex-direction: column;
}

/* Timeline Item - Flexbox based layout */
.timeline-item {
    display: flex;
    gap: var(--timeline-gap);
}

/* Timeline Marker Column (ドット + ライン) */
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--timeline-marker-width);
    flex-shrink: 0;
}

/* Timeline Dot */
.timeline-dot {
    width: var(--timeline-dot-size);
    height: var(--timeline-dot-size);
    background: #fff;
    border: var(--timeline-dot-border) solid var(--timeline-color-primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 2px 6px rgba(61, 90, 128, 0.2);
}

.timeline-dot-break {
    width: 12px;
    height: 12px;
    background: #ecf0f1;
    border: 2px solid #95a5a6;
    box-shadow: none;
}

/* Timeline Line - ドットの下に伸びる線 */
.timeline-line {
    width: var(--timeline-line-width);
    flex: 1;
    background: var(--timeline-color-line);
    margin-top: 8px;
    margin-bottom: -8px;
}

/* 最後のアイテムにはラインを表示しない */
.timeline-item-last .timeline-line {
    display: none;
}

/* Timeline Body - コンテンツ部分 */
.timeline-body {
    flex: 1;
    padding-bottom: 32px;
}

.timeline-item-break .timeline-body {
    padding-bottom: 24px;
}

.timeline-item-last .timeline-body {
    padding-bottom: 0;
}

/* Timeline Time Badge */
.timeline-time {
    display: inline-block;
    background: linear-gradient(135deg, #3d5a80 0%, #4a7ba7 100%);
    color: #fff;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(61, 90, 128, 0.2);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

/* Break Content */
.timeline-break-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #7f8c8d;
    font-weight: 600;
    padding: 4px 0;
}

.timeline-break-content svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Timeline Card */
.timeline-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.timeline-card-blue {
    border-left: 4px solid #4a7ba7;
}

.timeline-card-orange {
    border-left: 4px solid #ff6b35;
}

.timeline-card-dark {
    border-left: 4px solid #2c3e50;
}

.timeline-content {
    padding: 24px 26px;
    display: flex;
    gap: 20px;
}

.timeline-icon {
    flex-shrink: 0;
    color: #3d5a80;
}

.timeline-icon svg {
    width: 32px;
    height: 32px;
}

.timeline-card-blue .timeline-icon {
    color: #4a7ba7;
}

.timeline-card-orange .timeline-icon {
    color: #ff6b35;
}

.timeline-card-dark .timeline-icon {
    color: #2c3e50;
}

.timeline-info {
    flex: 1;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.timeline-subtitle {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
}

.timeline-details {
    margin-bottom: 16px;
}

.timeline-details p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px;
}

.timeline-details strong {
    color: #1a1a1a;
    font-weight: 700;
}

.timeline-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.timeline-tag {
    display: inline-block;
    background: #f0f4f8;
    color: #3d5a80;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 12px;
}

.timeline-note {
    font-size: 0.82rem;
    color: #666;
    margin-top: 14px;
    font-style: italic;
}

/* Responsive Design for Section Program - 統一されたタイムライン表示 */
@media (max-width: 1024px) {
    .program-container {
        grid-template-columns: 1fr;
    }

    .program-left {
        padding: 60px 50px;
    }

    .program-right {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .section-program {
        min-height: auto;
        --timeline-dot-size: 14px;
        --timeline-dot-border: 3px;
        --timeline-marker-width: 32px;
        --timeline-gap: 12px;
    }

    .program-container {
        grid-template-columns: 1fr;
    }

    .program-left {
        padding: 48px 20px;
        min-height: auto;
    }

    .program-left::before {
        width: 150px;
        height: 150px;
    }

    .program-schedule-badge {
        padding: 6px 14px;
        font-size: 0.6rem;
        margin-bottom: 24px;
    }

    .clock-icon {
        width: 13px;
        height: 13px;
    }

    .program-title {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .program-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .program-description {
        font-size: 0.875rem;
        line-height: 1.75;
    }

    .program-stats {
        gap: 24px;
    }

    .stat-item {
        padding: 0;
    }

    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 4px;
    }

    .stat-unit {
        font-size: 0.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .program-right {
        padding: 48px 20px;
    }

    .timeline-dot {
        margin-top: 4px;
    }

    .timeline-body {
        padding-bottom: 28px;
    }

    .timeline-item-break .timeline-body {
        padding-bottom: 20px;
    }

    .timeline-time {
        font-size: 0.8rem;
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .timeline-break-content {
        font-size: 0.8rem;
        gap: 8px;
    }

    .timeline-break-content svg {
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        flex-direction: column;
        padding: 20px 16px;
        gap: 14px;
    }

    .timeline-icon {
        width: 44px;
        height: 44px;
    }

    .timeline-icon svg {
        width: 28px;
        height: 28px;
    }

    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .timeline-subtitle {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .timeline-description {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .timeline-details p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .timeline-tags {
        gap: 8px;
        margin-top: 12px;
    }

    .timeline-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .timeline-note {
        font-size: 0.75rem;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .section-program {
        --timeline-dot-size: 12px;
        --timeline-dot-border: 2px;
        --timeline-marker-width: 28px;
        --timeline-gap: 10px;
    }

    .program-left {
        padding: 40px 16px;
    }

    .program-schedule-badge {
        padding: 6px 12px;
        font-size: 0.575rem;
        margin-bottom: 20px;
    }

    .clock-icon {
        width: 12px;
        height: 12px;
    }

    .program-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .program-subtitle {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .program-description {
        font-size: 0.85rem;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .program-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-item {
        padding: 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-unit {
        font-size: 0.65rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .program-right {
        padding: 40px 16px;
    }

    .timeline-body {
        padding-bottom: 24px;
    }

    .timeline-item-break .timeline-body {
        padding-bottom: 16px;
    }

    .timeline-time {
        font-size: 0.72rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .timeline-break-content {
        font-size: 0.75rem;
    }

    .timeline-content {
        padding: 18px 14px;
        gap: 12px;
    }

    .timeline-icon {
        width: 36px;
        height: 36px;
    }

    .timeline-icon svg {
        width: 24px;
        height: 24px;
    }

    .timeline-title {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .timeline-subtitle {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .timeline-description {
        font-size: 0.825rem;
        line-height: 1.75;
        margin-bottom: 10px;
    }

    .timeline-details p {
        font-size: 0.775rem;
        margin-bottom: 4px;
    }

    .timeline-tags {
        gap: 6px;
        margin-top: 10px;
    }

    .timeline-tag {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .timeline-note {
        font-size: 0.7rem;
        margin-top: 8px;
    }

    .timeline-break-text {
        font-size: 0.75rem;
        gap: 6px;
        padding-left: 32px;
    }

    .timeline-break-text svg {
        width: 14px;
        height: 14px;
    }
}

/* ========================================
   SECTION 6: CONTINUOUS SUPPORT
   ======================================== */

.section-support {
    position: relative;
    padding: 80px 60px;
    background: #ffffff;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #333;
    width: 100%;
}

/* Blue background area for left side */
.section-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #eff6ff;
    z-index: 0;
}

/* Decorative background elements - blue circles on left side */
.section-support::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 250px;
    height: 250px;
    background: rgba(191, 219, 254, 0.4);
    border-radius: 50%;
    z-index: 0;
    filter: blur(45px);
}

.support-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Support Content Layout */
.support-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column */
.support-left {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
}

/* Main Image Card (Left) */
.support-image-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e7ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.support-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.support-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.support-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.support-image-card:hover .support-image-wrapper img {
    transform: scale(1.05);
}

.community-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

/* Message Card (separate from image) */
.support-message-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e7ff;
    position: relative;
    z-index: 1;
}

.support-message-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 20px;
    line-height: 1.3;
}

.support-message-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

/* Right Column */
.support-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
    padding-left: 40px;
}

.support-right-header {
    margin-bottom: 20px;
}

.support-right-label {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    padding: 6px 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.support-right-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 0;
}

.support-right-title .highlight {
    color: #2563eb;
}

/* Support Cards Grid (Right) */
.support-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.support-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Card Icon Variations */
.support-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.support-card:hover .support-card-icon {
    transform: scale(1.1);
}

.support-card-blue .support-card-icon {
    background: rgba(37, 99, 235, 0.12);
    color: #1976d2;
}

.support-card-orange .support-card-icon {
    background: rgba(255, 159, 64, 0.12);
    color: #f57c00;
}

.support-card-green .support-card-icon {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

/* Support Card Badge (for green card) */
.support-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #059669;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 12px;
    text-transform: lowercase;
}

.support-card-body {
    flex: 1;
}

.support-card-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.support-card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* Footer Note */
.support-footer {
    margin-top: 10px;
    padding: 20px 25px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.7;
}

.footer-check-icon {
    flex-shrink: 0;
    color: #059669;
}

/* Responsive Design for Section 6 */
@media (max-width: 1024px) {
    .section-support {
        padding: 80px 40px;
    }

    .section-number {
        font-size: 7rem;
        top: 40px;
        right: 40px;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-title {
        font-size: 2.5rem;
    }

    .support-image-wrapper {
        height: 280px;
    }

    .support-right-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-support {
        padding: 48px 20px;
        background: linear-gradient(to bottom, #eff6ff 0%, #ffffff 100%);
        min-height: auto;
    }

    .section-support::before,
    .section-support::after {
        display: none;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .support-left::before,
    .support-left::after {
        display: none;
    }

    .support-image-wrapper {
        height: 220px;
        border-radius: 6px;
    }

    .community-badge {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .support-message-card {
        padding: 24px 20px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    }

    .support-message-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .support-message-text {
        font-size: 0.875rem;
        line-height: 1.75;
    }

    .support-right-header {
        margin-bottom: 28px;
    }

    .support-right-label {
        padding: 6px 16px;
        font-size: 0.7rem;
        margin-bottom: 14px;
    }

    .support-right-title {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .support-cards-grid {
        gap: 16px;
    }

    .support-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .support-card-icon {
        width: 44px;
        height: 44px;
    }

    .support-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .support-card-badge {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .support-card-heading {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .support-card-desc {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .support-footer {
        padding: 14px 16px;
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .footer-check-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .section-support {
        padding: 40px 16px;
    }

    .support-content {
        gap: 32px;
    }

    .support-image-wrapper {
        height: 200px;
    }

    .community-badge {
        padding: 7px 14px;
        font-size: 0.65rem;
    }

    .support-message-card {
        padding: 20px 18px;
    }

    .support-message-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .support-message-text {
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .support-right-header {
        margin-bottom: 24px;
    }

    .support-right-label {
        padding: 6px 14px;
        font-size: 0.65rem;
    }

    .support-right-title {
        font-size: 1.35rem;
        line-height: 1.55;
    }

    .support-cards-grid {
        gap: 14px;
    }

    .support-card {
        padding: 20px 18px;
        gap: 14px;
    }

    .support-card-icon {
        width: 40px;
        height: 40px;
    }

    .support-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .support-card-badge {
        padding: 4px 9px;
        font-size: 0.575rem;
        top: 8px;
        right: 8px;
    }

    .support-card-heading {
        font-size: 0.975rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .support-card-desc {
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .support-footer {
        padding: 14px;
        font-size: 0.8rem;
        line-height: 1.75;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-check-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   SECTION 7: TARGET COMPANIES
   ======================================== */

.section-target {
    position: relative;
    padding: 80px 60px;
    background: #fff;
    min-height: auto;
    display: flex;
    align-items: center;
    color: #333;
    width: 100%;
    overflow: hidden;
}

.section-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2137 100%);
    border-radius: 0 0 50% 50% / 0 0 80px 80px;
    z-index: 1;
}

.target-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Header Section */
.target-header {
    text-align: center;
    margin-bottom: 40px;
}

.target-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.target-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.target-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Industry Box */
.target-industry-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-top: 5px solid;
    border-image: linear-gradient(90deg, #1976d2 0%, #ff6000 100%) 1;
}

.target-industry-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.target-industry-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.target-industry-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
}

.industry-label {
    display: inline-block;
    background: #f0f4ff;
    color: #1976d2;
    border: 1px solid #bbdefb;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.industry-label:hover {
    background: #1976d2;
    color: #fff;
    border-color: #1976d2;
}

/* Merged Card */
.target-cards-merged {
    margin-bottom: 36px;
}

.target-card-merged {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-top: 5px solid;
    border-image: linear-gradient(90deg, #d32f2f 0%, #ff6000 50%, #1976d2 100%) 1;
}

.target-card-merged-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.target-card-merged-heading {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.target-card-merged-subtitle {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.target-card-merged-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
}

.target-card-merged-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
}

.list-icon-red {
    color: #d32f2f;
    flex-shrink: 0;
    font-size: 0.6rem;
    margin-top: 6px;
}

.list-icon-orange {
    color: #ff6000;
    flex-shrink: 0;
    font-size: 0.6rem;
    margin-top: 6px;
}

.list-icon-blue {
    color: #1976d2;
    flex-shrink: 0;
    font-size: 0.6rem;
    margin-top: 6px;
}

/* Cards Grid */
.target-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.target-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.target-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: height 0.3s ease;
}

.target-card-red::before {
    background: linear-gradient(90deg, #d32f2f 0%, #f44336 100%);
}

.target-card-orange::before {
    background: linear-gradient(90deg, #ff6000 0%, #ff8533 100%);
}

.target-card-blue::before {
    background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%);
}

.target-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.target-card:hover::before {
    height: 8px;
}

/* Card Icon */
.target-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.target-card-red .target-card-icon {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #d32f2f;
}

.target-card-orange .target-card-icon {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #ff6000;
}

.target-card-blue .target-card-icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.target-card:hover .target-card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Card Heading */
.target-card-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Card Label */
.target-card-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    text-align: center;
}

/* Card List */
.target-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.target-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.6;
}

.list-icon {
    flex-shrink: 0;
    font-size: 0.6rem;
    margin-top: 6px;
}

.target-card-red .list-icon {
    color: #d32f2f;
}

.target-card-orange .list-icon {
    color: #ff6000;
}

.target-card-blue .list-icon {
    color: #1976d2;
}

/* Footer Note */
.target-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 20px 40px;
    text-align: center;
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.6;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 90%;
    margin: 0 auto;
}

.target-footer-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.target-footer-sub {
    margin: 0;
}

.target-footer .footer-icon {
    flex-shrink: 0;
    opacity: 0.6;
    color: #ff6000;
}

.target-footer strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Wrapper for centering footer */
.target-container>.target-footer {
    display: flex;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-target {
        padding: 80px 40px;
    }

    .target-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .target-card {
        padding: 35px 25px;
    }

    .target-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .section-target {
        padding: 48px 20px;
        min-height: auto;
    }

    .section-target::before {
        height: 30%;
        border-radius: 0 0 40% 40% / 0 0 60px 60px;
    }

    .target-header {
        margin-bottom: 40px;
    }

    .target-badge {
        padding: 7px 18px;
        font-size: 0.7rem;
        margin-bottom: 16px;
    }

    .target-title {
        font-size: 1.85rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .target-subtitle {
        font-size: 0.875rem;
        line-height: 1.7;
    }

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

    .target-card-merged {
        padding: 28px 20px;
    }

    .target-card-merged-heading {
        font-size: 1.2rem;
    }

    .target-card-merged-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .target-card {
        padding: 28px 24px;
    }

    .target-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .target-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .target-card-heading {
        font-size: 1.35rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .target-card-label {
        font-size: 0.85rem;
        margin-bottom: 22px;
        padding-bottom: 18px;
    }

    .target-card-list {
        gap: 14px;
    }

    .target-card-list li {
        font-size: 0.85rem;
        line-height: 1.7;
        gap: 10px;
    }

    .list-icon {
        font-size: 0.575rem;
        margin-top: 5px;
    }

    .target-footer {
        padding: 18px 28px;
        font-size: 0.875rem;
        line-height: 1.7;
        border-radius: 40px;
    }

    .target-footer .footer-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .section-target {
        padding: 40px 16px;
    }

    .section-target::before {
        height: 28%;
        border-radius: 0 0 35% 35% / 0 0 50px 50px;
    }

    .target-header {
        margin-bottom: 36px;
    }

    .target-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
        margin-bottom: 14px;
    }

    .target-title {
        font-size: 1.65rem;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .target-subtitle {
        font-size: 0.85rem;
        line-height: 1.75;
    }

    .target-cards {
        gap: 18px;
    }

    .target-card {
        padding: 24px 20px;
    }

    .target-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .target-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .target-card-heading {
        font-size: 1.2rem;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .target-card-label {
        font-size: 0.8rem;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .target-card-list {
        gap: 12px;
    }

    .target-card-list li {
        font-size: 0.8rem;
        line-height: 1.75;
        gap: 10px;
    }

    .list-icon {
        font-size: 0.55rem;
        margin-top: 5px;
    }

    .target-footer {
        padding: 16px 20px;
        font-size: 0.825rem;
        line-height: 1.75;
        border-radius: 36px;
        gap: 8px;
        max-width: 100%;
    }

    .target-footer .footer-icon {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   SECTION 8: COMPANY
   ======================================== */

.section-company {
    position: relative;
    padding: 80px 0 80px;
    background: #fff;
    display: flex;
    align-items: center;
    color: #333;
    min-height: auto;
    width: 100%;
    overflow: hidden;
}

.company-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 60px;
}

.company-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-header {
    text-align: left;
}

.section-eyebrow {
    display: inline-block;
    background: rgba(255, 96, 0, 0.1);
    color: #ff6000;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 96, 0, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.section-title .highlight-blue {
    color: #1976d2;
    position: relative;
}

.company-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-top: 1rem;
}

.company-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-visual-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 8px;
    background: #fff;
    border: 2px solid rgba(255, 96, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-visual-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 96, 0, 0.4);
}

.company-visual-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.company-visual-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    border-radius: 0 0 8px 8px;
    pointer-events: none;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

.caption-location {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.caption-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: #fff;
    padding: 1.5rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6000, #ff8533);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(255, 96, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.15);
}

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

.metric-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 96, 0, 0.1), rgba(255, 133, 51, 0.05));
    color: #ff6000;
    transition: all 0.3s ease;
}

.metric-icon svg {
    width: 20px;
    height: 20px;
}

.metric-card:hover .metric-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 96, 0, 0.15), rgba(255, 133, 51, 0.1));
}

.metric-card:nth-child(2) .metric-icon {
    background: linear-gradient(135deg, rgba(66, 165, 245, 0.1), rgba(66, 165, 245, 0.05));
    color: #42a5f5;
}

.metric-card:nth-child(3) .metric-icon {
    background: linear-gradient(135deg, rgba(102, 187, 106, 0.1), rgba(102, 187, 106, 0.05));
    color: #66bb6a;
}

.metric-card:nth-child(4) .metric-icon {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.1), rgba(255, 167, 38, 0.05));
    color: #ffa726;
}

.m-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff6000;
    margin: 0;
}

.metric-card div:last-child {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-card:nth-child(2) .m-val {
    color: #42a5f5;
}

.metric-card:nth-child(3) .m-val {
    color: #66bb6a;
}

.metric-card:nth-child(4) .m-val {
    color: #ffa726;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-company {
        padding: 60px 0 100px;
    }

    .company-container {
        padding: 0 40px;
    }

    .company-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .company-header {
        text-align: center;
    }

    .company-left {
        gap: 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .section-company {
        padding: 48px 0 60px;
        min-height: auto;
    }

    .company-container {
        padding: 0 20px;
    }

    .company-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-header {
        margin-bottom: 32px;
    }

    .section-eyebrow span {
        font-size: 0.7rem;
        padding: 6px 16px;
    }

    .section-title {
        font-size: 1.85rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .highlight-blue {
        font-size: 1.85rem;
    }

    .company-description {
        font-size: 0.875rem;
        line-height: 1.75;
        margin-bottom: 32px;
    }

    .company-left {
        gap: 32px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .metric-card {
        padding: 18px 14px;
        gap: 8px;
    }

    .metric-icon {
        width: 36px;
        height: 36px;
    }

    .metric-icon svg {
        width: 18px;
        height: 18px;
    }

    .m-val {
        font-size: 1.75rem;
        margin-bottom: 2px;
    }

    .metric-card div:last-child {
        font-size: 0.825rem;
        line-height: 1.5;
    }

    .company-visual-frame {
        height: auto;
        padding: 8px;
    }

    .company-visual-frame img {
        aspect-ratio: 4/3;
        display: block;
        width: 100%;
        height: auto;
    }

    .company-visual-frame::after {
        height: 30%;
        bottom: 8px;
        left: 8px;
        right: 8px;
    }

    .image-caption {
        bottom: 16px;
        left: 16px;
    }

    .caption-location {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }

    .caption-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section-company {
        padding: 40px 0 50px;
    }

    .company-container {
        padding: 0 16px;
    }

    .company-layout {
        gap: 36px;
    }

    .company-header {
        margin-bottom: 28px;
    }

    .section-eyebrow span {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .section-title {
        font-size: 1.65rem;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .highlight-blue {
        font-size: 1.65rem;
    }

    .company-description {
        font-size: 0.85rem;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .company-left {
        gap: 28px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .metric-card {
        padding: 16px 12px;
        gap: 6px;
    }

    .metric-icon {
        width: 34px;
        height: 34px;
    }

    .metric-icon svg {
        width: 17px;
        height: 17px;
    }

    .m-val {
        font-size: 1.6rem;
    }

    .metric-card div:last-child {
        font-size: 0.8rem;
        line-height: 1.55;
    }

    .company-visual-frame {
        height: auto;
        padding: 8px;
        border-radius: 8px;
    }

    .company-visual-frame img {
        aspect-ratio: 4/3;
        display: block;
        width: 100%;
        height: auto;
        border-radius: 6px;
    }

    .company-visual-frame::after {
        height: 35%;
        bottom: 8px;
        left: 8px;
        right: 8px;
        border-radius: 0 0 6px 6px;
    }

    .image-caption {
        bottom: 14px;
        left: 14px;
    }

    .caption-location {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .caption-text {
        font-size: 0.7rem;
    }
}

/* ========================================
   SECTION 9: FAQ
   ======================================== */

.section-faq {
    padding: 80px 60px;
    background: #f8fafc;
}

.faq-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border: 2px solid #0f172a;
    border-radius: 12px;
    overflow: hidden;
    border-left: 6px solid #3b82f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-q {
    padding: 2rem 2.5rem;
    padding-left: 4.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background 0.3s ease;
}

.faq-q::before {
    content: 'Q';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-q:hover {
    background: #f8fafc;
}

.toggle-icon {
    font-weight: 300;
    font-size: 2rem;
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    background: #3b82f6;
    color: white;
}

.faq-a {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #475569;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-a {
    padding-top: 1rem;
    padding-bottom: 2rem;
    max-height: 500px;
    border-top-color: #e2e8f0;
}

.faq-a p {
    font-size: 1rem;
    line-height: 1.8;
}

.faq-a strong {
    color: #0f172a;
}

/* ========================================
   SECTION 10: CALL TO ACTION
   ======================================== */

.section-cta {
    position: relative;
    padding: 80px 60px 60px;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 50%, #0f2137 100%);
    display: flex;
    align-items: center;
    min-height: auto;
    overflow: hidden;
    color: #fff;
    width: 100%;
}

/* Decorative elements */
.section-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: 5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 96, 0, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
}

/* Main Title */
.cta-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Description */
.cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-description strong {
    color: #fff;
    font-weight: 700;
}

/* GRT Highlight - Yellow */
.cta-description .highlight-grt {
    color: #ffb800 !important;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

/* Unified Date Cards Container - Single Box with Dividers */
.cta-dates-unified {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin: 0 auto 36px;
    max-width: 900px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-dates-unified:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Date Items */
.cta-date-item {
    flex: 1;
    padding: 30px 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.cta-date-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Vertical Dividers */
.cta-date-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.3) 50%,
            transparent);
}

.date-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.date-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.date-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Availability Section (3rd item) */
.cta-date-availability {
    background: rgba(255, 184, 0, 0.08);
}

.availability-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.availability-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffb800;
}

.availability-sub {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

/* Remove old availability badge styles */
.cta-availability.old-style {
    display: none;
}

.availability-icon {
    display: none;
}

.availability-text {
    display: none;
}

/* CTA Button Wrapper */
.cta-button-wrapper {
    margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6000 0%, #ff8533 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 22px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 96, 0, 0.5);
    background: linear-gradient(135deg, #ff7020 0%, #ff9543 100%);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 96, 0, 0.4);
}

/* CTA Note */
.cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.6;
}

/* CTA Footer */
.cta-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.cta-brand {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta-powered {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-cta {
        padding: 100px 40px 70px;
    }

    .cta-main-title {
        font-size: 3rem;
    }

    .cta-dates-unified {
        max-width: 800px;
    }

    .cta-date-item {
        padding: 25px 30px;
    }

    .date-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section-cta {
        padding: 72px 20px 56px;
        min-height: auto;
    }

    /* FAQ Section */
    .section-faq {
        padding: 60px 20px;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-q {
        padding: 1.5rem 1.5rem;
        padding-left: 3.5rem;
        font-size: 1rem;
    }

    .faq-q::before {
        left: 1rem;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .toggle-icon {
        width: 32px;
        height: 32px;
        font-size: 1.75rem;
    }

    .faq-a {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-a {
        padding-bottom: 1.5rem;
    }

    .faq-a p {
        font-size: 0.95rem;
    }

    /* CTA Section */
    .section-cta::before,
    .section-cta::after {
        display: none;
    }

    .cta-main-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 28px;
    }

    .cta-description {
        font-size: 0.9rem;
        line-height: 1.75;
        margin-bottom: 40px;
    }

    .highlight-grt {
        font-size: 0.95rem;
    }

    .cta-dates-unified {
        flex-direction: column;
        max-width: 100%;
        gap: 0;
        margin-bottom: 40px;
    }

    .cta-date-item {
        padding: 24px 28px;
        border-radius: 0;
    }

    .cta-date-item:first-child {
        border-radius: 12px 12px 0 0;
    }

    .cta-date-item:last-child {
        border-radius: 0 0 12px 12px;
    }

    .cta-date-divider::before {
        left: 15%;
        right: 15%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(to right,
                transparent,
                rgba(255, 255, 255, 0.3) 50%,
                transparent);
    }

    .date-label {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .date-value {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .date-desc {
        font-size: 0.875rem;
    }

    .availability-content {
        gap: 6px;
    }

    .availability-main {
        font-size: 1.05rem;
    }

    .availability-sub {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .cta-button-wrapper {
        margin-bottom: 48px;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 18px 48px;
        width: 100%;
        max-width: 100%;
        border-radius: 48px;
        min-height: 56px;
    }

    .cta-note {
        font-size: 0.75rem;
        line-height: 1.7;
        margin-top: 16px;
    }

    .cta-footer {
        gap: 10px;
    }

    .cta-brand {
        font-size: 1.35rem;
    }

    .cta-powered {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-cta {
        padding: 60px 16px 48px;
    }

    .cta-main-title {
        font-size: 1.95rem;
        line-height: 1.45;
        margin-bottom: 24px;
    }

    .cta-description {
        font-size: 0.875rem;
        line-height: 1.75;
        margin-bottom: 36px;
    }

    .highlight-grt {
        font-size: 0.925rem;
    }

    .cta-dates-unified {
        margin-bottom: 36px;
    }

    .cta-date-item {
        padding: 20px 24px;
    }

    .date-label {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .date-value {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .date-desc {
        font-size: 0.825rem;
    }

    .availability-content {
        gap: 5px;
        margin-top: 6px;
    }

    .availability-main {
        font-size: 1rem;
    }

    .availability-sub {
        font-size: 0.75rem;
        line-height: 1.65;
    }

    .cta-button-wrapper {
        margin-bottom: 44px;
    }

    .cta-button {
        font-size: 1.05rem;
        padding: 16px 40px;
        min-height: 54px;
        border-radius: 44px;
    }

    .cta-note {
        font-size: 0.725rem;
        line-height: 1.75;
        margin-top: 14px;
    }

    .cta-footer {
        gap: 8px;
    }

    .cta-brand {
        font-size: 1.25rem;
    }

    .cta-powered {
        font-size: 0.75rem;
    }
}