/* =====================================================
   TRAVEL SMART — Quiz v3
   ===================================================== */

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

:root {
    --navy:      #0d1b2a;
    --teal:      #00b4b0;
    --teal-dark: #008a87;
    --amber:     #e8923a;
    --white:     #ffffff;
    --border:    rgba(255,255,255,0.1);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
}

/* =====================================================
   CUSTOM CURSOR — desktop only
   ===================================================== */

.cursor {
    position: fixed;
    left: 0; top: 0;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    margin-left: -22px; margin-top: -22px;
    pointer-events: none;
    z-index: 9999;
    display: none;
    will-change: transform;
    transition:
        width .2s ease, height .2s ease,
        margin .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.cursor.hover {
    width: 68px; height: 68px;
    margin-left: -34px; margin-top: -34px;
    background: rgba(0,180,176,.12);
    border-color: var(--teal);
}

@media (hover: hover) and (pointer: fine) {
    .cursor { display: block; }
    body, a, button { cursor: none; }
}

/* =====================================================
   HEADER
   ===================================================== */

.qh {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 28px;
    background: rgba(13,27,42,.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.qh-back {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.qh-back:hover { color: var(--white); }
.qh-back i { font-size: 11px; }

.qh-progress {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    overflow: hidden;
}

.qh-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--amber));
    border-radius: 2px;
    width: 0%;
    transition: width .6s cubic-bezier(.4,0,.2,1);
}

.qh-step {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.35);
    letter-spacing: 1.5px;
    flex-shrink: 0;
}

/* =====================================================
   QUIZ WRAP & SCREENS
   ===================================================== */

.quiz-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.quiz-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 56px;
    opacity: 0;
    pointer-events: none;
    will-change: opacity, transform;
}

.quiz-screen.active { pointer-events: all; }

.screen-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.screen-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(13,27,42,.72) 0%,
        rgba(13,27,42,.42) 38%,
        rgba(13,27,42,.78) 100%
    );
}

.screen-body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Question meta */
.q-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.q-num {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

.q-dots { display: flex; gap: 7px; }

.q-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    transition: background .3s ease, transform .3s ease;
}
.q-dot.done   { background: var(--teal); }
.q-dot.active { background: var(--white); transform: scale(1.5); }

/* Question title — word reveal */
.q-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 900;
    text-align: center;
    line-height: 1.22;
    max-width: 640px;
    letter-spacing: -.5px;
}

.q-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.q-title .word-inner { display: inline-block; }

/* =====================================================
   IMAGE CARDS (Q3, Q5)
   ===================================================== */

.opts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 700px;
}

.opt-card {
    position: relative;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(20,30,48,.9);
    display: block;
    padding: 0;
    outline: none;
    will-change: transform, box-shadow;
    transition: border-color .3s ease, box-shadow .3s ease;
    transform-style: preserve-3d;
}

.opt-card:focus-visible { border-color: var(--teal); }

.opt-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .65s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
    pointer-events: none;
}

.opt-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,15,26,.96)  0%,
        rgba(6,15,26,.45)  45%,
        rgba(6,15,26,.12) 100%
    );
    transition: background .3s ease;
    pointer-events: none;
}

.opt-flash {
    position: absolute;
    inset: 0;
    background: rgba(0,180,176,.45);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
}

.opt-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px 18px 18px;
    z-index: 2;
    pointer-events: none;
}

.opt-label {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3px;
    line-height: 1.2;
}

.opt-desc {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,.52);
    line-height: 1.4;
}

.opt-card:hover .opt-card-bg { transform: scale(1.07); }
.opt-card:hover .opt-card-overlay {
    background: linear-gradient(
        to top,
        rgba(6,15,26,.98)   0%,
        rgba(6,15,26,.52)   45%,
        rgba(0,180,176,.06) 100%
    );
}

.opt-card.selected {
    border-color: var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 8px 36px rgba(0,180,176,.28);
}
.opt-card.selected .opt-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,36,38,.97) 0%,
        rgba(0,80,78,.38) 50%,
        rgba(0,180,176,.1) 100%
    );
}

/* =====================================================
   SLIDER QUESTIONS (Q1 budget, Q2 duration)
   ===================================================== */

.slider-question {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 38px;
    min-height: 96px;
    justify-content: center;
    text-align: center;
}

