  :root {
    --moto-red: #e1001a;
    --moto-dark: #0a0a0a;
    --moto-charcoal: #141414;
    --moto-slate: #1e1e1e;
    --moto-mid: #2a2a2a;
    --moto-light: #f5f5f5;
    --moto-white: #ffffff;
    --moto-grey: #8a8a8a;
    --moto-border: rgba(255,255,255,0.08);
    --accent: #ff1a35;
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Mulish', sans-serif;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    background: var(--moto-dark);
    color: var(--moto-light);
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; }

  /* ===== HEADER ===== */
  header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--moto-border);
    padding: 0 5%;
  }
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; max-width: 1300px; margin: 0 auto;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
  }
  .logo-m {
    width: 38px; height: 38px;
    background: var(--moto-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-size: 1.4rem; font-weight: 700;
    color: #fff; flex-shrink: 0;
  }
  .logo-text { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.5px; line-height: 1.2; }
  .logo-text span { display: block; font-size: 0.72rem; font-weight: 400; color: var(--moto-grey); letter-spacing: 1px; text-transform: uppercase; }
  .header-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .btn-call {
    background: var(--moto-red);
    color: #fff; font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    padding: 9px 22px; border-radius: 6px;
    letter-spacing: 0.5px;
    transition: background var(--transition);
  }
  .btn-call:hover { background: #c8001a; }
  .header-addr { font-size: 0.78rem; color: var(--moto-grey); display: none; }
  @media(min-width:768px){ .header-addr { display: block; } }

  /* ===== HERO ===== */
  .hero {
    position: relative; overflow: hidden;
    min-height: 92vh;
    display: flex; align-items: center;
    padding: 80px 5% 60px;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(225,0,26,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 10% 90%, rgba(225,0,26,0.06) 0%, transparent 60%),
                var(--moto-charcoal);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.04;
    background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
    background-size: 50px 50px;
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 1300px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr; gap: 50px;
    align-items: center;
  }
  @media(min-width:900px){ .hero-inner { grid-template-columns: 1fr 1fr; } }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(225,0,26,0.12); border: 1px solid rgba(225,0,26,0.3);
    color: var(--moto-red); font-family: var(--font-head); font-size: 0.85rem; font-weight: 600;
    padding: 6px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px;
  }
  .hero-badge::before { content:''; width:8px; height:8px; border-radius:50%; background:var(--moto-red); animation: pulse 1.5s infinite; }
  @keyframes pulse {
    0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.3)}
  }
  .hero-h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .hero-h1 em { color: var(--moto-red); font-style: normal; }
  .hero-sub {
    font-size: 1rem; color: #b0b0b0; line-height: 1.7;
    max-width: 520px; margin-bottom: 32px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--moto-red); color: #fff;
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
    padding: 13px 30px; border-radius: 8px; letter-spacing: 0.5px;
    transition: all var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #c8001a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(225,0,26,0.3); }
  .btn-secondary {
    background: transparent; color: var(--moto-light);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
    padding: 13px 28px; border-radius: 8px;
    transition: all var(--transition);
  }
  .btn-secondary:hover { border-color: var(--moto-red); color: var(--moto-red); }

  .hero-stats {
    display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
  }
  .stat { border-left: 2px solid var(--moto-red); padding-left: 14px; }
  .stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; line-height: 1; color: #fff; }
  .stat-label { font-size: 0.75rem; color: var(--moto-grey); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  .hero-card {
    background: var(--moto-slate);
    border: 1px solid var(--moto-border);
    border-radius: 16px; padding: 30px;
    position: relative; overflow: hidden;
  }
  .hero-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, var(--moto-red), transparent);
  }
  .hero-card h3 {
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
    margin-bottom: 18px; color: #fff;
  }
  .contact-items { display: flex; flex-direction: column; gap: 14px; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.88rem; color: #c0c0c0;
  }
  .contact-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    background: rgba(225,0,26,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }
  .contact-item strong { display: block; color: #fff; font-size: 0.82rem; margin-bottom: 2px; font-family: var(--font-head); letter-spacing: 0.5px; }

  /* ===== SECTION COMMONS ===== */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1300px; margin: 0 auto; }
  .section-tag {
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
    color: var(--moto-red); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 14px;
  }
  .section-desc {
    color: var(--moto-grey); font-size: 0.96rem; max-width: 580px; line-height: 1.7;
  }
  .section-header { margin-bottom: 50px; }

  /* ===== SERVICES ===== */
  .services-section { background: var(--moto-charcoal); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }
  .service-card {
    background: var(--moto-slate);
    border: 1px solid var(--moto-border);
    border-radius: 12px; padding: 24px 20px;
    transition: all var(--transition);
    position: relative; overflow: hidden;
    cursor: default;
  }
  .service-card:hover {
    border-color: rgba(225,0,26,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }
  .service-card:hover .service-icon { background: var(--moto-red); }
  .service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(225,0,26,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 14px;
    transition: background var(--transition);
  }
  .service-card h3 {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
    margin-bottom: 6px; color: #fff;
  }
  .service-card p {
    font-size: 0.83rem; color: var(--moto-grey); line-height: 1.5;
  }

  /* ===== MODELS ===== */
  .models-section { background: var(--moto-dark); }
  .models-search {
    width: 100%; max-width: 440px;
    background: var(--moto-slate);
    border: 1px solid var(--moto-border);
    border-radius: 10px; padding: 11px 18px;
    color: var(--moto-light); font-family: var(--font-body); font-size: 0.9rem;
    outline: none; margin-bottom: 28px;
    transition: border-color var(--transition);
  }
  .models-search:focus { border-color: rgba(225,0,26,0.5); }
  .models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    max-height: 520px; overflow-y: auto;
    padding-right: 4px;
  }
  .models-grid::-webkit-scrollbar { width: 5px; }
  .models-grid::-webkit-scrollbar-track { background: var(--moto-mid); border-radius: 4px; }
  .models-grid::-webkit-scrollbar-thumb { background: var(--moto-red); border-radius: 4px; }
  .model-chip {
    background: var(--moto-slate);
    border: 1px solid var(--moto-border);
    border-radius: 8px; padding: 10px 14px;
    font-size: 0.82rem; color: #c5c5c5;
    display: flex; align-items: center; gap: 8px;
    transition: all var(--transition);
  }
  .model-chip:hover { border-color: var(--moto-red); color: #fff; }
  .model-chip::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--moto-red); flex-shrink:0; }

  /* ===== AREAS ===== */
  .areas-section { background: var(--moto-charcoal); }
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
  }
  .area-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--moto-border);
    border-radius: 7px; padding: 9px 13px;
    font-size: 0.8rem; color: #b0b0b0;
    transition: all var(--transition);
  }
  .area-item:hover { background: rgba(225,0,26,0.08); border-color: rgba(225,0,26,0.3); color: #fff; }

  /* ===== WHY US ===== */
  .why-section { background: var(--moto-dark); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  .why-card {
    background: var(--moto-slate);
    border: 1px solid var(--moto-border);
    border-radius: 12px; padding: 28px 22px;
  }
  .why-num {
    font-family: var(--font-head); font-size: 2.5rem; font-weight: 700;
    color: rgba(225,0,26,0.2); line-height: 1; margin-bottom: 10px;
  }
  .why-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
  .why-card p { font-size: 0.85rem; color: var(--moto-grey); line-height: 1.6; }

  /* ===== CTA BANNER ===== */
  .cta-section {
    background: linear-gradient(135deg, #1a0008 0%, var(--moto-dark) 50%, #1a0008 100%);
    border-top: 1px solid rgba(225,0,26,0.2);
    border-bottom: 1px solid rgba(225,0,26,0.2);
    text-align: center; padding: 70px 5%;
  }
  .cta-section .section-title { margin-bottom: 12px; }
  .cta-section p { color: var(--moto-grey); font-size: 0.95rem; margin-bottom: 30px; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer {
    background: #080808;
    border-top: 1px solid var(--moto-border);
    padding: 50px 5% 24px;
  }
  .footer-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px; margin-bottom: 36px;
  }
  .footer-brand .logo-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
  .footer-brand p { font-size: 0.83rem; color: var(--moto-grey); line-height: 1.7; }
  .footer-col h4 {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    margin-bottom: 16px; color: #fff; letter-spacing: 0.5px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { font-size: 0.83rem; color: var(--moto-grey); margin-bottom: 8px; }
  .footer-bottom {
    border-top: 1px solid var(--moto-border);
    padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
    font-size: 0.78rem; color: var(--moto-grey);
  }

  /* ===== SCHEMA MARKUP ===== */
  .sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

  /* ===== MOBILE NAV ===== */
  .mobile-float {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 200;
    display: flex; gap: 12px;
    background: var(--moto-slate);
    border: 1px solid var(--moto-border);
    border-radius: 50px; padding: 10px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .mobile-float a {
    font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
    color: #c0c0c0; padding: 4px 10px;
    transition: color var(--transition);
    white-space: nowrap;
  }
  .mobile-float a:hover, .mobile-float a.active { color: var(--moto-red); }
  @media(min-width:900px){ .mobile-float { display: none; } }

  /* ===== ANIMATIONS ===== */
  .fade-up {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }