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

:root {
    /* Elegant Color Palette - 洗練されたピンク＆パープル */
    --primary-rose: #d4567f;
    --primary-mauve: #c75b93;
    --accent-lavender: #b892d4;
    --accent-soft-pink: #f8e8ed;
    --accent-beige: #f5ede8;
    
    /* Neutral Tones */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-bg: #f9f7f8;
    --warm-gray: #e8e4e6;
    --medium-gray: #a89ba1;
    --charcoal: #5a4d54;
    --deep-charcoal: #3d3339;
    
    /* Text Colors */
    --text-primary: #3d3339;
    --text-secondary: #6d5f66;
    --text-light: #9e8f96;
    
    /* Legacy color mappings for compatibility */
    --deep-rose: var(--primary-rose);
    --deep-purple: var(--accent-lavender);
    --primary-pink: var(--accent-soft-pink);
    --light-pink-bg: var(--accent-soft-pink);
    --primary-light-pink: var(--accent-soft-pink);
    --dark-gray: var(--text-primary);
    --soft-text: var(--text-secondary);
    
    /* Semantic Colors */
    --success: #ff69b4;
    --danger: #ff1744;
    --warning: #ffab00;
    
    /* Typography */
    --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Noto Serif JP', Georgia, serif;
    --font-rounded: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
    
    /* Spacing - より広い余白 */
    --spacing-xs: 0.75rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 4.5rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 9rem;
    
    /* Border Radius - より繊細に */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Shadows - 繊細で上品な影 */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12), 0 6px 24px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-primary);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--deep-rose);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--deep-purple);
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
}

/* Responsive helpers */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .pc-only {
        display: none;
    }
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

strong {
    font-weight: 700;
    color: var(--deep-rose);
}

.text-accent {
    color: var(--deep-purple);
    font-weight: 700;
}

.text-success {
    color: var(--success);
}

.text-gray {
    color: var(--medium-gray);
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--deep-rose), var(--accent-purple));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

.title-en {
    display: block;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--accent-purple);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
}

.section-description {
    font-size: 1.1rem;
    color: var(--soft-text);
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   Buttons
======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1.25rem 3rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-mauve) 100%);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.cta-button i {
    transition: transform var(--transition-fast);
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-button-hero {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(233, 30, 99, 0);
    }
}

.cta-button-large {
    width: 100%;
    max-width: 500px;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    justify-content: center;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-rose);
    background: transparent;
    border: 2px solid var(--deep-rose);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.cta-button-outline:hover {
    background: var(--deep-rose);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf8f9 0%, #f5ede8 30%, #f8e8ed 70%, #f5ede8 100%);
    color: var(--text-primary);
    text-align: center;
    overflow: hidden;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 192, 211, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 165, 216, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.625rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--warm-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease;
    color: var(--text-secondary);
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-rounded);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    color: var(--deep-rose);
    font-weight: 900;
}

.title-accent {
    color: var(--deep-purple);
    font-size: 2rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    animation: fadeInUp 1.2s ease;
    color: var(--soft-text);
    line-height: 1.8;
}

.hero-message {
    font-size: 1.8rem;
    font-family: var(--font-rounded);
    font-weight: 900;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1.4s ease;
    color: var(--deep-rose);
    text-shadow: 2px 2px 4px rgba(255, 192, 211, 0.3);
}

.hero-message strong {
    color: var(--deep-purple);
    font-size: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.hero-feature-item i {
    font-size: 2rem;
    color: var(--deep-rose);
}

.hero-feature-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-rose);
}

.hero-note {
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--soft-text);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 0.6;
    animation: bounce 2s infinite;
    color: var(--deep-rose);
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   Empathy Section
======================================== */
.empathy-section {
    background: linear-gradient(to bottom, var(--white), var(--light-bg));
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.problem-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-normal);
    text-align: center;
    border: 1px solid var(--warm-gray);
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-rose);
}

.problem-icon {
    font-size: 3rem;
    color: var(--deep-rose);
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-rose);
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--soft-text);
    line-height: 1.6;
}

