:root {
    /* Primary Colors - Orange Theme */
    --primary-color: #eb5a11;
    --primary-hover: #d14a0b;
    --primary-light: #ff6b1a;
    --primary-gradient: linear-gradient(135deg, #eb5a11 0%, #ff6b1a 100%);
    
    /* Secondary Colors */
    --secondary-color: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1a1a1a;
    --bg-gradient-primary: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 50%, var(--neutral-50) 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    
    /* Spacing */
    --section-padding: 120px 0;
    --section-padding-sm: 80px 0;
    --container-padding: 0 2rem;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Visual Hierarchy */
    --section-divider: 1px solid #e5e7eb;
    --accent-gradient: linear-gradient(135deg, rgba(235, 90, 17, 0.05) 0%, rgba(235, 90, 17, 0.02) 100%);
    
    /* Button Hierarchy */
    --btn-primary-size: 1rem;
    --btn-secondary-size: 0.9rem;
    --btn-large-size: 1.125rem;
    --btn-padding: 1rem 2rem;
    --btn-padding-lg: 1.25rem 2.5rem;
    
    /* Typography */
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-size-hero: clamp(2rem, 8vw, 4rem);
    --font-size-h1: clamp(2rem, 6vw, 4rem);
    --font-size-h2: clamp(2rem, 5vw, 3rem);
    --font-size-h3: clamp(1.5rem, 4vw, 2rem);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-gradient);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: calc(120px + 4rem) 0 120px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 50%, var(--neutral-50) 100%);
    background-attachment: scroll;
    position: static;
    overflow: visible;
    min-height: auto;
    display: block;
    border-bottom: var(--section-divider);
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
    align-items: center;
    position: static;
}

.hero-content {
    position: static;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: rgba(235, 90, 17, 0.1);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.0rem;
    font-weight: 600;
    margin-bottom: 3rem;
    border: 1px solid rgba(235, 90, 17, 0.2);
}

