    :root {
      --brand-orange: #FA4616;
      --brand-orange-hover: #D93A10;
      --brand-orange-soft: #FFF0EA;
      --brand-orange-border: rgba(250,70,22,0.28);
      --orange: var(--brand-orange);
      --orange-dark: var(--brand-orange-hover);
      --black: #111111;
      --dark: #1A1A1A;
      --dark2: #242424;
      --gray: #3A3A3A;
      --mid: #6F7378;
      --light: #F6F7F8;
      --surface: #FFFFFF;
      --surface-soft: #F6F7F8;
      --ink: #111111;
      --text: #242424;
      --white: #FFFFFF;
      --border: rgba(17,17,17,0.10);
      --border-dark: rgba(255,255,255,0.10);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'Helvetica Neue', Arial, sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }
    .en, .en-block { display: none; }
    .zh-block { display: block; }
    body.lang-en .zh { display: none; }
    body.lang-en .en { display: inline; }
    body.lang-en .en-block { display: block !important; }
    body.lang-en .zh-block { display: none !important; }

    /* ========== NAV ========== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 76px;
      min-height: 76px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 clamp(56px, 4vw, 72px);
      background: rgba(8, 9, 10, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s;
    }
    .nav-logo {
      font-family: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif; text-decoration: none;
      font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: 2px;
      display: inline-flex; align-items: center; flex: 0 0 220px;
    }
    .nav-logo span { color: var(--orange); }
    .nav-logo img { height: 40px !important; width: auto !important; display: block; }
    .nav-links {
      display: flex; align-items: center; justify-content: center; list-style: none;
      gap: clamp(32px, 3vw, 52px);
    }
    .nav-links a {
      position: relative; display: inline-flex; align-items: center;
      padding: 30px 0; text-decoration: none; color: rgba(255,255,255,0.68);
      font-size: 14px; font-weight: 700; line-height: 1;
      transition: color 0.2s ease; letter-spacing: 1.5px;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; text-transform: uppercase;
    }
    .nav-links a:hover { color: #ffffff; }
    .nav-links a.active { color: #ffffff; font-weight: 800; }
    .nav-links a.active::after {
      content: ""; position: absolute; left: 50%; bottom: 18px;
      width: 24px; height: 3px; background: var(--orange);
      transform: translateX(-50%); border-radius: 1px;
    }
    .nav-actions {
      display: flex; align-items: center; justify-content: flex-end;
      gap: 20px; flex: 0 0 220px;
    }
    .lang-switch {
      height: 36px; padding: 0 18px; border-radius: 999px; cursor: pointer;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.22);
      color: rgba(255,255,255,0.86); font-size: 13px; font-weight: 600;
      letter-spacing: 0.04em; display: inline-flex; align-items: center;
      justify-content: center; transition: all 0.2s ease;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    }
    .lang-switch:hover { border-color: rgba(255,61,22,0.72); color: #ffffff; }
    .nav-cta {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 1px;
      background: var(--orange); color: var(--white);
      border: none; cursor: pointer;
      padding: 8px 20px; border-radius:3px;
      text-transform: uppercase;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--orange-dark); }

    /* ========== SECTION COMMON ========== */
    .container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-label {
      display: inline-block;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 3px;
      color: var(--orange); text-transform: uppercase;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 800; text-transform: uppercase;
      color: var(--black); letter-spacing: 1px;
      line-height: 1.1;
    }
    .section-title.light { color: var(--white); }
    .section-title .highlight { color: var(--orange); }
    .section-desc {
      font-size: 15px; color: var(--mid);
      margin-top: 12px; line-height: 1.7;
    }
    .section-desc.light { color: rgba(255,255,255,0.5); }

    /* ========== BUTTONS ========== */
    .btn-primary {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 15px; font-weight: 700; letter-spacing: 2px;
      background: var(--orange); color: var(--white);
      border: none; cursor: pointer;
      padding: 14px 36px; border-radius:3px;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s;
      text-decoration: none; display: inline-block;
    }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
    .btn-outline {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 15px; font-weight: 700; letter-spacing: 2px;
      background: transparent; color: var(--white);
      border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
      padding: 14px 36px; border-radius:3px;
      text-transform: uppercase;
      transition: border-color 0.2s, color 0.2s;
      text-decoration: none; display: inline-block;
    }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
    .btn-dark {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 1px;
      background: var(--black); color: var(--white);
      border: none; cursor: pointer;
      padding: 9px 20px; border-radius:3px;
      text-transform: uppercase;
      transition: background 0.2s; text-decoration: none; display: inline-block;
    }
    .btn-dark:hover { background: var(--orange); }

    /* ========== DROPDOWN NAV ========== */
    .nav-links > li > a { display: inline-flex; align-items: center; }
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { gap: 4px; cursor: default; }
    .dropdown-arrow { font-size: 10px; transition: transform 0.3s; margin-left: 2px; position: relative; top: -1px; }
    .nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
    .dropdown-menu {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
      background: var(--dark2); border: 1px solid var(--border-dark);
      border-radius:5px; padding: 8px 0; min-width: 170px;
      opacity: 0; visibility: hidden;
      transition: all 0.3s; z-index: 1001; list-style: none;
      box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
    }
    .dropdown-menu a {
      display: block; padding: 10px 20px; color: var(--mid);
      font-size: 13px; white-space: nowrap; transition: all 0.2s;
    }
    .dropdown-menu a:hover { color: var(--orange); background: var(--brand-orange-soft); }
    .dropdown-menu a.drop-active { color: var(--orange); }
    /* Mega Dropdown */
    .mega-dropdown { position: relative; }
    .mega-dropdown > a { gap: 4px; cursor: default; display:inline-flex;align-items:center; }
    .mega-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
    .mega-menu {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
      background: var(--dark2); border: 1px solid var(--border-dark);
      border-radius:3px; padding: 24px; min-width: 520px;
      opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 1001;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6); display: flex; gap: 24px;
    }
    .mega-dropdown:hover .mega-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
    }
    .mega-col { flex: 1; }
    .mega-col-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px;
      color: var(--orange); text-transform: uppercase; margin-bottom: 12px; padding-bottom: 8px;
      border-bottom: 1px solid var(--border-dark);
    }
    .mega-col a {
      display: block; padding: 8px 0; color: var(--mid); font-size: 13px; text-decoration: none;
      transition: color 0.2s; font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: 0.5px;
    }
    .mega-col a:hover { color: var(--orange); }

    /* ========== FOOTER ========== */
    footer {
      background: var(--black);
      color: rgba(255,255,255,0.5);
      padding: 60px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    .footer-brand-name {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 28px; font-weight: 800;
      color: var(--white); letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .footer-brand-name span { color: var(--orange); }
    .footer-brand-desc {
      font-size: 13px; line-height: 1.8; margin-bottom: 20px;
    }
    .footer-social { display: flex; gap: 12px; }
    .social-btn {
      width: 36px; height: 36px; border-radius:3px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
      color: rgba(255,255,255,0.35); text-decoration: none;
      flex-shrink: 0;
    }
    .social-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
    .footer-col-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 2px;
      color: var(--white); text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 13px; color: rgba(255,255,255,0.45);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
      font-size: 12px;
    }
    .footer-icp { color: rgba(255,255,255,0.25); }

    /* ========== SCROLL REVEAL ========== */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.6s ease forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    /* ========== MOBILE ========== */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      #navbar { height: 66px; min-height: 66px; padding: 0 20px; background: rgba(8, 9, 10, 0.92); }
      .nav-logo, .nav-actions { flex: 0 0 auto; }
      .nav-logo img { height: 34px !important; }
      .lang-switch { height: 34px; padding: 0 14px; font-size: 12px; }
      .container { padding: 0 20px; }
      .racing-inner { grid-template-columns: 1fr; }
      .racing-content { padding: 40px 28px; }
      .products-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .recognition-grid { grid-template-columns: 1fr 1fr; }
      .press-grid { grid-template-columns: 1fr; }
      footer { padding: 40px 0 26px; }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px 22px;
        margin-bottom: 30px;
      }
      .footer-grid > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
      }
      .footer-brand-desc {
        max-width: 280px;
        margin: 0 auto 14px;
        line-height: 1.65;
      }
      .footer-social {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
      }
      .social-btn {
        width: 34px;
        height: 34px;
      }
      .footer-col-title {
        margin-bottom: 10px;
        font-size: 12px;
        letter-spacing: 1.6px;
      }
      .footer-links li {
        margin-bottom: 7px;
      }
      .footer-links a {
        font-size: 12px;
      }
      .footer-bottom {
        justify-content: center;
        text-align: center;
        gap: 8px;
        padding-top: 18px;
        font-size: 11px;
      }
      .footer-bottom > div {
        width: 100%;
      }
      .footer-bottom a {
        display: inline-block;
        margin: 0 8px;
      }
    }
    @media (max-width: 900px) {
      .products-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 800px) {
      .dealer-inner { grid-template-columns: 1fr; }
    }

    /* ========== SECTION SPACING ========== */
    section { padding: 90px 0; }

    /* ========== HERO ========== */
    #hero {
      position: relative;
      min-height: calc(100vh - 64px);
      padding: 112px 40px 56px;
      background: var(--black);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #0d0d0d 0%, #1a0e00 40%, #2a1500 70%, #0d0d0d 100%);
    }
    .hero-bg-img {
      position: absolute; inset: 0;
      background-image: var(--hero-bg-desktop, url('/static/images/bjt.png'));
      background-size: cover;
      background-position: 47% bottom;
      background-repeat: no-repeat;
      opacity: 0.92;
      filter: brightness(1.06) contrast(1.05);
    }
    .hero-bg-img::after {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(90deg, rgba(13,13,13,0.94) 0%, rgba(13,13,13,0.64) 36%, rgba(13,13,13,0.18) 60%, rgba(13,13,13,0.34) 100%),
        linear-gradient(180deg, rgba(13,13,13,0.42) 0%, transparent 38%, rgba(13,13,13,0.22) 100%);
    }
    .hero-stripe {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(-45deg, transparent 0px, transparent 80px, rgba(250,70,22,0.04) 80px, rgba(250,70,22,0.04) 82px);
    }
    .hero-glow {
      position: absolute; width: 700px; height: 700px; border-radius: 50%;
      background: radial-gradient(circle, rgba(250,70,22,0.18) 0%, transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(100%, 1480px);
      min-height: calc(100vh - 232px);
      display: block;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      text-align: left;
      padding: 0;
      margin-top: clamp(34px, 8vh, 92px);
      isolation: isolate;
    }
    .hero-content::before {
      content: '';
      position: absolute;
      inset: -34px -42px -36px -46px;
      z-index: -1;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(8,8,8,0.42) 0%, rgba(8,8,8,0.24) 58%, transparent 100%);
      border-radius:5px;
    }
    .hero-label {
      display: inline-block; font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 13px; font-weight: 600; letter-spacing: 3px;
      color: var(--orange); text-transform: uppercase;
      border: 1px solid rgba(250,70,22,0.4);
      padding: 5px 16px; border-radius: 2px; margin-bottom: 24px;
    }
    .hero-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: clamp(40px, 4.4vw, 72px); font-weight: 800; color: #f4f4f0;
      line-height: 0.95; letter-spacing: 0; text-transform: uppercase; margin-bottom: 20px;
      max-width: 640px;
    }
    .hero-title h1 {
      display: block;
      font: inherit;
      line-height: inherit;
      letter-spacing: inherit;
      margin: 0;
    }
    .hero-title span { color: inherit; }
    .hero-title .hero-accent { color: #ff3d16; }
    .hero-sub { font-size: 20px; line-height: 1.75; color: rgba(255,255,255,0.68); margin-bottom: 36px; letter-spacing: 0; max-width: 540px; }
    .hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-top: -24px; }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 2px;
    }
    .hero-scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
      animation: scrollAnim 1.6s ease-in-out infinite;
    }
    @keyframes scrollAnim {
      0%, 100% { transform: scaleY(1); opacity: 0.4; }
      50% { transform: scaleY(1.2); opacity: 0.8; }
    }

    /* ========== PRODUCT CARDS ========== */
    .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .product-card {
      background: var(--white); border-radius:5px; overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s; border: 1px solid rgba(0,0,0,0.06);
    }
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
    .product-img {
      width: 100%; aspect-ratio: 16/10; background: var(--dark);
      display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
    }
    .product-img img { width: 100%; height: 100%; object-fit: cover; }
    .product-badge {
      position: absolute; top: 14px; left: 14px;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px;
      background: var(--orange); color: var(--white); padding: 3px 10px; border-radius: 2px; text-transform: uppercase;
    }
    .product-badge.new { background: #22a855; }
    .product-body { padding: 24px; }
    .product-series {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 3px;
      color: var(--orange); text-transform: uppercase; margin-bottom: 6px;
    }
    .product-name {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: 0.5px;
      color: var(--black); margin-bottom: 8px;
    }
    .product-desc { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
    .product-specs { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
    .spec-chip {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1px;
      background: var(--light); color: var(--gray); padding: 4px 10px; border-radius: 3px;
    }
    .product-footer {
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid rgba(0,0,0,0.06); padding-top: 16px;
    }
    .product-price {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 22px; font-weight: 800; color: var(--orange);
    }
    .product-price small { font-size: 12px; font-weight: 400; color: var(--mid); }
    .btn-sm {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px;
      background: var(--black); color: var(--white); border: none; cursor: pointer;
      padding: 9px 20px; border-radius:3px; text-transform: uppercase; transition: background 0.2s;
      text-decoration: none; display: inline-block;
    }
    .btn-sm:hover { background: var(--orange); }

    /* ========== RACING BANNER ========== */
    #racing { background: var(--black); padding: 0; }
    .racing-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
    .racing-visual {
      background: var(--dark2); position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center; min-height: 280px;
    }
    .racing-num {
      position: relative; z-index: 2; font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 160px; font-weight: 800; color: rgba(250,70,22,0.15); line-height: 1; letter-spacing: -8px;
    }
    .racing-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
    .racing-tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px;
      color: var(--orange); text-transform: uppercase; margin-bottom: 20px;
    }
    .racing-tag::before { content: ''; width: 24px; height: 2px; background: var(--orange); }
    .racing-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: clamp(28px, 3vw, 40px);
      font-weight: 800; color: var(--white); text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
    }
    .racing-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 32px; }
    .racing-stats { display: flex; gap: 32px; margin-bottom: 36px; }
    .race-stat-num { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 36px; font-weight: 800; color: var(--orange); line-height: 1; }
    .race-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

    /* ========== SPECS TABLE ========== */
    #specs { background: var(--white); }
    .specs-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; font-size: 14px; }
    .specs-table th {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--mid); background: var(--light);
      padding: 12px 20px; text-align: left; border-bottom: 2px solid rgba(0,0,0,0.06);
    }
    .specs-table td { padding: 14px 20px; border-bottom: 1px solid rgba(0,0,0,0.05); vertical-align: middle; }
    .specs-table tr:hover td { background: rgba(250,70,22,0.03); }
    .specs-table .model-name { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 17px; font-weight: 700; }
    .compare-btn-wrap { text-align: center; margin-top: 28px; }

    /* ========== NEWS CARDS ========== */
    .news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
    .news-card {
      background: var(--white); border-radius:5px; overflow: hidden;
      border: 1px solid rgba(0,0,0,0.06); transition: transform 0.2s;
      text-decoration: none; color: inherit; display: block;
    }
    .news-card:hover { transform: translateY(-3px); }
    .news-img { width: 100%; aspect-ratio: 16/9; background: var(--dark); display: flex; align-items: center; justify-content: center; }
    .news-body { padding: 20px; }
    .news-cat {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px;
      color: var(--orange); text-transform: uppercase; margin-bottom: 8px;
    }
    .news-title { font-size: 16px; font-weight: 700; color: var(--black); line-height: 1.4; margin-bottom: 8px; }
    .news-excerpt { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }
    .news-meta { font-size: 12px; color: rgba(0,0,0,0.35); }

    /* ========== DEALER SECTION ========== */
    #dealer { background: var(--white); padding: 80px 0; }
    .dealer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .dealer-map {
      border-radius:3px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08);
      aspect-ratio: 4/3; background: var(--light);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    }
    .dealer-map-icon { font-size: 48px; }
    .dealer-map-hint { font-size: 14px; color: var(--mid); }
    .dealer-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 38px; font-weight: 800;
      text-transform: uppercase; line-height: 1.1; margin-bottom: 16px;
    }
    .dealer-title span { color: var(--orange); }
    .dealer-desc { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
    .dealer-items { margin-bottom: 32px; }
    .dealer-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .dealer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
    .dealer-item-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
    .dealer-item-sub { font-size: 13px; color: var(--mid); }

    /* ========== BACK TO TOP ========== */
    #backToTop {
      position: fixed; bottom: 32px; right: 32px; z-index: 999;
      width: 44px;height: 44px;border-radius: 50%;background: var(--orange);color: var(--white);
      border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
      font-size: 18px; box-shadow: 0 4px 20px rgba(250,70,22,0.4);
      opacity: 0; transform: translateY(20px); transition: all 0.3s; pointer-events: none;
    }
    #backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #backToTop:hover { background: var(--orange-dark); transform: translateY(-2px); }

    /* ========== PAGE HERO (Shared for subpages) ========== */
    .page-hero {
      position: relative; min-height: 360px; display: flex;
      flex-direction: column; align-items: center; justify-content: center;
      text-align: center; background: var(--black); padding: 100px 24px 60px;
      border-bottom: 1px solid var(--border); overflow: hidden;
    }
    .page-hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }
    .page-hero .label {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 13px; font-weight: 600; letter-spacing: 5px;
      color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
      position: relative; z-index: 2;
    }
    .page-hero h1 {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: 3px;
      text-transform: uppercase; line-height: 1.05; margin-bottom: 16px;
      color: var(--white); position: relative; z-index: 2;
    }
    .page-hero p {
      font-size: 15px; color: rgba(255,255,255,0.45); max-width: 560px;
      line-height: 1.7; position: relative; z-index: 2;
    }
    .page-hero .hero-bg-text {
      position: absolute; font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 220px; font-weight: 800; opacity: 0.025; line-height: 1;
      user-select: none; pointer-events: none; z-index: 1;
    }
    .page-hero-btns {
      display: flex; gap: 14px; margin-top: 28px; position: relative; z-index: 2; flex-wrap: wrap; justify-content: center;
    }

    /* ========== EMPTY STATE ========== */
    .empty-state {
      text-align: center; padding: 60px 24px; color: var(--mid);
    }
    .empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
    .empty-state p { font-size: 14px; line-height: 1.7; }

    /* ========== MOBILE NAV ========== */
    /* Hamburger */
    .mobile-menu-toggle {
      display: none; background: none; border: none; cursor: pointer;
      color: var(--white); width: 40px; height: 40px; align-items: center;
      justify-content: center; flex-direction: column; gap: 6px; z-index: 1002;
      padding: 0; position: relative;
    }
    .mobile-menu-toggle span {
      display: block; width: 24px; height: 2px; background: var(--white);
      border-radius: 2px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-menu-toggle.open span:nth-child(2) { opacity: 0; transform: scale(0); }
    .mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s;
    }
    .mobile-menu-overlay.open { display: block; opacity: 1; }

    /* Mobile Menu Panel */
    .mobile-menu-panel {
      position: fixed; top: 0; right: 0; bottom: 0; width: 85vw; max-width: 380px;
      z-index: 1001; background: var(--dark2); transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex; flex-direction: column; overflow-y: auto;
    }
    .mobile-menu-panel.open { transform: translateX(0); }
    .mobile-menu-header {
      padding: 20px 24px; border-bottom: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
    }
    .mobile-menu-header .menu-back {
      background: none; border: 1px solid var(--border); color: var(--mid);
      padding: 6px 14px; border-radius:5px; font-size: 12px; cursor: pointer;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: 1px;
    }
    .mobile-menu-body { padding: 16px 0; flex: 1; }
    .mobile-menu-group { padding: 0 24px; margin-bottom: 20px; }
    .mobile-menu-group .group-title {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 11px; font-weight: 700;
      letter-spacing: 3px; color: var(--orange); text-transform: uppercase;
      margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
    }
    .mobile-menu-group a {
      display: flex; align-items: center; gap: 12px; padding: 12px 0;
      color: var(--mid); text-decoration: none; font-size: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.2s;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: 0.5px;
    }
    .mobile-menu-group a:last-child { border-bottom: none; }
    .mobile-menu-group a:hover, .mobile-menu-group a.mobile-active { color: var(--orange); }
    .mobile-menu-group a .mm-icon { font-size: 18px; width: 24px; text-align: center; flex-shrink: 0; }

    .mobile-menu-footer {
      padding: 20px 24px; border-top: 1px solid var(--border);
      text-align: center;
    }
    .mobile-menu-footer .lang-switch-mobile {
      background: var(--dark); border: 1px solid var(--border); color: var(--white);
      padding: 8px 20px; border-radius:5px; cursor: pointer; font-size: 13px;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: 1px;
      transition: border-color 0.3s;
    }
    .mobile-menu-footer .lang-switch-mobile:hover { border-color: var(--orange); }

    /* Bottom Navigation Bar */
    .bottom-nav {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
      background: rgba(17,17,17,0.97); backdrop-filter: blur(16px);
      border-top: 1px solid var(--border); padding: 8px 16px;
      justify-content: space-around; align-items: center;
    }
    .bottom-nav a {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      text-decoration: none; color: var(--mid); font-size: 10px;
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; letter-spacing: 1px;
      transition: color 0.2s; padding: 4px 8px; text-transform: uppercase;
    }
    .bottom-nav a:hover, .bottom-nav a.bottom-active { color: var(--orange); }
    .bottom-nav a .bn-icon {
      width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center;
      color: currentColor; line-height: 1;
    }
    .bottom-nav a .bn-icon svg {
      width: 23px; height: 23px; display: block;
      stroke: currentColor; fill: none; stroke-width: 1.9;
      stroke-linecap: round; stroke-linejoin: round;
    }
    .bottom-nav a.bottom-active .bn-icon svg {
      filter: drop-shadow(0 0 8px rgba(255,61,22,0.26));
    }

    /* Show mobile elements */
    @media (max-width: 768px) {
      .mobile-menu-toggle { display: flex; }
      .bottom-nav { display: flex; }
      .nav-links { display: none; }
      body { padding-bottom: 72px; }
      #backToTop { bottom: 85px; }
    }
    @media (min-width: 769px) {
      .mobile-menu-overlay, .mobile-menu-panel { display: none !important; transform: none !important; }
      body { padding-bottom: 0; }
      #backToTop { bottom: 32px; }
    }

    /* ========== COOKIE BANNER ========== */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
      background: var(--dark2); border-top: 1px solid var(--border);
      padding: 14px 24px; display: flex; align-items: center;
      justify-content: center; gap: 16px; flex-wrap: wrap;
      transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cookie-banner.show { transform: translateY(0); }
    .cookie-banner p {
      font-size: 13px; color: var(--mid); max-width: 600px; line-height: 1.6;
    }
    .cookie-banner p a { color: var(--orange); text-decoration: underline; }
    .cookie-btn {
      font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: 1px;
      background: var(--orange); color: var(--white); border: none;
      padding: 8px 22px; border-radius:3px; cursor: pointer;
      text-transform: uppercase; white-space: nowrap; transition: background 0.3s;
    }
    .cookie-btn:hover { background: var(--orange-dark); }
    .cookie-btn.ghost {
      background: transparent; border: 1px solid var(--border); color: var(--mid);
    }
    .cookie-btn.ghost:hover { border-color: var(--orange); color: var(--orange); }

    /* ========== SKELETON LOADING ========== */
    .skeleton {
      background: linear-gradient(90deg, var(--dark2) 25%, var(--gray) 50%, var(--dark2) 75%);
      background-size: 200% 100%; animation: shimmer 1.5s ease-in-out infinite;
      border-radius:3px;
    }
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .skeleton-card {
      background: var(--dark2); border-radius:5px; overflow: hidden; border: 1px solid var(--border);
    }
    .skeleton-img { width: 100%; aspect-ratio: 16/10; }
    .skeleton-body { padding: 20px; }
    .skeleton-line { height: 14px; margin-bottom: 10px; }
    .skeleton-line.short { width: 60%; }
    .skeleton-line.medium { width: 80%; }

    /* ========== SKIP LINK ========== */
    .skip-link { position: absolute; top: -100px; left: 16px; z-index: 9999; background: var(--orange); color: #fff; padding: 10px 20px; border-radius: 3px; font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: top 0.2s; }
    .skip-link:focus { top: 12px; }

    /* ========== FOCUS VISIBLE ========== */
    :focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }
    :focus:not(:focus-visible) { outline: none; }

    /* ========== CUSTOM SCROLLBAR ========== */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--black); }
    ::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--orange); }
