/* === BASE STYLES === */:root {
    --color-1: #0a0118;
    --color-2: #1a0b2e;
    --color-3: #2d1b4e;
    --color-4: #c9a961;
    --color-5: #f4d35e;
    --color-6: #ff4d8f;
    --color-7: #b8b5cc;
    --color-8: #ffffff;
    --color-9: rgba(201, 169, 97, 0.15);
    --color-10: rgba(255, 77, 143, 0.2);
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 40px;
    --space-5: 64px;
    --space-6: 96px;
    --radius-1: 8px;
    --radius-2: 16px;
    --radius-3: 24px;
    --shadow-1: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-2: 0 20px 60px rgba(201, 169, 97, 0.25);
    --gradient-1: linear-gradient(135deg, #c9a961 0%, #f4d35e 100%);
    --gradient-2: linear-gradient(135deg, #ff4d8f 0%, #c9a961 100%);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }

html, body {
    background: var(--color-1);
    color: var(--color-8);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 var(--space-3);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { margin: 0 0 var(--space-2); }

a {
    color: var(--color-4);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover { color: var(--color-5); }

.container {
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 var(--space-3);
    width: 100%;
}

.cta-button {
    background: var(--gradient-1);
    border: none;
    border-radius: 999px;
    color: var(--color-1);
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}

.cta-button:hover {
    box-shadow: 0 15px 40px rgba(244, 211, 94, 0.4);
    color: var(--color-1);
    transform: translateY(-3px);
}

.cta-button.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-4);
    color: var(--color-4);
}

.cta-button.btn-secondary:hover {
    background: var(--color-4);
    color: var(--color-1);
}

.info-card {
    background: linear-gradient(160deg, var(--color-2) 0%, var(--color-3) 100%);
    border: 1px solid var(--color-9);
    border-radius: var(--radius-2);
    box-shadow: var(--shadow-1);
    overflow: hidden;
    padding: var(--space-4);
    position: relative;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}

.info-card:hover {
    border-color: var(--color-4);
    box-shadow: var(--shadow-2);
    transform: translateY(-8px);
}

.info-card::before {
    background: var(--gradient-1);
    content: '';
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.4s;
    width: 100%;
}

.info-card:hover::before { opacity: 1; }

figure.content-image {
    border-radius: var(--radius-2);
    margin: 0 0 var(--space-3);
    overflow: hidden;
    position: relative;
}

figure.content-image img {
    display: block;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    transition: transform 0.6s;
    width: 100%;
}

figure.content-image:hover img { transform: scale(1.05); }

figure.content-image.portrait img { max-height: 320px; }
figure.content-image.wide img { max-height: 380px; }

.checklist, .feature-list {
    list-style: none;
    margin: 0 0 var(--space-3);
    padding: 0;
}

.checklist li, .feature-list li {
    padding: 12px 0 12px 36px;
    position: relative;
}

.checklist li::before, .feature-list li::before {
    background: var(--gradient-1);
    border-radius: 50%;
    color: var(--color-1);
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    height: 22px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 22px;
}

.table-responsive {
    background: var(--color-2);
    border: 1px solid var(--color-9);
    border-radius: var(--radius-2);
    margin: var(--space-3) 0;
    overflow-x: auto;
}

.comparison-table {
    border-collapse: collapse;
    width: 100%;
}

.comparison-table th {
    background: var(--gradient-1);
    color: var(--color-1);
    font-family: var(--font-display);
    font-weight: 700;
    padding: var(--space-3);
    text-align: left;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.comparison-table td {
    border-top: 1px solid var(--color-9);
    color: var(--color-7);
    padding: var(--space-3);
}

.comparison-table tr:hover td {
    background: rgba(201, 169, 97, 0.05);
    color: var(--color-8);
}

.stat {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin: var(--space-2) 0 0;
}

/* === LAYOUT STYLES === */
#site-header, .site-header {
    backdrop-filter: blur(20px);
    background: rgba(10, 1, 24, 0.85);
    border-bottom: 1px solid var(--color-9);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-inner {
    align-items: center;
    display: flex;
    gap: var(--space-3);
    justify-content: space-between;
    padding: var(--space-2) var(--space-3);
}

.logo {
    align-items: center;
    color: var(--color-8);
    display: flex;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav { display: flex; }

.nav-list {
    align-items: center;
    display: flex;
    gap: var(--space-4);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-7);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-list a::after {
    background: var(--gradient-1);
    bottom: -6px;
    content: '';
    height: 2px;
    left: 0;
    position: absolute;
    transition: width 0.3s;
    width: 0;
}

.nav-list a:hover { color: var(--color-8); }
.nav-list a:hover::after { width: 100%; }

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    background: var(--color-4);
    border-radius: 2px;
    display: block;
    height: 3px;
    transition: transform 0.3s, opacity 0.3s;
    width: 28px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

#site-footer, .site-footer {
    background: var(--color-2);
    border-top: 1px solid var(--color-9);
    margin-top: var(--space-6);
    padding: var(--space-5) 0 var(--space-3);
}

.footer-inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: space-between;
}

.footer-brand p {
    color: var(--color-7);
    font-size: 0.9rem;
    margin-top: var(--space-2);
}

.footer-nav ul {
    display: flex;
    gap: var(--space-3);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav a { color: var(--color-7); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .main-nav {
        background: var(--color-2);
        border-bottom: 1px solid var(--color-9);
        left: 0;
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        transition: max-height 0.4s ease;
        width: 100%;
    }
    
    .main-nav.active { max-height: 400px; }
    
    .nav-list {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: var(--space-2) var(--space-3);
    }
    
    .nav-list li { border-bottom: 1px solid var(--color-9); }
    .nav-list li:last-child { border-bottom: none; }
    .nav-list a { display: block; padding: var(--space-2) 0; }
    
    .header-inner .cta-button {
        font-size: 0.85rem;
        max-width: 140px;
        overflow: hidden;
        padding: 10px 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    
    .main-nav {
        background: var(--color-2);
        border-bottom: 1px solid var(--color-9);
        left: 0;
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        transition: max-height 0.4s ease;
        width: 100%;
    }
    
    .main-nav.active { max-height: 400px; }
    
    .nav-list {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: var(--space-2) var(--space-3);
    }
    
    .nav-list li { border-bottom: 1px solid var(--color-9); }
    .nav-list li:last-child { border-bottom: none; }
    .nav-list a { display: block; padding: var(--space-2) 0; }
    
    .header-inner .cta-button {
        font-size: 0.85rem;
        max-width: 140px;
        overflow: hidden;
        padding: 10px 18px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    main section { padding: var(--space-5) 0; }
    .hero-section { padding: var(--space-5) 0; }
    .hero-cta-group .cta-button { width: 100%; text-align: center; }
}