.empathy-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--light-pink-bg), var(--accent-lavender));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empathy-text p {
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Solution Section
======================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.solution-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-top: 4px solid var(--deep-rose);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.solution-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: var(--spacing-sm);
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-rose);
}

.solution-card p {
    color: var(--soft-text);
    font-size: 0.95rem;
}

.solution-highlight {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    background: linear-gradient(135deg, var(--deep-rose) 0%, var(--deep-purple) 100%);
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 4rem;
    color: var(--primary-light-pink);
    flex-shrink: 0;
}

.highlight-content h3 {
    color: var(--primary-light-pink);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white);
}

/* ========================================
   Features Section
======================================== */
.features-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--primary-pink);
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--deep-rose);
}

.timeline-icon {
    font-size: 2.5rem;
    color: var(--deep-rose);
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-pink-bg);
    border-radius: 50%;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-rose);
}

.timeline-content p {
    color: var(--soft-text);
    font-size: 0.95rem;
}

/* ========================================
   Future Section
======================================== */
.future-comparison {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    align-items: stretch;
    flex-wrap: wrap;
}

.comparison-before,
.comparison-after {
    flex: 1;
    min-width: 280px;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.comparison-before {
    background: var(--light-gray);
}

.comparison-before h3 {
    color: var(--medium-gray);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.comparison-before h3 i {
    color: var(--danger);
}

.comparison-after {
    background: linear-gradient(135deg, var(--deep-rose), var(--deep-purple));
    color: var(--white);
}

.comparison-after h3 {
    color: var(--primary-light-pink);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.comparison-after h3 i {
    color: var(--primary-light-pink);
}

.comparison-before ul,
.comparison-after ul {
    list-style: none;
}

.comparison-before ul li,
.comparison-after ul li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.comparison-before ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.comparison-after ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light-pink);
    font-weight: 700;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-rose);
}

.future-vision {
    max-width: 800px;
    margin: 0 auto;
}

.vision-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 3px solid var(--primary-pink);
}

.vision-icon {
    font-size: 4rem;
    color: var(--deep-rose);
    margin-bottom: var(--spacing-md);
}

.vision-card h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--deep-rose);
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ========================================
   Curriculum Section
======================================== */
.curriculum-section {
    background: linear-gradient(to bottom, var(--light-bg), var(--white));
}

.curriculum-phases {
    max-width: 1000px;
    margin: 0 auto;
}

.phase-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid var(--light-pink-bg);
}

.phase-block:hover {
    box-shadow: var(--shadow-lg);
}

.phase-highlight {
    border: 3px solid var(--deep-rose);
}

.phase-header {
    background: linear-gradient(135deg, var(--deep-rose), var(--deep-purple));
    color: var(--white);
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.phase-highlight .phase-header {
    background: linear-gradient(135deg, var(--deep-purple), var(--accent-purple));
    color: var(--white);
}

.phase-number {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.phase-header h3 {
    flex: 1;
    font-size: 1.5rem;
    margin: 0;
    color: inherit;
}

.phase-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.phase-content {
    padding: var(--spacing-lg);
}

.lesson-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-left: 3px solid var(--light-pink-bg);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-fast);
}

.lesson-item:hover {
    border-left-color: var(--deep-rose);
    background: var(--light-bg);
}

.lesson-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-light-pink);
    color: var(--deep-rose);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-pink);
}

.lesson-info h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--deep-rose);
}

.lesson-info p {
    font-size: 0.9rem;
    color: var(--soft-text);
    margin: 0;
}

.phase-goal {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--light-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--deep-rose);
}

.phase-goal i {
    color: var(--success);
    font-size: 1.2rem;
}

.phase-goal-highlight {
    background: var(--primary-light-pink);
}

.phase-goal-highlight i {
    color: var(--deep-rose);
}

/* ========================================
   Difference Section
======================================== */
.difference-table {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-sm);
}

.table-header {
    background: var(--deep-rose);
    color: var(--white);
    font-weight: 700;
}

