/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


.de-ai-diagnostic *,
.de-ai-diagnostic *::before,
.de-ai-diagnostic *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.de-ai-diagnostic {
    background: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 60vh;
    position: relative;
    padding: 20px 0;
}

.de-screen {
    display: none;
}

.de-screen.active {
    display: block;
    animation: deFadeIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes deFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.de-intro,
.de-contact,
.de-result,
.de-question-wrap {
    max-width: 760px;
}

.de-contact-eyebrow,
.de-result-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 40px;
    font-family: inherit;
}

.de-contact-eyebrow::before,
.de-result-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: #000000;
}

.de-result-eyebrow {
    color: #444444;
}

.de-result-eyebrow::before {
    background: #444444;
}

.de-intro h1,
.de-contact h2,
.de-result-heading {
    font-family: inherit;
    font-weight: 600;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}


.de-intro .de-subtitle {
    font-size: 19px;
    color: #333333;
    max-width: 48ch;
    margin-bottom: 48px;
    line-height: 1.5;
}

.de-intro-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.de-meta-item {
    padding: 20px 24px 20px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.de-meta-item:nth-child(2),
.de-meta-item:last-child {
    padding-left: 24px;
}

.de-meta-item:last-child {
    border-right: none;
    padding-right: 0;
}

.de-meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666666;
    margin-bottom: 8px;
}

.de-meta-value {
    font-family: inherit;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.de-reassure {
    font-size: 15px;
    color: #666666;
    margin-bottom: 32px;
    font-style: italic;
}

/* Buttons */
.de-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--e-global-color-accent) !important;
    color: var(--e-global-color-primary) !important;
    border: none !important;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.de-btn:hover {
    background: #333333;
    border-color: #333333;
}

.de-btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.de-btn:hover .de-btn-arrow {
    transform: translateX(5px);
}

.de-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.de-btn-ghost {
    background: transparent;
    color: #000000;
    padding: 16px 8px 16px 0;
    border: none;
}

.de-btn-ghost:hover {
    background: transparent;
    color: #666666;
}

/* Quiz */
.de-quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.de-progress-text {
    font-family: inherit;
    font-size: 15px;
    color: #666666;
    letter-spacing: 0.02em;
}

.de-progress-text .de-current {
    font-size: 28px;
    color: var(--e-global-color-secondary) !important;
    font-weight: 600;
    margin-right: 4px;
}

.de-progress-bar {
    width: 140px;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    position: relative;
}

.de-progress-fill {
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    background: var(--e-global-color-secondary) !important;
    transition: width 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.de-question-number {
    font-family: inherit;
    font-style: italic;
    font-size: 15px;
    color: #444444;
    margin-bottom: 20px;
    font-weight: 500;
}

.de-question-text {
    font-family: inherit;
    font-weight: 600;
    font-size: clamp(24px, 3.2vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
    max-width: 26ch;
}

.de-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.de-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #f9f9f9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    user-select: none;
    border-radius: 50px;
}

.de-option:hover {
    background: var(--e-global-color-secondary) !important;
    border-color: var(--e-global-color-secondary) !important;
    color: white !important;
}

.de-option:hover:hover .de-option-letter,
.de-option.selected .de-option-letter {
    color: white;
}

.de-option.selected {
    background: var(--e-global-color-secondary) !important;
    border-color: var(--e-global-color-secondary) !important;
    color: white !important;
}

.de-option-letter {
    font-family: inherit;
    font-style: italic;
    font-size: 16px;
    color: #666666;
    width: 20px;
    flex-shrink: 0;
    transition: color 0.2s;
    font-weight: 500;
}


.de-option-text {
    font-size: 17px;
    line-height: 1.4;
}

.de-quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* Contact */
.de-contact-intro-text {
    font-size: 18px;
    color: #333333;
    max-width: 54ch;
    margin-bottom: 40px;
    line-height: 1.55;
}

.de-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 40px;
    margin-bottom: 36px;
}

.de-form-field {
    display: flex;
    flex-direction: column;
}

.de-form-field label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--e-global-color-primary) !important;
    margin-bottom: 10px;
    font-weight: 500;
}

.de-form-field input {
    padding: 8px 0 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    font-family: inherit;
    font-size: 17px;
    color: #000000;
    transition: border-color 0.2s;
    width: 100%;
}

#de-contact-form .de-form-field input {
    background-color: transparent !important;
    border: 1px solid #9c9c9c !important;
    border-radius: 50px;
    color: black !important;
    padding: 12px 20px;
}

.de-form-field input::placeholder {
    color: #999999;
    opacity: 0.6;
}

.de-form-field input:focus {
    outline: none;
    border-bottom-color: #000000;
}

.de-privacy-note {
    font-size: 14px;
    color: var(--e-global-color-primary) !important;
    margin-top: 20px;
    font-style: italic;
    max-width: 52ch;
}

/* Result */
.de-result-band-label {
    font-family: inherit;
    font-style: italic;
    font-size: 16px;
    color: #444444;
    margin-bottom: 16px;
    font-weight: 500;
}

.de-band-scale {
    margin-bottom: 40px;
    padding: 20px 0;

}

.de-band-scale-bar {
    display: flex;
    height: 3px;
    gap: 2px;
    margin-bottom: 12px;
}

.de-band-scale-segment {
    flex: 1;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.5s ease;
}

.de-band-scale-segment.active {
    background: var(--e-global-color-secondary) !important;
}

.de-band-scale-labels {
    display: flex;
}

.de-band-scale-labels span {
    flex: 1;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999999;
    transition: color 0.4s ease;
}

.de-band-scale-labels span.active {
    color: var(--e-global-color-secondary) !important;
    font-weight: 600;
}

.de-band-scale-labels span:first-child {
    text-align: left;
}

.de-band-scale-labels span:last-child {
    text-align: right;
}

.de-result-body {
    font-size: 18px;
    line-height: 1.65;
    color: #333333;
    max-width: 60ch;
    margin-bottom: 40px;
}

.de-result-body strong {
    color: #000000;
    font-weight: 600;
}

.de-result-cta {
    margin-bottom: 8px;
}

.de-result-cta a{
    padding: 5px 25px;
    border-radius: 20px;
}

.de-result-footer {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.de-result-summary {
    font-size: 14px;
    color: #666666;
    font-style: italic;
    max-width: 48ch;
}

.de-retake-link {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    padding-bottom: 2px;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: inherit;
    white-space: nowrap;
}

.de-retake-link:hover {
    color: #666666;
    border-bottom-color: #666666;
}

.de-submitting .de-btn-label::after {
    content: '...';
    display: inline-block;
}

@media (max-width: 768px) {
    .de-intro-meta {
        grid-template-columns: 1fr;
    }

    .de-meta-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
        padding: 16px 0 !important;
    }

    .de-meta-item:last-child {
        border-bottom: none;
    }

    .de-form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .de-progress-bar {
        width: 80px;
    }

    .de-result-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {

    .de-ai-diagnostic *,
    .de-ai-diagnostic *::before,
    .de-ai-diagnostic *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

