@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
    /* Color Palette - Warm Mode */
    --bg-dark: #120d0c;         /* Slate warm black */
    --bg-slate: #1c1514;        /* Slate warm dark */
    --bg-slate-light: #261f1e;  /* Slate warm lighter tint */
    --primary: #d6881e;         /* Warm amber golden */
    --primary-light: #f3a63b;   /* Bright amber golden */
    --primary-glow: rgba(214, 136, 30, 0.45);
    --accent: #540000;          /* Deep wine-red */
    --accent-light: #7c0b0b;    /* Rich wine-red highlight */
    --accent-glow: rgba(124, 11, 11, 0.4);
    --text: #f5f1ef;            /* Warm off-white */
    --text-muted: #b3a5a2;      /* Warm medium gray */
    --text-dark: #2a1f1e;       /* Deep warm charcoal */
    
    /* Glassmorphism System */
    --glass-bg: rgba(28, 21, 20, 0.65);
    --glass-bg-accent: rgba(84, 0, 0, 0.25);
    --glass-border: rgba(214, 136, 30, 0.18);
    --glass-border-hover: rgba(214, 136, 30, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(84, 0, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(214, 136, 30, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(18, 13, 12, 1) 0%, rgba(10, 7, 6, 1) 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.eyebrow {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 0 8px rgba(214, 136, 30, 0.3);
}

.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

/* Glassmorphic Components */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-bounce);
}

.glass-panel:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px 0 rgba(214, 136, 30, 0.1);
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 13, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(214, 136, 30, 0.15);
    transition: var(--transition-smooth);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-shadow: 0 0 10px rgba(214, 136, 30, 0.2);
}

.brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.brand span span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.main-nav a {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.main-nav a:hover, 
.main-nav .active {
    background: rgba(214, 136, 30, 0.1);
    color: var(--primary-light);
    border-color: rgba(214, 136, 30, 0.2);
    text-shadow: 0 0 10px rgba(214, 136, 30, 0.3);
}

.menu-btn {
    display: none;
    background: rgba(214, 136, 30, 0.1);
    color: var(--primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-btn:hover {
    background: rgba(214, 136, 30, 0.2);
    border-color: var(--primary);
}

/* Buttons */
.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 1.8rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-dark);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(214, 136, 30, 0.35);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: 0.75s;
    opacity: 0;
}

.btn:hover::before {
    left: 120%;
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px var(--primary-glow);
    color: #fff;
}

.btn:active {
    transform: translateY(-1px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.btn.secondary:hover {
    background: rgba(214, 136, 30, 0.08);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn.sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(214, 136, 30, 0.25);
}

/* Trust Badges */
.trust {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.trust li {
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(214, 136, 30, 0.04);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
}

.trust li::before {
    content: '🛡️';
    font-size: 0.95rem;
}

/* Sections */
.section {
    padding: 72px 0;
}

.section-title-wrap {
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.section>p {
    max-width: 850px;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Grids */
.cards {
    display: grid;
    gap: 24px;
    margin-top: 30px;
}

.three {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.four {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Hero Elements */
.hero, .page-hero {
    padding: 96px 0;
    background: radial-gradient(circle at 80% 20%, rgba(84, 0, 0, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(214, 136, 30, 0.12) 0%, transparent 45%);
    border-bottom: 1px solid rgba(214, 136, 30, 0.08);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-art {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(84, 0, 0, 0.35)) drop-shadow(0 10px 15px rgba(214, 136, 30, 0.15));
    border-radius: 28px;
    border: 1px solid rgba(214, 136, 30, 0.15);
    background: rgba(18, 13, 12, 0.4);
    padding: 16px;
    transition: var(--transition-bounce);
}

.hero-art:hover {
    transform: scale(1.02) rotate(1deg);
    border-color: var(--primary);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

/* Article / Cards Styling */
article, .promo-card, .contact-form, .proscons > div {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-bounce);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

article:hover, .promo-card:hover, .proscons > div:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(214, 136, 30, 0.15);
}

.icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 4px 8px rgba(214, 136, 30, 0.3));
}

/* Glassmorphic Tables */
.table-wrap {
    overflow-x: auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    margin-top: 30px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* Custom Scrollbar for overflow table */
.table-wrap::-webkit-scrollbar {
    height: 8px;
}
.table-wrap::-webkit-scrollbar-track {
    background: rgba(18, 13, 12, 0.3);
    border-radius: 0 0 24px 24px;
}
.table-wrap::-webkit-scrollbar-thumb {
    background: rgba(214, 136, 30, 0.3);
    border-radius: 4px;
}
.table-wrap::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
}

th, td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(214, 136, 30, 0.08);
    font-size: 0.98rem;
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: 0;
}

th {
    background: rgba(84, 0, 0, 0.35);
    color: var(--primary-light);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--glass-border);
}

tr {
    transition: var(--transition-smooth);
}

tbody tr:hover {
    background: rgba(214, 136, 30, 0.03);
}

/* Lists styling */
.check {
    display: grid;
    gap: 14px;
    padding: 0;
    list-style: none;
    margin: 1.5rem 0;
}

.check li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 1.05rem;
}

.check li::before {
    content: '✓';
    color: var(--primary-light);
    font-weight: 900;
    background: rgba(214, 136, 30, 0.15);
    border: 1px solid rgba(214, 136, 30, 0.3);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 3px;
    box-shadow: 0 0 8px rgba(214, 136, 30, 0.2);
}

/* Steps list */
.steps {
    counter-reset: step-counter;
    display: grid;
    gap: 20px;
    padding: 0;
    list-style: none;
    margin: 2.5rem 0;
}

.steps li {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: var(--transition-bounce);
    box-shadow: var(--glass-shadow);
}

.steps li:hover {
    border-color: var(--glass-border-hover);
    transform: translateX(6px);
}

.steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(214, 136, 30, 0.3);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-bounce);
}

.step-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(214, 136, 30, 0.12);
}

.step-img-wrap {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214, 136, 30, 0.05);
    border: 1px dashed rgba(214, 136, 30, 0.2);
    border-radius: 50%;
    padding: 20px;
    transition: var(--transition-smooth);
}

