/* index.css — extracted from index.html (CSP cleanup) */

    /* ============================================================
       INTRO OVERLAY
    ============================================================ */
    #intro-overlay {
      position: fixed; inset: 0; background: #070c1c;
      z-index: 9999; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      color: #e2e8f0; font-family: "Poppins", sans-serif; padding: 20px;
    }
    .intro-topbar {
      position: absolute; top: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px;
    }

    /* INTRO SELECT */
    .intro-lang-select {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      color: #fff; padding: 6px 32px 6px 12px;
      border-radius: 8px; cursor: pointer;
      font-size: 13px; font-family: "Poppins", sans-serif;
      outline: none; transition: 0.25s;
      appearance: none; -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300bcd4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
    }
    .intro-lang-select:focus { border-color: #00bcd4; }
    .intro-lang-select option { background: #0a122a; color: #fff; }

    .intro-x-btn {
      background: none; border: 1px solid rgba(255,255,255,0.15);
      color: #a1a1aa; width: 36px; height: 36px; border-radius: 50%;
      font-size: 18px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-family: "Poppins", sans-serif; transition: 0.2s; text-decoration: none;
    }
    .intro-x-btn:hover { border-color: #ef4444; color: #ef4444; }

    .intro-logo {
      font-size: 28px; font-weight: 700; color: #fff;
      letter-spacing: 3px; margin-bottom: 2px;
    }
    .intro-logo span { color: #00bcd4; }
    .intro-sub { font-size: 10px; letter-spacing: 5px; color: #00bcd4; margin-bottom: 28px; }

    .slide-wrapper {
      position: relative; max-width: 700px; width: 100%;
      display: flex; align-items: center; gap: 10px;
    }
    .slide-content {
      flex: 1; text-align: center; padding: 36px 32px;
      border: 1px solid rgba(0,188,212,0.22); border-radius: 18px;
      background: rgba(255,255,255,0.04); min-height: 200px;
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; gap: 14px; cursor: default; user-select: none;
    }
    .slide-num   { font-size: 11px; color: #00bcd4; letter-spacing: 3px; }
    .slide-title { font-size: 20px; font-weight: 600; color: #fff; line-height: 1.4; }
    .slide-text  { font-size: 13.5px; color: #a1a1aa; line-height: 1.9; }

    .card-arrow {
      flex-shrink: 0; background: rgba(0,188,212,0.1);
      border: 1px solid rgba(0,188,212,0.25); color: #00bcd4;
      width: 44px; height: 44px; border-radius: 50%; font-size: 20px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: 0.2s; font-family: "Poppins", sans-serif;
    }
    .card-arrow:hover { background: rgba(0,188,212,0.25); }
    .card-arrow:disabled { opacity: 0.2; cursor: default; pointer-events: none; }

    .intro-dots { display: flex; gap: 8px; margin-top: 20px; }
    .intro-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.2); transition: 0.3s;
      cursor: pointer; border: none;
    }
    .intro-dot.active { background: #00bcd4; transform: scale(1.4); }

    .intro-progress-wrap {
      width: 100%; max-width: 700px; height: 3px;
      background: rgba(255,255,255,0.08); border-radius: 3px;
      margin-top: 16px; overflow: hidden;
    }
    .intro-progress-bar { height: 100%; background: #00bcd4; border-radius: 3px; width: 0%; }

    .intro-timer     { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 8px; }
    .intro-hold-hint { font-size: 11px; color: rgba(255,255,255,0.22); margin-top: 8px; }

    .intro-actions { display: flex; gap: 14px; margin-top: 18px; align-items: center; }
    .btn-intro-skip {
      background: none; border: 1px solid rgba(255,255,255,0.15); color: #a1a1aa;
      padding: 10px 24px; border-radius: 50px; font-size: 13px; cursor: pointer;
      text-decoration: none; font-family: "Poppins", sans-serif; transition: 0.2s;
    }
    .btn-intro-skip:hover { border-color: #ef4444; color: #ef4444; }
    .btn-intro-signin {
      background: #00bcd4; border: none; color: #000;
      padding: 10px 28px; border-radius: 50px; font-size: 13px;
      font-weight: 700; cursor: pointer; text-decoration: none;
      font-family: "Poppins", sans-serif; transition: 0.2s;
    }
    .btn-intro-signin:hover { background: #0ea5e9; }

    /* ============================================================
       ROOT
    ============================================================ */
    :root {
      --accent:       #00bcd4; /* Ultra-bright Electric Cyan */
      --accent-hover: #0ea5e9; /* Neon Blue Accent */
      --bg-dark:      #0b0f19; /* Deep Obsidian Navy Canvas */
      --bg-card:      #0f172a; /* Obsidian Slate Cards */
      --card-bg:      rgba(255,255,255,0.03);
      --text-gray:    #94a3b8; /* Soft Steel Slate Gray */
      --text-light:   #ffffff; /* Pure White */
    }
    * { box-sizing: border-box; margin: 0; padding: 0; font-family: "Poppins", sans-serif; }
    body { background: var(--bg-dark); color: var(--text-gray); line-height: 1.6; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    h1, h2, h3, h4, h5, h6 { color: var(--text-light); }

    /* OVERLAY */
    .overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.65);
      z-index: 1040; opacity: 0; pointer-events: none; transition: 0.4s;
    }
    .overlay.show { opacity: 1; pointer-events: all; }

    /* ============================================================
       HEADER (SMART SCROLL & FLOAT BAR)
    ============================================================ */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      background: transparent;
      border-bottom: 1px solid rgba(255, 255, 255, 0);
      backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
      will-change: transform;
    }

    .topbar.is-scrolled {
      background: rgba(11, 15, 25, 0.85); /* Obsidian Navy with alpha */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 188, 212, 0.15); /* Electric Cyan Border */
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
    }

    .topbar.is-hidden {
      transform: translateY(-100%);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      height: 70px;
      width: 100%;
      padding: 0 20px;
      position: relative;
    }

    /* BRAND LOGO */
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text-light);
      z-index: 10;
    }
    .brand-mark {
      background: var(--accent);
      color: #0b0f19;
      font-weight: 900;
      font-size: 20px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 188, 212, 0.45);
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .brand-text strong {
      font-size: 18px;
      letter-spacing: 1px;
      color: var(--text-light);
    }
    .brand-text small {
      font-size: 9px;
      letter-spacing: 2px;
      color: var(--accent);
      font-weight: 600;
    }

    /* DESKTOP NAVIGATION */
    .desktop-nav {
      display: none;
      flex: 1 1 auto;
      justify-content: center;
      align-items: center;
      min-width: 0;
    }

    @media (min-width: 1025px) {
      .desktop-nav {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        position: static;
      }
      .desktop-nav-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
      }
      .desktop-nav-list li {
        margin: 0;
        position: relative;
      }
      .desktop-nav-list .nav-link {
        color: var(--text-gray);
        font-weight: 600;
        font-size: 0.8rem;
        transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
        padding: 6px 7px;
        position: relative;
        letter-spacing: 0.02em;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
      }
      .desktop-nav-list .nav-link-icon { display: none; }
      .desktop-nav-list .nav-link:hover,
      .desktop-nav-list .nav-link.active {
        color: var(--text-light);
        background: rgba(0, 188, 212, 0.12);
        transform: translateY(-1px);
      }
      .desktop-nav-list .nav-link::after {
        content: '';
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 3px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), #0ea5e9);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
      }
      .desktop-nav-list .nav-link:hover::after,
      .desktop-nav-list .nav-link.active::after {
        transform: scaleX(1);
      }
    }

    /* ACTIONS (SEARCH & SWITCHER) */
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: auto;
    }

    /* SEARCH INPUT */
    .nav-search {
      position: relative;
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      padding: 6px 12px 6px 36px;
      transition: all 0.3s ease;
      color: var(--text-gray);
    }
    .nav-search i {
      position: absolute;
      left: 12px;
      font-size: 14px;
      color: var(--text-gray);
      pointer-events: none;
      transition: color 0.3s ease;
    }
    .nav-search input {
      border: none;
      background: transparent;
      color: #ffffff;
      outline: none;
      font-size: 13px;
      width: 130px;
      transition: width 0.3s ease;
      font-family: "Poppins", sans-serif;
    }
    .nav-search input::placeholder {
      color: var(--text-gray);
    }
    .nav-search:focus-within {
      border-color: var(--accent);
      background: rgba(255, 255, 255, 0.08);
    }
    .nav-search:focus-within i {
      color: var(--accent);
    }
    .nav-search:focus-within input {
      width: 170px;
    }

    .nav-signin {
      color: var(--text-light);
      font-weight: 600;
      font-size: 14px;
      padding: 8px 20px;
      border-radius: 50px;
      border: 1px solid rgba(0, 188, 212, 0.3);
      transition: all 0.3s ease;
      background: rgba(0, 188, 212, 0.05);
    }
    .nav-signin:hover {
      background: var(--accent);
      color: #0b0f19;
      border-color: var(--accent);
      box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
    }

    /* HAMBURGER BUTTON */
    .menu-toggle {
      display: flex; flex-direction: column; gap: 5px;
      cursor: pointer; z-index: 1101; position: relative;
      width: 34px; min-height: 36px; margin-left: 12px;
      background: transparent; border: none; padding: 4px;
      align-items: stretch; justify-content: center;
      appearance: none; -webkit-appearance: none;
    }
    .menu-toggle:focus {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
    }
    .menu-toggle span {
      display: block; height: 2.5px; width: 100%;
      background: var(--accent); border-radius: 3px; transition: 0.4s;
    }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    @media (min-width: 1025px) {
      .menu-toggle { display: none !important; }
    }

    /* ============================================================
       DESKTOP NAV — ICON LINKS + Ko'proq DROPDOWN
    ============================================================ */

    /* Wider nav-shell to fit all links */
    .nav-shell {
      max-width: 1760px;
      padding: 0 24px;
    }

    /* Nav link with icon */
    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .nav-link-icon {
      font-size: 13px;
      color: var(--accent);
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }
    .nav-link:hover .nav-link-icon,
    .nav-link.active .nav-link-icon {
      transform: scale(1.2);
    }

    .desktop-nav-list li {
      position: relative;
    }

    /* Ko'proq button inherits nav-link styles */
    .nav-more-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: "Poppins", sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .nav-more-chevron {
      font-size: 10px;
      color: var(--text-gray);
      transition: transform 0.25s ease;
    }
    .nav-more-btn[aria-expanded="true"] .nav-more-chevron {
      transform: rotate(180deg);
    }

    /* Ko'proq DROPDOWN PANEL */
    .nav-more-dropdown {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      min-width: 220px;
      background: rgba(10, 14, 28, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(0, 188, 212, 0.18);
      border-radius: 18px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
      z-index: 2000;
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
    }
    .nav-more-dropdown::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid rgba(0, 188, 212, 0.3);
    }
    .nav-more-item:hover .nav-more-dropdown,
    .nav-more-item .nav-more-btn[aria-expanded="true"] ~ .nav-more-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    /* Dropdown items */
    .nav-more-item-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 14px;
      border-radius: 12px;
      color: #94a3b8;
      font-size: 13.5px;
      font-weight: 500;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      text-decoration: none;
    }
    .nav-more-item-link i {
      width: 18px;
      text-align: center;
      color: var(--accent);
      font-size: 14px;
      flex-shrink: 0;
    }
    .nav-more-item-link:hover {
      background: rgba(0, 188, 212, 0.1);
      color: #fff;
      transform: translateX(3px);
    }
    .nav-phone-link {
      color: var(--accent) !important;
      font-weight: 600;
    }
    .nav-phone-link:hover {
      background: rgba(0, 188, 212, 0.12) !important;
    }
    .nav-more-divider {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin: 6px 8px;
      border-radius: 1px;
    }
    .nav-more-signin {
      background: rgba(0, 188, 212, 0.08);
      color: var(--accent) !important;
      font-weight: 700;
      margin-top: 2px;
      border: 1px solid rgba(0, 188, 212, 0.2);
    }
    .nav-more-signin:hover {
      background: var(--accent) !important;
      color: #0b0f19 !important;
      border-color: var(--accent);
      transform: none;
    }
    .nav-more-signin i { color: inherit !important; }

    /* Compact by default (see base .desktop-nav-list .nav-link above);
       only widen back out once there's genuinely enough room. */
    @media (min-width: 1560px) {
      .desktop-nav-list { gap: clamp(4px, 1vw, 16px); }
      .desktop-nav-list .nav-link {
        font-size: 14px;
        padding: 8px 12px;
      }
      .desktop-nav-list .nav-link-icon { display: inline-block; }
    }

    /* MOBILE DRAWER (SIDE NAV) — dizayn shared-ui.css dan keladi
       (barcha marketing sahifalarida qatiy bir xil). Bu yerda override YO'Q. */


    /* ============================================================
       HERO
    ============================================================ */
    .hero {
      text-align: center; padding: 90px 20px;
      background: linear-gradient(rgba(7,12,28,0.78), rgba(7,12,28,0.82)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop');
      background-position: center; background-size: cover;
      min-height: 60vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 26px;
    }
    .btn1 {
      background: var(--accent); color: #0b0f19; padding: 14px 30px;
      border-radius: 50px; font-weight: 600; transition: 0.3s;
      cursor: pointer; border: none; display: inline-block;
      font-family: "Poppins", sans-serif; font-size: 14px;
    }
    .btn1:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,188,212,0.35); }

    /* ============================================================
       SECTIONS
    ============================================================ */
    section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
    h2.section-title {
      text-align: center; font-size: 32px; margin-bottom: 40px;
      color: #fff; text-transform: uppercase;
    }

    .service-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
    .service {
      background: var(--bg-card); padding: 40px 30px; border-radius: 15px;
      text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
    }
    .service:hover {
      transform: translateY(-10px); border-color: var(--accent);
      background: rgba(255,255,255,0.07); cursor: pointer;
    }
    .service img { margin-bottom: 20px; filter: drop-shadow(0 0 10px var(--accent)); }

    /* FORM INPUTS */
    .form-input {
      padding: 12px 15px; border-radius: 8px;
      border: 1px solid #1e293b; background: #0f172a;
      color: #fff; font-size: 14px; font-family: "Poppins", sans-serif;
      outline: none; transition: 0.3s; width: 100%;
    }
    .form-input:focus { border-color: var(--accent); }
    .form-input::placeholder { color: #64748b; }

    /* ============================================================
       LOGISTICS PIPELINE DIAGRAM
    ============================================================ */
    .pipeline-section {
      background: rgba(15, 23, 42, 0.45);
      border-radius: 24px;
      border: 1px solid rgba(0, 188, 212, 0.08);
      margin-top: 50px;
      padding: 60px 30px;
    }
    .pipeline-container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }
    .pipeline-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      cursor: pointer;
      z-index: 2;
      transition: all 0.3s ease;
    }
    .step-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #1e293b;
      border: 3px solid #334155;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--text-gray);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-bottom: 20px;
    }
    .pipeline-step.active .step-icon {
      background: var(--bg-dark);
      border-color: var(--accent);
      color: var(--accent);
      box-shadow: 0 0 20px rgba(0, 188, 212, 0.35);
    }
    .pipeline-step:hover .step-icon {
      transform: scale(1.1);
      border-color: var(--accent);
      color: var(--accent);
    }
    .step-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .step-num {
      font-size: 11px;
      color: var(--text-gray);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
    }
    .pipeline-step.active .step-num {
      color: var(--accent);
    }
    .step-content h4 {
      font-size: 16px;
      color: var(--text-light);
      font-weight: 600;
    }
    .step-content p {
      font-size: 13px;
      color: var(--text-gray);
      line-height: 1.5;
      max-width: 220px;
      margin: 0 auto;
    }
    .step-connector {
      position: absolute;
      top: 35px;
      left: calc(50% + 35px);
      right: calc(-50% + 35px);
      height: 3px;
      background: #334155;
      z-index: 1;
      transition: background-color 0.3s ease;
    }
    .pipeline-step.active .step-connector {
      background: linear-gradient(90deg, var(--accent), #334155);
    }
    .pipeline-step.active + .pipeline-step.active .step-connector {
      background: var(--accent);
    }

    @media (max-width: 992px) {
      .pipeline-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-left: 40px;
      }
      .pipeline-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 20px;
        width: 100%;
      }
      .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
      }
      .step-content p {
        margin: 0;
        max-width: 100%;
      }
      .step-connector {
        top: 70px;
        left: 35px;
        bottom: -40px;
        width: 3px;
        height: auto;
        right: auto;
      }
      .pipeline-step.active .step-connector {
        background: linear-gradient(180deg, var(--accent), #334155);
      }
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      text-align: center; padding: 40px;
      background: #050a18; border-top: 1px solid #1e293b; margin-top: 50px;
    }

    /* ============================================================
       RESPONSIVE OVERRIDES
    ============================================================ */
    @media (max-width: 1024px) {
      .nav-search { display: none; }
      .hero { height: 40vh; }
      h2.section-title { font-size: 26px; }
    }
    @media (max-width: 480px) {
      .logo h2 { font-size: 16px; }
      .lang-select { font-size: 11px; padding: 6px 26px 6px 8px; }
    }

