.elementor-715 .elementor-element.elementor-element-5421434{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ce79b9f *//* Design System - Hardcoded values for WordPress compatibility */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);

    min-height: 500px;
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header img {
    max-width: 280px;
}

.logo {
    height: auto;
}

/* Sections visibility */
section {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Landing Page Styles */
.hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.subtitle {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #F5F5F5;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    background: #FFFFFF;
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.benefit-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.benefit-content p {
    font-size: 0.85rem;
    color: #666666;
}


.cta-wrapper {
    display: flex;
    justify-content: center;
}

/* Quiz Styles */
.quiz-header {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.progress-bar-container {
    height: 8px;
    background: #F5F5F5;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #1A1A1A;
    width: 0%;
    transition: width 0.5s ease;
}

.question-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.question-subtitle {
    color: #666666;
    margin-bottom: 2rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.option-card {
    background: #FFFFFF;
    border: 2px solid #F5F5F5;
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-card:hover {
    border-color: #666666;
    background: rgba(0, 0, 0, 0.02);
}

.option-card.selected {
    border-color: #1A1A1A;
    background: rgba(26, 26, 26, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.option-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.option-content h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.option-content p {
    font-size: 0.85rem;
    color: #666666;
}

.option-check {
    width: 20px;
    height: 20px;
    border: 2px solid #F5F5F5;
    border-radius: 50%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card.selected .option-check {
    background: #1A1A1A;
    border-color: #1A1A1A;
}

.option-card.selected .option-check::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Footer Navigation */
.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    background: #1A1A1A;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-primary:hover:not(:disabled) {
    background: #333333;
    transform: scale(1.02);
}

.btn-primary:disabled {
    background: #E5E5E5;
    color: #A3A3A3;
    cursor: not-allowed;
}

.btn-secondary {
    background: transparent;
    color: #666666;
    border: none;
    padding: 0.8rem 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: #1A1A1A;
}

.btn-outline {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #1A1A1A;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1A1A1A;
    color: #FFFFFF;
}

/* Results Section */
.results-content {
    text-align: center;
}

.success-icon {
    color: #10B981;
    margin-bottom: 1.5rem;
}

.results-content .title {
    margin-bottom: 2rem;
}

.recommendation-card {
    background: #F5F5F5;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
    border: 2px solid #1A1A1A;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.recommendation-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.recommendation-card ul {
    list-style: none;
    padding: 0;
}

.recommendation-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.recommendation-card li::before {
    content: '✓';
    color: #1A1A1A;
    font-weight: bold;
}

.results-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.results-actions a {
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

/* Lead Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1A1A1A;
}

.input-wrapper-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-wrapper-form i {
    position: absolute;
    left: 1.2rem;
    width: 18px;
    height: 18px;
    color: #999999;
}

.input-wrapper-form input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 1rem;
    border: 2px solid #EEEEEE;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: #FFFFFF;
}

.input-wrapper-form input:focus {
    outline: none;
    border-color: #1A1A1A;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.05);
}

.form-footer {
    margin-top: 1rem;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1rem;
    }
}/* End custom CSS */