:root {
    --brand-primary: #2563EB;
    --brand-primary-soft: #EEF2FF;
    --brand-accent: #F5A623;
    --brand-accent-strong: #E09212;
    --surface: #FFFFFF;
    --surface-muted: #F8FAFC;
    --surface-alt: #F4F6FB;
    --line: #E2E8F0;
    --text-main: #1E293B;
    --text-muted: #475569;
    --text-subtle: #94A3B8;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-ghost: 0 1px 2px rgba(15, 23, 42, 0.06);
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--surface-muted);
    color: var(--text-main);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 20px;
}

/* Rotate Animation: Alternate Reverse as requested */
@keyframes rotate-slow {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}
.animate-sway {
    animation: rotate-slow 3s infinite alternate-reverse ease-in-out;
}

/* Custom Range Slider */
input[type=range] {
    -webkit-appearance: none; 
    width: 100%; 
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #3B82F6;
    cursor: pointer;
    margin-top: -8px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #E2E8F0;
    border-radius: 2px;
}

/* Hide scrollbar for nav but allow scroll */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Design system helpers */
.ds-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-ghost);
}

.ds-card.elevated {
    box-shadow: var(--shadow-soft);
}

.ds-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
    text-transform: uppercase;
    font-size: 11px;
}

.ds-step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-muted);
    border: 1px solid var(--line);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--shadow-ghost);
}

.ds-panel {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.01) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.ds-list li + li {
    border-top: 1px dashed rgba(148, 163, 184, 0.4);
    padding-top: 12px;
}

.ds-section {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.ds-title-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ds-title-block h2 {
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 700;
}

.ds-title-block p {
    color: var(--text-muted);
}

.ds-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.ds-step-card {
    border: 1px solid var(--line);
    background: var(--surface-alt);
    border-radius: var(--radius-md);
    padding: 14px 14px 12px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
}

.ds-step-card h3 {
    margin: 0 0 4px;
    font-weight: 700;
    color: var(--text-main);
}

.ds-step-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.ds-guide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.ds-guide ol {
    margin: 0;
}

.ds-guide li {
    padding-left: 2px;
}

/* Form helpers */
.input-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================================
   DESIGN SYSTEM - FORMS & COMPONENTS
   ========================================= */

/* Form Section Card */
.ds-form-section {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-ghost);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ds-form-section:hover {
    box-shadow: var(--shadow-soft);
}

.ds-form-section:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Section Header */
.ds-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.ds-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-section-icon.blue {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #2563EB;
}

.ds-section-icon.green {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #16A34A;
}

.ds-section-icon.orange {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #EA580C;
}

.ds-section-icon.purple {
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
    color: #9333EA;
}

.ds-section-icon.teal {
    background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
    color: #0D9488;
}

.ds-section-icon.indigo {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
}

.ds-section-icon.slate {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    color: #475569;
}

.ds-section-icon.emerald {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: #059669;
}

.ds-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.ds-section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 2px 0 0;
}

/* Form Grid */
.ds-form-grid {
    display: grid;
    gap: 16px;
}

.ds-form-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.ds-form-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ds-form-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .ds-form-grid.cols-2,
    .ds-form-grid.cols-3,
    .ds-form-grid.cols-4 {
        grid-template-columns: 1fr;
    }
}

.ds-col-span-2 {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .ds-col-span-2 {
        grid-column: span 1;
    }
}

/* Form Field */
.ds-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Form Label */
.ds-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ds-label.required::after {
    content: '*';
    color: #EF4444;
    font-weight: 700;
}

/* Form Input */
.ds-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-main);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.ds-input::placeholder {
    color: var(--text-subtle);
}

.ds-input:hover {
    border-color: #CBD5E1;
}

.ds-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--surface);
}

.ds-input:disabled {
    background: var(--surface-muted);
    color: var(--text-subtle);
    cursor: not-allowed;
}

/* Select Wrapper */
.ds-select-wrapper {
    position: relative;
}

.ds-select-wrapper .ds-input {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.ds-select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

/* Radio/Checkbox Card */
.ds-choice-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.ds-choice-card:hover {
    border-color: #CBD5E1;
    background: var(--surface-muted);
}

.ds-choice-card.selected {
    border-color: var(--brand-primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(37, 99, 235, 0.02) 100%);
}

.ds-choice-card input[type="radio"],
.ds-choice-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ds-choice-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--line);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.ds-choice-card.checkbox .ds-choice-indicator {
    border-radius: 6px;
}

.ds-choice-card.selected .ds-choice-indicator {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
}

.ds-choice-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.15s ease;
}

.ds-choice-card.checkbox .ds-choice-indicator::after {
    width: 5px;
    height: 9px;
    border-radius: 0;
    background: transparent;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    margin-top: -2px;
}

.ds-choice-card.selected .ds-choice-indicator::after {
    opacity: 1;
    transform: scale(1);
}

.ds-choice-card.checkbox.selected .ds-choice-indicator::after {
    transform: rotate(45deg) scale(1);
}

.ds-choice-content {
    flex: 1;
}

.ds-choice-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 2px;
}

.ds-choice-description {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Info Box */
.ds-info-box {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.ds-info-box.blue {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    color: #1E40AF;
}

.ds-info-box.amber {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 1px solid #FDE68A;
    color: #92400E;
}

.ds-info-box.green {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border: 1px solid #BBF7D0;
    color: #166534;
}

.ds-info-box.red {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 1px solid #FECACA;
    color: #991B1B;
}

.ds-info-box-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Table */
.ds-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.ds-table th {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 8px 12px 0;
    border-bottom: 1px solid var(--line);
}

.ds-table td {
    padding: 12px 8px 12px 0;
    vertical-align: top;
}

.ds-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--line);
}

