/* ==========================================================================
   1. CORE VARIABLES & SETUP
   ========================================================================== */
:root {
    --bg-color: transparent;
    --text-primary: #111111;
    --text-secondary: #737373;
    --graphite: #1C1C1E;
    --teal-footer-bg: #167297;
    --gradient-blue: linear-gradient(135deg, #0061FF 0%, #60EFFF 100%);
    --gradient-play: linear-gradient(135deg, #0A44FF 0%, #0099FF 100%);
    --radius-lg: 32px;
    --radius-md: 20px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.25, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent !important;
    tap-highlight-color: transparent !important;
}

a, button, .action-card, .img-btn, .install-btn, .menu-toggle, .float-btn {
    outline: none !important;
    -webkit-blur: 0;
}

a:focus, button:focus, .action-card:focus, .img-btn:focus, .install-btn:focus, .menu-toggle:focus,
a:active, button:active, .action-card:active, .img-btn:active, .install-btn:active, .menu-toggle:active {
    outline: none !important;
    box-shadow: none !important;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: transparent;
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-feature-settings: "cv11", "ss01";
    padding-top: 60px;
}

::selection {
    background: #0061FF;
    color: white;
}

/* ==========================================================================
   2. ANIMATED BACKGROUND (Orbs Hidden)
   ========================================================================== */
.ambient-bg {
    display: none;
}

/* ==========================================================================
   3. TOP NAVIGATION (Logo Left, Links Centered)
   ========================================================================== */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #f4f8fb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e1e8ed;
}

.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px 20px 24px;
    background: transparent;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: auto;
}

.winbox-logo-img {
    height: 27px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    position: absolute;
    left: 54%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 13px;
    font-weight: 800;
    color: #333333;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #00a6ff;
}

/* Mobile Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

@media (max-width: 1397px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        width: 100%;
        padding: 12px 24px;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    padding: 60px 5% 23px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: transparent;
}

.hero-logo-container {
    width: 100%;
    max-width: 420px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.05));
}

/* ==========================================================================
   5. ACTION FLOW SECTION (Play Now & Support Container)
   ========================================================================== */
.cta-vertical-flow {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 10px;
}

.action-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Image Button Wrappers */
.img-btn {
    display: block;
    width: 100%;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    background: transparent;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.img-btn-src {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.img-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


.play-now-img-btn .img-btn-src {
    animation: playNowZoom 2.2s ease-in-out infinite, playNowFlicker 1.6s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes playNowGlow {
    0%, 100% {
        box-shadow: 0 0 18px rgba(37, 172, 230, 0.4), 0 12px 25px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 40px rgba(37, 172, 230, 0.85), 0 12px 25px rgba(0, 0, 0, 0.15);
    }
}

/* Transform-only, so the zoom stays smooth (no filter/opacity in the same step to avoid jank) */
@keyframes playNowZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes playNowFlicker {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.88;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.92;
    }
}

@media (prefers-reduced-motion: reduce) {
    .play-now-img-btn,
    .play-now-img-btn .img-btn-src {
        animation: none;
    }
}

.support-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* ==========================================================================
   5b. STANDALONE DOWNLOAD SECTION
   ========================================================================== */
.download-section-standalone {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 856px;
    margin: 30px auto 0;
    padding: 0 10px;
}

.download-title {
    text-align: left;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    border-radius: 6px;
}

.app-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}

.app-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.app-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-app-img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.1));
}

.app-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.app-version {
    display: none;
}

.install-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
    background: linear-gradient(180deg, #ffb300 0%, #ff8000 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255, 128, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.install-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 20px rgba(255, 128, 0, 0.5);
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    margin-top: 28px;
}

.trust-badge {
    background: transparent;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: none;
}

.trust-check {
    color: #25D366;
    font-weight: 800;
    font-size: 1.2rem;
}

/* ==========================================================================
   6. TEAL FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--teal-footer-bg);
    color: #ffffff;
    padding: 30px 20px 25px;
    text-align: center;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-link:hover,
.footer-link.active {
    color: #ffffff;
    font-weight: 800;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* ==========================================================================
   7. FLOATING WIDGETS
   ========================================================================== */