/* ============================================================
   GEO enhancements — hero copy, feature density, FAQ matrix
   ============================================================ */
.hero-copy { max-width: 840px; margin: 0 auto; }
.hero-title {
  font-size: clamp(28px, 5vw, 48px); line-height: 1.15; font-weight: 800;
  color: var(--text-light); margin-bottom: 16px; letter-spacing: -0.5px;
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 19px); color: #cbd5e1;
  max-width: 700px; margin: 0 auto; line-height: 1.6;
}

.geo-features, .geo-faq { max-width: 1100px; margin: 0 auto; padding: 64px 20px; }
.geo-lead {
  max-width: 840px; margin: 0 auto 34px; text-align: center;
  color: var(--text-gray); font-size: 16px; line-height: 1.7;
}
.geo-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.geo-feature {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 26px; transition: border-color 0.25s, transform 0.25s;
}
.geo-feature:hover { border-color: var(--accent); transform: translateY(-4px); }
.geo-feature h3 { font-size: 18px; margin-bottom: 10px; color: var(--text-light); }
.geo-feature p { font-size: 14.5px; color: var(--text-gray); line-height: 1.65; }

.geo-faq-list { display: grid; gap: 16px; max-width: 860px; margin: 0 auto; }
.geo-faq-item {
  background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent); border-radius: 12px; padding: 22px 24px;
}
.geo-faq-item h3 { font-size: 16.5px; margin-bottom: 8px; color: var(--text-light); line-height: 1.4; }
.geo-faq-item p { font-size: 14.5px; color: var(--text-gray); line-height: 1.7; }

