/* =====================================================
   MIGUN re:borne — Компоненти
   Бутони, карти, badge-ове и други преизползваеми елементи
   ===================================================== */

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    line-height: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--anthracite);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 16px;
}

/* Hero CTA buttons hierarchy */
.hero-cta .btn-primary {
    padding: 20px 48px;
    font-size: 17px;
    font-weight: 700;
}

.hero-cta .btn-secondary {
    padding: 18px 36px;
    font-size: 15px;
    border-width: 1px;
}

/* =====================================================
   TEXT LINK
   ===================================================== */

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
}

.link-arrow svg {
    transition: transform var(--transition-base);
}

.link-arrow:hover {
    color: var(--gold-dark);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   BADGES & TAGS
   ===================================================== */

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

.badge-gold {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
}

.badge-dark {
    background: var(--black);
    color: var(--white);
}

/* =====================================================
   FEATURE CARDS (for technology page)
   ===================================================== */

.feature-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--gold);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   SPEC TABLE (for product page)
   ===================================================== */

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.spec-item {
    padding: 24px 28px;
    background: var(--white);
}

.spec-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.spec-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

/* =====================================================
   INCLUDES LIST (product page — what's included)
   ===================================================== */

.includes-list {
    list-style: none;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* =====================================================
   PRICE BLOCK
   ===================================================== */

.price-block {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--gold);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
}

.price-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.price-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--gold);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer p,
.faq-answer-content {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    padding-bottom: 24px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* =====================================================
   STEPS (demo page — how it works)
   ===================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

/* =====================================================
   MAP EMBED
   ===================================================== */

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================================================
   SHOWROOM INFO CARD
   ===================================================== */

.showroom-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.showroom-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.showroom-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showroom-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.showroom-info-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.showroom-info-item span {
    font-size: 15px;
    color: var(--text-secondary);
}

/* =====================================================
   COUNTERS (testimonials page)
   ===================================================== */

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.counter-card {
    text-align: center;
    padding: 40px 20px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   PLACEHOLDER IMAGE
   ===================================================== */

.placeholder-img {
    background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed var(--border);
    border-radius: inherit;
    margin: 12px;
}

/* =====================================================
   GALLERY (product page)
   ===================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

/* =====================================================
   RENTAL & B2B CARDS (product page)
   ===================================================== */

.offer-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--white);
}

.offer-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.offer-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* =====================================================
   CONTACT INFO CARD
   ===================================================== */

.contact-card {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 28px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contact-list-item h4 {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-list-item p {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 0;
}

.contact-list-item a {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-list-item a:hover {
    color: var(--gold);
}

/* =====================================================
   DISCLAIMER
   ===================================================== */

.disclaimer {
    padding: 24px 28px;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */

.page-hero {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   TWO COLUMN LAYOUT
   ===================================================== */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

/* =====================================================
   PHASE 2 COMPONENTS
   ===================================================== */

/* =====================================================
   COMPARISON TABLE (technology page)
   ===================================================== */

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-table thead th {
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--gray-light);
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.compare-table thead th.compare-highlight {
    background: var(--black);
    color: var(--gold);
}

.compare-table tbody td {
    padding: 18px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.compare-table tbody td.compare-highlight {
    background: rgba(201, 169, 110, 0.06);
    color: var(--text-primary);
    font-weight: 600;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover td {
    background: var(--gray-light);
}

.compare-table tbody tr:hover td.compare-highlight {
    background: rgba(201, 169, 110, 0.12);
}

/* =====================================================
   BENEFIT ICON WRAP (benefits page)
   ===================================================== */

.benefit-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.benefit-quote-card {
    background: var(--bg-secondary);
    padding: 36px;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
    display: flex;
    align-items: center;
}

/* =====================================================
   WHO GRID (benefits page)
   ===================================================== */

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.who-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.who-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.who-card svg {
    color: var(--gold);
    margin-bottom: 16px;
}

.who-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

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

/* =====================================================
   CERTIFICATION GRID (about page)
   ===================================================== */

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-card {
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition-base);
}

.cert-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.cert-badge {
    margin-bottom: 20px;
}

.cert-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

/* =====================================================
   WHY US GRID (about page)
   ===================================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-us-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.why-us-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-us-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-us-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   EXPERTS GRID (testimonials page)
   ===================================================== */

.experts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.expert-card {
    display: flex;
    gap: 24px;
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.expert-avatar {
    flex-shrink: 0;
}

/* =====================================================
   STORIES GRID (testimonials page — before/after)
   ===================================================== */

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.story-card {
    padding: 40px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-phase {
    padding: 20px;
    border-radius: var(--radius-md);
}

.story-before {
    background: #fdf0ef;
    border-left: 3px solid var(--error);
}

.story-after {
    background: #eaf7ee;
    border-left: 3px solid var(--success);
}

.story-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.story-before .story-label {
    color: var(--error);
}

.story-after .story-label {
    color: var(--success);
}

.story-phase p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.story-arrow {
    text-align: center;
    color: var(--gold);
    padding: 4px 0;
}

/* =====================================================
   PHASE 3 — BLOG COMPONENTS
   ===================================================== */

/* =====================================================
   BLOG GRID
   ===================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    height: 200px;
    min-height: 200px;
    border-radius: 0;
}

.blog-card-body {
    padding: 28px 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.blog-date {
    color: var(--text-muted);
}

.blog-card-title {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: gap var(--transition-base);
}

.blog-read-more:hover {
    gap: 10px;
}

/* =====================================================
   ARTICLE PAGE
   ===================================================== */

.article-hero {
    padding: 48px 0 32px;
    background: var(--bg-secondary);
}

.article-hero .container {
    max-width: 760px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 24px;
    transition: color var(--transition-base);
}

.article-back:hover {
    color: var(--gold);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-hero h1 {
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-excerpt {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-featured-image {
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.article-content {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-secondary);
}

.article-content h2 {
    font-size: 28px;
    margin: 48px 0 20px;
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 22px;
    margin: 36px 0 14px;
    color: var(--text-primary);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

/* Checkbox Wrapper for GDPR */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-wrapper label {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-wrapper label a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-wrapper label a:hover {
    color: var(--gold-dark);
}

/* Legacy checkbox-label support */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
    color: var(--text-secondary);
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--gold-dark);
}

/* Content lists - article, legal pages, etc. */
.article-content ul,
.article-content ol,
.legal-content ul,
.legal-content ol,
.privacy-content ul,
.privacy-content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.article-content ul,
.legal-content ul,
.privacy-content ul {
    list-style-type: disc;
}

.article-content ol,
.legal-content ol,
.privacy-content ol {
    list-style-type: decimal;
}

.article-content li,
.legal-content li,
.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content ul ul,
.legal-content ul ul,
.privacy-content ul ul {
    list-style-type: circle;
    margin-top: 10px;
    margin-bottom: 10px;
}

.article-content ul ul ul,
.legal-content ul ul ul,
.privacy-content ul ul ul {
    list-style-type: square;
}

.article-content em {
    color: var(--text-primary);
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-disclaimer {
    margin: 40px 0;
    padding: 24px 28px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-md);
}

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

.article-cta {
    margin-top: 48px;
    padding: 40px;
    background: var(--black);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

