:root {
    --bg-color: #030712;
    --text-color: #f9fafb;
    --text-muted: #9ca3af;
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --accent: #a855f7;
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --silver-gradient: linear-gradient(to bottom, #f3f4f6, #d1d5db, #9ca3af);
}

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

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

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(168, 85, 247, 0.15), transparent 25%);
    z-index: -2;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    /* Fallback */
    background-image: url('assets/hero.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -3;
    filter: blur(5px) brightness(0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.8), transparent);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--text-color);
    color: var(--text-color);
}

.lang-active {
    color: var(--text-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #fff;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.price-tag {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-card .icon-wrapper {
    display: inline-flex;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:nth-child(1) .icon-wrapper {
    color: #60a5fa;
    /* Blue for Globe */
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.benefit-card:nth-child(2) .icon-wrapper {
    color: #f472b6;
    /* Pink for Rocket */
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.2);
}

.benefit-card:nth-child(3) .icon-wrapper {
    color: #a78bfa;
    /* Purple for Gem */
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.benefit-card:nth-child(1):hover .icon-wrapper {
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.4);
    background: rgba(96, 165, 250, 0.1);
}

.benefit-card:nth-child(2):hover .icon-wrapper {
    box-shadow: 0 0 30px rgba(244, 114, 182, 0.4);
    background: rgba(244, 114, 182, 0.1);
}

.benefit-card:nth-child(3):hover .icon-wrapper {
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
}

.benefit-card .icon {
    width: 2.5rem;
    height: 2.5rem;
    filter: drop-shadow(0 0 5px currentColor);
}

.silver-text {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-card {
    background: linear-gradient(145deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7));
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.contact-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.seller-profile {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.seller-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.seller-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.seller-address-box {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    /* Removed box styling */
    padding: 1rem 0;
}

.seller-address-box .country {
    color: var(--text-color);
    font-weight: 600;
    margin-top: 0.25rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 200px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-item.whatsapp:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.contact-item.telegram:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.3);
    color: #38bdf8;
}

/* Price Disclaimer */
.price-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Imprint Section */
.imprint-section {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.imprint-section h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.imprint-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.imprint-section a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.6;
}

footer {
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 2rem;
    }
}

/* Price Asterisk Fix */
.price-asterisk {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.8;
}

/* Trust Section */
.trust-section {
    grid-column: 1 / -1;
    margin-top: 2rem;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.trust-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg) translateX(-150%);
    animation: shine-slow 6s infinite;
}

@keyframes shine-slow {
    0% {
        transform: skewX(-20deg) translateX(-150%);
    }

    20% {
        transform: skewX(-20deg) translateX(150%);
    }

    100% {
        transform: skewX(-20deg) translateX(150%);
    }
}

.trust-badge-icon {
    color: #fbbf24;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.4));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.trust-content {
    flex: 1;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #f3f4f6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-title i {
    color: #fbbf24;
    /* Amber/Gold */
}

.trust-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.trust-highlight {
    color: #e5e7eb;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .trust-title {
        justify-content: center;
    }
}