* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0f172a;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.logo-text {
    font-size: 1.75rem;
    font-weight: bold;
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #fbbf24;
}

.cta-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
}

.mobile-menu {
    display: none;
}

.hero {
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.hero::before {
    top: 5rem;
    left: 2rem;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.2);
}

.hero::after {
    bottom: 5rem;
    right: 2rem;
    width: 400px;
    height: 400px;
    background: rgba(251, 191, 36, 0.2);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #fbbf24;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #cbd5e1;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-highlight {
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.1rem;
}

.phases-container {
    max-width: 1000px;
    margin: 3rem auto;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.phases-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.phases-timeline {
    color: #fbbf24;
    font-family: monospace;
}

.phase-bar {
    height: 4rem;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    transition: all 0.5s ease;
}

.phase-bar.active {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

section {
    padding: 5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-alt {
    background: rgba(15, 23, 42, 0.5);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 4rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.card-desc {
    color: #94a3b8;
}

.problem-card {
    border-color: rgba(239, 68, 68, 0.3);
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
}

.problem-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.benefit-card {
    border-color: rgba(251, 191, 36, 0.2);
}

.benefit-card:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.benefit-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    color: #0f172a;
}

.system-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(30, 58, 138, 0.8) 100%);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.phase-card {
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: scale(1.05);
    border-color: rgba(251, 191, 36, 0.5);
}

.phase-number {
    font-size: 2rem;
    font-weight: bold;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.phase-level {
    font-size: 1.25rem;
    font-family: monospace;
    margin-bottom: 0.5rem;
}

.phase-weeks {
    font-size: 0.9rem;
    color: #64748b;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.target-box {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid;
}

.target-yes {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.05);
}

.target-no {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.target-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.target-list {
    list-style: none;
}

.target-list li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
}

.bonus-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(251, 191, 36, 0.5);
    margin-top: 3rem;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    display: flex;
    gap: 1rem;
}

.bonus-check {
    width: 32px;
    height: 32px;
    background: #fbbf24;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-weight: bold;
    flex-shrink: 0;
}

.bonus-item h4 {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.bonus-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.urgency-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(239, 68, 68, 0.5);
    text-align: center;
}

.places-counter {
    font-size: 4rem;
    font-weight: bold;
    color: #fbbf24;
    margin: 1rem 0;
}

.price-table {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.price-row:last-child {
    border-bottom: none;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: bold;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.5);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: #cbd5e1;
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #fbbf24;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.final-cta {
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(15, 23, 42, 1) 100%);
    padding: 6rem 2rem;
}

footer {
    background: #0f172a;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fbbf24;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #64748b;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .target-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 8rem 1rem 4rem;
    }
    section {
        padding: 3rem 1rem;
    }
    .cards-grid, .phases-grid {
        grid-template-columns: 1fr;
    }
}