:root {
    --primary: #5110e9; /* Vibrant Purple */
    --primary-hover: #3e0cc3;
    --secondary: #FF9000; /* Vibrant Orange */
    --bg-color: #0F172A; /* Dark Blue/Slate */
    --text-main: #F8FAFC; /* White-ish */
    --text-muted: #94A3B8;
    --card-bg: rgba(30, 41, 59, 0.7); /* Dark Glass */
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Background Blobs */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}

.shape-purple {
    background: var(--primary);
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape-orange {
    background: var(--secondary);
    width: 300px;
    height: 300px;
    top: 200px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 70px;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s;
}

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

.btn-login-nav {
    background: var(--card-bg);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-weight: 600 !important;
}

.btn-login-nav:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 144, 0, 0.1);
    color: var(--secondary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 144, 0, 0.2);
}

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

.jargon {
    font-family: 'Dancing Script', cursive;
    color: var(--secondary);
    font-size: 4rem;
    display: inline-block;
    padding: 0 5px;
    transform: rotate(-2deg);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn-glow {
    background: linear-gradient(135deg, var(--primary) 0%, #7E22CE 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(81, 16, 233, 0.3);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(81, 16, 233, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px;
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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

.btn-detail {
    background: rgba(255, 255, 255, 0.07);
    color: #E2E8F0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
    width: 100%;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-detail:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features */
.features {
    padding: 60px 0 100px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(81, 16, 233, 0.1);
    border-color: rgba(81, 16, 233, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
}

.gradient-purple {
    background: linear-gradient(135deg, rgba(81, 16, 233, 0.1) 0%, rgba(81, 16, 233, 0.2) 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.1) 0%, rgba(255, 144, 0, 0.2) 100%);
}

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

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 60px 0 100px;
    position: relative;
    z-index: 2;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.pricing-card {
    padding: 40px 30px;
    border-radius: 24px;
    width: 250px;
    text-align: center;
    transition: 0.3s;
}

.pricing-card h3 {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.price-decimals {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    min-height: 40px;
}

.popular-card {
    background: rgba(30, 41, 59, 0.9);
    border: 2px solid var(--primary);
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 20px 40px rgba(81, 16, 233, 0.25);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 144, 0, 0.3);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.glass-modal {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 5vh auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-modal-large {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    margin: 5vh auto;
    padding: 35px 40px;
    border-radius: 24px;
    width: 92%;
    max-width: 680px;
    max-height: 88vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    animation: modalSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #9CA3AF;
    cursor: pointer;
    transition: 0.2s;
}

.close:hover {
    color: var(--text-main);
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-main);
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(81, 16, 233, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.full-width {
    width: 100%;
}

.mt-10 {
    margin-top: 10px;
}

.error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 500;
}

.success-msg {
    color: #10B981;
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: 600;
    display: none;
}

.transfer-box {
    background: rgba(81, 16, 233, 0.05);
    border: 2px dashed var(--primary);
    padding: 25px;
    border-radius: 16px;
    margin: 20px 0;
    text-align: center;
}

.transfer-box h1 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.text-center {
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .jargon {
        font-size: 3rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .nav-links {
        display: none; /* simple mobile view */
    }
}
