/* ===================================
   시세 연구 그룹 - 스타일시트
   Color Palette: #F7DC6F, #F8B500, #2C1B18
   Font: Noto Serif KR
   =================================== */

/* CSS Variables */
:root {
    --primary-gold: #F8B500;
    --primary-lemon: #F7DC6F;
    --primary-dark: #2C1B18;
    --secondary-dark: #3D2A24;
    --light-cream: #FFFDF5;
    --light-gray: #F5F3EF;
    --text-dark: #2C1B18;
    --text-medium: #5A4A45;
    --text-light: #8B7B75;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(44, 27, 24, 0.08);
    --shadow-medium: 0 8px 30px rgba(44, 27, 24, 0.12);
    --shadow-strong: 0 12px 40px rgba(44, 27, 24, 0.18);
    --gradient-gold: linear-gradient(135deg, #F8B500 0%, #F7DC6F 100%);
    --gradient-dark: linear-gradient(135deg, #2C1B18 0%, #3D2A24 100%);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Animate.css 延迟效果 */
.animate__delay-100ms { animation-delay: 0.1s; }
.animate__delay-150ms { animation-delay: 0.15s; }
.animate__delay-200ms { animation-delay: 0.2s; }
.animate__delay-250ms { animation-delay: 0.25s; }
.animate__delay-300ms { animation-delay: 0.3s; }
.animate__delay-400ms { animation-delay: 0.4s; }


body {
    font-family: 'Noto Serif KR', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    color: var(--text-medium);
}

.highlight {
    color: var(--primary-gold);
    position: relative;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-dark);
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(44, 27, 24, 0.92) 0%, rgba(44, 27, 24, 0.75) 50%, rgba(44, 27, 24, 0.85) 100%),
        radial-gradient(circle at 20% 50%, rgba(248, 181, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 220, 111, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(248, 181, 0, 0.08) 0%, transparent 35%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 24px 100px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 181, 0, 0.15);
    border: 1px solid rgba(248, 181, 0, 0.3);
    padding: 8px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.875rem;
    color: var(--primary-lemon);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    color: var(--primary-gold);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-desc strong {
    color: var(--primary-lemon);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(248, 181, 0, 0.2);
}

.floating-card i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.floating-card.card-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 1.5s;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ===================================
   BUTTONS
   =================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Noto Serif KR', serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-xl);
    cursor: pointer;
    transition: all var(--transition-medium);
    text-decoration: none;
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 181, 0, 0.4);
}

.cta-btn:active {
    transform: translateY(-1px);
}

.cta-btn i {
    font-size: 1.1rem;
}

.cta-btn .btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: none;
}

.cta-btn.secondary:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.cta-btn.large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 181, 0, 0.1);
    border: 1px solid rgba(248, 181, 0, 0.2);
    padding: 8px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.875rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 0.875rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-top: 16px;
}

/* ===================================
   WHY NOW SECTION
   =================================== */
.why-now {
    background: var(--light-cream);
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(248, 181, 0, 0.1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(248, 181, 0, 0.3);
}

.why-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.why-card h3 {
    margin-bottom: 16px;
}

.why-card p {
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ===================================
   MARKET ANALYSIS SECTION
   =================================== */
.market-analysis {
    background: var(--light-gray);
}

.analysis-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.analysis-image {
    position: relative;
}

.analysis-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.analysis-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--gradient-gold);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-medium);
}

.analysis-badge i {
    font-size: 1.25rem;
}

.analysis-content .section-tag {
    justify-content: flex-start;
}

.analysis-content h2 {
    margin-bottom: 24px;
}

.analysis-content > p {
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.analysis-list {
    list-style: none;
    margin-bottom: 32px;
}

.analysis-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.analysis-list li i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

/* ===================================
   KOREA MARKET SECTION
   =================================== */
.korea-market {
    background: var(--light-cream);
}

.korea-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.korea-main-card {
    background: var(--gradient-dark);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    color: var(--white);
}

.korea-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.korea-card-header i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.korea-main-card h3 {
    color: var(--white);
}

.korea-main-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.korea-card-tags {
    display: flex;
    gap: 12px;
}

.tag {
    background: rgba(248, 181, 0, 0.2);
    border: 1px solid rgba(248, 181, 0, 0.3);
    padding: 6px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.875rem;
    color: var(--primary-lemon);
}

.korea-side-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.korea-small-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(248, 181, 0, 0.1);
    transition: all var(--transition-medium);
}