.ds-table .ds-input {
    padding: 10px 12px;
    font-size: 13px;
}

/* Button */
.ds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ds-btn.primary {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-strong) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.4);
}

.ds-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

.ds-btn.primary:active {
    transform: translateY(0);
}

.ds-btn.secondary {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-ghost);
}

.ds-btn.secondary:hover {
    background: var(--surface-muted);
    border-color: #CBD5E1;
}

.ds-btn.blue {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.ds-btn.blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.ds-btn.green {
    background: linear-gradient(135deg, #25D366 0%, #20bd5a 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.ds-btn.green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.ds-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Page Header */
.ds-page-header {
    text-align: center;
    margin-bottom: 32px;
}

.ds-page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 8px;
}

.ds-page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Pills */
.ds-contact-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Progress Steps */
.ds-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.ds-progress-step {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    transition: all 0.2s ease;
}

.ds-progress-step.active {
    width: 32px;
    border-radius: 5px;
    background: var(--brand-primary);
}

.ds-progress-step.completed {
    background: var(--brand-primary);
}

/* Add Item Button */
.ds-add-item-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--brand-primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 2px dashed rgba(37, 99, 235, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ds-add-item-btn:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-color: var(--brand-primary);
}

/* Item Row */
.ds-item-row {
    position: relative;
    padding: 16px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.ds-item-row:hover {
    border-color: #CBD5E1;
}

.ds-item-row:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.ds-item-row .ds-remove-item {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text-subtle);
    cursor: pointer;
    opacity: 0;
    transition: all 0.15s ease;
}

.ds-item-row:hover .ds-remove-item {
    opacity: 1;
}

.ds-item-row .ds-remove-item:hover {
    background: #FEE2E2;
    border-color: #FECACA;
    color: #DC2626;
}

.ds-item-number {
    position: absolute;
    top: -10px;
    left: 12px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.pricing-card {
    padding: 30px; /* ~25% больше базового p-6 (24px) */
}

/* Hero photo */
.hero-photo {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.hero-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-photo .brand-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #E2E8F0;
    padding: 10px 14px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-soft);
}

.hero-photo .brand-pill img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

@media (min-width: 1024px) {
    .ds-guide {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* =========================================
   DESIGN SYSTEM - ARTICLES & LEGAL PAGES
   ========================================= */

/* Article Container */
.ds-article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-ghost);
}

@media (max-width: 768px) {
    .ds-article {
        padding: 20px;
    }
}

/* Article Section */
.ds-article-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.ds-article-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Article Heading */
.ds-article-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 20px;
}

/* Card inside article */
.ds-article .ds-card {
    padding: 20px;
}

.ds-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 12px;
}

/* Tags */
.ds-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 20px;
}

/* Surcharge Badge */
.ds-badge-surcharge {
    display: inline-flex;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #EA580C;
    background: #FFF7ED;
    border: 1px solid #FFEDD5;
    border-radius: 6px;
    margin-left: 8px;
}

/* Tips Grid */
.ds-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.ds-tip-card {
    padding: 20px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
}

.ds-tip-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 12px 0 8px;
}

.ds-tip-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 12px;
}

.ds-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

.ds-link:hover {
    color: #1D4ED8;
}

/* Article CTA */
.ds-article-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 16px;
    margin-top: 32px;
}

.ds-article-cta h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 8px;
}

.ds-article-cta p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

/* Prohibited List */
.ds-prohibited-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ds-prohibited-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.ds-prohibited-number {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #DC2626;
    background: #FEE2E2;
    border-radius: 8px;
}

.ds-prohibited-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 4px;
}

.ds-prohibited-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Red icon color */
.ds-section-icon.red {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #DC2626;
}

/* =========================================
   DESIGN SYSTEM - LEGAL PAGES
   ========================================= */

.ds-legal p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.ds-legal p:last-child {
    margin-bottom: 0;
}

.ds-legal-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--brand-primary);
    display: inline-block;
}

.ds-legal-subheading {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 24px 0 12px;
}

.ds-legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.ds-legal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.ds-legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--brand-primary);
    border-radius: 50%;
}

.ds-legal-list-compact {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.ds-legal-list-compact li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* Definitions */
.ds-definitions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ds-definition {
    padding: 16px;
    background: var(--surface-alt);
    border-radius: 10px;
}

.ds-definition dt {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px;
}

.ds-definition dd {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Data items */
.ds-data-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ds-data-item {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    border-radius: 8px;
}

/* Contact box */
.ds-contact-box {
    padding: 20px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
}

.ds-contact-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 8px;
}

.ds-contact-box p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 12px;
}

.ds-email {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    background: var(--surface);
    border: 1px solid var(--brand-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.15s ease;
}

.ds-email:hover {
    background: var(--brand-primary);
    color: white;
}

/* Document info */
.ds-document-info {
    padding: 16px 20px;
    background: var(--surface-muted);
    border-radius: 10px;
}

.ds-document-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Obligations */
.ds-obligations {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .ds-obligations {
        grid-template-columns: 1fr 1fr;
    }
}

.ds-obligation-block {
    padding: 20px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.ds-obligation-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

/* Company info */
.ds-company-info {
    padding: 20px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.ds-company-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
}

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

.ds-company-label {
    flex-shrink: 0;
    width: 120px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.ds-company-value {
    font-size: 14px;
    color: var(--text-main);
}

/* Inline link */
.ds-link-inline {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.ds-link-inline:hover {
    text-decoration: underline;
}
