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

:root {
    --primary: #e77c24;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --gray: #808080;
    --white: #ffffff;
    --accent: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.topbar.visible {
    opacity: 1;
    pointer-events: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 120px;
    height: 120px;
}

.topbar-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.65rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
}

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

.btn-primary:hover {
    background: #d06a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 124, 36, 0.2);
}

/* HERO SECTION */
.hero {
    padding: 0 2rem 6rem 2rem;
    text-align: center;
    background: white;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    margin-bottom: 2rem;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 100%;
}

.hero-highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ADVANTAGES SECTION */
.advantages {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 700;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* PLAYGROUND SECTION */
.playground {
    padding: 5rem 2rem;
    background: var(--white);
    color: var(--dark);
    text-align: center;
}

.playground h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.playground p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray);
}

.btn-light {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-light:hover {
    background: #d06a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(231, 124, 36, 0.3);
}

/* PRICING SECTION */
.pricing {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--white);
    position: relative;
}

.pricing .section-title {
    color: var(--white);
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    filter: blur(4px);
    pointer-events: none;
}

.coming-soon-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.plan {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    color: var(--dark);
}

.plan:hover {
    border-color: var(--white);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.plan.featured {
    border-color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.price-period {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ddd;
    color: var(--dark);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 500;
}

.feature-value {
    color: var(--primary);
    font-weight: 600;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

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

.check.no {
    color: #ddd;
    font-size: 1.2rem;
}

.plan button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.plan:not(.featured) button {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}

.plan:not(.featured) button:hover {
    background: var(--dark);
    color: var(--white);
}

.plan.featured button {
    background: var(--primary);
    color: var(--white);
}

.plan.featured button:hover {
    background: #d06a1a;
}

.ultimate-contact {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar {
        padding: 0.75rem 1rem;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .topbar-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .plan.featured {
        transform: scale(1);
    }

    .playground {
        padding: 3rem 1rem;
    }

    .playground h2 {
        font-size: 1.8rem;
    }
}