.sld-tier {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.sld-range {
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: .5px;
}

.sld-desc {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    max-width: 400px;
    line-height: 1.55;
    margin-top: 4px;
}

.slider-track-container {
    width: 100%;
    position: relative;
    padding: 12px 0;
}

.slider-gradient-track {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 6px;
    border-radius: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--teal), #4ecdc4 33%, var(--amber) 66%, #f5a623);
    opacity: 0.55;
    pointer-events: none;
    border-radius: 3px;
}

.main-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: transparent;
    outline: none;
    cursor: grab;
    position: relative;
    z-index: 2;
}

.main-slider:active { cursor: grabbing; }

.main-slider::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
}

.main-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 3px var(--teal), 0 4px 20px rgba(0,0,0,.5);
    margin-top: -13px;
    cursor: grab;
    transition: transform .15s ease, box-shadow .15s ease;
}

.main-slider:active::-webkit-slider-thumb {
    transform: scale(1.25);
    box-shadow: 0 0 0 4px var(--teal), 0 10px 30px rgba(0,0,0,.55);
    cursor: grabbing;
}

.main-slider::-moz-range-track {
    height: 6px;
    background: transparent;
    border-radius: 3px;
}

.main-slider::-moz-range-thumb {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--teal);
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
    cursor: grab;
}

.slider-zone-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-top: 6px;
    margin-bottom: 30px;
}

.slider-zone-label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.25);
    text-align: center;
    letter-spacing: .3px;
    padding-top: 6px;
    transition: color .2s ease, font-weight .2s ease;
}

.slider-zone-label.active {
    color: var(--teal);
    font-weight: 700;
}

.slider-hint {
    font-size: 11px;
    color: rgba(255,255,255,.28);
    text-align: center;
    margin: -22px 0 22px;
    letter-spacing: .5px;
    transition: opacity .4s ease;
}
.slider-hint.hidden { opacity: 0; }

.slider-continue {
    background: var(--teal);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease, background .2s ease, box-shadow .2s ease;
}

.slider-continue.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.slider-continue:hover {
    background: var(--teal-dark);
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0,180,176,.4);
}

/* =====================================================
   SPECTRUM QUESTION (Q4 climate)
   ===================================================== */

.climate-spectrum {
    display: flex;
    width: 100%;
    max-width: 700px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    gap: 3px;
}

.climate-zone {
    flex: 1;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 14px 18px;
    overflow: hidden;
    transition: flex .4s cubic-bezier(.4,0,.2,1);
}

.climate-zone:hover { flex: 1.75; }
.climate-zone.selected {
    flex: 1.55;
    box-shadow: inset 0 0 0 2.5px rgba(255,255,255,.6);
}

.climate-zone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,15,26,.88) 0%,
        rgba(6,15,26,.15) 55%,
        transparent 100%
    );
    transition: background .3s ease;
    pointer-events: none;
}

.climate-zone:hover .climate-zone-overlay {
    background: linear-gradient(
        to top,
        rgba(6,15,26,.94) 0%,
        rgba(6,15,26,.25) 55%,
        transparent 100%
    );
}

.climate-zone .opt-flash { z-index: 4; }

.climate-zone-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.climate-zone-emoji {
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
    transition: font-size .3s ease, transform .3s ease;
}

.climate-zone:hover .climate-zone-emoji {
    font-size: 27px;
    transform: scale(1.05);
}

.climate-zone-name {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: white;
    line-height: 1.25;
    transition: font-size .3s ease;
}

.climate-zone:hover .climate-zone-name { font-size: 13px; }

.climate-zone-temp {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    margin-top: 2px;
}

/* =====================================================
   SEASON GRID (Q3 — Perioadă)
   ===================================================== */

.season-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 580px;
}

.season-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 26px 18px 22px;
    text-align: center;
    cursor: pointer;
    border: 2.5px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-height: 168px;
    justify-content: center;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    will-change: transform;
}

.season-card:hover { transform: translateY(-4px) scale(1.02); }
.season-card.selected {
    border-color: rgba(255,255,255,.75);
    box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 12px 36px rgba(0,0,0,.25);
}

.season-card .opt-flash { background: rgba(255,255,255,.5); }

