/* ================================
   Variables & Design Tokens
   ================================ */
:root {
    --primary: #0f4c3a;
    --primary-light: #166b53;
    --secondary: #d4af37;
    --secondary-light: #ebd076;

    --bg-color: #051411;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;

    --glass-bg: rgba(15, 76, 58, 0.15);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================================
   Reset & Base
   ================================ */
* {margin:0; padding:0; box-sizing:border-box;}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 6rem 0; }
.section-alt { background: rgba(0, 0, 0, 0.2); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--secondary) !important; }
.small { font-size: 0.85rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.75rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.pt-top { padding-top: 100px; min-height: 100vh; display: flex; flex-direction: column; }

/* ================================
   Badge
   ================================ */
.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ================================
   Glassmorphism
   ================================ */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 20, 17, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.glass-card, .glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-4px);
    background: rgba(22, 107, 83, 0.2);
    border-color: rgba(212, 175, 55, 0.25);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #b89326);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ================================
   3D Canvas
   ================================ */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a251c 0%, #051411 100%);
}

.opacity-low { opacity: 0.35; }

/* ================================
   Navigation
   ================================ */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
.logo span { color: var(--secondary); }

.main-nav ul { display: flex; gap: 1.5rem; }

.main-nav a {
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    font-size: 0.95rem;
}

.main-nav a:hover, .main-nav a.active { color: var(--secondary); }

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-phone {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}
.nav-phone:hover { color: var(--secondary); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ================================
   Hero
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content { max-width: 800px; }

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.mini-badge {
    padding: 0.5rem 1rem;
    background: rgba(15, 76, 58, 0.3);
    border: 1px solid rgba(22, 107, 83, 0.4);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-main);
}

/* ================================
   Grid
   ================================ */
.grid { display: grid; gap: 2rem; }
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ================================
   Benefits
   ================================ */
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.benefit-item { position: relative; padding-left: 5rem; }

.benefit-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.benefit-item h3 { font-size: 1.15rem; }
.benefit-item p { font-size: 0.95rem; color: var(--text-muted); }

/* ================================
   Procedure Steps
   ================================ */
.steps-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

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

.step-num {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #b89326);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-connector {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-connector::after {
    content: '→';
    color: var(--secondary);
    font-size: 1.5rem;
    opacity: 0.5;
}

.procedure-image { max-width: 800px; margin: 0 auto; }

/* ================================
   Pricing
   ================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-block { padding: 2rem; }
.price-block h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.price-row:last-child { border-bottom: none; }
.price-row p { margin-bottom: 0; }
.price-row strong { font-size: 1.05rem; color: var(--text-main); white-space: nowrap; }

.price-row-multi {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin: 0.5rem 0;
}

.price-row-multi div {
    flex: 1;
    padding: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row-multi div:last-child { border-right: none; }
.price-row-multi small { color: var(--text-muted); font-size: 0.8rem; }
.price-row-multi strong { font-size: 1.1rem; }

.badge-sm {
    font-size: 0.72rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    margin-top: 0.5rem;
}

.badge-gold {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--secondary);
    background: rgba(212, 175, 55, 0.08);
}

.cta-inline {
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-inline h3 { color: var(--secondary); }

/* ================================
   Schedule
   ================================ */
.schedule-section {
    max-width: 600px;
    margin: 0 auto;
}

.schedule-card {
    padding: 3rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.glass-hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    margin: 2rem 0;
}

.schedule-time h3 { color: var(--secondary); }

.schedule-days {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.day-badge {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}

.day-badge.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--secondary);
    color: var(--secondary);
}

.schedule-contacts {
    text-align: center;
    font-size: 1.05rem;
}

.schedule-contacts p { margin-bottom: 0.5rem; }
.schedule-contacts a { color: var(--secondary); }
.schedule-contacts a:hover { text-decoration: underline; }

/* ================================
   FAQ
   ================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    cursor: pointer;
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #fff;
}

.faq-item p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item:hover {
    transform: none;
    border-color: rgba(212, 175, 55, 0.25);
}

/* ================================
   Booking Form
   ================================ */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3rem;
}

.booking-info h2 { color: var(--secondary); font-size: 2.2rem; }

.booking-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-list { margin-top: 1rem; }
.contact-list li { margin-bottom: 0.8rem; font-size: 1.05rem; }

.glass-form {
    background: linear-gradient(135deg, rgba(15, 76, 58, 0.15) 0%, rgba(5, 20, 17, 0.4) 50%, rgba(15, 76, 58, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 16px;
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: #0a1f1a;
    color: #fff;
    padding: 0.5rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder { color: rgba(255,255,255,0.3); }

.btn-submit { width: 100%; font-size: 1.1rem; margin-top: 0.5rem; }

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--secondary);
    margin-top: 2px;
    cursor: pointer;
}

.form-consent label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    cursor: pointer;
}