.floating-widgets {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.float-btn:hover {
    transform: scale(1.08);
}

.whatsapp-float-btn {
    background-color: transparent;
    text-decoration: none;
}

.whatsapp-float-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.scroll-top-btn {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

/* ==========================================================================
   8. MOBILE RESPONSIVE UI (ENLARGED WHATSAPP & TELEGRAM BUTTONS)
   ========================================================================== */
@media (max-width: 680px) {
    body {
        background-color: #f7fafc;
    }

    .cta-vertical-flow {
        padding: 0 4px;
    }

    /* WhatsApp & Telegram Image Buttons in 2 Columns on Mobile - Enlarged */
    .support-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        width: 100%;
    }

    .support-container .img-btn {
        transform: scale(1.04);
    }

    /* Download Cards Horizontal Layout on Mobile */
    .app-download-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .app-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 18px;
        border-radius: 22px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    }

    .app-card-left {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .download-app-img {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        background: #f0fdf4;
        border-radius: 18px;
        padding: 6px;
    }

    .app-text-info {
        text-align: left;
    }

    .app-title {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .app-version {
        display: block;
        font-size: 12px;
        color: #a0aec0;
        font-weight: 500;
    }

    .install-btn {
        width: auto;
        max-width: none;
        padding: 10px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    .trust-container {
        display: flex;
        justify-content: center;
        gap: 16px;
        font-size: 12px;
        color: #718096;
    }

    .trust-badge {
        padding: 0;
        font-size: 12px;
    }

    .site-footer {
        padding: 30px 16px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        margin-bottom: 24px;
    }

    .floating-widgets {
        bottom: 16px;
        right: 16px;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
    }

    .hero {
        padding: 32px 3% 23px;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ==========================================================================
   9. ARTICLE / SEO CONTENT SECTION
   ========================================================================== */
.content-section {
    max-width: 1149px;
    margin: 40px auto;
    padding: 40px 44px;
    background: #ffffff;
    border: 1px solid #0095ff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.content-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00a6ff;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

.content-section h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin: 34px 0 14px;
}

.content-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 26px 0 10px;
}

.content-section p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.content-section ol {
    margin: 0 0 16px 20px;
    padding: 0;
}

.content-section ol li {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 6px;
}

.content-section ul {
    margin: 0 0 16px 20px;
    padding: 0;
    list-style: disc;
}

.content-section ul li {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 6px;
}

.content-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 22px 0 8px;
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 700;
}

.content-section code {
    background: #f4f8fb;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.9em;
    font-family: 'SFMono-Regular', Consolas, monospace;
    color: var(--text-primary);
}

.content-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid #e1e8ed;
    margin: 4px 0 20px;
}

.content-section a {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.content-section a:hover {
    color: #00a6ff;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 8px 0 20px;
    border: 1px solid #e1e8ed;
    border-radius: 14px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    font-size: 0.92rem;
}

.info-table th {
    background: #f4f8fb;
    color: var(--text-primary);
    font-weight: 800;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid #e1e8ed;
    white-space: nowrap;
}

.info-table td {
    padding: 14px 18px;
    color: var(--text-secondary);
    border-bottom: 1px solid #eef2f5;
    line-height: 1.6;
}

.info-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 680px) {
    .content-section {
        padding: 28px 20px;
        margin: 24px 12px;
        border-radius: 20px;
    }

    .content-title {
        font-size: 1.25rem;
    }

    .content-section h2 {
        font-size: 0.95rem;
    }

    .content-section h3 {
        font-size: 1.02rem;
    }
}

/* ==========================================================================
   10. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
    max-width: 1149px;
    margin: 0 auto 60px;
    padding: 40px 44px;

}

.faq-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #00a6ff;
    text-align: center;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e1e8ed;
}

.faq-item.active {
    border-top: 2px solid #00a6ff;
    border-bottom: 2px solid #00a6ff;
}

.faq-item.active + .faq-item {
    border-top: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 20px 4px;
    text-align: left;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-item.active .faq-question {
    color: #00a6ff;
}

.faq-chevron {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: #9aa5ad;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s var(--ease-out), stroke 0.2s ease;
}

.faq-item.active .faq-chevron {
    stroke: #00a6ff;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
}

.faq-answer p {
    font-size: 0.94rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 4px 20px;
}

@media (max-width: 680px) {
    .faq-section {
        padding: 28px 20px;
        margin: 0 12px 40px;
        border-radius: 20px;
    }

    .faq-title {
        font-size: 1.25rem;
    }

    .faq-question {
        font-size: 0.92rem;
        padding: 16px 2px;
    }
}

/* ==========================================================================
   11. ISSUE FLIP CARDS (Pusat Bantuan)
   ========================================================================== */
.issue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 8px 0 28px;
}

.issue-card {
    perspective: 1200px;
    height: 260px;
    cursor: pointer;
    outline: none;
}

.issue-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s var(--ease-spring);
    transform-style: preserve-3d;
}

.issue-card.flipped .issue-card-inner {
    transform: rotateY(180deg);
}

.issue-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid #e1e8ed;
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.issue-card-front {
    background: #ffffff;
}

