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

/* Auto Image Sizing */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SVG Icon Styles */
svg {
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

:root {
    /* Color Palette - Stock Market Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-dark: #0f0f0f;
    
    --accent-yellow: #ffd700;
    --accent-red: #dc143c;
    --accent-green: #00ff88;
    --accent-blue: #0066ff;
    
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    --border-color: #333333;
    --highlight-yellow: #ffeb3b;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', '맑은 고딕', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    
    /* Grid Background */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center center;
}

.container {
    max-width: 520px;
    margin: 0 auto;
    background-color: rgba(10, 10, 10, 0.95);
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: var(--spacing-md);
}

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-yellow);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-primary);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-text {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    padding: var(--spacing-lg);
    text-align: center;
    border-bottom: 2px solid var(--accent-yellow);
}

.intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits-section {
    margin-bottom: var(--spacing-lg);
}

.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: var(--spacing-md);
}

.benefit-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Questions Section */
.questions-section {
    padding: var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.question-box {
    background: var(--bg-card);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid var(--accent-blue);
    border-radius: 4px;
}

.question-box h3 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-xs);
}

.question-box p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.question-box.highlight {
    background: linear-gradient(135deg, var(--bg-card), #1e3a5f);
    border-left: 3px solid var(--accent-yellow);
    font-weight: 600;
}

/* AI Description */
.ai-description {
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.desc-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Success Banner */
.success-banner {
    position: relative;
    margin-bottom: var(--spacing-lg);
    background: var(--bg-dark);
    padding: var(--spacing-md);
}

.banner-content {
    position: relative;
}

.banner-content img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.banner-text h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.banner-text h3 {
    font-size: 3rem;
    color: var(--accent-yellow);
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.banner-highlight {
    font-size: 1.8rem;
    color: var(--accent-red);
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.banner-footer {
    text-align: center;
    padding: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent-green);
    border-radius: 4px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--accent-green);
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Analysis Section */
.analysis-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.analysis-content,
.analysis-guarantee {
    margin-bottom: var(--spacing-md);
}

.analysis-content p,
.analysis-guarantee p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.guarantee-text {
    color: var(--accent-yellow);
    font-weight: 600;
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

/* Instructor Section */
.instructor-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-card);
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-md);
    border-radius: 4px;
}

.instructor-card {
    display: flex;
    gap: var(--spacing-md);
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.instructor-image img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.instructor-info {
    flex: 1;
}

.instructor-info h4 {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
}

.instructor-credentials {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.instructor-credentials li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: var(--spacing-sm);
    position: relative;
}

.instructor-credentials li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

.credentials-extra p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 4px;
}

.experience-years {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

/* Results Section */
.results-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.results-card {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    text-align: center;
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.result-highlight {
    padding: var(--spacing-md);
}

.result-percent {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-xs);
}

.result-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.prize-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.prize-card img {
    width: 100%;
    height: auto;
    display: block;
}

.prize-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.prize-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.prize-highlight {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.prize-amount {
    font-size: 2rem;
    color: var(--accent-red);
    font-weight: 900;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
    margin-bottom: var(--spacing-lg);
}

.cta-box {
    background: rgba(255, 215, 0, 0.1);
    padding: var(--spacing-lg);
    text-align: center;
    border: 2px solid var(--accent-yellow);
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
}

.cta-highlight {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Detailed Info Section */
.detailed-info {
    padding: var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.info-banner {
    background: var(--bg-secondary);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.info-banner.dark {
    background: #0f0f0f;
    border: 1px solid var(--border-color);
}

.info-title {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.highlight-yellow {
    color: var(--accent-yellow);
    font-weight: 600;
    padding: var(--spacing-sm);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
    display: inline-block;
}

/* Pricing Table */
.pricing-table {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
}

.pricing-table h4 {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.table-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.investment-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
}

.investment-table thead {
    background: #1e3a5f;
}

.investment-table th,
.investment-table td {
    padding: var(--spacing-sm);
    text-align: center;
    border: 1px solid var(--border-color);
}

.investment-table th {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    font-weight: 600;
}

.investment-table td {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.investment-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Warning Box */
.warning-box {
    background: rgba(0, 102, 255, 0.1);
    padding: var(--spacing-md);
    border-left: 3px solid var(--accent-blue);
    border-radius: 4px;
}

.warning-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

/* Strategy Section */
.strategy-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.strategy-section h4 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.strategy-card {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.strategy-card.yellow-highlight {
    border-top: 3px solid var(--accent-yellow);
}

.strategy-card h5 {
    font-size: 0.95rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.strategy-card ul {
    list-style: none;
}

.strategy-card li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 4px 0;
    padding-left: var(--spacing-sm);
    position: relative;
}

.strategy-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* CTA Button */
.cta-button {
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent-yellow), #ffaa00);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: #000;
    flex-shrink: 0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffaa00, var(--accent-yellow));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: var(--spacing-lg) var(--spacing-xl);
}

.btn-primary.large .btn-icon {
    width: 24px;
    height: 24px;
}

/* Success Stories Section */
.success-stories {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.success-stories h4 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.stories-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.story-card {
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
}

.story-card h5 {
    font-size: 0.85rem;
    color: var(--accent-yellow);
    margin-bottom: 4px;
}

.story-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Video Section */
.video-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.video-section h4 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.video-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.video-card {
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-radius: 8px;
}

.video-card h5 {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    margin-bottom: 4px;
}

.video-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Reviews Section */
.reviews-section,
.more-reviews {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.reviews-section h4,
.more-reviews h4 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.review-card {
    background: var(--bg-card);
    padding: var(--spacing-xs);
    border-radius: 8px;
    overflow: hidden;
}

.review-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Final CTA */
.final-cta {
    margin-bottom: var(--spacing-lg);
}

.final-banner {
    position: relative;
    overflow: hidden;
}

.final-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.final-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: var(--spacing-md);
}

.final-content h3 {
    font-size: 2rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

/* Market Data Section */
.market-data-section {
    margin-bottom: var(--spacing-lg);
}

.data-image img,
.info-image img {
    width: 100%;
    border-radius: 8px;
}

/* Service Section */
.service-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
}

.service-image {
    margin-bottom: var(--spacing-sm);
    border-radius: 4px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-card h4 {
    font-size: 1rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Info Notice */
.info-notice {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.notice-box {
    background: rgba(0, 102, 255, 0.1);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--accent-blue);
    border-radius: 4px;
    text-align: center;
}

.notice-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.notice-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-yellow);
}

.notice-box h3 {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
}

.notice-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

/* Analysis Visual Section */
.analysis-visual-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.analysis-visual-section h4 {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.analysis-card {
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
}

.analysis-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
}

.analysis-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    padding: var(--spacing-xs);
}

.analysis-card-full {
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
}

.analysis-card-full img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: var(--spacing-xs);
}

/* Important Notice */
.important-notice {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.notice-card {
    background: rgba(220, 20, 60, 0.1);
    padding: var(--spacing-lg);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
}

.notice-card.warning {
    background: rgba(255, 165, 0, 0.1);
    border-color: #ff9800;
}

.notice-card h3 {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.notice-card ul {
    list-style: none;
}

.notice-card li {
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.8;
}

.notice-card li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: 700;
}

/* Receive Section */
.receive-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-dark);
    margin-bottom: var(--spacing-lg);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.step-item {
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-yellow), #ffaa00);
    color: #000;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.step-item h4 {
    font-size: 1.1rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--bg-secondary);
    margin-bottom: var(--spacing-lg);
}

.faq-list {
    margin-top: var(--spacing-md);
}

.faq-item {
    background: var(--bg-card);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    border-left: 3px solid var(--accent-blue);
    border-radius: 4px;
}

.faq-item h4 {
    font-size: 1rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-xs);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA Updates */
.final-box {
    background: linear-gradient(135deg, var(--bg-card), #1e3a5f);
    padding: var(--spacing-xl);
    text-align: center;
    border-radius: 12px;
    border: 2px solid var(--accent-yellow);
}

.final-box h2 {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    margin-bottom: var(--spacing-sm);
}

.final-box p {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    border-top: 2px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-yellow);
}

.footer-divider {
    color: var(--border-color);
    font-size: 0.85rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 165, 0, 0.1);
    border-radius: 4px;
}

.footer-disclaimer strong {
    color: var(--accent-yellow);
    font-size: 0.95rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--accent-yellow);
    padding: var(--spacing-lg);
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.cookie-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--accent-yellow);
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

.cookie-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent-yellow);
    color: #000;
}

.cookie-accept:hover {
    background: #ffaa00;
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    :root {
        --spacing-xs: 6px;
        --spacing-sm: 10px;
        --spacing-md: 14px;
        --spacing-lg: 20px;
        --spacing-xl: 28px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .benefit-overlay h2 {
        font-size: 1.5rem;
    }
    
    .banner-text h3 {
        font-size: 2.5rem;
    }
    
    .banner-highlight {
        font-size: 1.5rem;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-image img {
        margin: 0 auto;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-lg);
    }
    
    .final-content h3 {
        font-size: 1.5rem;
    }
    
    .final-box h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .cookie-content {
        padding: 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .footer-divider {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .result-percent {
        font-size: 2.5rem;
    }
    
    .prize-amount {
        font-size: 1.5rem;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .investment-table th,
    .investment-table td {
        font-size: 0.75rem;
        padding: 8px 4px;
    }
}

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

.hero-section,
.benefits-section,
.success-banner,
.instructor-section,
.results-section {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.question-box:hover {
    background: rgba(22, 33, 62, 0.8);
    transform: translateX(4px);
    transition: all 0.3s ease;
}

.strategy-card:hover,
.story-card:hover,
.video-card:hover,
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffaa00;
}

