/* Global Variables & Reset */
:root {
    --primary-color: #ff4500;
    /* Orange Red */
    --primary-gradient: linear-gradient(135deg, #ff4500, #ff0000);
    --secondary-color: #1a1a1a;
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333;
    --accent-glow: rgba(255, 69, 0, 0.4);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--accent-glow), 0 0 10px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 5px var(--accent-glow);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.reveal {
    opacity: 1;
    /* Changed from 0 to 1 to ensure visibility */
    transform: translateY(0);
    transition: all 0.4s ease-out;
    /* Faster transition */
}

/* Only hide if JS is loaded and we want animation */
.reveal.pending {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-3px);
}

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Animation */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 24px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 69, 0, 0.05) 100%);
    opacity: 0;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 69, 0, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: 0.4s;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 15px var(--primary-color);
}

.card-title {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
}

.card-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-benefits {
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
}

.card-benefits li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-benefits li:last-child {
    margin-bottom: 0;
}

.card-benefits li i {
    color: var(--primary-color);
    font-size: 14px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.2);
    background: rgba(255, 69, 0, 0.1);
    padding: 4px;
    border-radius: 50%;
}

.card-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.card-actions .btn {
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
}

/* Pricing Page Styles */
.pricing-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.popular {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 15px var(--accent-glow);
    animation: float 3s ease-in-out infinite;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin: 25px 0;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Payment Page */
.payment-container {
    max-width: 600px;
    margin: 140px auto 80px;
    background: #0f0f0f;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.form-control {
    width: 100%;
    padding: 18px;
    background: #050505;
    border: 1px solid #333;
    border-radius: 12px;
    color: white;
    font-family: var(--font-main);
    transition: 0.3s;
    font-size: 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.1);
}

/* Footer */
.footer {
    background: black;
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .h1 {
        font-size: 42px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        padding: 30px;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
        animation: fadeInUp 0.3s ease-out;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .card {
        padding: 25px;
    }
}