.korea-small-card:hover {
    border-color: rgba(248, 181, 0, 0.3);
    transform: translateX(8px);
}

.korea-small-card i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
    display: block;
}

.korea-small-card h4 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.korea-small-card p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===================================
   MY STORY SECTION
   =================================== */
.my-story {
    background: var(--light-gray);
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-tag {
    justify-content: flex-start;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content blockquote {
    background: rgba(248, 181, 0, 0.08);
    border-left: 4px solid var(--primary-gold);
    padding: 24px 30px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.0625rem;
    line-height: 1.9;
}

.story-content > p {
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.story-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.feature-item i {
    color: var(--primary-gold);
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.story-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gradient-gold);
    padding: 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* ===================================
   LEARNING SECTION
   =================================== */
.learning {
    background: var(--light-cream);
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.learning-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(248, 181, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.learning-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.learning-card:hover::before {
    opacity: 1;
}

.learning-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(248, 181, 0, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-icon i {
    font-size: 1.75rem;
    color: var(--primary-gold);
}

.learning-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.learning-card p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.learning-tag {
    display: inline-block;
    background: var(--gradient-gold);
    padding: 4px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(248, 181, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(248, 181, 0, 0.05);
}

.faq-question span {
    font-weight: 600;
    font-size: 1.0625rem;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--text-dark);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-box h2 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-dark);
    padding: 60px 0 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-links a i {
    font-size: 0.875rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===================================
   FIXED CTA BUTTON
   =================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
   
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.cta-btn.fixed {
    padding: 16px 48px;
    font-size: 1.0625rem;
    animation: urgentPulse 1s ease-in-out infinite;
}

.cta-btn.fixed .btn-icon {
    width: 28px;
    height: 28px;
}

/* ===================================
   MODALS
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 27, 24, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-strong);
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.modal-close i {
    font-size: 1.25rem;
}

.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header img {
    width: 80px;
    height: auto;
    margin-bottom: 16px;
}

.modal-header i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
    display: block;
}

.modal-header h3 {
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body > p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
}

.modal-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.modal-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-cream);
    border-radius: var(--border-radius-sm);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.modal-benefits li i {
    color: var(--primary-gold);
}

.modal-cta {
    width: 100%;
    margin-bottom: 16px;
}

.modal-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-note i {
    font-size: 0.75rem;
}

/* Legal Modal Styles */
.legal-modal {
    max-width: 600px;
}

.legal-body {
    text-align: left;
}

.legal-body h4 {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.legal-body h4:first-child {
    margin-top: 0;
}

.legal-body p {
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(248, 181, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
    }
}

@keyframes urgentPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(248, 181, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
    }
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .why-now-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-now-grid .why-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .analysis-wrapper,
    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .analysis-content,
    .story-content {
        text-align: center;
    }

    .analysis-content .section-tag,
    .story-content .section-tag {
        justify-content: center;
    }

    .analysis-list {
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .story-features {
        justify-content: center;
    }

    .korea-grid {
        grid-template-columns: 1fr;
    }

    .korea-side-cards {
        flex-direction: row;
    }

    .korea-small-card {
        flex: 1;
    }

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-content {
        padding: 100px 24px 80px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .why-now-grid {
        grid-template-columns: 1fr;
    }

    .why-now-grid .why-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .korea-side-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .korea-small-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .korea-small-card:hover {
        transform: translateY(-4px);
    }

    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .learning-card {
        padding: 24px 16px;
    }

    .story-features {
        justify-content: center;
        gap: 12px;
    }

    .feature-item {
        padding: 10px 14px;
        font-size: 0.8125rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }

    .cta-btn.fixed {
        width: 100%;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-item {
        min-width: 70px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .korea-small-card {
        flex: 1 1 100%;
    }

    .learning-grid {
        grid-template-columns: 1fr;
    }

    .story-badge {
        right: 10px;
        padding: 16px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .analysis-badge {
        right: 10px;
        bottom: -15px;
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    .cta-btn.large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
    }

    .modal-header {
        padding: 30px 20px 16px;
    }

    .modal-body {
        padding: 20px;
    }
}