.season-emoji {
    font-size: 38px;
    display: block;
    line-height: 1;
    position: relative; z-index: 2;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.season-card:hover .season-emoji { transform: scale(1.18) translateY(-3px); }

.season-label {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: rgba(6,15,26,.88);
    position: relative; z-index: 2;
    line-height: 1.1;
}

.season-months {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    color: rgba(6,15,26,.55);
    letter-spacing: 1px;
    position: relative; z-index: 2;
}

.season-note {
    font-size: 11.5px;
    color: rgba(6,15,26,.5);
    line-height: 1.4;
    position: relative; z-index: 2;
    margin-top: 2px;
}

/* =====================================================
   CAROUSEL (Q4 — Tip vacanță)
   ===================================================== */

.carousel-wrap {
    width: 100%;
    max-width: 640px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 310px;
}

.carousel-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.carousel-slide {
    position: relative;
    height: 100%;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
}

.cs-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
    will-change: transform;
}

.carousel-slide:hover .cs-bg { transform: scale(1.05); }
.carousel-slide.selected .cs-bg { transform: scale(1.03); }

.cs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6,15,26,.95)  0%,
        rgba(6,15,26,.35)  50%,
        rgba(6,15,26,.08) 100%
    );
    pointer-events: none;
}

.carousel-slide .opt-flash { z-index: 3; }

.cs-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 28px 28px;
    z-index: 2;
}

.cs-label {
    display: block;
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
    letter-spacing: -.5px;
    line-height: 1.1;
}

.cs-desc {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.6);
    margin-bottom: 14px;
}

.cs-hint {
    display: block;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .85;
}

/* Nav buttons */
.car-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(13,27,42,.72);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    width: 42px; height: 42px;
    color: white;
    font-size: 13px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.car-nav:hover { background: rgba(0,180,176,.3); border-color: var(--teal); }
.car-nav:disabled { opacity: .25; pointer-events: none; }
.car-prev { left: 12px; }
.car-next { right: 12px; }

.car-dots {
    position: absolute;
    bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 7px;
    z-index: 10;
}

.car-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    transition: all .3s ease;
}
.car-dot.active {
    background: white;
    width: 22px;
    border-radius: 3.5px;
}

/* =====================================================
   ICON GRID (Q6 — Companie)
   ===================================================== */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 560px;
}

.icon-card {
    position: relative;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 28px 16px 22px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
    outline: none;
    will-change: transform;
}

.icon-card:hover {
    background: rgba(0,180,176,.08);
    border-color: rgba(0,180,176,.4);
}

.icon-card.selected {
    background: rgba(0,180,176,.15);
    border-color: var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 12px 40px rgba(0,180,176,.22);
}

.icon-card-em {
    font-size: 46px;
    display: block;
    line-height: 1;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.icon-card:hover .icon-card-em  { transform: scale(1.15); }
.icon-card.selected .icon-card-em { transform: scale(1.08); }

.icon-card-label {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.icon-card-desc {
    font-size: 12px;
    color: rgba(255,255,255,.48);
    display: block;
    line-height: 1.4;
}

.icon-card-check {
    position: absolute;
    top: 12px; right: 12px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    font-size: 11px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity .25s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.icon-card.selected .icon-card-check { opacity: 1; transform: scale(1); }

/* =====================================================
   RESULTS PERIOD NOTE
   ===================================================== */

.results-period-note {
    margin-top: 14px;
    padding: 12px 18px;
    background: rgba(0,180,176,.08);
    border: 1px solid rgba(0,180,176,.22);
    border-radius: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.55;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   RESULTS SCREEN
   ===================================================== */

.results-screen {
    justify-content: flex-start;
    padding-top: 80px;
    overflow-y: auto;
    overflow-x: hidden;
}

.results-bg {
    position: fixed;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.results-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,.9);
    z-index: 1;
}

.results-body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.results-tag {
    display: inline-block;
    background: rgba(0,180,176,.1);
    border: 1px solid rgba(0,180,176,.3);
    color: var(--teal);
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.results-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -.5px;
}
.results-title .hl { color: var(--teal); }

.results-sub {
    font-size: 15px;
    color: rgba(255,255,255,.5);
    max-width: 500px;
    line-height: 1.6;
}

.results-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.res-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.res-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.res-card:first-child {
    border: 2px solid var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 20px 60px rgba(0,180,176,.15);
}

.res-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}
.res-card:hover .res-card-bg { transform: scale(1.05); }

.res-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,.97) 0%, rgba(13,27,42,.35) 55%, transparent 100%);
}

