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

:root {
    /* Warm Futuristic Color Palette - Bright & Energetic */
    --primary-warm: #FF6B35;      /* Vibrant Orange */
    --primary-glow: rgba(255, 107, 53, 0.5);
    --secondary-warm: #FF1B8D;    /* Hot Pink */
    --accent-warm: #FFB627;       /* Golden Yellow */
    --success-warm: #FF8B3D;      /* Coral Orange */
    
    --bg-light: #FFF5F0;          /* Warm White */
    --bg-lighter: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FFF8F5;
    --bg-gradient: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 50%, #FFF5F0 100%);
    
    --text-dark: #2D1B1B;
    --text-medium: #6B4F4F;
    --text-light: #8B7070;
    
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8B3D 100%);
    --gradient-secondary: linear-gradient(135deg, #FF1B8D 0%, #FF6B35 100%);
    --gradient-accent: linear-gradient(135deg, #FFB627 0%, #FF8B3D 100%);
    --gradient-hero: linear-gradient(135deg, #FFE8DC 0%, #FFF5F0 50%, #FFE8DC 100%);
    
    --shadow-warm-primary: 0 0 25px rgba(255, 107, 53, 0.3), 0 0 50px rgba(255, 107, 53, 0.1);
    --shadow-warm-secondary: 0 0 25px rgba(255, 27, 141, 0.3), 0 0 50px rgba(255, 27, 141, 0.1);
    --shadow-card: 0 8px 32px rgba(255, 107, 53, 0.15);
    --shadow-card-hover: 0 12px 40px rgba(255, 107, 53, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* Fix for mobile text overflow */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-label {
    display: inline-block;
    color: var(--primary-warm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 15px var(--primary-glow);
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: var(--shadow-warm-primary);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-warm-primary);
    border: 2px solid transparent;
}

.btn-primary:hover {
    box-shadow: 0 0 35px var(--primary-glow), 0 0 70px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 0 25px rgba(255, 182, 39, 0.4);
    font-size: 1.1rem;
    padding: 18px;
    font-weight: 700;
}

.btn-submit:hover {
    box-shadow: 0 0 35px rgba(255, 182, 39, 0.6), 0 0 70px rgba(255, 182, 39, 0.3);
    transform: translateY(-2px);
}

.btn-submit i {
    margin-right: 10px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 182, 39, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 27, 141, 0.15) 0%, transparent 50%);
    animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 107, 53, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 107, 53, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(255, 107, 53, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 107, 53, 0.03) 3px);
    background-size: 100px 100px;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary-warm);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 30px;
    border: 2px solid var(--primary-warm);
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.15);
}

.hero-title-sub {
    display: block;
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
}

.hero-subtitle {
    font-size: 2.2rem;
    color: var(--primary-warm);
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 0 0 20px var(--primary-glow);
    letter-spacing: 0.05em;
}

.hero-event-tagline {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 35px;
}

.hero-info {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.hero-info-item {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.hero-info-item i {
    color: var(--primary-warm);
    margin-right: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-warm);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    margin: 10px auto 0;
    animation: scrollDown 2s infinite;
    box-shadow: 0 0 10px var(--primary-glow);
}

@keyframes scrollDown {
    0%, 100% {
        opacity: 0;
        height: 20px;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
}

/* ===========================
   Concern Section
   =========================== */
.concern {
    padding: 100px 0;
    background: white;
    position: relative;
}

.concern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

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

.concern-item {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.concern-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.concern-item:hover::before {
    transform: scaleX(1);
}

.concern-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-warm-primary);
    border-color: var(--primary-warm);
    background: white;
}

.concern-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-warm-primary);
}

.concern-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.concern-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.concern-solution {
    text-align: center;
    padding: 35px 30px;
    background: white;
    border-radius: 15px;
    border: 3px solid var(--primary-warm);
    box-shadow: var(--shadow-warm-primary);
    position: relative;
    overflow: hidden;
}

.concern-solution::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.concern-solution-text {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.concern-solution-text i {
    font-size: 1.8rem;
    color: var(--secondary-warm);
    filter: drop-shadow(0 0 10px rgba(255, 27, 141, 0.5));
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1rem;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-lead strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    color: var(--text-medium);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-image {
    width: 100%;
}

.about-image-placeholder {
    width: 100%;
    height: 380px;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-warm);
    font-size: 3.5rem;
    border: 3px solid var(--primary-warm);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.about-image-placeholder i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.about-image-placeholder p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ===========================
   Program Section
   =========================== */
.program {
    padding: 100px 0;
    background: white;
    position: relative;
}

.program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.program-header {
    text-align: center;
    margin-bottom: 60px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px 30px;
    margin-top: 20px;
}

.program-item {
    position: relative;
    padding: 50px 25px 35px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 182, 39, 0.2);
    overflow: visible;
    margin-top: 20px;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.program-item:hover::before {
    transform: scaleX(1);
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(255, 182, 39, 0.4);
    border-color: var(--accent-warm);
    background: white;
}

.program-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 0 25px rgba(255, 182, 39, 0.5);
    font-family: 'Poppins', sans-serif;
    z-index: 10;
}

.program-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-warm);
    font-size: 1.8rem;
    border: 3px solid rgba(255, 182, 39, 0.3);
    box-shadow: 0 4px 15px rgba(255, 182, 39, 0.2);
}