.issue-card-back {
    background: #f4f8fb;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.issue-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.issue-badge-1 { background: #0061FF; }
.issue-badge-2 { background: #16a34a; }
.issue-badge-3 { background: #8b5cf6; }
.issue-badge-4 { background: #f59e0b; }
.issue-badge-5 { background: #ef4444; }

h3.issue-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0 0 10px;
}

p.issue-card-question {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: auto;
}

.issue-card-hint {
    font-size: 0.78rem;
    font-weight: 600;
    color: #00a6ff;
    margin-top: 12px;
}

p.issue-card-answer {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 0;
}

.issue-card-answer strong {
    color: var(--text-primary);
}

.issue-card-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00a6ff;
    text-decoration: none;
    margin-top: 12px;
}

.issue-card-link:hover {
    text-decoration: underline;
}

.support-container-inline {
    flex-direction: row;
    max-width: 480px;
    margin: 8px 0 24px;
}

@media (max-width: 680px) {
    .issue-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 8px 0 24px;
    }

    .issue-card {
        height: 200px;
    }

    .issue-card-face {
        padding: 20px 18px;
        border-radius: 16px;
    }

    .issue-card-badge {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    h3.issue-card-title {
        font-size: 0.95rem;
        margin: 0 0 8px;
    }

    p.issue-card-question {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .issue-card-hint {
        font-size: 0.72rem;
        margin-top: 10px;
    }

    p.issue-card-answer {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .issue-card-link {
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .support-container-inline {
        flex-direction: row;
        gap: 10px;
    }
}

@media (max-width: 420px) {
    .issue-card {
        height: 230px;
    }
}

/* ==========================================================================
   12. CREDENTIAL CARD (Test ID box)
   ========================================================================== */
.cred-card {
    background: linear-gradient(135deg, #fff9e6, #fef3c7);
    border: 1px solid #f0d999;
    border-radius: 16px;
    padding: 20px 22px;
    margin: 8px 0 20px;
}

.cred-card-header {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cred-card-creds {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.cred-card-row {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.cred-label {
    font-weight: 700;
    margin-right: 6px;
}

.cred-value {
    background: #ffffff;
    border: 1px solid #f0d999;
    border-radius: 6px;
    padding: 2px 8px;
    font-family: 'SFMono-Regular', Consolas, monospace;
    color: #92650a;
    font-size: 0.9em;
}

.cred-card-divider {
    height: 1px;
    background: #f0d999;
    margin: 10px 0 14px;
}

/* ==========================================================================
   13. LOGIN PROBLEM CARDS
   ========================================================================== */
.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 8px 0 28px;
}

.problem-card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    border-color: #c7dcea;
}

.problem-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
}

.problem-badge-1 { background: #0061FF; }
.problem-badge-2 { background: #16a34a; }
.problem-badge-3 { background: #8b5cf6; }
.problem-badge-4 { background: #f59e0b; }
.problem-badge-5 { background: #ef4444; }

.problem-card-title {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.problem-card-cta {
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #00a6ff;
    white-space: nowrap;
}

/* ==========================================================================
   14. LOGIN PROBLEM WIZARD MODAL
   ========================================================================== */
.wizard-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 30, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.wizard-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.wizard-modal {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.25s ease;
}

.wizard-overlay.open .wizard-modal {
    transform: translateY(0) scale(1);
}

.wizard-header {
    padding: 22px 24px 16px;
    border-bottom: 1px solid #eef2f5;
    flex-shrink: 0;
}

.wizard-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #00a6ff;
    margin-bottom: 6px;
}

.wizard-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 0;
}

.wizard-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

.wizard-body-success { background: #f0fdf4; }
.wizard-body-danger { background: #fef2f2; }
.wizard-body-support { background: #eff6ff; }

.wizard-warning {
    font-size: 0.9rem;
    font-weight: 700;
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fde3b0;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 0 0 14px;
}

.wizard-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 10px;
}

.wizard-text a {
    color: var(--text-primary);
    font-weight: 700;
    text-decoration: underline;
}

.wizard-checklist {
    margin: 0 0 14px 20px;
    padding: 0;
}

.wizard-checklist li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 6px;
}

.wizard-question {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 4px 0 12px;
}

.wizard-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wizard-choice-btn {
    width: 100%;
    padding: 12px 16px;
    background: #f4f8fb;
    border: 1px solid #dce6ee;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wizard-choice-btn:hover {
    background: #e8f4fd;
    border-color: #00a6ff;
    color: #00a6ff;
}

.wizard-contact {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.wizard-contact-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    color: #ffffff;
    transition: filter 0.2s ease;
}

.wizard-contact-whatsapp { background: #25D366; }
.wizard-contact-telegram { background: #229ED9; }

.wizard-contact-btn:hover {
    filter: brightness(0.95);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-top: 1px solid #eef2f5;
    background: #fafcfd;
    flex-shrink: 0;
}

.wizard-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.wizard-btn-back {
    background: #eef2f5;
    color: var(--text-primary);
}

.wizard-btn-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.wizard-btn-back:hover:not(:disabled) {
    background: #e2e8ee;
}

.wizard-btn-close {
    background: #111111;
    color: #ffffff;
}

.wizard-btn-close:hover {
    background: #000000;
}

@media (max-width: 680px) {
    .problem-card {
        padding: 14px;
        gap: 10px;
    }

    .problem-card-title {
        font-size: 0.88rem;
    }

    .problem-card-cta {
        font-size: 0.72rem;
    }

    .cred-card {
        padding: 16px 18px;
    }

    .wizard-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .wizard-modal {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .wizard-overlay.open .wizard-modal {
        transform: translateY(0);
    }

    .wizard-header {
        padding: 18px 18px 14px;
    }

    .wizard-title {
        font-size: 1rem;
    }

    .wizard-body {
        padding: 16px 18px;
    }

    .wizard-footer {
        padding: 12px 18px;
    }

    .wizard-choice-btn {
        font-size: 0.88rem;
        padding: 11px 14px;
    }

    .wizard-contact-btn {
        font-size: 0.85rem;
        padding: 11px 12px;
        min-width: 120px;
    }
}