/* ============================================================
   VIAGO PUBLIC SITE
   Modern landing-page CSS (Bolt/Uber inspired)
   Uses brand CSS variables from core.css
   ============================================================ */

/* ============ BASE ============ */
.public-body {
    background: #fff;
    color: var(--brand-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
.public-body * { box-sizing: border-box; }
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 768px) {
    .container { padding: 0 18px; }
}

/* ============ HEADER / NAV ============ */
.public-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1f5f9;
    z-index: 100;
}
.public-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}
.public-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--brand-text);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.public-logo img {
    height: 36px;
    width: auto;
}
.public-logo-fallback {
    width: 36px;
    height: 36px;
    background: var(--brand-primary);
    color: var(--brand-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.public-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.public-nav-links a {
    color: var(--brand-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.15s ease;
}
.public-nav-links a:hover {
    color: var(--brand-primary);
}
.public-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.public-lang {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 13px;
}
.public-lang a {
    color: var(--brand-text-muted);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
}
.public-lang a.active {
    color: var(--brand-text);
    background: var(--brand-primary-soft);
}
.btn-public {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--brand-radius);
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    transition: transform 0.1s ease, box-shadow 0.15s ease;
    line-height: 1;
    white-space: nowrap;
}
.btn-public:hover { transform: translateY(-1px); }
.btn-public-primary {
    background: var(--brand-primary);
    color: var(--brand-secondary);
}
.btn-public-primary:hover {
    box-shadow: 0 8px 20px -8px rgba(255, 201, 60, 0.6);
}
.btn-public-dark {
    background: var(--brand-secondary);
    color: #fff;
}
.btn-public-dark:hover {
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.4);
}
.btn-public-ghost {
    background: transparent;
    color: var(--brand-text);
    border: 1.5px solid #e5e7eb;
}
.btn-public-ghost:hover {
    border-color: var(--brand-text);
}
.btn-public-lg {
    padding: 16px 32px;
    font-size: 17px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--brand-text);
}
.menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 900px) {
    .public-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #f1f5f9;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px;
        gap: 16px;
    }
    .public-nav-links.is-open {
        display: flex;
    }
    .public-nav-links a {
        padding: 8px 0;
        font-size: 16px;
    }
    .menu-toggle {
        display: block;
    }
    .public-nav-cta .btn-public {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(180deg, var(--brand-primary-soft, #FFF5D6) 0%, #fff 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    margin: 0 0 20px;
    color: var(--brand-text);
}
.hero h1 span {
    color: var(--brand-primary);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 19px;
    color: var(--brand-text-muted);
    margin: 0 0 32px;
    max-width: 540px;
    line-height: 1.55;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 540px;
}
.hero-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--brand-text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--brand-text-muted);
    margin-top: 4px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 540px;
}
.hero-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    width: 280px;
    height: 560px;
    background: var(--brand-secondary);
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(0, 0, 0, 0.05);
}
.hero-phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}
.hero-phone-map {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 201, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, #f0f0f0, #f0f0f0 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(-45deg, #e8e8e8, #e8e8e8 1px, transparent 1px, transparent 30px),
        #fafafa;
}
.hero-phone-pin {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--brand-primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.hero-phone-pin::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: #fff;
    border-radius: 50%;
}
.hero-phone-pin-pickup { top: 30%; left: 25%; }
.hero-phone-pin-dropoff { top: 55%; left: 65%; background: var(--brand-secondary); }
.hero-phone-pin-dropoff::before { background: #fff; }
.hero-phone-card {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.hero-phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
}
.hero-phone-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-phone-dot-from { background: #ef4444; }
.hero-phone-dot-to { background: var(--brand-primary); }
.hero-phone-line {
    margin-left: 4px;
    width: 2px;
    height: 14px;
    background: #e5e7eb;
}
.hero-phone-price {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-phone-price strong { font-size: 22px; color: var(--brand-text); }

.hero-bubble {
    position: absolute;
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-bubble-1 {
    top: 70px;
    right: 0;
    animation: floatBubble 3s ease-in-out infinite;
}
.hero-bubble-2 {
    bottom: 80px;
    left: -10px;
    animation: floatBubble 3s ease-in-out infinite 1s;
}
@keyframes floatBubble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
    .hero { padding: 50px 0 40px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 17px; }
    .hero-visual {
        height: 460px;
        order: -1;
    }
    .hero-phone {
        width: 230px;
        height: 460px;
    }
    .hero-bubble { font-size: 12px; padding: 10px 14px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .hero-stat-num { font-size: 24px; }
}

/* ============ SECTION BASE ============ */
.section {
    padding: 80px 0;
}
.section-tight {
    padding: 60px 0;
}
.section-alt {
    background: #fafbfc;
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--brand-text);
}
.section-header p {
    font-size: 18px;
    color: var(--brand-text-muted);
    margin: 0;
}
.section-tag {
    display: inline-block;
    background: var(--brand-primary-soft);
    color: var(--brand-secondary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 28px; }
    .section-header p { font-size: 16px; }
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: calc(var(--brand-radius) + 4px);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
}
.step-num {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: var(--brand-primary);
    color: var(--brand-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
}
.step-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-primary-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 28px;
}
.step-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 700;
}
.step-card p {
    color: var(--brand-text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* ============ CATEGORIES (Vehicle pricing) ============ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.category-card {
    background: #fff;
    padding: 28px;
    border-radius: calc(var(--brand-radius) + 4px);
    border: 2px solid #f1f5f9;
    text-align: center;
    transition: all 0.2s ease;
}
.category-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.12);
}
.category-icon {
    font-size: 48px;
    margin-bottom: 14px;
}
.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
}
.category-card .category-cap {
    font-size: 13px;
    color: var(--brand-text-muted);
    margin-bottom: 18px;
}
.category-price {
    background: #f9fafb;
    padding: 14px;
    border-radius: var(--brand-radius);
    text-align: left;
}
.category-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
}
.category-price-row strong {
    font-weight: 700;
    color: var(--brand-text);
}