.program-title {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.program-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

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

.benefit-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-warm-primary);
}

.benefit-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   Organizer Section
   =========================== */
.organizer {
    padding: 100px 0;
    background: white;
    position: relative;
}

.organizer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.organizer-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.organizer-profile {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 35px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-card);
}

.organizer-image {
    flex-shrink: 0;
}

.organizer-image-placeholder {
    width: 130px;
    height: 130px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    box-shadow: var(--shadow-warm-secondary);
}

.organizer-name {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.organizer-name-en {
    font-size: 0.9rem;
    color: var(--primary-warm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.organizer-title {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
}

.organizer-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.organizer-description p {
    margin-bottom: 18px;
}

.organizer-company {
    padding: 28px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-card);
}

.organizer-company h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-warm);
}

.organizer-company h4 i {
    font-size: 1.1rem;
}

.organizer-company p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
}

/* ===========================
   Details Section
   =========================== */
.details {
    padding: 100px 0;
    background: var(--bg-light);
}

.details-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.detail-item {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.15);
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-warm);
}

.detail-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 0 25px rgba(255, 182, 39, 0.5);
}

.detail-item h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-price {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-note-inline {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-medium);
}

.detail-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: 100px 0;
    background: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-description {
    color: var(--text-medium);
    font-size: 1rem;
    margin-top: 18px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 45px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--secondary-warm);
    font-size: 0.75rem;
    background: rgba(255, 27, 141, 0.1);
    padding: 3px 10px;
    border-radius: 5px;
    margin-left: 8px;
    border: 1px solid rgba(255, 27, 141, 0.3);
}

.optional {
    color: var(--text-light);
    font-size: 0.75rem;
    background: rgba(139, 112, 112, 0.1);
    padding: 3px 10px;
    border-radius: 5px;
    margin-left: 8px;
    border: 1px solid rgba(139, 112, 112, 0.3);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-warm);
    box-shadow: 0 0 25px var(--primary-glow);
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.form-privacy {
    margin-bottom: 25px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 6px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked ~ .checkbox-mark {
    background: var(--gradient-primary);
    border-color: var(--primary-warm);
    box-shadow: 0 0 15px var(--primary-glow);
}

.form-checkbox input[type="checkbox"]:checked ~ .checkbox-mark::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-message {
    margin-top: 20px;
    padding: 18px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(255, 139, 61, 0.1);
    color: var(--success-warm);
    border: 2px solid var(--success-warm);
    box-shadow: 0 0 20px rgba(255, 139, 61, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(255, 27, 141, 0.1);
    color: var(--secondary-warm);
    border: 2px solid var(--secondary-warm);
    box-shadow: 0 0 20px rgba(255, 27, 141, 0.3);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, #2D1B1B 0%, #3D2626 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 107, 53, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.05em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-info h4 {
    margin-bottom: 12px;
    color: white;
    font-size: 1.05rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===========================
   Responsive Design - Mobile First
   =========================== */

/* Mobile (Default - optimized for smartphones) */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 0.7rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0 80px;
    }
    
    .hero-content {
        padding: 20px 16px;
    }
    
    .hero-title-main {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 8px;
    }
    
    .hero-title-sub {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 8px;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.5;
        padding: 0 8px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 0 8px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-info-item {
        width: 100%;
        text-align: center;
    }
    
    .btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .concern-grid,
    .program-grid,
    .benefits-grid,
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-image-placeholder {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .organizer-profile {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .concern-solution-text {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .concern,
    .program,
    .benefits,
    .about,
    .organizer,
    .details,
    .contact {
        padding: 60px 0;
    }
    
    .concern-item h3,
    .program-title,
    .benefit-card h3,
    .detail-item h3 {
        padding: 0 4px;
        line-height: 1.5;
    }
    
    .concern-item p,
    .program-description,
    .benefit-card p,
    .detail-item p {
        padding: 0 4px;
        line-height: 1.7;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title-main {
        font-size: 1.6rem;
        line-height: 1.35;
        padding: 0 12px;
    }
    
    .hero-title-sub {
        font-size: 1.35rem;
        line-height: 1.35;
        padding: 0 12px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.55;
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.4;
        padding: 0 12px 20px;
    }
    
    .concern-item,
    .program-item,
    .benefit-card,
    .detail-item {
        padding: 28px 18px;
    }
    
    .contact-form {
        padding: 25px 16px;
    }
    
    .about-lead,
    .about-description,
    .organizer-description p {
        padding: 0 4px;
    }
}

/* Tablet and Up */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-title {
        font-size: 1.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   New Sections - 100 Point LP
   =========================== */

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 25px 0 20px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 5px;
    font-weight: 600;
}

.hero-info-item.urgency {
    background: var(--gradient-secondary);
    color: white;
    border-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 27, 141, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 27, 141, 0.5);
    }
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: var(--shadow-warm-primary);
    }
    50% {
        box-shadow: 0 0 40px var(--primary-glow), 0 0 80px var(--primary-glow);
    }
}

/* Section Description */
.section-description {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 700px;
    margin: -30px auto 50px;
    line-height: 1.8;
}

/* ===========================
   Special Benefits Section
   =========================== */
.special-benefits {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.special-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.special-benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.special-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.special-benefit-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.15);
    position: relative;
    text-align: center;
}

.special-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-warm);
}

