/* ===== Language Switcher ===== */
      .lang-switcher {
        display: flex;
        gap: 2px;
        align-items: center;
        margin-right: 4px;
        background: rgba(17,20,51,0.6);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 2px;
      }

      .lang-btn {
        padding: 5px 10px;
        border: none;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        background: transparent;
        color: var(--text-muted);
        font-family: inherit;
        transition: all 0.2s;
        line-height: 1;
      }

      .lang-btn:hover { color: var(--text-secondary); }

      .lang-btn.active {
        background: rgba(79,70,229,0.2);
        color: var(--indigo-400);
      }

      /* ===== Store Badges ===== */
      .store-badges {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .store-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.25s;
        font-family: inherit;
      }

      .store-badge:hover {
        transform: translateY(-2px);
      }

      .store-badge .sb-icon {
        font-size: 22px;
        line-height: 1;
      }

      .store-badge .sb-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
      }

      .store-badge .sb-label {
        font-size: 9px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        opacity: 0.7;
      }

      .store-badge .sb-name {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -0.01em;
      }

      .store-badge-web {
        background: rgba(79,70,229,0.15);
        border: 1px solid rgba(79,70,229,0.25);
        color: var(--text-primary);
      }

      .store-badge-web:hover {
        background: rgba(79,70,229,0.25);
        border-color: rgba(79,70,229,0.4);
        box-shadow: 0 4px 16px rgba(79,70,229,0.2);
      }

      .store-badge-ios {
        background: rgba(6,182,212,0.12);
        border: 1px solid rgba(6,182,212,0.2);
        color: var(--text-primary);
      }

      .store-badge-ios:hover {
        background: rgba(6,182,212,0.2);
        border-color: rgba(6,182,212,0.35);
        box-shadow: 0 4px 16px rgba(6,182,212,0.15);
      }

      .store-badge-android {
        background: rgba(52,211,153,0.12);
        border: 1px solid rgba(52,211,153,0.2);
        color: var(--text-primary);
      }

      .store-badge-android:hover {
        background: rgba(52,211,153,0.2);
        border-color: rgba(52,211,153,0.35);
        box-shadow: 0 4px 16px rgba(52,211,153,0.15);
      }

      @media (max-width: 768px) {
        .lang-switcher { margin-right: 0; }
        .lang-btn { padding: 4px 7px; font-size: 11px; }
        .store-badge { padding: 8px 14px; }
        .store-badge .sb-icon { font-size: 18px; }
        .store-badge .sb-name { font-size: 12px; }
      }

      .store-badges-section {
        padding: 40px 0 0;
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .store-badges-section .store-badges {
        justify-content: center;
      }
      .hero .store-badges {
        margin-top: -8px !important;
        margin-bottom: 36px !important;
      }

      