:root {
    --primary: #6366f1;
    --accent: #a855f7;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --danger: #ef4444;
    --success: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
}

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

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo span {
    color: var(--primary);
}

.nav-btn {
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    background: radial-gradient(circle at top, #1e1b4b 0%, var(--dark-bg) 70%);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--accent);
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.product-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-logo {
    width: 50px;
    height: 50px;
}

.badge {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 50px; /* Force uniform height */
}

.pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
}

.sasta-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.buy-btn:hover {
    background: var(--primary);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}