.special-benefit-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 27, 141, 0.4);
    white-space: nowrap;
}

.special-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-warm-primary);
}

.special-benefit-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.special-benefit-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.special-benefit-value {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(255, 182, 39, 0.4);
}

.urgency-banner {
    background: white;
    border: 3px solid var(--secondary-warm);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-warm-secondary);
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% {
        border-color: var(--secondary-warm);
    }
    50% {
        border-color: var(--primary-warm);
    }
}

.urgency-banner i {
    color: var(--secondary-warm);
    font-size: 1.5rem;
    margin-right: 15px;
}

.urgency-text {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.urgency-text strong {
    color: var(--secondary-warm);
    font-size: 1.4rem;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--accent-warm);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent-warm);
    font-size: 1.1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 107, 53, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.testimonial-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   Before After Section
   =========================== */
.before-after {
    padding: 100px 0;
    background: var(--bg-light);
}

.before-after-header {
    text-align: center;
    margin-bottom: 60px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.before-after-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
}

.before-side,
.after-side {
    text-align: center;
    padding: 15px;
    min-width: 0;
}

.before-after-label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.before-after-label.before {
    background: rgba(255, 27, 141, 0.1);
    color: var(--secondary-warm);
}

.before-after-label.after {
    background: rgba(0, 255, 136, 0.1);
    color: #00AA5B;
}

.before-side i {
    font-size: 3rem;
    color: var(--secondary-warm);
    margin-bottom: 15px;
}

.after-side i {
    font-size: 3rem;
    color: #00AA5B;
    margin-bottom: 15px;
}

.before-side p,
.after-side p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.arrow-icon {
    color: var(--primary-warm);
    font-size: 2rem;
    flex-shrink: 0;
    margin: 0 10px;
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    padding: 100px 0;
    background: white;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    border-color: var(--primary-warm);
    box-shadow: var(--shadow-card);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.faq-question:hover {
    color: var(--primary-warm);
}

.faq-question i {
    color: var(--primary-warm);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 30px 0 !important;
    transition: max-height 0.4s ease, padding 0.4s ease !important;
    background: white !important;
}

.faq-item.active .faq-answer {
    display: block !important;
    max-height: 2000px !important;
    padding: 0 30px 25px !important;
}

.faq-answer p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===========================
   Floating CTA Button
   =========================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    transform: translateY(-5px);
}

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

/* ===========================
   Scroll Progress Bar
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px var(--primary-glow);
}

/* ===========================
   Responsive - Mobile Optimization
   =========================== */
@media (max-width: 768px) {
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin: -20px auto 40px;
        padding: 0 8px;
    }
    
    .special-benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .special-benefit-card {
        padding: 35px 25px;
    }
    
    .program-grid {
        margin-top: 30px;
    }
    
    .program-item {
        margin-top: 25px;
        padding: 55px 20px 30px;
    }
    
    .program-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: -22px;
    }
    
    .before-after-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
        font-size: 1.8rem;
        margin: 10px 0;
    }
    
    .before-side,
    .after-side {
        padding: 15px 10px;
    }
    
    .before-side p,
    .after-side p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta i {
        font-size: 1.5rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .urgency-text strong {
        font-size: 1.1rem;
    }
    
    .special-benefits,
    .testimonials,
    .before-after,
    .faq {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .testimonial-card,
    .special-benefit-card {
        padding: 28px 20px;
    }
    
    .program-item {
        padding: 50px 18px 28px;
        margin-top: 25px;
    }
    
    .program-number {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .before-after-item {
        padding: 20px 15px;
    }
    
    .before-side i,
    .after-side i {
        font-size: 2.5rem;
    }
}