:root {
    --primary: #FF6B00;
    --primary-hover: #e65e00;
    --secondary: #1A1A1A;
    --background: #050505;
    --surface: #121212;
    --text-main: #FFFFFF;
    --text-muted: #B0B0B0;
    --border: #333333;
    --success: #00FF94;
    --danger: #FF2E2E;
    
    --container-padding: 20px;
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    width: 100%;
    max-width: 400px;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn:active {
    transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; }
h2 { font-size: 2rem; font-weight: 700; color: #fff; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* Sections */
section {
    padding: 60px 0;
}

/* Header/Hero */
.hero {
    background: radial-gradient(circle at center, #1a0f00 0%, var(--background) 70%);
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 0, 0.3);
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 20px 0;
}

.small-print {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Cards */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--primary);
}

/* Lists */
.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cross-list li::before {
    content: "✕";
    color: var(--danger);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 20px;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
