:root {
    --primary-color: #1a1a1a;
    --primary-hover: #000000;
    --secondary-color: #4a5568;
    --border-color: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\203A";
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Hero Section */
.license-hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
}

.license-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.license-hero .lead {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin-bottom: 1rem;
}

.sidebar-card-header {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card-header svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-card-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.sidebar-card-body {
    padding: 1.25rem;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.75rem;
}

.sidebar-links li:last-child {
    margin-bottom: 0;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-color);
    background: #f8fafc;
    transform: translateX(4px);
}

.sidebar-links svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sidebar-cta {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 1.5rem;
}

.sidebar-cta h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sidebar-cta p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* License Notice */
.license-notice {
    background: #fef3c7;
    border: 2px solid #fcd34d;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.license-notice svg {
    width: 24px;
    height: 24px;
    color: #92400e;
    flex-shrink: 0;
    margin-top: 2px;
}

.license-notice strong {
    color: #92400e;
}

/* License Sections */
.license-section {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

.license-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.license-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1rem;
}

.license-section p:last-child {
    margin-bottom: 0;
}

.license-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.license-section ul:last-child {
    margin-bottom: 0;
}

.license-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 0.75rem;
}

.license-section li:last-child {
    margin-bottom: 0;
}

.license-section strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* License Types Grid */
.license-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.license-type-card {
    background: #f8fafc;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.license-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.license-type-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.license-type-header svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.license-type-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.license-type-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.license-type-vat {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.license-type-card p {
    font-size: 0.938rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.license-type-detail {
    font-size: 0.875rem;
    color: var(--secondary-color);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* License Footer */
.license-footer {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.license-footer p {
    font-size: 0.938rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.license-footer p:last-child {
    margin-bottom: 0;
}

.license-footer a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

/* Responsive */
@media (max-width: 991px) {
    .license-hero h1 {
        font-size: 2rem;
    }

    .license-section {
        padding: 1.5rem;
    }

    .license-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .license-hero {
        padding: 2rem 0;
    }

    .license-hero h1 {
        font-size: 1.75rem;
    }

    .license-section {
        padding: 1rem;
    }

    .license-section h2 {
        font-size: 1.25rem;
    }
}
