/* ── TWL Service Chooser ─────────────────────────────────────── */

.twl-chooser {
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
}

/* Hero */
.twl-chooser-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
}

.twl-chooser-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.twl-chooser-hero__sub {
    font-size: 1.1rem;
    color: #999;
    margin: 0;
}

/* Breadcrumb */
.twl-chooser .twl-breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: #666;
}
.twl-chooser .twl-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.twl-chooser .twl-breadcrumb a:hover {
    color: #fff;
}
.twl-chooser .twl-breadcrumb span[aria-hidden] {
    margin: 0 6px;
}

/* Flow container */
.twl-chooser-flow {
    padding: 40px 0 80px;
}
.twl-chooser-flow > .twl-container {
    max-width: 700px;
    margin: 0 auto;
}

/* Progress bar */
.twl-chooser__progress {
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}
.twl-chooser__progress-bar {
    display: block;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #c8a86e, #e8c98e);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Step transitions */
.twl-chooser__step {
    animation: twlChooserFadeIn 0.35s ease;
}
@keyframes twlChooserFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Question */
.twl-chooser__question {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 28px;
    text-align: center;
    line-height: 1.3;
}

/* Options grid */
.twl-chooser__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Option button */
.twl-chooser__option {
    display: block;
    width: 100%;
    padding: 20px 24px;
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    color: #e0e0e0;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.15s;
    font-family: inherit;
    line-height: 1.4;
}
.twl-chooser__option:hover,
.twl-chooser__option:focus-visible {
    border-color: #c8a86e;
    background: #151510;
    box-shadow: 0 0 20px rgba(200, 168, 110, 0.08);
    transform: translateY(-1px);
}
.twl-chooser__option:active {
    transform: translateY(0);
}
.twl-chooser__option strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.twl-chooser__option span {
    display: block;
    font-size: 0.88rem;
    color: #888;
}
.twl-chooser__option:focus-visible {
    outline: 2px solid #c8a86e;
    outline-offset: 2px;
}

/* Result card */
.twl-chooser__result-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
}
.twl-chooser__result-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c8a86e;
    margin: 0 0 8px;
}
.twl-chooser__result-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}
.twl-chooser__result-desc {
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Result actions */
.twl-chooser__result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

/* Buttons */
.twl-chooser__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.twl-chooser__btn--primary {
    background: #c8a86e;
    color: #0a0a0a;
}
.twl-chooser__btn--primary:hover {
    background: #d4b87e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 168, 110, 0.25);
    color: #0a0a0a;
}
.twl-chooser__btn--wa {
    background: #25d366;
    color: #fff;
}
.twl-chooser__btn--wa:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
    color: #fff;
}
.twl-chooser__btn--wa svg {
    flex-shrink: 0;
}

/* Back / restart */
.twl-chooser__back {
    display: inline-block;
    background: none;
    border: none;
    color: #666;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.twl-chooser__back:hover {
    color: #c8a86e;
}

/* Fallback (noscript) */
.twl-chooser-fallback {
    padding: 40px 0;
}
.twl-chooser-fallback h2 {
    color: #fff;
    margin-bottom: 20px;
}
.twl-chooser-fallback ul {
    list-style: none;
    padding: 0;
}
.twl-chooser-fallback li {
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
}
.twl-chooser-fallback a {
    color: #c8a86e;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .twl-chooser-hero {
        padding: 60px 16px 32px;
    }
    .twl-chooser-flow {
        padding: 24px 16px 60px;
    }
    .twl-chooser__option {
        padding: 16px 18px;
    }
    .twl-chooser__result-card {
        padding: 28px 20px;
    }
    .twl-chooser__result-actions {
        flex-direction: column;
    }
    .twl-chooser__btn {
        justify-content: center;
        width: 100%;
    }
}
