:root {
    --primary: #5e35b1;
    --primary-light: #7e57c2;
    --primary-dark: #4527a0;
    --accent: #ff4081;
    --bg-dark: #0f111a;
    --bg-darker: #090a0f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', sans-serif;
}

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

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(94, 53, 177, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(94, 53, 177, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, rgba(94, 53, 177, 0.15), transparent 50%),
                radial-gradient(circle at bottom left, rgba(255, 64, 129, 0.1), transparent 50%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.badge-discount {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 64, 129, 0.15);
    color: var(--accent);
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #b39ddb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-features {
    list-style: none;
    margin-bottom: 40px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #e2e8f0;
}

.hero-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Glassmorphism Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    transform: rotate3d(1, 1, 0, 10deg) scale(1.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image:hover .glass-card {
    transform: rotate3d(0, 0, 0, 0deg) scale(1.08);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    font-weight: 600;
    color: var(--text-muted);
}

.progress-ring {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke: var(--primary-light);
    stroke-width: 8;
    stroke-dasharray: 314; /* 2 * pi * r */
    stroke-dashoffset: 60;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease-out;
}

.progress-text strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.progress-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.broker-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.broker-item i {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-right: 12px;
}

.broker-item span {
    margin-left: auto;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 99px;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.broker-item:nth-child(2) span, .broker-item:nth-child(3) span {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(94, 53, 177, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(94, 53, 177, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #fff;
}

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

/* Process Section */
.process-section {
    padding: 100px 0;
    position: relative;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.step.line {
    flex: 0 0 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
    background-size: 15px 2px;
    margin-top: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 0 20px rgba(94, 53, 177, 0.5);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

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

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 4px;
    width: max-content;
}

.billing-toggle span {
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.billing-toggle span.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(94, 53, 177, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(94, 53, 177, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: var(--primary);
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    min-height: 48px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.plan-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.plan-features i {
    color: var(--primary-light);
    margin-top: 4px;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    background: var(--bg-dark);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo strong {
    font-size: 1.2rem;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-features li {
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card.featured {
        transform: translateY(0);
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .step.line {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links a {
        margin: 0 12px;
    }
}
