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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 50px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #8b5cf6;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Channel Analyzer */
.channel-analyzer {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.analyzer-header {
    text-align: center;
    margin-bottom: 32px;
}

.analyzer-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.analyzer-header p {
    font-size: 16px;
    color: #64748b;
}

.analyzer-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 16px;
    z-index: 2;
}

.channel-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.channel-input:focus {
    outline: none;
    border-color: #8b5cf6;
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.input-validation {
    position: absolute;
    right: 16px;
    display: flex;
    align-items: center;
}

.valid-icon, .invalid-icon {
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.valid-icon {
    color: #10b981;
}

.invalid-icon {
    color: #ef4444;
}

.input-wrapper.valid .valid-icon {
    opacity: 1;
}

.input-wrapper.invalid .invalid-icon {
    opacity: 1;
}

.analyze-btn {
    position: relative;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.analyze-btn.loading {
    pointer-events: none;
}

.btn-text, .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.analyze-btn.loading .btn-text {
    opacity: 0;
}

.analyze-btn.loading .btn-loading {
    opacity: 1;
}

.form-features {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
}

.feature-item i {
    color: #10b981;
    font-size: 12px;
}

/* Sample URLs */
.sample-urls {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.sample-title {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
    text-align: center;
}

.sample-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sample-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sample-btn:hover {
    background: white;
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.sample-btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.explain {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out 1.2s both;
    margin-bottom: 80px;

}

.explain img {
    background: white;
    border-radius: 20px;
    /* padding: 40px; */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

/* Sections */
.features, .demo, .results-preview, .pricing, .cta {
    padding: 100px 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Demo Section */
.demo {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #64748b;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.demo-feature.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.demo-feature i {
    color: #10b981;
    font-size: 18px;
}

.demo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

/* Demo Visual */
.demo-visual {
    position: relative;
}

.gif-container {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.gif-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.demo-gif {
    width: 100%;
    height: auto;
    display: block;
}

.gif-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gif-play-button:hover {
    background: rgba(139, 92, 246, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.gif-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 32px 24px 24px;
}

.gif-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gif-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.gif-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gif-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-step {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: #64748b;
}

/* Results Preview */
.results-preview {
    background: #f8fafc;
}

.preview-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #64748b;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.tab-btn.active {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.preview-content {
    position: relative;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.preview-dashboard {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 32px;
}

.dashboard-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.dashboard-header p {
    font-size: 16px;
    color: #64748b;
}

.dashboard-preview {
    position: relative;
}

.preview-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
}

.preview-highlights {
    display: flex;
    justify-content: space-around;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.highlight-item i {
    color: #8b5cf6;
    font-size: 16px;
}

#result-box {
    max-width: 1280px;
    margin: 0 auto;
}

.channel-result {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.title {
    display: flex;
    justify-content: center;
    padding: 15px;
    font-size: 25px;
    align-items: center;
    gap: 5px;

}

.goal {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.result-tier {
    font-size: 20px;
}

.statis {
    display: flex;
    justify-content: space-evenly;
    gap: 5px;
}

.channel-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 20px;
}

.channel-image {
    position: relative;
}

.channel-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.statis-box {
    background-color: #F0F0F0;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    font-weight: bold;
    flex-direction: column;
    justify-content: space-evenly;
    height: 90px;
    box-sizing: border-box;
    min-width: 100px;
    align-items: center;
    font-size: 18px;
}


.channel-thumbnail {
    width: 138px;     /* 원하는 만큼 크게 조절 가능 */
    height: auto;
    border-radius: 100px;
}

.big-icon {
    width: 138px;     /* 원하는 만큼 크게 조절 가능 */
    height: auto;
}

.text-below {
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-flex; 
    align-items: center; 
    gap: 4px;
}

.graph {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    padding: 20px 0;
}

canvas {
    aspect-ratio: initial !important;
  }

#scatterChart {
    max-width: 400px;
    max-height: 300px;
}
#scatterChart2 {
    max-width: 400px;
    max-height: 300px;
}  
#scatterChart3 {
    max-width: 400px;
    max-height: 300px;
}  

.graph div {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    align-items: center;
}

.top-channel-box {
    display: flex;
    justify-content: center;
}

.top-channel img {
    width: 60px;
}

.top-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-channel-title {
    font-size: 14px;
}

.half-box .label {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.half-box .value {
    font-size: 3rem; /* 🔥 숫자 크게! */
    font-weight: bold;
    color: #76fc9e;    /* 강조 색상 (원하면 변경 가능) */
}

.half-box .value2 {
    font-size: 30px; /* 🔥 숫자 크게! */
    font-weight: bold;
    color: #e96857;    /* 강조 색상 (원하면 변경 가능) */
}

.big-graph {
    width: 300px;     /* 원하는 만큼 크게 조절 가능 */
    height: auto;
}

.pyramid-box {
    max-width: 250px;
    max-height: auto;
}

.tooltip-wrapper {
    position: relative;
    display: flex;
}

.tier-detail {
    display: flex;
    justify-content: center;
    height: 40px;
    border-top: 1px solid #D0CFCE;
    align-items: center;
    color: rgb(234 51 35);
    font-weight: bold;
}

.custom-tooltip {
    visibility: hidden;
    position: absolute;
    top: 50%; /* 부모 요소 높이의 50% 위치에 배치 */
    transform: translateY(-50%); /* 자기 높이의 50%만큼 위로 이동 */
    left: 35px;
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 13px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    line-height: 20px;
}

.tooltip-wrapper:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .hero-text {
        display: flex
    ;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }

    .graph {
        display: flex
    ;
        justify-content: space-evenly;
        align-items: stretch;
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .custom-tooltip {
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s;
        position: absolute;
        left: 50%;            /* 가로 중앙 */
        transform: translate(-50%);  /* 자기 자신의 가로 세로 50%씩 이동 */
        background-color: #333;
        color: #fff;
        padding: 6px 10px;
        border-radius: 4px;
        font-size: 13px;
        line-height: 20px;
        z-index: 10;
        max-width: 100vw;
        width: 95vw;
        box-sizing: border-box;
    }
      
    .tooltip-wrapper.show-tooltip .custom-tooltip {
        visibility: visible;
        opacity: 1;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .channel-analyzer {
        padding: 24px;
    }
    
    .form-features {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .preview-tabs {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .preview-highlights {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 18px;
    }

    .hero {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .channel-analyzer {
        padding: 20px;
    }
    
    .analyzer-header h2 {
        font-size: 24px;
    }
    
    .input-group {
        gap: 12px;
    }
    
    .analyze-btn {
        padding: 16px 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gif-features {
        gap: 12px;
    }
    
    .gif-feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-badge {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-description {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-stats {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.channel-analyzer {
    animation: fadeInUp 0.6s ease-out 1s both;
}

.gif-play-button {
    animation: pulse 2s infinite;
}

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none; }
.visible { display: block; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
    body {
        background-color: #0f172a;
        color: #e2e8f0;
    }
    
    .header {
        background: rgba(15, 23, 42, 0.95);
        border-color: #334155;
    }
    
    .channel-analyzer {
        background: #1e293b;
        border-color: #334155;
    }
    
    .channel-input {
        background: #334155;
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .channel-input:focus {
        background: #475569;
    }
    
    .feature-card, .pricing-card, .preview-dashboard {
        background: #1e293b;
        border-color: #334155;
    }
    
    .sample-btn {
        background: #334155;
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .sample-btn:hover {
        background: #475569;
    }
} */

/* Print Styles */
@media print {
    .header, .footer, .cta {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card, .pricing-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}