/* Modern CSS with a different color scheme from the previous site */
:root {
    /* Color Palette - Purple & Gold theme */
    --primary: #6C22A6;
    --secondary: #FFC436;
    --dark: #181818;
    --light: #FFFFFF;
    --gray: #9CA3AF;
    --gradient: linear-gradient(45deg, #6C22A6, #FFC436);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
    background-color: var(--dark);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
    line-height: 1.3;
    font-weight: 700;
    color: var(--light);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--gray);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

/* Layout Components */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background-color: rgba(24, 24, 24, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-svg {
    margin-right: var(--space-sm);
}

h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: var(--space-lg);
}

.nav-menu li a {
    color: var(--light);
    font-weight: 600;
    position: relative;
    padding-bottom: var(--space-xs);
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #120E29, #2D1B69);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 196, 54, 0.1), transparent 60%);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: var(--light);
    opacity: 0.8;
}

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

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient);
    color: var(--light);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--light);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFC436, #6C22A6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

/* Pulse animation for CTA */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 196, 54, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 196, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 196, 54, 0);
    }
}

/* Features Section */
.features {
    padding: var(--space-xl) var(--space-lg);
    background-color: #1A1A1A;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-card {
    background-color: #232323;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: var(--space-md);
}

/* How It Works Section */
.how-it-works {
    padding: var(--space-xl) var(--space-lg);
    background-color: #232323;
    text-align: center;
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    text-align: left;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--gradient);
    color: var(--light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: var(--space-sm);
}

/* Try Now Section */
.try-now {
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(135deg, #1A0C33, #301860);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.try-now::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 54, 0.2), transparent 70%);
    top: -100px;
    right: -100px;
}

.try-now::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 34, 166, 0.2), transparent 70%);
    bottom: -50px;
    left: -50px;
}

.try-now-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.try-now-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
    color: var(--light);
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: #121212;
    padding: var(--space-lg);
    color: var(--gray);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.footer-logo svg {
    margin-right: var(--space-sm);
}

.footer-logo span {
    color: var(--light);
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.footer-copyright p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: var(--space-xl);
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #181818;
        padding: var(--space-lg) 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: var(--space-md) 0;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: var(--space-md);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
}