.table-cell {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.table-row:last-child .table-cell {
    border-bottom: none;
}

.highlight-cell {
    background: var(--primary-light-pink);
    font-weight: 600;
    color: var(--deep-rose);
}

.table-header .highlight-cell {
    background: var(--deep-purple);
    color: var(--white);
}

.table-cell i {
    font-size: 1.2rem;
}

.difference-summary {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.difference-summary h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.pillar-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid var(--primary-pink);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--deep-rose);
    margin-bottom: var(--spacing-md);
}

.pillar-card h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-rose);
}

.pillar-card p {
    color: var(--soft-text);
}

/* ========================================
   Value Section
======================================== */
.value-breakdown {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.value-breakdown h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: var(--spacing-lg);
}

.value-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--light-gray);
}

.value-item:last-child {
    border-bottom: none;
}

.value-item-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.value-item-left i {
    font-size: 1.5rem;
    color: var(--deep-rose);
}

.value-item-right {
    font-weight: 700;
    color: var(--deep-rose);
    font-size: 1.1rem;
}

.value-total {
    background: var(--deep-rose);
    color: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}

.value-total strong {
    color: var(--primary-light-pink);
    font-size: 1.5rem;
}

.price-box {
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    background: linear-gradient(135deg, var(--deep-rose), var(--deep-purple));
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.price-header {
    background: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md);
    text-align: center;
}

.price-header h3 {
    color: var(--primary-light-pink);
    font-size: 1.5rem;
    margin: 0;
}

.price-main {
    padding: var(--spacing-xl);
    text-align: center;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-sm);
}

.price-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-light-pink);
    font-family: var(--font-serif);
}

.price-currency {
    font-size: 2rem;
    color: var(--primary-light-pink);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: var(--spacing-sm);
}

.price-features {
    padding: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.price-feature i {
    color: var(--primary-light-pink);
    font-size: 1.2rem;
}

.investment-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-pink);
}

.investment-message h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--deep-rose);
}

.investment-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ========================================
   FAQ Section
======================================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid var(--light-pink-bg);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pink);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--deep-rose);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question > i:first-child {
    color: var(--deep-rose);
    font-size: 1.3rem;
}

.faq-question > span {
    flex: 1;
}

.faq-toggle {
    color: var(--accent-purple);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    padding-left: calc(var(--spacing-lg) + 1.3rem + var(--spacing-md));
    color: var(--soft-text);
    line-height: 1.8;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: linear-gradient(135deg, #ffe5ec 0%, #ffd4e5 30%, #f8d5ff 70%, #e8d5f2 100%);
    color: var(--deep-rose);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
    color: var(--deep-rose);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    color: var(--soft-text);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    background: var(--white);
    color: var(--deep-rose);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-pink);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
    color: var(--deep-rose);
}

.cta-box > p {
    font-size: 1rem;
    color: var(--soft-text);
    margin-bottom: var(--spacing-md);
}

.cta-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.cta-price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-rose);
    font-family: var(--font-serif);
}

.cta-price-note {
    color: var(--soft-text);
}

.cta-note {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--soft-text);
    line-height: 1.6;
}

.cta-contact {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-pink);
}

.cta-contact h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--deep-purple);
}

.cta-contact p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    color: var(--soft-text);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(135deg, var(--deep-rose), var(--deep-purple));
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand h3 {
    color: var(--primary-light-pink);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* ========================================
   Floating CTA Button
======================================== */
.floating-cta {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--deep-rose), var(--deep-purple));
    color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    font-weight: 700;
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.4);
    color: var(--white);
}

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

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    :root {
        --spacing-xxl: 4rem;
        --spacing-xl: 3rem;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xxl: 3rem;
        --spacing-xl: 2rem;
        --spacing-lg: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2, .section-title {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-accent {
        font-size: 1.5rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: var(--spacing-md);
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        margin: 0 auto;
    }
    
    .future-comparison {
        flex-direction: column;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-md) 0;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-header .table-cell:first-child {
        display: none;
    }
    
    .table-row .table-cell:first-child {
        font-weight: 700;
        background: var(--light-bg);
    }
    
    .pillar-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .price-number {
        font-size: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .floating-cta {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        padding: 0.8rem 1.2rem;
    }
    
    .floating-cta span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .cta-button-hero {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .price-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .floating-cta,
    .scroll-indicator {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