@media (max-width: 600px) {
  .geo-features, .geo-faq { padding: 44px 16px; }
  .geo-feature, .geo-faq-item { padding: 20px; }
}

/* ============================================================
   NAVBAR & HAMBURGER — 480px / 360px / 320px GACHA moslashuv
   (oquv.html bilan bir xil — barcha sahifalarda qatiy bir xil)
============================================================ */
@media (max-width: 480px) {
  .nav-shell { padding: 0 14px; height: 64px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 8px; letter-spacing: 1.5px; }
  .brand-mark { width: 32px; height: 32px; font-size: 17px; border-radius: 7px; }
  .menu-toggle { width: 30px; margin-left: 8px; }
}
@media (max-width: 360px) {
  .nav-shell { padding: 0 10px; height: 60px; }
  .brand-text strong { font-size: 14px; }
  .brand-text small { font-size: 7px; letter-spacing: 1px; }
  .brand-mark { width: 30px; height: 30px; font-size: 15px; }
  .nav-actions { gap: 8px; }
  .lang-switcher { flex: 0 0 96px; width: 96px; max-width: 96px; font-size: 11px; }
  .nav-signin { display: none; }
  .menu-toggle { width: 28px; margin-left: 4px; }
}
@media (max-width: 320px) {
  .nav-shell { padding: 0 8px; height: 58px; }
  .brand-text strong { font-size: 13px; }
  .brand-mark { width: 28px; height: 28px; font-size: 14px; }
  .lang-switcher { flex: 0 0 88px; width: 88px; max-width: 88px; font-size: 10px; }
  .menu-toggle { width: 26px; }
}