/* ============ DRIVER CTA SECTION ============ */
.driver-cta {
    background: var(--brand-secondary);
    color: #fff;
    border-radius: 32px;
    padding: 60px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.driver-cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.driver-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-primary) 0%, transparent 60%);
    opacity: 0.2;
}
.driver-cta h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.driver-cta h2 span { color: var(--brand-primary); }
.driver-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin: 0 0 28px;
}
.driver-benefits {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}
.driver-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}
.driver-benefits-check {
    width: 24px;
    height: 24px;
    background: var(--brand-primary);
    color: var(--brand-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 14px;
}
.driver-cta-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 14px;
}
.driver-cta-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.driver-cta-stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

@media (max-width: 900px) {
    .driver-cta {
        padding: 40px 28px;
        border-radius: 24px;
    }
    .driver-cta-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .driver-cta h2 { font-size: 26px; }
    .driver-cta p { font-size: 15px; }
}

/* ============ CITIES ============ */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.city-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 18px;
    border-radius: var(--brand-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s, transform 0.15s;
    text-decoration: none;
    color: var(--brand-text);
}
.city-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}
.city-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-primary-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.city-name {
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}
.city-radius {
    font-size: 12px;
    color: var(--brand-text-muted);
}

/* ============ FAQ ACCORDION ============ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: var(--brand-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.15s;
}
.faq-item.is-open {
    border-color: var(--brand-primary);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--brand-text);
    user-select: none;
}
.faq-question:hover {
    background: #fafbfc;
}
.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--brand-primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--brand-secondary);
    transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.is-open .faq-toggle {
    background: var(--brand-primary);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--brand-text-muted);
    font-size: 15px;
    line-height: 1.65;
}
.faq-item.is-open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 24px 22px;
}

/* ============ DOWNLOAD CTA ============ */
.download-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--brand-primary-soft) 0%, #fff 50%, var(--brand-primary-soft) 100%);
    border-radius: 32px;
    padding: 60px 40px;
    margin: 40px 0;
}
.download-cta h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.download-cta p {
    color: var(--brand-text-muted);
    font-size: 18px;
    margin: 0 0 32px;
}
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.app-store-btn {
    background: var(--brand-secondary);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--brand-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.1s;
}
.app-store-btn:hover { transform: translateY(-2px); }
.app-store-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.app-store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1;
}
.app-store-btn-text small {
    font-size: 10px;
    color: rgba(255,255,255,0.7);
}
.app-store-btn-text strong {
    font-size: 16px;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .download-cta { padding: 40px 24px; border-radius: 22px; }
    .download-cta h2 { font-size: 24px; }
    .download-cta p { font-size: 15px; }
}

/* ============ FOOTER ============ */
.public-footer {
    background: var(--brand-secondary);
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}
.footer-brand-fallback {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 16px;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin: 0 0 20px;
    font-size: 14px;
    max-width: 360px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.15s;
}
.footer-social a:hover {
    background: var(--brand-primary);
    color: var(--brand-secondary);
}
.footer-social svg {
    width: 18px;
    height: 18px;
}
.footer-col h4 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 16px;
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}
.footer-col a:hover {
    color: var(--brand-primary);
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============ STATIC PAGE (terms, privacy, etc.) ============ */
.static-page {
    padding: 60px 0;
}
.static-page-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
}
.static-page h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 30px;
    line-height: 1.1;
}
.static-page .meta {
    color: var(--brand-text-muted);
    margin-bottom: 30px;
    font-size: 14px;
}
.static-page-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--brand-text);
}
.static-page-content h2 {
    font-size: 24px;
    margin: 36px 0 14px;
    font-weight: 700;
}
.static-page-content h3 {
    font-size: 18px;
    margin: 24px 0 10px;
    font-weight: 700;
}
.static-page-content p { margin: 0 0 16px; }
.static-page-content ul, .static-page-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}
.static-page-content li { margin-bottom: 8px; }

@media (max-width: 600px) {
    .static-page h1 { font-size: 28px; }
}

/* Native app sub-page: redukovať top padding (sticky native header už má svoje) */
body.native-app .static-page {
    padding: 24px 18px calc(40px + env(safe-area-inset-bottom, 0));
}
body.native-app .static-page h1 { font-size: 26px; margin-bottom: 16px; }
body.native-app .static-page-content { font-size: 15px; line-height: 1.7; }
body.native-app .static-page .meta { margin-bottom: 22px; }

/* ============ LOGIN DROPDOWN (customer/driver) ============ */
.public-login-dropdown {
    position: relative;
    display: inline-block;
}
.public-login-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.public-login-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.18);
    padding: 8px;
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 200;
}
.public-login-dropdown:hover .public-login-menu,
.public-login-dropdown:focus-within .public-login-menu,
.public-login-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.public-login-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--brand-text, #1a1a1a);
    transition: background .12s;
}
.public-login-menu a:hover {
    background: var(--brand-primary-soft, #fff6da);
}
.public-login-menu a strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
.public-login-menu a small {
    display: block;
    font-size: 12px;
    color: #8a909a;
    margin-top: 1px;
}