.form-consent label a {
    color: var(--secondary);
    text-decoration: underline;
}

.form-consent label a:hover {
    color: #fff;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.8rem;
}

/* ================================
   CTA Banner
   ================================ */
.cta-banner-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(15, 76, 58, 0.2) 0%, transparent 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-banner-section h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.cta-banner-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ================================
   Footer
   ================================ */
.glass-footer {
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 20, 17, 0.85);
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h2 { font-size: 1.5rem; }
.footer-brand span { color: var(--secondary); }
.footer-brand p { color: var(--text-muted); }

.footer-links h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a:hover { color: var(--secondary); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================================
   Blog Pages
   ================================ */
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }

.blog-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

.card-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.blog-date { font-size: 0.85rem; color: var(--secondary); margin-bottom: 0.5rem; }
.card-content h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.card-content h3 a:hover { color: var(--secondary); }
.card-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; flex: 1; }

.read-more { color: var(--secondary); font-weight: 600; }

/* Article Single */
.single-article { max-width: 800px; margin-bottom: 4rem; }

.article-header { margin-bottom: 3rem; }
.article-title { font-size: 2.8rem; margin-bottom: 1.5rem; }

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-hero-image {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.large-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, #082d22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.typography { font-size: 1.1rem; }
.typography .lead { font-size: 1.25rem; color: #fff; margin-bottom: 2rem; font-weight: 300; }
.typography h2, .typography h3 { color: var(--secondary); margin-top: 2.5rem; margin-bottom: 1rem; }
.typography p { margin-bottom: 1.5rem; }
.typography ul, .typography ol { margin-bottom: 2rem; padding-left: 2rem; }
.typography li { margin-bottom: 0.5rem; }

.typography blockquote {
    margin: 2.5rem 0;
    padding: 2rem;
    border-left: 4px solid var(--secondary);
    background: rgba(212, 175, 55, 0.05);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

.typography blockquote cite {
    display: block;
    font-size: 1rem;
    font-family: var(--font-body);
    font-style: normal;
    color: var(--text-muted);
    margin-top: 1rem;
}

.typography hr { border: 0; height: 1px; background: var(--glass-border); margin: 3rem 0; }

.author-box { display: flex; align-items: center; gap: 2rem; }

.author-avatar {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info h4 { margin-bottom: 0.5rem; color: var(--secondary); }

/* ================================
   Animations
   ================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.stagger-1 { animation-delay: 0.15s; }
.stagger-2 { animation-delay: 0.3s; }
.stagger-3 { animation-delay: 0.45s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 991px) {
    .hero h1 { font-size: 3rem; }
    .booking-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .steps-row { flex-direction: column; gap: 1rem; }
    .step-connector { width: 100%; height: 20px; }
    .step-connector::after { content: '↓'; }
}

@media (max-width: 768px) {
    .main-nav, .nav-actions .nav-phone { display: none; }
    .burger { display: flex; }

    .main-nav.active {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(5, 20, 17, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        z-index: 99;
    }

    .main-nav.active ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .main-nav.active a { font-size: 1.2rem; }

    .hero h1 { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-badges { flex-direction: column; }
    .btn-large { width: 100%; }
    .glass-card { padding: 1.5rem; }
    .booking-wrapper { padding: 1.5rem; gap: 2rem; }
    .article-title { font-size: 2rem; }
    .article-meta { flex-direction: column; gap: 0.5rem; align-items: center; }
    .author-box { flex-direction: column; text-align: center; }
    .benefit-item { padding-left: 4rem; }
    .benefit-number { top: 1.2rem; left: 1.2rem; font-size: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 2rem; }
    .section-padding { padding: 4rem 0; }
}

/* ================================
   Cookie Banner
   ================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(5, 20, 17, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.2rem 2rem;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

#cookie-banner.cookie-hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text { flex: 1; }
.cookie-text p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.cookie-text a { color: var(--secondary); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-accept, .cookie-settings-btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

.cookie-settings-panel {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-setting {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-setting label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.cookie-setting input[type="checkbox"] { accent-color: var(--secondary); width: 16px; height: 16px; }

/* ================================
   Legal Modals
   ================================ */
.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal.legal-show { opacity: 1; }

.legal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.legal-content {
    position: relative;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.legal-modal.legal-show .legal-content { transform: translateY(0); }

.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h2 { font-size: 1.4rem; color: var(--secondary); margin-bottom: 0; }

.legal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.legal-close:hover { color: #fff; }

.legal-body {
    overflow-y: auto;
    padding: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-body h3 { color: #fff; font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-body h4 { color: var(--secondary); margin-top: 1rem; margin-bottom: 0.3rem; font-size: 1rem; }
.legal-body p { margin-bottom: 0.8rem; }
.legal-body ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: 0.3rem; }

.legal-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.footer-legal-links a:hover { color: var(--secondary); }