.res-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.res-match {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(13,27,42,.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 13px;
    color: var(--white);
}

.res-card-body {
    position: relative;
    z-index: 2;
    padding: 20px 22px 24px;
}

.res-flag { font-size: 20px; margin-bottom: 8px; display: block; }

.res-name {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 2px;
    letter-spacing: -.3px;
}

.res-country {
    font-size: 11px;
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.res-desc {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-bottom: 14px;
}

.res-budget {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    color: rgba(255,255,255,.65);
    margin-bottom: 14px;
}
.res-budget strong { color: var(--white); font-weight: 700; }

.res-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
    border: none;
    cursor: pointer;
}
.res-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.results-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.results-footer p { font-size: 15px; color: rgba(255,255,255,.45); }
.results-footer a {
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}
.results-footer a:hover { border-bottom-color: var(--teal); }

.retake-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;
    color: rgba(255,255,255,.4);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    cursor: pointer;
    transition: all .2s ease;
}
.retake-btn:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

/* Prev button */
.quiz-prev-btn {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 200;
    background: rgba(13,27,42,.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    color: rgba(255,255,255,.5);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    padding: 11px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all .2s ease;
}
.quiz-prev-btn:hover { border-color: rgba(255,255,255,.2); color: var(--white); }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    /* slider */
    .slider-display { margin-bottom: 26px; min-height: 80px; }
    .sld-tier  { font-size: 26px; }
    .sld-range { font-size: 13px; }
    .sld-desc  { font-size: 12px; }

    /* season */
    .season-card { min-height: 140px; padding: 20px 14px 16px; }
    .season-emoji { font-size: 30px; }
    .season-label { font-size: 14px; }

    /* carousel */
    .carousel-wrap { height: 240px; }
    .cs-label { font-size: 24px; }
    .cs-desc  { font-size: 12px; }

    /* spectrum */
    .climate-spectrum { height: 200px; }
    .climate-zone-emoji { font-size: 18px; }
    .climate-zone-name  { font-size: 11px; }
    .climate-zone:hover .climate-zone-emoji { font-size: 22px; }

    /* icon grid */
    .icon-card { padding: 22px 12px 18px; }
    .icon-card-em { font-size: 38px; }

    .q-title { font-size: clamp(20px, 5.5vw, 28px); }
    .screen-body { gap: 18px; }
    .quiz-screen { padding: 68px 16px 56px; }

    .results-cards { grid-template-columns: 1fr; gap: 16px; }
    .res-card { min-height: 340px; }
    .results-body { padding: 20px 16px 60px; }
}

@media (max-width: 420px) {
    /* season: 2 col still OK, just smaller */
    .season-card { min-height: 122px; padding: 16px 10px 12px; gap: 3px; }
    .season-emoji { font-size: 26px; }
    .season-label { font-size: 13px; }
    .season-note  { font-size: 10px; }

    /* carousel full width */
    .carousel-wrap { height: 200px; border-radius: 16px; }
    .cs-label { font-size: 20px; }
    .cs-content { padding: 16px 18px 20px; }

    /* spectrum vertical */
    .climate-spectrum {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
    }
    .climate-zone { flex: none !important; min-height: 68px; padding: 10px 14px; }
    .climate-zone-emoji { font-size: 16px; margin-bottom: 2px; }
    .climate-zone-name  { font-size: 12px; }

    /* icon grid smaller */
    .icon-card-em { font-size: 32px; }
    .icon-card-label { font-size: 14px; }
    .icon-card { padding: 18px 10px 14px; gap: 5px; }

    .slider-zone-labels { display: none; }
}

@media (max-height: 620px) and (max-width: 768px) {
    .screen-body { gap: 12px; }
    .q-title { font-size: 20px; }
    .climate-spectrum { height: 165px; }
    .carousel-wrap { height: 195px; }
    .slider-display { margin-bottom: 16px; min-height: 68px; }
    .sld-tier { font-size: 22px; }
    .season-card { min-height: 115px; }
    .icon-card { padding: 16px 10px 14px; }
    .icon-card-em { font-size: 30px; }
}

