/* public/css/case-study.css - Case study pages styles */

/* Main Layout */
.case-study-main {
    padding-top: 100px;
}

/* Hero Section */
.case-study-hero {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    color: white;
    position: relative;
    overflow: hidden;
}

.case-study-hero.nft-theme {
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.case-study-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.case-study-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.case-study-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.profile-image {
    position: relative;
    margin: 0 auto 20px;
    width: 150px;
    height: 150px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.success-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.success-badge.nft-badge {
    background: linear-gradient(135deg, #f59e0b, #eab308);
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-info p {
    opacity: 0.8;
    margin-bottom: 16px;
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.profile-stats span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.section-title i {
    color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-date {
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.timeline-date::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-date::before {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-date::before {
    left: -30px;
}

.timeline-content {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-highlight {
    display: inline-block;
}

.timeline-highlight span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.highlight-negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.highlight-neutral {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.highlight-positive {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.highlight-success {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* Strategy Section */
.strategy-section {
    padding: 80px 0;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.strategy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin: 0 auto 24px;
}

.strategy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 16px;
}

.strategy-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
}

.strategy-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.detail-item i {
    color: #22c55e;
    width: 16px;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.number-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.number-card.revenue {
    border-left: 4px solid #22c55e;
}

.number-card.profit {
    border-left: 4px solid #3b82f6;
}

.number-card.growth {
    border-left: 4px solid #f59e0b;
}

.number-card.efficiency {
    border-left: 4px solid #8b5cf6;
}

.number-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.number-card.revenue .number-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.number-card.profit .number-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.number-card.growth .number-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.number-card.efficiency .number-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.number-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.number-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.number-detail {
    font-size: 14px;
    color: var(--text-muted);
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tool-card.primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--primary-rgb), 0.02));
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tool-header i {
    color: var(--primary-color);
    font-size: 20px;
}

.tool-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}

.tool-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.tool-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.feature-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.tool-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-stars {
    color: #fbbf24;
    font-size: 16px;
}

.rating-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Challenges Section */
.challenges-section {
    padding: 80px 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.challenge-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.challenge-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 20px;
}

.challenge-problem,
.challenge-solution {
    margin-bottom: 16px;
}

.challenge-problem h4 {
    color: #dc2626;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.challenge-solution h4 {
    color: #16a34a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.challenge-problem p,
.challenge-solution p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.story-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 12px;
    text-align: center;
}

.image-caption p {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

/* Revenue Chart */
.revenue-section {
    padding: 80px 0;
}

.revenue-chart {
    margin-top: 50px;
}

.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 300px;
    gap: 16px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px 0;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: scaleY(1.05);
    filter: brightness(1.1);
}

.bar-value {
    font-size: 14px;
    margin-bottom: auto;
}

.bar-label {
    position: absolute;
    bottom: -30px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.chart-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 20px;
}

.insight-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.insight-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.insight-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Strategy Deep Section */
.strategy-deep-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.strategy-deep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.strategy-deep-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.strategy-deep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header i {
    font-size: 20px;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-content {
    padding: 24px;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-category {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
}

.tech-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.tech-category h3 i {
    color: var(--primary-color);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-item {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(var(--primary-rgb), 0.1);
}

.tech-item.primary {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.tech-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.tech-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.impact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.impact-card.family {
    border-top: 4px solid #ec4899;
}

.impact-card.freedom {
    border-top: 4px solid #8b5cf6;
}

.impact-card.giving {
    border-top: 4px solid #22c55e;
}

.impact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.impact-card.family .impact-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.impact-card.freedom .impact-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.impact-card.giving .impact-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.impact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.impact-stats span {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.quote-section.nft-quote {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #3b82f6 100%);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.quote-content blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    opacity: 0.95;
}

.quote-author {
    display: flex;
    justify-content: center;
}

.author-info strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info span {
    opacity: 0.8;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.cta-section.nft-cta {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: 2px solid transparent;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-large {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-primary);
}

.btn-outline-large:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .case-study-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
    }

    .timeline-date::before {
        left: -30px !important;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 8px;
    }

    .strategy-grid,
    .numbers-grid,
    .tools-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .number-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .chart-bars {
        height: 200px;
        gap: 8px;
    }

    .bar-value {
        font-size: 12px;
    }

    .bar-label {
        font-size: 10px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline::before {
        left: 20px;
    }

    .profile-card {
        padding: 20px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .quote-content blockquote {
        font-size: 1.125rem;
    }

    .chart-bars {
        gap: 4px;
        height: 150px;
    }

    .bar-value {
        font-size: 10px;
    }
}

/* Print Styles */
@media print {

    .case-study-hero::before,
    .cta-section {
        display: none;
    }

    .case-study-hero {
        background: none;
        color: #000;
    }

    .timeline-item,
    .strategy-card,
    .number-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Animation for cards */
@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strategy-card,
.number-card,
.tool-card,
.challenge-card {
    animation: cardSlideUp 0.6s ease-out;
}

.strategy-card:nth-child(1) {
    animation-delay: 0.1s;
}

.strategy-card:nth-child(2) {
    animation-delay: 0.2s;
}

.strategy-card:nth-child(3) {
    animation-delay: 0.3s;
}
/* Traffic Theme Specific Styles - Add to case-study.css */

/* Traffic Theme Hero */
.case-study-hero.traffic-theme {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
}

.success-badge.traffic-badge {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* Failure Journey Section */
.failure-journey-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.failure-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
}

.failure-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ef4444, #dc2626);
}

.failure-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.failure-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.failure-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid #ef4444;
    transition: all 0.3s ease;
}

.failure-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.failure-content h3 {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.failure-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.failure-content strong {
    color: var(--text-primary);
}

.failure-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}

.stat-loss {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.stat-time {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Failure Summary */
.failure-summary {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.summary-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 127, 0.05));
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    text-align: center;
}

.summary-card h3 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.summary-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-stat .stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.summary-stat .stat-value {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 800;
}

.summary-stat .stat-value.loss {
    color: #dc2626;
}

.summary-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    border-left: 4px solid #ef4444;
    padding-left: 20px;
    margin: 0;
}

/* Success Timeline Section */
.success-timeline-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.success-timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.success-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #22c55e, #16a34a);
    transform: translateX(-50%);
}

.success-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.success-item:nth-child(even) {
    flex-direction: row-reverse;
}

.success-item:nth-child(even) .success-content {
    text-align: right;
}

.success-item.breakthrough {
    transform: scale(1.05);
}

.success-date {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.success-date::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border: 3px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
}

.success-item:nth-child(odd) .success-date::before {
    right: -30px;
}

.success-item:nth-child(even) .success-date::before {
    left: -30px;
}

.success-content {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid #22c55e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.success-item.breakthrough .success-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.success-content h3 {
    color: #16a34a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Success Details */
.success-details {
    margin: 20px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.detail-item {
    background: var(--bg-secondary);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #22c55e;
}

.detail-item strong {
    display: block;
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 14px;
}

.detail-item span {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}

/* Technical Section */
.technical-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-layer {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.tech-layer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.layer-number {
    position: absolute;
    top: -15px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.layer-content h3 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 12px;
}

.layer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layer-content li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.layer-content li::before {
    content: '▶';
    color: #0ea5e9;
    font-size: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

.layer-content strong {
    color: var(--text-primary);
}

/* Revenue Section */
.revenue-section {
    padding: 80px 0;
}

.revenue-breakdown {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.revenue-chart h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 300px;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px 20px 60px;
    position: relative;
}

.revenue-bar {
    flex: 1;
    background: linear-gradient(to top, #0ea5e9, #38bdf8);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px 0;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
    min-height: 60px;
}

.revenue-bar:hover {
    transform: scaleY(1.05);
    filter: brightness(1.1);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.revenue-bar .bar-label {
    position: absolute;
    bottom: -50px;
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

.revenue-bar .bar-value {
    font-size: 14px;
    margin-bottom: auto;
}

.revenue-bar .bar-percentage {
    font-size: 12px;
    opacity: 0.9;
}

.revenue-metrics {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metric-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.metric-item h4 {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.metric-value {
    color: #0ea5e9;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.metric-unit {
    color: var(--text-muted);
    font-size: 12px;
}

/* Cost Breakdown */
.cost-breakdown {
    margin-top: 60px;
}

.cost-breakdown h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.cost-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.cost-item.total {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    font-weight: 700;
}

.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
}

.cost-category {
    color: var(--text-secondary);
    font-weight: 600;
}

.cost-amount {
    color: var(--text-primary);
    font-weight: 700;
}

.profit-item .cost-category,
.profit-item .cost-amount {
    color: #16a34a;
}

/* Lessons Section */
.lessons-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.lesson-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.lesson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.lesson-card.mindset {
    border-top: 4px solid #8b5cf6;
}

.lesson-card.technical {
    border-top: 4px solid #0ea5e9;
}

.lesson-card.scaling {
    border-top: 4px solid #22c55e;
}

.lesson-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.lesson-card.mindset .lesson-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.lesson-card.technical .lesson-icon {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.lesson-card.scaling .lesson-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.lesson-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.lesson-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 16px;
}

.lesson-content h4:first-child {
    margin-top: 0;
}

.lesson-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

.lesson-quote {
    background: var(--bg-secondary);
    border-left: 4px solid #8b5cf6;
    padding: 16px 20px;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 16px;
}

.lesson-tips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.tip-item {
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    border-left: 3px solid #0ea5e9;
}

.tip-item strong {
    color: #0ea5e9;
}

.scaling-strategy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.strategy-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.step-week {
    color: var(--text-secondary);
    font-weight: 600;
}

.step-target {
    color: #22c55e;
    font-weight: 700;
}

/* Tools Arsenal Section */
.tools-arsenal-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.tools-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tools-category {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
}

.tools-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tools-category h3 i {
    color: #0ea5e9;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tool-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(5px);
}

.tool-item.primary {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.tool-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.tool-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

.tool-rating {
    text-align: right;
}

.stars {
    color: #fbbf24;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

/* Quote Section Traffic Theme */
.quote-section.traffic-quote {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
}

/* CTA Section Traffic Theme */
.cta-section.traffic-cta {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(59, 130, 246, 0.1));
}

/* Responsive Design for Traffic Theme */
@media (max-width: 1024px) {
    .failure-timeline::before {
        left: 30px;
    }

    .failure-item {
        padding-left: 60px;
    }

    .failure-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .success-timeline::before {
        left: 30px;
    }

    .success-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .success-item .success-content {
        text-align: left !important;
    }

    .success-date::before {
        left: -30px !important;
    }

    .revenue-breakdown {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .technical-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .failure-item {
        flex-direction: column;
        padding-left: 0;
        text-align: center;
    }

    .failure-timeline::before {
        display: none;
    }

    .success-item {
        flex-direction: column;
        padding-left: 0;
        text-align: center;
    }

    .success-timeline::before {
        display: none;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .chart-bars {
        height: 200px;
        padding: 20px 15px 50px;
    }

    .revenue-bar .bar-label {
        font-size: 10px;
        bottom: -40px;
    }

    .lessons-grid {
        grid-template-columns: 1fr;
    }

    .tools-categories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .failure-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .failure-content {
        padding: 20px;
    }

    .summary-card {
        padding: 30px 20px;
    }

    .lesson-card {
        padding: 24px 20px;
    }

    .tool-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .chart-bars {
        gap: 8px;
        height: 150px;
    }

    .revenue-bar .bar-value {
        font-size: 12px;
    }

    .revenue-bar .bar-percentage {
        font-size: 10px;
    }
}
/* Card Theme Specific Styles - Add to case-study.css */

/* Card Theme Hero */
.case-study-hero.card-theme {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #7c3aed 100%);
}

.success-badge.card-badge {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
}

/* Manual Era Section */
.manual-era-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.manual-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.story-text h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    border-left: 4px solid #ef4444;
    padding-left: 16px;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.manual-stats {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 120px;
}

.manual-stats h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 12px;
}

.manual-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.manual-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.metric-icon.manual {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.metric-data h4 {
    color: #ef4444;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.metric-data p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Daily Schedule */
.daily-schedule {
    margin-top: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
}

.daily-schedule h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

.schedule-time {
    color: #f59e0b;
    font-weight: 700;
    font-size: 14px;
    min-width: 120px;
    text-align: right;
}

.schedule-task {
    color: var(--text-secondary);
    font-size: 14px;
    flex: 1;
}

/* Health Impact */
.health-impact {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.health-impact h4 {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.impact-item.negative i {
    color: #ef4444;
    margin-top: 2px;
}

.impact-item.positive i {
    color: #22c55e;
    margin-top: 2px;
}

.impact-item span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Transition Section */
.transition-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.transition-story {
    margin-top: 50px;
}

.transition-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.transition-text h3 {
    color: #a855f7;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    border-left: 4px solid #a855f7;
    padding-left: 16px;
}

.transition-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.125rem;
}

/* Learning Progress */
.learning-progress {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
}

.learning-progress h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.progress-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid #a855f7;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    color: #a855f7;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-result {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.step-result.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-color: rgba(34, 197, 94, 0.2);
}

/* Evolution Section */
.evolution-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.evolution-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.evolution-stage {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.evolution-stage:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.evolution-stage.breakthrough {
    border: 2px solid #22c55e;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.stage-header {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    padding: 20px 24px;
    text-align: center;
}

.stage-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
}

.evolution-stage.breakthrough .stage-header {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.stage-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stage-period {
    font-size: 14px;
    opacity: 0.9;
}

.stage-content {
    padding: 24px;
}

.stage-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.stage-metrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border-radius: 6px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.metric-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
}

/* Comparison Visual */
.comparison-visual {
    margin-top: 60px;
}

.comparison-visual h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-item {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
}

.comparison-item.before {
    border-color: #ef4444;
}

.comparison-item.after {
    border-color: #22c55e;
}

.comparison-item h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
}

.comparison-item.before h4 {
    color: #ef4444;
    border-bottom: 2px solid #ef4444;
}

.comparison-item.after h4 {
    color: #22c55e;
    border-bottom: 2px solid #22c55e;
}

.comparison-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.comparison-metric .metric-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.comparison-metric .metric-value {
    font-weight: 700;
}

.comparison-metric .metric-value.bad {
    color: #ef4444;
}

.comparison-metric .metric-value.good {
    color: #22c55e;
}

/* Technical Implementation Section */
.technical-implementation-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.implementation-overview {
    margin-top: 50px;
}

.system-architecture {
    margin-bottom: 60px;
}

.system-architecture h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.architecture-diagram {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.architecture-layer {
    text-align: center;
}

.layer-title {
    color: #a855f7;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.layer-components {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.component {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.thread-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.thread-item {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.game-instance {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-primary);
}

/* Technical Specs */
.technical-specs h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 20px;
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.spec-content h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.spec-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Automation Features */
.automation-features {
    margin-top: 60px;
}

.automation-features h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-category {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 24px;
}

.feature-category h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a855f7;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(168, 85, 247, 0.2);
    padding-bottom: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '▶';
    color: #a855f7;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 10px;
}

/* Revenue Analysis Section */
.revenue-analysis-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.revenue-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.revenue-chart h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.revenue-breakdown {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.revenue-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 4px solid #a855f7;
}

.source-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
}

.source-header i {
    color: #a855f7;
}

.source-amount {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.source-percentage {
    color: #a855f7;
    font-weight: 700;
    font-size: 14px;
    min-width: 50px;
    text-align: right;
}

.total-revenue {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    margin-top: 16px;
    color: #a855f7;
    font-size: 1.125rem;
}

/* Cost Analysis */
.cost-analysis h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.cost-items {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.cost-item.total {
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    font-weight: 700;
}

.cost-name {
    color: var(--text-secondary);
    font-weight: 600;
}

.cost-amount {
    color: var(--text-primary);
    font-weight: 700;
}

.profit-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 24px;
}

.profit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-primary);
}

.profit-item:last-child {
    border-bottom: none;
}

.profit-item.final {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 12px;
    font-weight: 700;
    color: #16a34a;
}

.profit-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.profit-value {
    color: var(--text-primary);
    font-weight: 700;
}

.profit-margin {
    text-align: center;
    margin-top: 12px;
    color: #16a34a;
    font-weight: 600;
}

/* Account Performance */
.account-performance {
    margin-top: 60px;
}

.account-performance h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.performance-table {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: white;
}

.header-cell {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-primary);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.total {
    background: var(--bg-secondary);
    font-weight: 700;
}

.table-cell {
    padding: 16px 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.table-row.total .table-cell {
    color: var(--text-primary);
}

/* Life Impact Section */
.life-impact-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.impact-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.impact-before,
.impact-after {
    background: var(--bg-primary);
    border: 2px solid var(--border-primary);
    border-radius: 16px;
    padding: 30px;
}

.impact-before {
    border-color: #ef4444;
}

.impact-after {
    border-color: #22c55e;
}

.impact-before h3 {
    color: #ef4444;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 12px;
}

.impact-after h3 {
    color: #22c55e;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 12px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.impact-item i {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.impact-content strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.impact-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Personal Goals */
.personal-goals {
    margin-top: 60px;
}

.personal-goals h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.goal-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
}

.goal-item h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.goal-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Quote Section Card Theme */
.quote-section.card-quote {
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #7c3aed 100%);
}

/* CTA Section Card Theme */
.cta-section.card-cta {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.1));
}

/* Responsive Design for Card Theme */
@media (max-width: 1024px) {
    .manual-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .manual-stats {
        position: static;
    }

    .transition-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .revenue-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-comparison {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .evolution-timeline {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .table-header .header-cell:nth-child(3),
    .table-header .header-cell:nth-child(4),
    .table-row .table-cell:nth-child(3),
    .table-row .table-cell:nth-child(4) {
        grid-column: 1 / -1;
    }

    .game-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .thread-group {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .manual-metrics {
        gap: 16px;
    }

    .manual-metric {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .schedule-time {
        min-width: auto;
        text-align: center;
    }

    .progress-step {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .architecture-diagram {
        padding: 20px;
    }

    .layer-components {
        flex-direction: column;
        align-items: center;
    }

    .goal-item {
        padding: 20px;
    }

    .spec-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}