/* Global Styles */
:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --text-color: #f0f0f0;
    --text-muted: #a0a0a0;
    --primary-color: #FFD700; /* Gold/Yellow */
    --primary-hover: #e6c200;
    --accent-color: #FFA500; /* Orange */
    --border-color: #333;
    --font-main: 'Inter', sans-serif;
    --container-width: 1100px;
    --spacing-section: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

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

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    width: 100%;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .dashboard-mockup {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

.mockup-body {
    display: grid;
    gap: 15px;
}

.stat-card {
    background-color: #222;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-trend {
    font-size: 0.8rem;
    color: #27c93f;
    background-color: rgba(39, 201, 63, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.message-preview {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg-bubble {
    background-color: #333;
    padding: 10px 15px;
    border-radius: 15px 15px 15px 0;
    font-size: 0.9rem;
    align-self: flex-start;
    max-width: 80%;
}

.msg-bubble.user {
    background-color: var(--primary-color);
    color: #000;
    border-radius: 15px 15px 0 15px;
    align-self: flex-end;
}

/* Problem Section */
.problem-section {
    background-color: #0f0f0f;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Solution Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #222;
    line-height: 1;
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Why Different */
.different-section {
    background-color: #0f0f0f;
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.benefits-list li {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.4rem;
}

/* Pricing */
.pricing-card {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background-color: #1a1a1a;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.highlight-bg {
    background-color: var(--primary-color);
    color: #000;
}

.pricing-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

.price-sub {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid #333;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -39px;
    top: 5px;
    border: 3px solid var(--bg-color);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Testimonials */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 40px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-logo {
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-container p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-container, .grid-3, .grid-2, .steps-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #333;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}
