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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --orange: #FF6B35;
    --blue: #0066FF;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #0066FF 100%);
    --gradient-reverse: linear-gradient(135deg, #0066FF 0%, #FF6B35 100%);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.hero-subtitle strong {
    font-weight: 700;
    color: var(--orange);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange);
    transition: all 0.3s ease;
}

.badge:hover {
    background: var(--orange);
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--gradient);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 20px;
}

.cta-button.secondary {
    background: white;
    color: var(--orange);
    border: 3px solid var(--orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.cta-button.secondary:hover {
    background: var(--orange);
    color: white;
}

/* Section Styles */
.section {
    padding: 120px 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #222;
}

.white-text {
    color: white;
}

/* Section 01 */
.section-01 {
    background: white;
}

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

.large-text {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #444;
}

.large-text.highlight {
    font-weight: 700;
    color: var(--orange);
}

.content-box.centered {
    text-align: center;
}

.content-box.centered strong {
    font-weight: 700;
    color: var(--blue);
}

/* Section 01 - New Design */
.section-01-new {
    background: white;
    padding: 120px 20px;
}

.section-title-large {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #222;
}

.essence-statement {
    text-align: center;
    margin-bottom: 80px;
}

.essence-main {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.difference-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.8;
    color: #444;
}

.difference-text strong {
    font-weight: 700;
    color: var(--blue);
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 80px;
}

.reality-card {
    background: #f8f8f8;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.reality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reality-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.reality-card p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

.problem-box {
    max-width: 800px;
    margin: 0 auto 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 60px 50px;
    border-radius: 25px;
    border-left: 5px solid var(--orange);
    text-align: center;
}

.problem-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.problem-text {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.7;
    color: #333;
}

.conclusion-highlight {
    max-width: 900px;
    margin: 0 auto 120px;
    text-align: center;
    padding: 80px 50px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.conclusion-text {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
}

.concern-section {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 80px 60px;
    background: #fafafa;
    border-radius: 30px;
}

.concern-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #222;
}

.question-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.question-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.question-mark {
    min-width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.question-item p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

.concern-summary {
    text-align: center;
}

.summary-text {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

.quote-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quote-box {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    border-left: 4px solid var(--orange);
}

.quote-box p {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

/* Quote Emphasis Box - New Design */
.quote-emphasis-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.emphasis-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    padding: 35px 40px;
    border-radius: 20px;
    border-left: 5px solid var(--orange);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.emphasis-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.emphasis-icon {
    font-size: 48px;
    min-width: 60px;
    text-align: center;
}

.emphasis-question {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    color: #333;
}

.core-problem {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-radius: 30px;
}

.core-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

.core-explanation {
    text-align: center;
    margin-bottom: 60px;
}

.core-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.insight-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.insight-item {
    flex: 1;
    max-width: 300px;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-item.negative {
    background: rgba(200, 200, 200, 0.2);
    border: 2px solid rgba(150, 150, 150, 0.3);
}

.insight-item.positive {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 2px solid var(--orange);
}

.insight-item:hover {
    transform: scale(1.05);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-item p {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

.divider-vs {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
}

.approach-box {
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 70px 60px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.approach-text {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.approach-old {
    color: #999;
    text-decoration: line-through;
    font-weight: 300;
}

.final-question {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 60px;
    background: #fafafa;
    border-radius: 30px;
}

.final-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.final-subtitle {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.question-transformation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.old-question,
.new-question {
    flex: 1;
    max-width: 400px;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.old-question {
    background: rgba(200, 200, 200, 0.2);
    border: 2px solid rgba(150, 150, 150, 0.3);
}

.new-question {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 2px solid var(--orange);
}

.question-label {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.question-label.old {
    background: rgba(150, 150, 150, 0.2);
    color: #666;
}

.question-label.new {
    background: var(--gradient);
    color: white;
}

.question-content {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

.question-content.highlight {
    font-weight: 800;
    color: var(--orange);
}

.arrow-transform {
    font-size: 48px;
    font-weight: 800;
    color: var(--orange);
}

.final-statement {
    text-align: center;
    padding: 60px 50px;
    background: white;
    border-radius: 20px;
}

.statement-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.9;
    color: #333;
}



/* Section 02 - Quotes */
.section-02 {
    background: #fafafa;
}

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

.subtitle-text p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.quotes-container-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-card-new {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quote-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.quote-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quote-profile-bg {
    margin-bottom: 30px;
}

.profile-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.profile-circle.yuna-circle {
    background: linear-gradient(135deg, #FFE5E0 0%, #FFB8A8 100%);
}

.profile-circle.myungsoo-circle {
    background: linear-gradient(135deg, #D4E4F7 0%, #9CBCE8 100%);
}



.quote-card-new .quote-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #222;
}

.quote-card-new .quote-author {
    font-size: 20px;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
}

.quote-card-new .quote-role {
    font-size: 15px;
    font-weight: 500;
    color: #888;
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.quote-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.quote-image-wrapper {
    margin-bottom: 25px;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
}

.quote-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-card.nike-card {
    background: #000000;
    color: white;
}

.quote-card.nike-card .quote-image-wrapper {
    background: #000;
}

.quote-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.quote-card.nike-card .quote-text-large {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 1px;
}

.quote-author {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.quote-card.nike-card .quote-author {
    display: none;
}

/* Section - Oh Hyunho */
.section-hyunho {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 120px 20px 140px;
}

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

.hyunho-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 20px;
}

.hyunho-story-box {
    max-width: 1100px;
    margin: 0 auto 60px;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-journey {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.journey-item {
    background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.journey-item.start {
    background: linear-gradient(135deg, #ffe5e5 0%, #ffd4d4 100%);
}

.journey-item.success {
    background: linear-gradient(135deg, #e5f5ff 0%, #d4ebff 100%);
}

.journey-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.journey-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.journey-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
}

.journey-arrow {
    font-size: 32px;
    color: var(--orange);
    font-weight: 700;
}

.story-insight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--orange);
}

.insight-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.9;
    color: #333;
    text-align: center;
}

.highlight-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.definition-box {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.definition-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.definition-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.definition-icon {
    font-size: 48px;
}

.definition-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
}

.definition-content {
    text-align: center;
}

.definition-desc {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

.definition-desc strong {
    color: var(--orange);
    font-weight: 700;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 700;
}

.definition-points {
    max-width: 600px;
    margin: 40px auto;
}

.point-item {
    background: #f8f8f8;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.point-item.success-point {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
}

.point-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.point-item p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: left;
}

.point-item strong {
    color: var(--blue);
    font-weight: 700;
}

.point-arrow {
    font-size: 32px;
    color: var(--blue);
    text-align: center;
    margin: 10px 0;
}

.essence-highlight {
    max-width: 800px;
    margin: 40px auto 0;
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.essence-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.essence-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 35px;
}

.essence-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    padding: 30px 25px;
    border-radius: 15px;
    background: #f8f8f8;
}

.step-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.step-label.negative {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.3) 0%, rgba(150, 150, 150, 0.3) 100%);
    color: #666;
}

.step-label.positive {
    background: var(--gradient);
    color: white;
}

.step-desc {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.flow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.flow-divider svg {
    display: block;
}

/* Speaker CTA Button */
.speaker-cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.speaker-cta-wrapper.speaker-cta-top {
    margin-top: 30px;
    margin-bottom: 50px;
    padding-top: 0;
    border-top: none;
}

.speaker-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    border: 2px solid var(--orange);
    border-radius: 50px;
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.speaker-cta-button:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.speaker-cta-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.speaker-cta-button:hover .speaker-cta-icon {
    transform: scale(1.1);
}

.speaker-cta-text {
    letter-spacing: -0.3px;
}

.speaker-cta-arrow {
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.speaker-cta-button:hover .speaker-cta-arrow {
    transform: translateX(5px);
}

/* Section 03 - Actions */
.section-03 {
    background: #fafafa;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 60px auto;
}

.action-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.action-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.action-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.action-text strong {
    font-weight: 700;
    color: #222;
}

/* Section 04 - Structure */
.section-04 {
    background: var(--gradient);
}

.gradient-section {
    background: var(--gradient);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 60px auto;
}

.structure-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.structure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.card-icon.orange {
    background: var(--orange);
}

.card-icon.blue {
    background: var(--blue);
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
}

/* Section 05 - Why This Way */
.section-05 {
    background: #fafafa;
}

.key-message-box {
    max-width: 1000px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.key-message-item {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.key-message-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.key-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.key-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    color: #333;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 60px auto;
}

.reason-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    transform: scale(1.05);
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reason-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

/* Section - Program Mechanism */
.section-mechanism {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 120px 20px 140px;
}

.section-subtitle {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.section-note {
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #888;
    margin-bottom: 70px;
}

.mechanism-diagram {
    max-width: 900px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 0.3fr 1fr;
    grid-template-rows: auto 0.3fr auto;
    gap: 20px;
    position: relative;
}

.mechanism-item {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.mechanism-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.item-1 {
    grid-column: 1;
    grid-row: 1;
}

.item-2 {
    grid-column: 3;
    grid-row: 1;
}

.item-3 {
    grid-column: 3;
    grid-row: 3;
}

.item-4 {
    grid-column: 1;
    grid-row: 3;
}

.item-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.item-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.item-icon.orange-bg {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.item-icon.blue-bg {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.item-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.item-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: #666;
}

.custom-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--orange);
    color: white;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
}

.arrow {
    position: absolute;
    font-size: 36px;
    color: var(--orange);
    font-weight: 700;
    z-index: 10;
}

.arrow-1 {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-2 {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-3 {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-4 {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mechanism-message {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.message-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.9;
    color: #333;
}

.highlight-blue {
    color: var(--blue);
    font-weight: 800;
}

.highlight-orange {
    color: var(--orange);
    font-weight: 800;
}

/* Section 06 - Individual to Team */
.section-06 {
    background: white;
}

.flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px auto;
    max-width: 1100px;
    flex-wrap: wrap;
}

.flow-item {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.flow-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.flow-text {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

.flow-text strong {
    font-weight: 700;
    color: var(--orange);
}

.flow-arrow {
    font-size: 36px;
    color: var(--blue);
    font-weight: 700;
}

/* Section 07 - Program Components */
.section-07 {
    background: #fafafa;
}

.program-components {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.component-card {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.component-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    transform: scale(1.05);
}

.component-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.component-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.component-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Section 08 - Timeline */
.section-08 {
    background: white;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #FF6B35 0%, #0066FF 100%);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-marker.orange-marker {
    background: var(--orange);
}

.timeline-marker.blue-marker {
    background: var(--blue);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    flex: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.timeline-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

/* Section 09 - Target */
.section-09 {
    background: white;
}

.target-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.target-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    transform: translateX(10px);
}

.target-icon {
    font-size: 48px;
    min-width: 60px;
    text-align: center;
}

.target-item p {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* Section - Differentiators */
.section-differentiators {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 120px 20px 140px;
}

.diff-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-card-new {
    background: white;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.diff-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid;
}

.diff-card-new:nth-child(1):hover {
    border-color: var(--orange);
}

.diff-card-new:nth-child(2):hover {
    border-color: var(--blue);
}

.diff-card-new:nth-child(3):hover {
    border-color: var(--orange);
}

.diff-icon-wrapper {
    margin-bottom: 25px;
}

.diff-icon {
    font-size: 64px;
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
    transition: all 0.4s ease;
}

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

.diff-icon.orange-gradient {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.diff-icon.blue-gradient {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.05) 100%);
}

.diff-number-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.diff-title-new {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

.diff-desc-new {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    color: #555;
}

/* Section - Customization */
.section-customization {
    background: #fafafa;
    padding: 120px 20px;
}

.custom-header {
    text-align: center;
    margin-bottom: 80px;
}

.custom-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.custom-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.custom-card {
    background: white;
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.custom-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.custom-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.custom-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
}

.custom-note {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.note-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.7;
    color: #333;
}

.note-icon {
    font-size: 32px;
}

/* Section - What Remains */
.section-remains {
    background: white;
    padding: 120px 20px;
}

.section-title-emphasis {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #222;
    line-height: 1.4;
}

.remains-intro {
    text-align: center;
    margin-bottom: 80px;
}

.remains-statement {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.remains-explanation {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.remains-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.8;
    color: #444;
}

.results-grid {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.results-category {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
    padding: 60px 50px;
    border-radius: 25px;
}

.results-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
}

.results-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.result-icon {
    font-size: 48px;
    min-width: 60px;
    text-align: center;
}

.result-item p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
}

.remains-conclusion {
    text-align: center;
}

.conclusion-box-emphasis {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    padding: 60px 50px;
    border-radius: 25px;
    border: 2px solid var(--orange);
}

.conclusion-emphasis-text {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

/* Section - Impact */
.section-impact {
    background: #fafafa;
    padding: 120px 20px;
}

.impact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.impact-statement {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.impact-note {
    color: #999;
    font-weight: 300;
}

.impact-focus {
    text-align: center;
    margin-bottom: 80px;
}

.impact-main {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.indicator-card {
    background: white;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.indicator-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.indicator-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.indicator-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.6;
    color: #222;
}

.impact-result {
    text-align: center;
}

.result-emphasis-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 70px 60px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.result-emphasis-text {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
}

.diff-desc-new strong {
    color: #222;
    font-weight: 700;
}

/* Section 10 - Outcomes */
.section-10 {
    background: white;
}

.sustained-change-box {
    max-width: 800px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.sustained-change-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 3px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sustained-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.sustained-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sustained-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.8;
    color: #444;
}

.sustained-text strong {
    font-weight: 700;
    color: #222;
}

.outcome-list {
    max-width: 800px;
    margin: 0 auto 60px;
    display: grid;
    gap: 30px;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.outcome-bullet {
    font-size: 48px;
    color: var(--orange);
    font-weight: 800;
    line-height: 1;
}

.outcome-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: var(--gradient);
    text-align: center;
}

.cta-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.55;
    color: white;
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}



/* Footer */
.footer {
    padding: 80px 20px;
    background: #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
}

.footer-company {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.footer-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-info strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 10px;
}

.footer-right {
    text-align: right;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .large-text {
        font-size: 22px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    
    .hero {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .large-text {
        font-size: 20px;
    }
    
    .quotes-container-new {
        grid-template-columns: 1fr;
    }
    
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-container {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .diff-grid-new {
        grid-template-columns: 1fr;
    }
    
    .key-message-box {
        grid-template-columns: 1fr;
    }
    
    .story-journey {
        flex-direction: column;
    }
    
    .journey-arrow {
        transform: rotate(90deg);
    }
    
    .hyunho-story-box {
        padding: 35px;
    }
    
    .definition-box {
        padding: 35px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-marker {
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .key-message-box {
        grid-template-columns: 1fr;
    }
    
    .target-item {
        flex-direction: column;
        text-align: center;
    }
    
    .target-item p {
        font-size: 20px;
    }
    
    .speaker-cta-button {
        padding: 16px 32px;
        font-size: 16px;
        gap: 10px;
    }
    
    .speaker-cta-icon {
        font-size: 20px;
    }
    
    .speaker-cta-arrow {
        font-size: 18px;
    }
    
    .essence-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-divider {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .flow-step {
        min-width: 100%;
    }
    
    .essence-highlight {
        padding: 40px 25px;
    }
    
    /* Section 01 New - Responsive */
    .section-title-large {
        font-size: 36px;
    }
    
    .essence-main {
        font-size: 28px;
    }
    
    .difference-text {
        font-size: 22px;
    }
    
    .reality-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reality-card {
        padding: 40px 30px;
    }
    
    .reality-card p {
        font-size: 20px;
    }
    
    .problem-text {
        font-size: 22px;
    }
    
    .conclusion-text {
        font-size: 26px;
    }
    
    .concern-section {
        padding: 50px 30px;
    }
    
    .concern-title {
        font-size: 28px;
    }
    
    .question-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .question-item {
        padding: 25px;
    }
    
    .question-item p {
        font-size: 18px;
    }
    
    .quote-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .core-problem {
        padding: 50px 30px;
    }
    
    .core-title {
        font-size: 28px;
    }
    
    .core-text {
        font-size: 22px;
    }
    
    .insight-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .insight-item {
        max-width: 100%;
    }
    
    .approach-text {
        font-size: 24px;
    }
    
    .final-question {
        padding: 50px 30px;
    }
    
    .final-title {
        font-size: 28px;
    }
    
    .question-transformation {
        flex-direction: column;
        gap: 30px;
    }
    
    .old-question,
    .new-question {
        max-width: 100%;
    }
    
    .arrow-transform {
        transform: rotate(90deg);
    }
    
    .statement-text {
        font-size: 22px;
    }
    
    /* Quote Emphasis Box - Responsive */
    .emphasis-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .emphasis-question {
        font-size: 20px;
    }
    
    /* New Sections - Responsive */
    .custom-examples {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .custom-card {
        padding: 50px 35px;
    }
    
    .section-title-emphasis {
        font-size: 32px;
    }
    
    .remains-statement {
        font-size: 26px;
    }
    
    .remains-text {
        font-size: 22px;
    }
    
    .results-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .conclusion-emphasis-text {
        font-size: 24px;
    }
    
    .impact-statement {
        font-size: 24px;
    }
    
    .impact-main {
        font-size: 26px;
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-emphasis-text {
        font-size: 26px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        font-size: 13px;
        padding: 8px 20px;
        width: 100%;
        max-width: 250px;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .large-text {
        font-size: 18px;
    }
    
    .subtitle-text p {
        font-size: 18px;
    }
    
    .quote-card-new .quote-text {
        font-size: 18px;
    }
    
    .quote-icon {
        font-size: 64px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .outcome-text {
        font-size: 20px;
    }
    
    .key-message-box {
        grid-template-columns: 1fr;
    }
    
    .sustained-change-box {
        padding: 40px 30px;
    }
    
    .sustained-title {
        font-size: 26px;
    }
    
    .sustained-text {
        font-size: 18px;
    }
    
    .diff-grid-new {
        grid-template-columns: 1fr;
    }
    
    .profile-circle {
        width: 100px;
        height: 100px;
    }
    

    
    .journey-item {
        min-width: 150px;
        padding: 25px 20px;
    }
    
    .speaker-cta-button {
        padding: 14px 28px;
        font-size: 15px;
        gap: 8px;
    }
    
    .speaker-cta-icon {
        font-size: 18px;
    }
    
    .speaker-cta-arrow {
        font-size: 16px;
    }
    
    .essence-title {
        font-size: 22px;
    }
    
    .step-label {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .step-desc {
        font-size: 14px;
    }
    
    .flow-divider svg {
        width: 30px;
        height: 30px;
    }
    
    /* Section 01 New - Mobile */
    .section-01-new {
        padding: 80px 20px;
    }
    
    .section-title-large {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .essence-main {
        font-size: 24px;
    }
    
    .difference-text {
        font-size: 18px;
    }
    
    .reality-icon {
        font-size: 48px;
    }
    
    .reality-card p {
        font-size: 18px;
    }
    
    .problem-box {
        padding: 40px 25px;
    }
    
    .problem-icon {
        font-size: 40px;
    }
    
    .problem-text {
        font-size: 18px;
    }
    
    .conclusion-highlight {
        padding: 50px 25px;
    }
    
    .conclusion-text {
        font-size: 22px;
    }
    
    .concern-section {
        padding: 40px 20px;
    }
    
    .concern-title {
        font-size: 24px;
    }
    
    .summary-text {
        font-size: 20px;
    }
    
    .quote-box p {
        font-size: 18px;
    }
    
    .core-problem {
        padding: 40px 25px;
    }
    
    .core-title {
        font-size: 24px;
    }
    
    .core-text {
        font-size: 18px;
    }
    
    .insight-item p {
        font-size: 18px;
    }
    
    .approach-box {
        padding: 40px 25px;
    }
    
    .approach-text {
        font-size: 20px;
    }
    
    .final-question {
        padding: 40px 25px;
    }
    
    .final-title {
        font-size: 24px;
    }
    
    .final-subtitle {
        font-size: 18px;
    }
    
    .old-question,
    .new-question {
        padding: 35px 25px;
    }
    
    .question-content {
        font-size: 20px;
    }
    
    .final-statement {
        padding: 40px 25px;
    }
    
    .statement-text {
        font-size: 18px;
    }
    
    /* Quote Emphasis - Mobile */
    .emphasis-icon {
        font-size: 40px;
    }
    
    .emphasis-question {
        font-size: 18px;
    }
    
    /* New Sections - Mobile */
    .section-customization {
        padding: 80px 20px;
    }
    
    .custom-card {
        padding: 40px 30px;
    }
    
    .custom-icon {
        font-size: 56px;
    }
    
    .custom-title {
        font-size: 22px;
    }
    
    .note-text {
        flex-direction: column;
        font-size: 18px;
    }
    
    .section-remains,
    .section-impact {
        padding: 80px 20px;
    }
    
    .section-title-emphasis {
        font-size: 26px;
    }
    
    .remains-statement {
        font-size: 20px;
    }
    
    .remains-text {
        font-size: 18px;
    }
    
    .results-category {
        padding: 40px 25px;
    }
    
    .results-title {
        font-size: 24px;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .result-item p {
        font-size: 16px;
    }
    
    .conclusion-box-emphasis {
        padding: 40px 30px;
    }
    
    .conclusion-emphasis-text {
        font-size: 20px;
    }
    
    .impact-statement {
        font-size: 20px;
    }
    
    .impact-main {
        font-size: 22px;
    }
    
    .indicator-card {
        padding: 40px 30px;
    }
    
    .indicator-icon {
        font-size: 56px;
    }
    
    .indicator-title {
        font-size: 20px;
    }
    
    .result-emphasis-box {
        padding: 40px 30px;
    }
    
    .result-emphasis-text {
        font-size: 20px;
    }
    
    .definition-title {
        font-size: 26px;
    }
    
    .definition-desc {
        font-size: 19px;
    }
    
    .mechanism-diagram {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .item-1, .item-2, .item-3, .item-4 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .arrow {
        position: static;
        transform: rotate(90deg);
    }
    
    .arrow-1, .arrow-2, .arrow-3, .arrow-4 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .program-components {
        grid-template-columns: 1fr;
    }
    
    .essence-flow {
        flex-direction: column;
    }
    
    .flow-divider {
        transform: rotate(90deg);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero,
.section {
    animation: fadeInUp 0.8s ease-out;
}
