:root {
    --primary: #FF6B00;
    --primary-hover: #e65a00;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor used */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow { max-width: 800px; }

/* Custom Cursor Styling */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease-out;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }

/* Typography & Buttons */
.text-orange { color: var(--primary); }

.section { padding: 100px 0; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--text-light);
    padding: 13px 33px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-left: 15px;
}

/* Hero Section */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
}

.badge {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
}

.trust-badges {
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.trust-badges span {
    font-size: 14px;
    color: var(--text-dim);
}

.levitate {
    animation: float 6s ease-in-out infinite;
    width: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Course Cards */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    transition: var(--transition);
}

.course-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.course-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Pricing & Scarcity */
.pricing-box {
    margin-top: 80px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--primary);
}

.price {
    font-size: 5rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span { font-size: 1.5rem; }

.progress-container {
    max-width: 400px;
    margin: 30px auto 0;
}

.progress-bar {
    background: #222;
    height: 10px;
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    background: var(--primary);
    width: 96%; /* Matches 482/500 */
    height: 100%;
}

/* Guarantee Section */
.guarantee-card {
    background: var(--primary);
    color: white;
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
}

.guarantee-card i { font-size: 60px; margin-bottom: 20px; }

/* FAQ Accordion */
.accordion-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-dim);
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Contact Form */
.form-container {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
}

.input-group { margin-bottom: 20px; }

input, select {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.pulse-btn {
    width: 100%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 1000;
}

.floating-whatsapp a { color: white; }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .cursor, .cursor-follower { display: none; }
    * { cursor: auto; }
}