:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #0b81ff;
    --secondary-accent: #711DFF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(80px);
    /* Slightly sharper blur */
    opacity: 0.35;
}

.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 129, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.glass-container {
    width: 90%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 32px;
    /* More rounded */
    padding: 60px 40px;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
    margin: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

header {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.logo span {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero {
    text-align: center;
    margin-bottom: 50px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: var(--accent-color);
}

#hero p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Multi-step Form */
.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--input-bg);
    margin-bottom: 40px;
    border-radius: 2px;
}

.progress {
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-content {
    margin-bottom: 30px;
}

.benefits {
    list-style: none;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .benefits {
        grid-template-columns: 1fr;
    }
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.benefits svg {
    color: #20C933;
    width: 18px;
}

.question-group {
    margin-bottom: 30px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.step-num {
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: 800;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    padding: 18px 24px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    display: block;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.option-card input:checked+.card-content {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

button {
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.next-btn,
.submit-btn {
    flex: 1;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.next-btn:hover,
.submit-btn:hover {
    background: #0070D7;
    transform: translateY(-2px);
}

.prev-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
}

.prev-btn:hover {
    background: var(--input-bg);
}

.text-yellow {
    color: #FFE148;
}

.subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Result Step */
.result-content {
    text-align: center;
    padding: 20px 0;
}

.result-title {
    font-size: 2rem;
    margin-bottom: 25px;
}

.whats-next {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.whats-next p {
    font-weight: 600;
    margin-bottom: 20px;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.checklist svg {
    color: var(--accent-color);
}

.final-cta {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.whatsapp-btn {
    text-decoration: none;
    background: #20C933 !important;
    box-shadow: 0 4px 15px rgba(32, 201, 51, 0.3);
}

.whatsapp-btn:hover {
    background: #1aa82b !important;
}

.highlight-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    box-shadow: 0 4px 15px rgba(11, 129, 255, 0.3);
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}