:root {
    --bg-body: #050505;
    --bg-surface: #0a0a0a;
    --glass-card: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --primary: #D4AF37;
    --primary-hover: #F4C430;
    --text-main: #E0E0E0;
    --text-muted: #888888;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --header-height: 90px;
    --radius: 2px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.4s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
    border-left: 1px solid var(--glass-border);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), #8a6e2f);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-body);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-surface);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: #000;
}

header {
    height: var(--header-height);
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    height: 120px;
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    height: 100px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: white;
}

.nav-links a.cta-link {
    color: var(--primary);
}

.hamburger {
    display: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.8rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #151515 0%, #000000 100%);
    position: relative;
    padding-top: 80px; 
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

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

.card {
    background: var(--glass-card);
    padding: 40px;
    border: 1px solid var(--glass-border);
    transition: 0.4s;
    position: relative;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.card h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-tag {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-top: 20px;
}

footer {
    background: #000;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
    color: var(--text-muted);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 125px;
    width: auto;
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 0.85rem;
    border: 1px solid var(--glass-border);
    padding: 8px 24px;
    border-radius: 50px;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.copyright {
    margin-top: 40px;
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 1px;
    line-height: 2;
}

.dev-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.dev-credit a:hover {
    color: white;
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    html, body, a, button, input, select, textarea {
        cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L13.5 28L17.5 17.5L28 13.5L2 2Z' fill='%23D4AF37' stroke='white' stroke-width='1' stroke-linejoin='round'/%3E%3C/svg%3E"), auto;
    }

    a:hover, button:hover, .btn:hover, .hamburger:hover, .card:hover, .nav-links a:hover {
        cursor: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L13.5 28L17.5 17.5L28 13.5L2 2Z' fill='%23F4C430' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E"), pointer;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }
    
    .card {
        padding: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-logo {
        height: 90px;
    }
}