:root {
    --bg-color: #090909;
    --card-bg: #121212;
    --accent-color: #00DEDE;
    --text-primary: #FFFFFF;
    --text-secondary: #848484;
    --border-color: #333333;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.dicom-theme {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
}

.dicom-theme .navbar {
    background-color: rgba(9, 9, 9, 0.9) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.dicom-theme .navbar-brand, .dicom-theme .nav-link {
    color: var(--text-primary) !important;
}

.dicom-theme .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #090909 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJub25lIi8+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9IiMzMzMiLz48L3N2Zz4=') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #FFFFFF 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-title .badge {
    background-color: rgba(0, 222, 222, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Cards */
.dicom-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.dicom-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 222, 222, 0.1);
}

.dicom-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.dicom-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.dicom-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Grid */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    background: rgba(0, 222, 222, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-right: 20px;
    flex-shrink: 0;
}

/* Demo Section */
.demo-box {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    border: 1px solid var(--accent-color);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
}

.btn-dicom {
    background-color: var(--accent-color);
    color: #000;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-dicom:hover {
    background-color: #FFFFFF;
    transform: scale(1.05);
    color: #000;
}

.btn-outline-dicom {
    background-color: transparent;
    color: var(--accent-color);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-dicom:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* Pricing */
.pricing-table {
    border-collapse: separate;
    border-spacing: 0 10px;
    width: 100%;
}

.pricing-table tr {
    background: var(--card-bg);
}

.pricing-table td, .pricing-table th {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-table td:first-child, .pricing-table th:first-child {
    border-left: 1px solid var(--border-color);
    border-radius: 12px 0 0 12px;
}

.pricing-table td:last-child, .pricing-table th:last-child {
    border-right: 1px solid var(--border-color);
    border-radius: 0 12px 12px 0;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        padding: 80px 0 40px;
    }
}