.step-card:hover .step-img-wrap {
    background: rgba(214, 136, 30, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
}

.step-img-wrap img, .step-img-wrap svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-badge {
    background: rgba(214, 136, 30, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(214, 136, 30, 0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    letter-spacing: 0.05em;
}

/* Accordion FAQ Styling */
.faq-wrap {
    margin-top: 30px;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--primary-light);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding-inline: 24px;
}

.faq-item.open .faq-content {
    padding-bottom: 24px;
}

.faq-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Pros and Cons */
.proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.proscons > div {
    padding: 28px;
}

.proscons h3 {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.5rem;
}

.proscons .pro h3 {
    color: #4ade80;
    border-bottom-color: rgba(74, 222, 128, 0.15);
}

.proscons .con h3 {
    color: #f87171;
    border-bottom-color: rgba(248, 113, 113, 0.15);
}

.proscons ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.proscons ul li {
    position: relative;
    padding-left: 24px;
    font-size: 0.98rem;
    color: var(--text-muted);
}

.proscons .pro ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 800;
}

.proscons .con ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f87171;
    font-weight: 800;
}

/* Contact Form & Inputs Styling */
.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(18, 13, 12, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    background: rgba(18, 13, 12, 0.85);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

/* Footer styling */
.site-footer {
    background: #0d0909;
    border-top: 1px solid rgba(214, 136, 30, 0.15);
    color: var(--text-muted);
    padding: 64px 0 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 40px;
}

.site-footer h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.site-footer a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.foot {
    margin-bottom: 1rem;
}

.site-footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.linklike {
    background: none;
    border: 0;
    color: var(--primary-light);
    padding: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    text-shadow: 0 0 8px rgba(214, 136, 30, 0.1);
}

.linklike:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    font-size: 0.88rem;
}

.footer-bottom span:last-child {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: var(--primary-light);
}

/* Legal Pages Typography */
.legal-copy {
    max-width: 900px;
    margin-inline: auto;
}

.legal-copy h2 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.legal-copy h3 {
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-light);
}

.legal-copy p {
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.legal-copy ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.legal-copy ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Cookie Banner & Preferences Modal */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(120px);
    width: min(920px, 92%);
    z-index: 200;
    background: rgba(28, 21, 20, 0.9);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 20px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    opacity: 0;
}

.cookie-banner.show {
    display: flex;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.92rem;
    color: var(--text);
    max-width: 580px;
}

.cookie-banner .btn-group {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 7, 6, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    display: flex;
    opacity: 1;
}

.modal-card {
    width: min(560px, 92%);
    background: var(--bg-slate);
    border: 1px solid var(--primary);
    border-radius: 28px;
    padding: 36px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.open .modal-card {
    transform: translateY(0);
}

.modal-card h2 {
    margin-bottom: 1rem;
}

.modal-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    border: 0;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(214, 136, 30, 0.15);
    color: var(--primary-light);
    transform: rotate(90deg);
}

.cookie-options {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-option-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-option-label:hover {
    background: rgba(214, 136, 30, 0.03);
    border-color: rgba(214, 136, 30, 0.15);
}

.cookie-option-label input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cookie-option-label .opt-info {
    display: grid;
    gap: 2px;
}

.cookie-option-label .opt-title {
    font-weight: 700;
    color: var(--text);
    font-size: 0.95rem;
}

.cookie-option-label .opt-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Brand specific styling (Melbet Reseña) */
.brand-hero {
    background: radial-gradient(circle at 80% 20%, rgba(84, 0, 0, 0.35) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(214, 136, 30, 0.15) 0%, transparent 45%),
                linear-gradient(180deg, rgba(18, 13, 12, 0.2) 0%, var(--bg-dark) 100%);
    position: relative;
}

.brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d6881e' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.brand-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 2.5rem 0;
}

.feature-box {
    background: linear-gradient(135deg, rgba(84, 0, 0, 0.1) 0%, rgba(28, 21, 20, 0.4) 100%);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.feature-box .f-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

/* Media Queries (Responsive System) */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    
    .hero-grid .cta-row {
        justify-content: center;
    }
    
    .hero-grid .trust {
        justify-content: center;
    }
    
    .hero-art {
        max-width: 480px;
        margin-inline: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 860px) {
    .menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 4%;
        right: 4%;
        background: rgba(28, 21, 20, 0.96);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .main-nav.open {
        display: flex;
    }
    
    .main-nav a {
        padding: 12px 18px;
        border-radius: 12px;
        text-align: center;
    }
    
    .split, .proscons {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    
    .cookie-banner p {
        max-width: 100%;
    }
    
    .cookie-banner .btn-group {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 580px) {
    .section {
        padding: 48px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .modal-card {
        padding: 24px;
    }
    
    .modal-close {
        right: 16px;
        top: 16px;
    }
    
    .steps li {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .steps li::before {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
}