/* ── RESULTS ANALYSIS ─────────────────────────────────── */
.results-analysis {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 0 16px;
}
.ra-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 16px;
}
.ra-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ra-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}
.ra-item strong {
    color: #fff;
    display: block;
    margin-bottom: 3px;
}
@media (max-width: 600px) {
    .ra-item { font-size: 13px; padding: 14px 16px; }
}

/* ── CONTINENT GRID ─────────────────────────────────────── */
.cont-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 680px;
}
.cont-card {
    position: relative;
    height: 190px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cont-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.cont-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.cont-card:hover .cont-bg { transform: scale(1.06); }
.cont-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%); }
.cont-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 18px; gap: 4px; }
.cont-emoji  { font-size: 32px; line-height: 1; }
.cont-name   { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.cont-count  { font-size: 12px; color: rgba(255,255,255,0.55); font-family: 'Inter', sans-serif; }

/* ── COUNTRY GRID ───────────────────────────────────────── */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 700px;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.country-grid::-webkit-scrollbar { width: 4px; }
.country-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
.country-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 16px 10px 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    text-align: center;
}
.country-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(0,180,176,0.5); transform: translateY(-2px); }
.country-flag { font-size: 28px; line-height: 1; }
.country-name { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.country-meta { font-size: 10px; color: rgba(255,255,255,0.45); font-family: 'Inter', sans-serif; }
.country-agency-tag {
    font-size: 9px; font-weight: 700; font-family: 'Montserrat', sans-serif;
    background: rgba(201,168,76,0.2); color: #c9a84c; border: 1px solid rgba(201,168,76,0.35);
    border-radius: 20px; padding: 2px 8px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── CITY GRID ──────────────────────────────────────────── */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 700px;
}
.city-card {
    position: relative;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.city-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.45); }
.city-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.city-card:hover .city-bg { transform: scale(1.06); }
.city-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%); }
.city-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; }
.city-name { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800; color: #fff; }

/* ── RESULT SCREEN ──────────────────────────────────────── */
.screen-overlay--dark { background: rgba(0,0,0,0.65) !important; }
.screen-body--result {
    justify-content: center;
    padding: 20px 20px 32px;
    gap: 16px;
}
.result-header { text-align: center; }
.result-flag   { font-size: 40px; line-height: 1; display: block; margin-bottom: 6px; }
.result-name   { font-family: 'Montserrat', sans-serif; font-size: clamp(28px,6vw,42px); font-weight: 900; color: #fff; margin: 0 0 4px; letter-spacing: -0.02em; }
.result-country { font-size: 13px; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; }
.result-card {
    background: rgba(13,27,42,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    max-width: 520px;
    width: 100%;
}
.result-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    margin: 0 0 20px;
}
.result-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.result-stat  { display: flex; align-items: flex-start; gap: 12px; }
.result-stat-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.result-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.45); font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.result-stat-val   { font-size: 14px; color: #fff; font-family: 'Inter', sans-serif; font-weight: 500; }
.result-agency-note {
    display: flex; gap: 10px; align-items: flex-start;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    border-radius: 12px; padding: 14px; margin-bottom: 20px;
}
.agency-icon { font-size: 18px; flex-shrink: 0; }
.result-agency-note p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; font-family: 'Inter', sans-serif; }
.result-actions { display: flex; flex-direction: column; gap: 10px; }
.result-cta {
    display: block; text-align: center;
    background: #00b4b0; color: #fff;
    font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
    padding: 15px 24px; border-radius: 50px; text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.result-cta:hover { background: #009e9b; transform: translateY(-2px); }

/* ── Q-SUB ──────────────────────────────────────────────── */
.q-sub { font-size: 14px; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; margin-top: 6px; }

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 600px) {
    .cont-grid { grid-template-columns: 1fr; gap: 10px; }
    .cont-card { height: 120px; }
    .cont-content { flex-direction: row; justify-content: flex-start; padding: 16px; gap: 12px; }
    .cont-emoji { font-size: 26px; }
    .cont-name  { font-size: 20px; }
    .cont-count { font-size: 11px; }
    .country-grid { grid-template-columns: repeat(3, 1fr); max-height: 60vh; }
    .country-flag { font-size: 24px; }
    .country-name { font-size: 11px; }
    .city-grid { grid-template-columns: 1fr 1fr; }
    .city-card { height: 130px; }
    .result-card { padding: 18px; }
    .result-name { font-size: 28px; }
}
