.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .8s ease, visibility .8s ease
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden
}

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 110, .2);
    border-radius: 10px;
    overflow: hidden
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #c9a96e, #d4b87a);
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards
}

@keyframes loading {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #0a0a0a
}

::-webkit-scrollbar-thumb {
    background: #c9a96e;
    border-radius: 10px
}

.navbar {
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.navbar.scrolled {
    background: rgba(10, 10, 10, .95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.nav-link {
    position: relative;
    transition: color .3s ease
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: width .3s ease
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-link:hover,
.nav-link.active {
    color: #c9a96e
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(30px);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto
}

.mobile-menu.open {
    transform: translateX(0)
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    padding: 15px 0;
    transition: color .3s ease, transform .3s ease;
    opacity: 0;
    transform: translateY(20px)
}

.mobile-menu.open a {
    opacity: 1;
    transform: translateY(0)
}

.mobile-menu.open a:nth-child(1) {
    transition-delay: .1s
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: .15s
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: .2s
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: .25s
}

.mobile-menu.open a:nth-child(5) {
    transition-delay: .3s
}

.mobile-menu.open a:nth-child(6) {
    transition-delay: .35s
}

.mobile-menu.open a:nth-child(7) {
    transition-delay: .4s
}

.mobile-menu.open a:nth-child(8) {
    transition-delay: .45s
}

.mobile-menu a:hover {
    color: #c9a96e;
    transform: translateX(10px)
}

.hamburger {
    z-index: 9999;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    border-radius: 2px
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #c9a96e
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px)
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #c9a96e
}

.page-hero {
    background: linear-gradient(135deg, rgba(10, 10, 10, .85) 0%, rgba(26, 26, 46, .7) 100%), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80') center/cover no-repeat;
    min-height: 50vh
}

.section-subtitle {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: .75rem
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, #d4b87a)
}

.btn-primary {
    background: linear-gradient(135deg, #c9a96e, #d4b87a);
    color: #0a0a0a;
    transition: all .4s ease;
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4b87a, #e5cc9a);
    transition: left .4s ease;
    z-index: 0
}

.btn-primary:hover::before {
    left: 0
}

.btn-primary span {
    position: relative;
    z-index: 1
}

.btn-outline {
    border: 1px solid #c9a96e;
    color: #c9a96e;
    transition: all .4s ease
}

.btn-outline:hover {
    background: #c9a96e;
    color: #0a0a0a
}

.floating {
    animation: floating 6s ease-in-out infinite
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-20px)
    }
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #c9a96e;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform .15s ease;
    transform: translate(-50%, -50%)
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(201, 169, 110, .1)
}

@media(max-width:768px) {
    .custom-cursor {
        display: none
    }
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible
}

/* TOGGLE */
.toggle-container {
    background: rgba(42, 42, 58, .5);
    border: 1px solid rgba(201, 169, 110, .15);
    border-radius: 50px;
    padding: 4px;
    display: inline-flex
}

.toggle-btn {
    padding: .5rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    background: transparent;
    color: #9ca3af;
    letter-spacing: 1px;
    text-transform: uppercase
}

.toggle-btn.active {
    background: linear-gradient(135deg, #c9a96e, #d4b87a);
    color: #0a0a0a
}

.save-badge {
    background: linear-gradient(135deg, #c9a96e, #d4b87a);
    color: #0a0a0a;
    font-family: 'Outfit', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 6px;
    vertical-align: middle
}

/* PRICING CARD */
.pricing-card {
    background: linear-gradient(145deg, rgba(42, 42, 58, .25), rgba(26, 26, 46, .45));
    border: 1px solid rgba(201, 169, 110, .08);
    border-radius: 6px;
    transition: all .5s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(201, 169, 110, .2), rgba(201, 169, 110, .05));
    transition: all .4s ease
}

.pricing-card:hover {
    border-color: rgba(201, 169, 110, .25);
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(201, 169, 110, .06)
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, #c9a96e, #d4b87a)
}

.pricing-card.featured {
    border-color: rgba(201, 169, 110, .3);
    background: linear-gradient(145deg, rgba(201, 169, 110, .06), rgba(26, 26, 46, .5))
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #c9a96e, #d4b87a)
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(201, 169, 110, .15), transparent 50%);
    z-index: -1
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #c9a96e, #d4b87a);
    color: #0a0a0a;
    font-family: 'Outfit', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    padding: 6px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 6px 0 20px
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c9a96e, #d4b87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.price-monthly {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem
}

.price-yearly {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem
}

/* COMPARISON TABLE */
.comparison-table {
    border: 1px solid rgba(201, 169, 110, .1);
    border-radius: 6px;
    overflow: hidden
}

.comparison-table th {
    background: rgba(201, 169, 110, .08);
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(201, 169, 110, .1)
}

.comparison-table th:first-child {
    text-align: left;
    color: #fff
}

.comparison-table td {
    padding: .875rem 1rem;
    border-bottom: 1px solid rgba(201, 169, 110, .05);
    font-family: 'Inter', sans-serif;
    font-size: .875rem;
    color: #b0b0b0;
    text-align: center
}

.comparison-table td:first-child {
    text-align: left;
    color: #fff;
    font-weight: 500
}

.comparison-table tr:last-child td {
    border-bottom: none
}

.comparison-table tr:hover td {
    background: rgba(201, 169, 110, .02)
}

.comparison-table .check {
    color: #c9a96e
}

.comparison-table .cross {
    color: #4a4a5a
}

/* ADDON CARD */
.addon-card {
    background: linear-gradient(145deg, rgba(42, 42, 58, .2), rgba(26, 26, 46, .4));
    border: 1px solid rgba(201, 169, 110, .08);
    border-radius: 4px;
    transition: all .4s ease
}

.addon-card:hover {
    border-color: rgba(201, 169, 110, .25);
    transform: translateY(-5px)
}

/* FAQ */
.faq-item {
    border: 1px solid rgba(201, 169, 110, .08);
    border-radius: 4px;
    transition: all .4s ease;
    overflow: hidden;
    margin-bottom: .75rem
}

.faq-item:hover {
    border-color: rgba(201, 169, 110, .15)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.faq-item.open .faq-answer {
    max-height: 500px
}

.faq-icon {
    transition: transform .3s ease
}

.faq-item.open .faq-icon {
    transform: rotate(180deg)
}

/* COUNTER */
.counter-item {
    border-right: 1px solid rgba(201, 169, 110, .2)
}

.counter-item:last-child {
    border-right: none
}

@media(max-width:768px) {
    .counter-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 110, .2)
    }

    .counter-item:last-child {
        border-bottom: none
    }
}

/* TESTIMONIAL */
.testimonial-mini {
    background: linear-gradient(145deg, rgba(42, 42, 58, .3), rgba(26, 26, 46, .5));
    border: 1px solid rgba(201, 169, 110, .1);
    border-radius: 4px;
    transition: all .4s ease
}

.testimonial-mini:hover {
    border-color: rgba(201, 169, 110, .25);
    transform: translateY(-5px)
}

/* CTA */
.cta-bg {
    background: linear-gradient(135deg, rgba(10, 10, 10, .85) 0%, rgba(26, 26, 46, .7) 100%), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=80') center/cover no-repeat fixed
}

@media(max-width:768px) {
    .cta-bg {
        background-attachment: scroll
    }
}

@supports(-webkit-touch-callout:none) {
    .cta-bg {
        background-attachment: scroll
    }
}

/* GUARANTEE */
.guarantee-card {
    background: linear-gradient(145deg, rgba(42, 42, 58, .3), rgba(26, 26, 46, .5));
    border: 1px solid rgba(201, 169, 110, .15);
    border-radius: 4px
}

/* RESPONSIVE TABLE */
@media(max-width:768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }

    .comparison-table table {
        min-width: 700px
    }
}