@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #060b14;
    --bg-card: #0f1724;
    --bg-card-hover: #162032;
    --accent-gold: #FFD700;
    --accent-gold-gradient: linear-gradient(135deg, #FFD700, #FDB931);
    --accent-blue: #00B4D8;
    --accent-emerald: #00FF9D;
    --text-main: #E0E6ED;
    --text-muted: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(15, 23, 36, 0.7);
    --neon-glow: 0 0 10px rgba(255, 215, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Base Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 60px 0;
    /* Increased spacing */
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Centering text */
    text-align: center;
    /* Fallback */
    padding: 18px 40px;
    /* Larger buttons */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    min-width: 200px;
    /* Ensure uniform width */
}

/* ... existing btn styles ... */

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

/* Hero Section */
/* ... */

.hero-content h1 {
    font-size: 4.5rem;
    /* Larger font */
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.5rem;
    /* Larger font */
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
}

.btn-primary {
    background: var(--accent-gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    background: rgba(6, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: top 0.4s ease;
    padding: 10px 0;
}

.sticky-header.visible {
    top: 0;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.sticky-text span {
    color: var(--accent-gold);
    font-weight: 700;
}

.sticky-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 50px 0 100px;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(0, 180, 216, 0.05), transparent 40%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    position: relative;
    z-index: 2;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.hero-image-wrapper:hover .hero-image {
    transform: rotateY(0) rotateX(0);
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 36, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.badge-top-right {
    top: -20px;
    right: -20px;
}

.badge-bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Grid */
.features {
    background: #090f1a;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Proof Section */
.proof {
    background: linear-gradient(to bottom, var(--bg-dark), #0a111f);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.proof-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.proof-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.proof-content {
    padding: 25px;
}

.proof-title {
    color: var(--accent-emerald);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}

.verified-badge {
    display: inline-block;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-emerald);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.comparison-table th.us-col {
    color: var(--accent-gold);
    font-size: 1.4rem;
    width: 35%;
}

.comparison-table td strong {
    color: var(--text-main);
}

.comparison-table td.check {
    color: var(--accent-emerald);
    font-weight: 700;
}

.comparison-table td.cross {
    color: #ef4444;
}

/* Pricing Section */
.pricing {
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.02), transparent 70%);
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Left: Stack */
.pricing-left {
    text-align: left;
}

.stack-title {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stack-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stack-list .icon {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.stack-content strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.stack-content span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Right: Modern Card */
.modern-card {
    background: rgba(15, 23, 36, 0.9);
    border: 1px solid var(--accent-gold);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.price-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    margin: 15px 0 5px;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 5px;
    font-family: 'Oswald';
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Oswald';
    color: #fff;
}

.price-original {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.crypto-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--accent-emerald);
    margin-bottom: 25px;
    border: 1px dashed rgba(0, 255, 157, 0.3);
}

.btn-block {
    width: 100%;
}

.guarantee {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mobile Pricing */
@media (max-width: 768px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-left {
        order: 2;
        /* Put features below price on mobile */
    }

    .modern-card {
        padding: 30px 20px;
        width: 100%;
        /* Use full width of container */
        max-width: 360px;
        margin: 0 auto;
    }

    .amount {
        font-size: 4rem;
    }

    .stack-list .icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
}

.faq-toggle {
    color: var(--accent-gold);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    text-align: center;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-main);
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modals & Popups */
.popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 36, 0.95);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 20px;
    z-index: 900;
    max-width: 320px;
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.popup.show {
    transform: translateX(0);
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .bg-animation {
        /* Hide complex background effects on mobile if needed */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .comparison-wrapper {
        padding: 20px;
    }
}