.hero-title {
    font-size: var(--font-size-hero);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-main {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInLine 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-main .highlight {
    color: #1a1a1a;
}

.hero-main .orange {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    /* color: var(--text-secondary); */
    margin-bottom: 3rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.subtitle-line {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInLine 1.5s ease-out forwards;
}

.subtitle-line:nth-child(1) { animation-delay: 1.0s; }
.subtitle-line:nth-child(3) { animation-delay: 1.4s; }

.subtitle-line.highlight {
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

/* Enhanced Highlight Effects */
.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.black-text {
    color: var(--text-primary);
    font-weight: 700;
}

.header-cell.black-text {
    background: linear-gradient(135deg, rgba(235, 90, 17, 0.15), rgba(255, 107, 26, 0.1));
    color: var(--text-primary) !important;
    position: relative;
}

.header-cell.black-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(235, 90, 17, 0.5);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    padding: var(--btn-padding-lg);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: var(--btn-large-size);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(235, 90, 17, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInLine 0.8s ease-out forwards;
    animation-delay: 0.8s;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(235, 90, 17, 0.4);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-stats-preview {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInLine 0.6s ease-out 1.0s forwards;
}

.preview-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.stats-logos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-logo {
    width: 50px;
    height: 50px;
    background: rgba(235, 90, 17, 0.1);
    border: 1px solid rgba(235, 90, 17, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.stat-logo:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 90, 17, 0.3);
}

.hero-mockup {
    position: relative;
    opacity: 0;
    animation: slideInLine 0.6s ease-out 1.0s forwards;
}

.mockup-screen {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-content {
    padding: 1rem;
}

.dashboard-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.chart-element {
    font-size: 3rem;
    color: var(--primary-color);
}

.progress-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress-bar {
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    animation: progressFill 2s ease-out infinite;
}

.progress-bar:nth-child(1)::after { 
    width: 85%; 
    animation-delay: 0.5s;
}
.progress-bar:nth-child(2)::after { 
    width: 92%; 
    animation-delay: 1s;
}
.progress-bar:nth-child(3)::after { 
    width: 78%; 
    animation-delay: 1s;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-badge {
  display: none;
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 2px 8px rgba(235, 90, 17, 0.3);
  border: 1px solid rgba(235, 90, 17, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Problem Section */
.problem {
    padding: var(--section-padding);
    background: white;
    border-bottom: var(--section-divider);
    position: relative;
}

/* Removed - now using .section-header styles */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.15);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-item p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Removed - replaced with section-header pattern */

/* Features Section */
.features {
    padding: var(--section-padding);
    background: white;
    border-bottom: var(--section-divider);
    position: relative;
}

.features-note {
    text-align: center;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-note p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(235, 90, 17, 0.15);
    border-color: rgba(235, 90, 17, 0.2);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(235, 90, 17, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}


.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

.blue-card {
    background: linear-gradient(135deg, #fde5d9 0%, #fed7aa 100%);
}

.teal-card {
    background: linear-gradient(135deg, #fef3e2 0%, #fde5d9 100%);
}

.cyan-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(235, 90, 17, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid rgba(235, 90, 17, 0.2);
}

.solution-icon span {
    font-size: 2.5rem;
}

.solution-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.3;
    text-align: center;
}

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

.solution-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    text-align: center;
    word-break: keep-all;
    line-height: 1.6;
}

.solution-content h4:first-child {
    margin-top: 0;
}

/* Environment Solutions Section */
.environment-section {
    padding: var(--section-padding-sm);
    background: var(--bg-secondary);
    border-bottom: var(--section-divider);
    position: relative;
}

.environment-comparison {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.environment-card {
    background: white;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.basic-env {
    flex: 0.4;
    padding: 1rem 1rem;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-color: rgba(235, 90, 17, 0.2);
    position: relative;
}

.basic-env:hover {
    border-color: rgba(235, 90, 17, 0.3);
    box-shadow: 0 8px 25px rgba(235, 90, 17, 0.12);
}

.custom-env {
    flex: 0.6;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-color: rgba(100, 116, 139, 0.2);
}

.custom-env:hover {
    border-color: rgba(100, 116, 139, 0.3);
    box-shadow: 0 8px 25px rgba(100, 116, 139, 0.12);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.vs-divider span {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.env-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.basic-env .env-icon span {
    font-size: 2rem;
}

.custom-env .env-icon {
    width: 60px;
    height: 60px;
}

.custom-env .env-icon span {
    font-size: 2rem;
}

.basic-env h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.custom-env h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.environment-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    word-break: keep-all;
    margin-bottom: 1rem;
}

.custom-env p {
    font-size: 0.95rem;
    font-weight: 500;
}

.custom-cases {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-cases li {
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--text-primary);
    border: 1px solid rgba(235, 90, 17, 0.1);
    word-break: keep-all;
}

.custom-cases li:last-child {
    margin-bottom: 0;
}

.env-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.env-badge.recommended {
    background: var(--primary-color);
}

.cursor-logo {
    margin-top: 1rem;
    opacity: 0.8;
}

.cursor-logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.environment-message {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--accent-gradient);
    border-radius: var(--border-radius);
    border: 1px solid rgba(235, 90, 17, 0.1);
}

.environment-message p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    word-break: keep-all;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .environment-comparison {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .vs-divider {
        display: none;
    }
    
    .basic-env {
        flex: none;
        order: 1;
    }
    
    .custom-env {
        flex: none;
        order: 2;
    }
}

.solution-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    word-break: keep-all;
}

/* Results Section */
.results {
    padding: var(--section-padding);
    background: white;
    border-bottom: var(--section-divider);
}

.results-content h2 {
    font-size: var(--font-size-h2);
    text-align: center;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-item {
    text-align: center;
    padding: 2.5rem 1rem;
    background: none;
    border: none;
    border-radius: 0;
}

.result-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
    display: block;
}

.result-number span {
    font-size: 0.6em;
    opacity: 0.8;
}

.result-description {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Impact Section */
.impact {
    padding: var(--section-padding);
    background: var(--bg-dark);
    color: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-intro h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.impact-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.impact-intro .cta-button {
    align-self: flex-start;
}

.impact-right {
    position: relative;
}

.impact-timeline {
    position: relative;
    padding-left: 2rem;
}

.impact-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(235, 90, 17, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 4px solid var(--bg-dark);
}

.timeline-content {
    flex-grow: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    white-space: pre-line;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    /* background: var(--bg-primary); */
    background: var(--bg-gradient-secondary);
}


.pricing-card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-info {
    margin-bottom: 3rem;
}

.pricing-detail {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-primary);
}

.detail-value {
    color: var(--text-secondary);
    text-align: right;
}

.program-structure h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.program-days {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.program-day {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(30, 30, 30, 0.08);
    border-radius: var(--border-radius);
    border: 2px solid rgba(30, 30, 30, 0.12);
    transition: all 0.3s ease;
}

.program-day:hover {
    border-color: var(--primary-color);
}

.day-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.program-day p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: white;
    border-bottom: var(--section-divider);
}


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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--bg-primary);
    border-bottom: var(--section-divider);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Portfolio Items - Updated to match components.css */
.portfolio-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(235, 90, 17, 0.3);
}

.portfolio-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(235, 90, 17, 0.1) 0%, rgba(255, 107, 26, 0.15) 100%);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .project-image {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.portfolio-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.tool-tag {
    background: rgba(235, 90, 17, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(235, 90, 17, 0.2);
    transition: all 0.3s ease;
}

.tool-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    border-bottom: var(--section-divider);
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    transition: transform 0.6s ease;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 1.333rem);
    min-width: calc(33.333% - 1.333rem);
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* 태블릿: 2개 카드 */
@media (max-width: 768px) {
    .testimonial-card {
        width: calc(50% - 1rem);
        min-width: calc(100% - 1rem);
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
    }
}

/* 모바일: 1개 카드 */
@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-track {
        gap: 1rem;
    }
    
    .testimonial-card {
        width: calc(100% - 0.5rem);
        min-width: calc(100% - 0.5rem);
        padding: 1.5rem;
    }
    
    .testimonial-content {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        top: 0.5rem;
        left: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 4rem;
    color: #e5e7eb;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-details {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: var(--bg-primary);
    border-bottom: var(--section-divider);
}


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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

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

/* Roadmap Section */
.roadmap {
    padding: var(--section-padding);
    background: var(--bg-dark);
    color: white;
}

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

.roadmap-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 4rem;
    color: white;
}

.roadmap-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.roadmap-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Expected Results Section */
.expected-results {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.results-comparison {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-header h2 {
    font-size: var(--font-size-h2);
    text-align: center;
    margin-bottom: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 4rem;
    align-items: start;
}

.comparison-item {
    position: relative;
}

.comparison-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.comparison-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* 정량적 성과 스타일 */
.comparison-item:first-child {
    background: linear-gradient(135deg, #fef7f0 0%, #fff5ee 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(235, 90, 17, 0.1);
    box-shadow: 0 8px 32px rgba(235, 90, 17, 0.08);
}

/* 정성적 성과 스타일 */
.comparison-item:last-child {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(235, 90, 17, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(235, 90, 17, 0.15);
}

.stat-before {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(107, 114, 128, 0.05);
    border-radius: 8px;
    border-left: 3px solid #d1d5db;
}

.stat-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
}

.stat-arrow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: -1;
}

.stat-after {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(235, 90, 17, 0.1), rgba(255, 107, 26, 0.08));
    border-radius: 12px;
    border: 2px solid rgba(235, 90, 17, 0.2);
    text-align: center;
}

.qualitative-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
}

.benefit-item:hover {
    transform: translateX(8px);
    border-color: rgba(235, 90, 17, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235, 90, 17, 0.1), rgba(255, 107, 26, 0.05));
    border-radius: 50%;
    border: 2px solid rgba(235, 90, 17, 0.2);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.benefit-item p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(235, 90, 17, 0.08) 0%, rgba(255, 107, 26, 0.12) 50%, rgba(235, 90, 17, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(235, 90, 17, 0.15);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button Hierarchy System */
.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: var(--btn-padding);
    font-size: var(--btn-primary-size);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(235, 90, 17, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 90, 17, 0.4);
}

.btn-primary.large {
    padding: var(--btn-padding-lg);
    font-size: var(--btn-large-size);
    border-radius: var(--border-radius-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: var(--btn-padding);
    font-size: var(--btn-secondary-size);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-secondary.large {
    padding: var(--btn-padding-lg);
    font-size: var(--btn-large-size);
    border-radius: var(--border-radius-lg);
}

/* CTA Section specific overrides */
.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-hover);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: left;
    }
    
    .hero-visual {
        display: none;
    }
    
    .mockup-screen {
        max-width: 300px;
    }
    
    .stats-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .nav-links {
        display: flex;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 2.5rem 2rem;
    }
    
    .solution-card h3 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .comparison-item:first-child,
    .comparison-item:last-child {
        padding: 2rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-item:hover {
        transform: translateY(-3px);
    }
    
    .roadmap-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .roadmap-arrow {
        transform: rotate(90deg);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .impact-timeline {
        padding-left: 1.5rem;
    }
    
    .impact-timeline::before {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .pricing-detail {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .program-days {
        grid-template-columns: 1fr;
    }
}

/* Glassmorphism Table Styles for Pricing Section */
.curriculum-table {
    position: relative;
    margin-top: 3rem;
}

.workshop-schedule {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-collapse: separate;
    border-spacing: 0;
}

.workshop-schedule thead {
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.workshop-schedule th {
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.workshop-schedule th:first-child {
    background: rgba(235, 90, 17, 0.1);
    color: var(--primary-color);
    font-weight: 800;
}

.workshop-schedule th:last-child {
    border-right: none;
}

.workshop-schedule tbody tr {
    transition: all 0.3s ease;
}

.workshop-schedule tbody tr:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.workshop-schedule td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: middle;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.workshop-schedule td:last-child {
    border-right: none;
}

.workshop-schedule tbody tr:last-child td {
    border-bottom: none;
}

.time-cell {
    background: rgba(235, 90, 17, 0.08) !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
}

.day1-cell, .day2-cell, .day3-cell, .day4-cell {
    font-weight: 500;
    transition: all 0.3s ease;
}

.day1-cell:hover, .day2-cell:hover, .day3-cell:hover, .day4-cell:hover {
    background: rgba(235, 90, 17, 0.1) !important;
    color: var(--primary-color) !important;
    transform: scale(1.02);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(235, 90, 17, 0.2);
}

.curriculum-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

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

@keyframes progressFill {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.hero-content,
.feature-card,
.result-item,
.impact-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling enhancements */
.hero,
.problem,
/* Section footnote */
.section-footnote {
    margin-top: 3rem;
    text-align: center;
}

.section-footnote p {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin: 0;
}

.features,
.results,
.impact,
.pricing,
.expected-results,
.cta {
    scroll-margin-top: 80px;
}

/* Expected Results - Glassmorphism Comparison Table */
.expected-results {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%) !important;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(235, 90, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(235, 90, 17, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-table-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hide mobile layout on desktop */
.mobile-comparison {
    display: none;
}

.glass-table {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
}

.glass-table::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 20px;
    pointer-events: none;
    box-sizing: border-box;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cell {
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cell.empty {
    background: rgba(255, 255, 255, 0.1);
}

.header-cell.highlight {
    background: linear-gradient(135deg, rgba(235, 90, 17, 0.15), rgba(255, 107, 26, 0.1));
    position: relative;
}

.header-cell.highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(235, 90, 17, 0.5);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.metric-cell {
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.metric-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.metric-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.value-cell {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.value-cell.before {
    background: rgba(239, 68, 68, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.value-cell.after {
    background: rgba(34, 197, 94, 0.05);
    position: relative;
}


.value-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.value-text.strong {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.improvement-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(235, 90, 17, 0.3);
}

.table-footnote {
    margin-top: 24px;
    text-align: center;
    padding: 0 20px;
}

.table-footnote p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Mobile Alternative Layout */
@media (max-width: 768px) {
    .comparison-table-container {
        padding: 0 20px;
    }
    
    .glass-table {
        display: none; /* Hide the original table */
    }
    
    /* Create new mobile layout */
    .mobile-comparison {
        display: block;
        background: rgba(248, 250, 252, 0.8);
        border: 1px solid rgba(226, 232, 240, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 24px;
        position: relative;
    }
    
    .mobile-comparison-item {
        margin-bottom: 32px;
        position: relative;
    }
    
    .mobile-comparison-item:last-child {
        margin-bottom: 0;
    }
    
    .mobile-metric-header {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .mobile-metric-header .metric-icon {
        font-size: 24px;
        margin-right: 12px;
    }
    
    .mobile-metric-header .metric-name {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
    }
    
    .mobile-comparison-row {
        display: flex;
        gap: 12px;
        align-items: stretch;
        position: relative;
    }
    
    .mobile-comparison-card {
        flex: 1;
        padding: 20px 16px;
        border-radius: 12px;
        text-align: center;
        position: relative;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .mobile-comparison-card.before {
        background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
        border: 1px solid var(--neutral-200);
    }
    
    .mobile-comparison-card.after {
        background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 50%, var(--neutral-50) 100%);
        border: 1px solid var(--primary-200);
    }
    
    .mobile-card-title {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 8px;
        opacity: 0.8;
    }
    
    .mobile-card-title.before {
        color: var(--neutral-600);
    }
    
    .mobile-card-title.after {
        color: var(--primary-700);
    }
    
    .mobile-value-text {
        font-size: 13px;
        line-height: 1.4;
        color: var(--text-primary);
        font-weight: 500;
        word-break: keep-all;
        margin-bottom: 8px;
    }
    
    .mobile-improvement-badge {
        background: var(--primary);
        color: white;
        font-size: 10px;
        font-weight: 600;
        padding: 4px 8px;
        border-radius: 12px;
        display: inline-block;
        margin-top: 4px;
        box-shadow: 0 2px 4px rgba(235, 90, 17, 0.2);
    }
    
    .mobile-vs-divider {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: var(--primary);
        color: white;
        padding: 8px 12px;
        border-radius: 50%;
        font-size: 12px;
        font-weight: 700;
        z-index: 10;
        box-shadow: 0 4px 12px rgba(235, 90, 17, 0.3);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .comparison-table-container {
        padding: 0 16px;
    }
    
    .mobile-comparison {
        padding: 20px;
    }
    
    .mobile-comparison-card {
        padding: 16px 12px;
        min-height: 100px;
    }
    
    .mobile-value-text {
        font-size: 12px;
    }
    
    .mobile-improvement-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .mobile-metric-header .metric-name {
        font-size: 16px;
    }
    
    .mobile-metric-header .metric-icon {
        font-size: 20px;
    }
    
    .mobile-vs-divider {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }
}