:root {
    /* Palette */
    --bg-dark: #0F1416;
    /* Deep dark background */
    --card-bg: #0B1E1C;
    /* Dark greenish teal for card */
    --text-primary: #FFFFFF;
    --text-secondary: #B0BDBB;
    --gold: #E3C078;
    --gold-hover: #D4B066;
    --teal-dark: #1A403A;
    --teal-light: #2A6055;

    /* Layout */
    --font-main: 'Inter', sans-serif;
    --card-width: 500px;
    --card-radius: 24px;
    --spacing-md: 2rem;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
/* Simulating the ambient light */
.bg-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle at top left, rgba(20, 60, 50, 0.4), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle at bottom right, rgba(40, 20, 60, 0.2), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.header {
    text-align: center;
    padding-top: 2rem;
    z-index: 10;
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: -0.02em;
}

/* Lang Toggle */
.lang-toggle {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: #142825;
    border: 1px solid #2A4A45;
    border-radius: 999px;
    padding: 4px;
    display: flex;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 20;
}

.lang-toggle span {
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    color: var(--text-secondary);
}

.lang-toggle span.active {
    background: var(--gold);
    color: #000;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    z-index: 10;
}

/* Card Container */
.card-container {
    background-color: var(--card-bg);
    width: 100%;
    max-width: var(--card-width);
    /* min-height: 600px; */
    border-radius: var(--card-radius);
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Transitions */
.view-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.view-section.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.98);
}

.view-section.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.hidden {
    display: none !important;
}

/* Hero Styles */
.hero-content {
    text-align: center;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sub-headline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Buttons */
.cta-button {
    border: none;
    border-radius: 999px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.full-width {
    width: 100%;
    display: block;
}

.cta-button.primary {
    background-color: var(--gold);
    color: #111;
    box-shadow: 0 4px 20px rgba(227, 192, 120, 0.3);
}

.cta-button.primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: var(--teal-dark);
    color: var(--text-secondary);
}

.cta-button.secondary:hover:not(.disabled) {
    background-color: var(--teal-light);
    color: var(--text-primary);
}

.cta-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #152A27;
}

/* Wizard Styles */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    height: 24px;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.back-btn:hover {
    color: var(--text-primary);
}

.progress-text {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: auto;
    /* Push to right */
}

.wizard-step h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.question-label {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Option Cards */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.option-card {
    background: #0F2624;
    /* Slightly lighter than bg */
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.option-card:hover {
    background: #15322F;
}

.option-card.selected {
    background: #15322F;
    border-color: var(--teal-light);
}

.option-text {
    font-weight: 500;
    font-size: 1.1rem;
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #555;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.option-card.selected .radio-circle {
    border-color: var(--gold);
}

.option-card.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Inputs */
.input-group {
    background-color: #0F2624;
    border: 1px solid #2A4A45;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.input-group input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    width: 100%;
    outline: none;
    font-family: var(--font-main);
}

.prefix {
    margin-right: 0.5rem;
    color: var(--text-secondary);
}

/* Loader */
.loader {
    border: 3px solid rgba(227, 192, 120, 0.2);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

/* Mobile */
@media (max-width: 600px) {
    .card-container {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .headline {
        font-size: 2.25rem;
    }

    .main-wrapper {
        padding: 0;
    }

    .header {
        padding-top: 1.5rem;
        position: absolute;
        width: 100%;
        top: 0;
    }

    .lang-toggle {
        top: 1.5rem;
        right: 1rem;
    }
}