
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #080808;
    --charcoal: #111111;
    --dark: #1a1a1a;
    --steel: #242424;
    --muted: #555;
    --silver: #999;
    --light: #e8e8e8;
    --white: #f2f1ed;
    --gold: #c8a84b;
    --gold-light: #e2c97e;
    --bmw-blue: #1c69d4;
    --bmw-red: #e4002b;
    --bmw-light-blue: #6eafe8;
    --teal: #3e9185;
    --teal-bright: #4fb8a9;
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --font-body: 'DM Sans', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
  }
  /* NOISE */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1000; opacity: 0.45;
  }
  /* CURSOR */
  .cursor { width: 10px; height: 10px; background: var(--bmw-blue); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, background 0.3s; }
  .cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(28,105,212,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, border-color 0.3s; }
  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 4rem;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(8,8,8,0.94);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(28,105,212,0.15);
    padding: 0.9rem 4rem;
  }
  .nav-logo-wrap {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none;
  }
  .nav-logo-img {
    height: 88px;
    width: auto;
    object-fit: contain;
    /* filter: drop-shadow(0 0 8px rgba(28,105,212,0.3)); */
    transition: filter 0.3s ease;
  }
  .nav-logo-wrap:hover .nav-logo-img { filter: drop-shadow(0 0 14px rgba(28,105,212,0.55)); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
  .nav-links a { color: var(--silver); text-decoration: none; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s; }
  .nav-links a:hover { color: var(--bmw-light-blue); }

   .nav-item { position: relative; }
  .dropdown-menu {
    position: absolute; top: 100%; left: 0; margin-top: 0.5rem;
    background: rgba(8,8,8,0.98); backdrop-filter: blur(20px);
    border: 1px solid rgba(28,105,212,0.2); border-radius: 4px;
    min-width: 200px; list-style: none;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
    z-index: 501;
  }
  .nav-item:hover .dropdown-menu {
    opacity: 1; visibility: visible;
  }
  .dropdown-menu li { padding: 0; }
  .dropdown-menu a {
    display: block; padding: 0.7rem 1.2rem;
    color: var(--silver); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.3s;
    border-left: 3px solid transparent;
  }
  .dropdown-menu a:hover {
    color: var(--bmw-light-blue); background: rgba(110,175,232,0.1);
    border-left-color: var(--bmw-light-blue);
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--bmw-blue), #1550a0) !important;
    color: white !important; padding: 0.55rem 1.4rem;
    border-radius: 2px; font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: opacity 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85 !important; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
    background: var(--black);
  }
  /* M-Sport stripe background */
  .hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 6px; height: 100%;
    background: linear-gradient(to bottom, var(--bmw-blue) 0%, var(--bmw-blue) 33%, #6a4fc7 33%, #6a4fc7 66%, var(--bmw-red) 66%, var(--bmw-red) 100%);
    z-index: 3;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 8rem 4rem 5rem;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--bmw-light-blue); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
  }
  .hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--bmw-blue); }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7.5vw, 7.5rem);
    line-height: 0.92; letter-spacing: 0.02em;
    color: var(--white); margin-bottom: 1.8rem;
    opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
  }
  .hero-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-size: 0.82em; }
  .hero-title .m-stripe {
    display: inline-block;
    background: linear-gradient(to right, var(--bmw-blue) 33%, #6a4fc7 33%, #6a4fc7 66%, var(--bmw-red) 66%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 0.55em; letter-spacing: 0.3em; vertical-align: middle; margin-left: 0.5rem;
  }
  .hero-sub {
    font-size: 0.95rem; line-height: 1.75; color: var(--silver);
    max-width: 400px; margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s ease 0.9s forwards;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--bmw-blue), #1550a0);
    color: white; padding: 1rem 2.2rem;
    border: none; border-radius: 2px;
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.6rem;
  }
  .btn-primary:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(28,105,212,0.3); }
  .btn-gold {
    background: var(--gold); color: var(--black);
    padding: 1rem 2.2rem; border: none; border-radius: 2px;
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.6rem;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost {
    color: var(--silver); padding: 1rem 0; text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; gap: 0.6rem;
  }
  .btn-ghost:hover { color: var(--bmw-light-blue); border-color: var(--bmw-blue); gap: 0.9rem; }
  .hero-right {
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: #040404
  }
  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 50% 50%, rgba(28,105,212,0.08) 0%, transparent 60%),
      linear-gradient(135deg, rgba(8,8,8,0.4) 0%, transparent 60%);
  }
  /* BMW roundel hero image */
  .hero-bmw-roundel {
    position: relative; z-index: 2;
    width: 65%;
    max-width: 380px;
    border-radius: 50%;
    /* box-shadow:
      0 0 0 1px rgba(255,255,255,0.05),
      0 0 80px rgba(28,105,212,0.2),
      0 0 160px rgba(28,105,212,0.08); */
    animation: float 7s ease-in-out infinite;
    transition: box-shadow 0.4s ease;
  }
  /* .hero-bmw-roundel:hover {
    box-shadow: 0 0 0 1px rgba(28,105,212,0.3), 0 0 100px rgba(28,105,212,0.3);
  } */
  /* M-stripe vertical accent on right panel */
  .hero-right .m-bar {
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(to bottom, var(--bmw-blue) 33%, #6a4fc7 33%, #6a4fc7 66%, var(--bmw-red) 66%);
    z-index: 4;
  }
  .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 10;
  }
  .hero-stat {
    padding: 1.4rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    opacity: 0; animation: fadeUp 0.6s ease 1.1s forwards;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); letter-spacing: 0.05em; }
  .hero-stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }

  /* TICKER */
  .ticker { background: var(--bmw-blue); padding: 0.65rem 0; overflow: hidden; white-space: nowrap; }
  .ticker-inner { display: inline-flex; gap: 3rem; animation: ticker 28s linear infinite; }
  .ticker-item { font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.18em; color: white; display: inline-flex; align-items: center; gap: 1rem; }
  .ticker-divider { width: 3px; height: 3px; background: rgba(255,255,255,0.4); border-radius: 50%; flex-shrink: 0; }

  /* LOGO SHOWCASE */
  .logo-showcase {
    padding: 5rem 4rem;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: space-between; gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .logo-showcase-main {
    flex: 0 0 auto;
  }
  .logo-showcase-img {
    height: 100px; width: auto; object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(28,105,212,0.25));
  }
  .logo-showcase-divider {
    width: 1px; height: 80px; background: rgba(255,255,255,0.08); flex-shrink: 0;
  }
  .logo-showcase-text { flex: 1; }
  .logo-showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    letter-spacing: 0.05em; line-height: 1; margin-bottom: 0.5rem;
  }
  .logo-showcase-sub { font-size: 0.88rem; color: var(--silver); line-height: 1.6; max-width: 420px; }
  .m-badge {
    display: flex; gap: 3px; flex-shrink: 0;
  }
  .m-stripe-bar {
    width: 10px; height: 52px; border-radius: 1px;
  }

  /* SECTION COMMONS */
  .section-label {
    font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--bmw-light-blue); margin-bottom: 0.9rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before { content: ''; width: 28px; height: 1px; background: var(--bmw-blue); }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 1.4rem;
  }
  .section-title em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
  .body-text { font-size: 0.92rem; line-height: 1.8; color: var(--silver); margin-bottom: 1.1rem; }

  /* ABOUT */
  .about {
    padding: 8rem 4rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
  }
  .about-visual { position: relative; }
  .about-roundel-wrap {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .about-roundel-outer {
    width: 320px; height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(28,105,212,0.2);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    animation: slow-spin 30s linear infinite;
  }
  .about-roundel-outer::before, .about-roundel-outer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(28,105,212,0.1);
  }
  .about-roundel-outer::before { inset: -20px; }
  .about-roundel-outer::after { inset: -40px; border-color: rgba(28,105,212,0.05); }
  .about-roundel-img {
    width: 240px; height: 240px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 60px rgba(28,105,212,0.2);
    animation: counter-spin 30s linear infinite;
  }
  .about-float-card {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--steel);
    border: 1px solid rgba(200,168,75,0.25);
    border-radius: 3px;
    padding: 1.2rem 1.5rem;
    z-index: 5;
  }
  .about-float-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
  .about-float-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }
  .about-stats-row {
    display: flex; gap: 2.5rem; margin-top: 2rem;
  }
  .about-stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
  .about-stat-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }

  /* SERVICES */
  .services { padding: 8rem 4rem; background: var(--charcoal); }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: rgba(255,255,255,0.04);
  }
  .service-card {
    background: var(--charcoal); padding: 2.5rem;
    position: relative; overflow: hidden; cursor: pointer;
    transition: background 0.3s;
  }
  .service-card:hover { background: var(--dark); }
  .service-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    height: 2px; width: 0;
    background: linear-gradient(to right, var(--bmw-blue), var(--bmw-red));
    transition: width 0.4s ease;
  }
  .service-card:hover::after { width: 100%; }
  .service-num {
    font-family: var(--font-display); font-size: 4rem;
    color: rgba(255,255,255,0.04); position: absolute; top: 1rem; right: 1.5rem;
    line-height: 1; transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(28,105,212,0.08); }
  .service-icon {
    width: 42px; height: 42px;
    background: rgba(28,105,212,0.1); border: 1px solid rgba(28,105,212,0.2);
    border-radius: 3px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; transition: all 0.3s;
  }
  .service-icon svg { width: 20px; height: 20px; stroke: var(--bmw-light-blue); fill: none; stroke-width: 1.5; }
  .service-card:hover .service-icon { background: rgba(200,168,75,0.12); border-color: rgba(200,168,75,0.3); }
  .service-card:hover .service-icon svg { stroke: var(--gold); }
  .service-title { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.05em; margin-bottom: 0.7rem; transition: color 0.3s; }
  .service-card:hover .service-title { color: var(--gold); }
  .service-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
  .service-arrow {
    margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--bmw-blue); transition: gap 0.3s, color 0.3s;
  }
  .service-card:hover .service-arrow { gap: 0.9rem; color: var(--gold); }

  /* SPECIALITY */
  .speciality {
    padding: 8rem 4rem;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .spec-logo-hero {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .spec-logo-hero-img {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .spec-logo-hero::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(28,105,212,0.15);
    pointer-events: none;
  }
  .spec-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
  .spec-feature-item {
    display: flex; align-items: center; gap: 0.9rem;
    font-size: 0.87rem; color: var(--silver);
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.02);
    border-left: 2px solid transparent;
    transition: all 0.3s;
  }
  .spec-feature-item:hover { background: rgba(28,105,212,0.06); border-left-color: var(--bmw-blue); color: var(--white); }
  .spec-feature-item::before { content: '✓'; color: var(--bmw-light-blue); font-size: 0.78rem; flex-shrink: 0; }

  /* WARRANTY */
  .warranty-banner {
    background: linear-gradient(135deg, #1550a0 0%, #0d3a78 100%);
    padding: 2.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
  }
  .warranty-banner::before {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0; width: 6px;
    background: linear-gradient(to bottom, var(--bmw-blue), #6a4fc7, var(--bmw-red));
  }
  .warranty-text { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; }
  .warranty-sub { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.25rem; }

  /* PRICING */
  .pricing { padding: 8rem 4rem; background: var(--charcoal); }
  .pricing-header { text-align: center; margin-bottom: 4rem; }
  .pricing-header .section-label { justify-content: center; }
  .pricing-header .section-label::before { display: none; }
  .pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 940px; margin: 0 auto; }
  .pricing-card {
    background: var(--dark); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px; padding: 2.5rem;
    transition: all 0.3s; position: relative; overflow: hidden;
  }
  .pricing-card.featured { background: var(--steel); border-color: var(--bmw-blue); transform: scale(1.03); }
  .pricing-card.featured::before {
    content: 'MOST POPULAR'; position: absolute; top: 1rem; right: 1rem;
    font-size: 0.58rem; letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--bmw-blue), #1550a0); color: white;
    padding: 0.28rem 0.6rem; border-radius: 2px; font-weight: 600;
  }
  .pricing-card:hover:not(.featured) { border-color: rgba(28,105,212,0.3); }
  .pricing-tier { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bmw-light-blue); margin-bottom: 1rem; }
  .pricing-price { font-family: var(--font-display); font-size: 2.8rem; color: var(--white); margin-bottom: 0.3rem; line-height: 1; }
  .pricing-price span { font-size: 1.1rem; color: var(--silver); }
  .pricing-desc { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.6; }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; }
  .pricing-feature { font-size: 0.8rem; color: var(--silver); display: flex; align-items: center; gap: 0.7rem; }
  .pricing-feature::before { content: '—'; color: var(--bmw-blue); }
  .btn-outline {
    width: 100%; padding: 0.88rem;
    background: transparent; border: 1px solid rgba(255,255,255,0.12);
    color: var(--white); font-family: var(--font-body);
    font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; border-radius: 2px; transition: all 0.3s;
    text-decoration: none; display: block; text-align: center;
  }
  .btn-outline:hover { border-color: var(--bmw-blue); color: var(--bmw-light-blue); }
  .pricing-card.featured .btn-outline { background: linear-gradient(135deg, var(--bmw-blue), #1550a0); border-color: transparent; color: white; }
  .pricing-card.featured .btn-outline:hover { opacity: 0.85; }

  /* REVIEWS */
  .reviews { padding: 8rem 4rem; }
  .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .review-card {
    background: var(--charcoal); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px; padding: 2rem; transition: all 0.3s; position: relative;
  }
  .review-card:hover { border-color: rgba(28,105,212,0.25); transform: translateY(-3px); }
  .review-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
  .star { color: var(--gold); font-size: 0.88rem; }
  .review-text { font-size: 0.86rem; color: var(--silver); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 0.8rem; }
  .review-avatar {
    width: 36px; height: 36px; background: var(--steel); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.9rem; color: var(--bmw-light-blue);
  }
  .review-name { font-size: 0.8rem; font-weight: 500; }
  .review-date { font-size: 0.7rem; color: var(--muted); margin-top: 0.12rem; }
  .review-source { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

  /* CONTACT */
  .contact { padding: 8rem 4rem; background: var(--charcoal); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  .contact-info-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .contact-info-icon { width: 38px; height: 38px; flex-shrink: 0; background: rgba(28,105,212,0.1); border: 1px solid rgba(28,105,212,0.2); border-radius: 2px; display: flex; align-items: center; justify-content: center; }
  .contact-info-icon svg { width: 16px; height: 16px; stroke: var(--bmw-light-blue); fill: none; stroke-width: 1.5; }
  .contact-info-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
  .contact-info-value { font-size: 0.88rem; color: var(--white); line-height: 1.5; }
  .contact-info-value a { color: inherit; text-decoration: none; transition: color 0.3s; }
  .contact-info-value a:hover { color: var(--bmw-light-blue); }
  .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
  .form-input, .form-textarea, .form-select {
    background: var(--dark); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px; padding: 0.82rem 1rem;
    color: var(--white); font-family: var(--font-body); font-size: 0.86rem;
    outline: none; transition: border-color 0.3s; width: 100%;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
  .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--bmw-blue); }
  .form-textarea { resize: vertical; min-height: 110px; }
  .form-select { appearance: none; cursor: pointer; }
  option { background: var(--dark); }

  /* FOOTER */
  footer { background: var(--black); padding: 4rem 4rem 2rem; border-top: 1px solid rgba(255,255,255,0.04); }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo-img { height: 56px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: drop-shadow(0 2px 10px rgba(28,105,212,0.2)); }
  .footer-brand-sub { font-size: 0.78rem; color: var(--muted); line-height: 1.6; max-width: 210px; margin-bottom: 1.5rem; }
  .social-links { display: flex; gap: 0.7rem; }
  .social-link {
    width: 34px; height: 34px; background: var(--steel); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    color: var(--silver); text-decoration: none; font-size: 0.68rem;
    transition: all 0.3s;
  }
  .social-link:hover { background: var(--bmw-blue); border-color: var(--bmw-blue); color: white; }
  .footer-col-title { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.4rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--bmw-light-blue); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.72rem; color: var(--muted);
  }
  .footer-bottom a { color: var(--muted); text-decoration: none; }
  .footer-bottom a:hover { color: var(--bmw-blue); }
  /* M-sport footer stripe */
  .footer-stripe { height: 4px; background: linear-gradient(to right, var(--bmw-blue) 33%, #6a4fc7 33%, #6a4fc7 66%, var(--bmw-red) 66%); }

  /* HOURS BAR */
  .hours-bar {
    background: #0d1a2e; border-top: 1px solid rgba(28,105,212,0.2);
    padding: 0.9rem 4rem;
    display: flex; align-items: center; justify-content: center; gap: 3.5rem;
  }
  .hours-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.76rem; color: var(--silver); letter-spacing: 0.04em; }
  .hours-item svg { width: 13px; height: 13px; stroke: var(--bmw-light-blue); fill: none; stroke-width: 2; }

  /* WHATSAPP */
  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
    width: 52px; height: 52px; background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: all 0.3s; animation: pulse-green 3s infinite;
  }
  .whatsapp-float:hover { transform: scale(1.1); }
  .whatsapp-float svg { width: 26px; height: 26px; fill: white; }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity:0; transform:translateY(25px); } to { opacity:1; transform:translateY(0); } }
  @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-14px); } }
  @keyframes ticker { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
  @keyframes slow-spin { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
  @keyframes counter-spin { from { transform:rotate(0deg); } to { transform:rotate(-360deg); } }
  @keyframes pulse-green { 0%,100% { box-shadow:0 4px 20px rgba(37,211,102,0.3); } 50% { box-shadow:0 4px 30px rgba(37,211,102,0.5); } }
  .reveal { opacity:0; transform:translateY(28px); transition:all 0.7s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .reveal-delay-1 { transition-delay:0.1s; }
  .reveal-delay-2 { transition-delay:0.22s; }
  .reveal-delay-3 { transition-delay:0.34s; }

  /* VIDEO SHOWCASE */
  .video-section {
    padding: 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  .video-section-header {
    padding: 5rem 4rem 3rem;
    display: flex; justify-content: space-between; align-items: flex-end;
  }
  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.03);
  }
  /* Full-width landscape video strip */
  .video-landscape-strip {
    position: relative;
    overflow: hidden;
    background: var(--black);
    width: 100%;
    aspect-ratio: 16/6;
    cursor: pointer;
  }
  .video-landscape-strip video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.65) saturate(0.9);
  }
  .video-landscape-strip:hover video {
    transform: scale(1.03);
    filter: brightness(0.85) saturate(1.1);
  }
  .video-landscape-strip::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
      to right,
      rgba(8,8,8,0.75) 0%,
      rgba(8,8,8,0.2) 30%,
      rgba(8,8,8,0.2) 70%,
      rgba(8,8,8,0.75) 100%
    ),
    linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
    pointer-events: none;
  }
  /* M-stripe top bar */
  .video-landscape-strip::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4;
    background: linear-gradient(to right, #1c69d4 33%, #6a4fc7 33%, #6a4fc7 66%, #e4002b 66%);
  }
  .landscape-overlay {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5rem;
    pointer-events: none;
  }
  .landscape-overlay-left {}
  .landscape-tag {
    font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: #6eafe8; margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .landscape-tag::before { content: ''; width: 24px; height: 1px; background: #1c69d4; }
  .landscape-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: 0.05em; line-height: 0.95;
  }
  .landscape-title em {
    font-family: 'Instrument Serif', serif;
    font-style: italic; color: #c8a84b; font-size: 0.85em;
  }
  .landscape-overlay-right {
    text-align: right; pointer-events: all;
  }
  .landscape-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; max-width: 300px; margin-bottom: 1.2rem; text-align: right;
  }
  .landscape-play {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: white; cursor: pointer;
    background: rgba(28,105,212,0.8);
    border: 1px solid rgba(28,105,212,0.4);
    padding: 0.7rem 1.4rem; border-radius: 2px;
    transition: all 0.3s; backdrop-filter: blur(6px);
  }
  .landscape-play:hover { background: rgba(28,105,212,1); transform: translateY(-1px); }
  .landscape-play svg { width: 14px; height: 14px; fill: white; }
  .landscape-play.paused svg { /* play icon shown */ }
  @media(max-width:900px) {
    .video-landscape-strip { aspect-ratio: 16/9; }
    .landscape-overlay { padding: 0 1.5rem; flex-direction: column; justify-content: flex-end; padding-bottom: 2rem; gap: 1rem; }
    .landscape-overlay-right { text-align: left; }
    .landscape-desc { text-align: left; }
  }
  .video-panel {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    aspect-ratio: 9/16;
    cursor: pointer;
    group: true;
  }
  .video-panel video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.75) saturate(0.9);
  }
  .video-panel:hover video {
    transform: scale(1.04);
    filter: brightness(0.9) saturate(1.1);
  }
  /* M-sport overlay tint */
  .video-panel::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(
      to top,
      rgba(8,8,8,0.85) 0%,
      rgba(8,8,8,0.3) 40%,
      transparent 70%
    );
    pointer-events: none;
  }
  /* Left stripe accent */
  .video-panel::after {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px; z-index: 3;
    background: linear-gradient(to bottom, #1c69d4 33%, #6a4fc7 33%, #6a4fc7 66%, #e4002b 66%);
    transform: scaleY(0); transform-origin: top;
    transition: transform 0.4s ease;
  }
  .video-panel:hover::after { transform: scaleY(1); }
  .video-panel-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem 2rem 2.5rem;
    z-index: 4;
    transform: translateY(6px);
    transition: transform 0.4s ease;
  }
  .video-panel:hover .video-panel-overlay { transform: translateY(0); }
  .video-panel-tag {
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: #6eafe8; margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .video-panel-tag::before {
    content: ''; width: 20px; height: 1px; background: #1c69d4;
  }
  .video-panel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    letter-spacing: 0.05em; line-height: 1;
    margin-bottom: 0.5rem;
  }
  .video-panel-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    line-height: 1.6; max-width: 320px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  }
  .video-panel:hover .video-panel-desc { opacity: 1; transform: translateY(0); }
  /* Play button */
  .play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 64px; height: 64px;
    background: rgba(28,105,212,0.85);
    border-radius: 50%; z-index: 5;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }
  .play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }
  .video-panel:hover .play-btn {
    background: rgba(28,105,212,1);
    transform: translate(-50%,-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(28,105,212,0.5);
  }
  .video-panel.playing .play-btn { opacity: 0; pointer-events: none; }
  /* Mute toggle */
  .mute-btn {
    position: absolute; top: 1.2rem; right: 1.2rem; z-index: 6;
    width: 36px; height: 36px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s; backdrop-filter: blur(6px);
    opacity: 0;
  }
  .video-panel:hover .mute-btn { opacity: 1; }
  .mute-btn svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; }
  /* FULL BLEED HERO VIDEO */
  .hero-video-full {
    position: relative; overflow: hidden;
    width: 100%; height: 420px;
    background: var(--black);
  }
  .hero-video-full video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.85);
  }
  .hero-video-full::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, rgba(8,8,8,0.7) 0%, transparent 50%, rgba(8,8,8,0.3) 100%),
                linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 40%);
  }
  .hero-video-overlay {
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 2rem;
  }
  .hero-video-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: #6eafe8; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-video-eyebrow::before, .hero-video-eyebrow::after {
    content: ''; width: 30px; height: 1px; background: #1c69d4;
  }
  .hero-video-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: 0.05em; line-height: 0.95;
    margin-bottom: 1rem;
  }
  .hero-video-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 500px; }
  @media(max-width:900px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-section-header { padding: 4rem 2rem 2rem; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .hero-video-full { height: 320px; }
  }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--bmw-blue); border-radius: 2px; }

  /* ─── DESKTOP / LANDSCAPE ─────────────────────────────────────── */
  body { min-width: 960px; }

  @media(min-width:901px){
    nav { padding: 1.4rem 5rem; }
    nav.scrolled { padding: 0.9rem 5rem; }
    .hero { min-height: 100vh; }
    .hero-left { padding: 9rem 5rem 6rem; }
    .hero-title { font-size: clamp(5rem, 8vw, 8.5rem); }
    .hero-stat { padding: 1.6rem 2.5rem; }
    .logo-showcase { padding: 5rem 5rem; }
    .about { padding: 9rem 5rem; gap: 7rem; }
    .about-roundel-outer { width: 360px; height: 360px; }
    .about-roundel-img { width: 280px; height: 280px; }
    .services { padding: 9rem 5rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .speciality { padding: 9rem 5rem; gap: 6rem; }
    .pricing { padding: 9rem 5rem; }
    .pricing-cards { max-width: 1100px; gap: 2rem; }
    .reviews { padding: 9rem 5rem; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .contact { padding: 9rem 5rem; gap: 7rem; }
    .video-section-header { padding: 6rem 5rem 3rem; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .video-panel { aspect-ratio: 9/14; }
    footer { padding: 5rem 5rem 2.5rem; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 4rem; }
    .hours-bar { padding: 0.9rem 5rem; }
    .warranty-banner { padding: 2.5rem 5rem; }
  }

  @media(min-width:1280px){
    nav { padding: 1.4rem 6rem; }
    nav.scrolled { padding: 0.9rem 6rem; }
    .hero-left { padding: 10rem 6rem 6rem; }
    .logo-showcase { padding: 5rem 6rem; }
    .about,.speciality,.contact { padding: 10rem 6rem; }
    .services,.pricing,.reviews { padding: 10rem 6rem; }
    footer { padding: 5rem 6rem 2.5rem; }
    .footer-top { gap: 5rem; }
    .video-section-header { padding: 6rem 6rem 3rem; }
    .hours-bar { padding: 0.9rem 6rem; }
    .warranty-banner { padding: 2.5rem 6rem; }
    .pricing-cards { max-width: 1200px; }
  }

  @media(min-width:1600px){
    nav { padding: 1.4rem 8rem; }
    nav.scrolled { padding: 0.9rem 8rem; }
    .hero-left { padding: 11rem 8rem 7rem; }
    .hero-title { font-size: 9rem; }
    .logo-showcase,.about,.speciality,.contact,
    .services,.pricing,.reviews,
    footer { padding-left: 8rem; padding-right: 8rem; }
    .video-section-header { padding: 7rem 8rem 3rem; }
    .hours-bar,.warranty-banner { padding-left: 8rem; padding-right: 8rem; }
  }

  @media(max-width:900px){
    nav { padding:1.2rem 1.5rem; }
    nav.scrolled { padding:0.8rem 1.5rem; }
    .nav-links { display:none; }
    .hero { grid-template-columns:1fr; }
    .hero-right { display:none; }
    .hero-left { padding:7rem 2rem 4rem; }
    .hero-stats { grid-template-columns:repeat(3,1fr); }
    .logo-showcase { flex-direction:column; align-items:flex-start; padding:3rem 2rem; }
    .logo-showcase-divider { display:none; }
    .about,.speciality,.contact { grid-template-columns:1fr; padding:5rem 2rem; gap:3rem; }
    .services,.pricing,.reviews { padding:5rem 2rem; }
    .services-grid,.pricing-cards,.reviews-grid { grid-template-columns:1fr; }
    .pricing-card.featured { transform:scale(1); }
    .footer-top { grid-template-columns:1fr 1fr; }
    footer { padding:3rem 2rem 1.5rem; }
    .warranty-banner { flex-direction:column; text-align:center; gap:1.2rem; padding:2rem; }
    .hours-bar { padding:0.9rem 1.5rem; flex-wrap:wrap; gap:1.2rem; }
    .form-row { grid-template-columns:1fr; }
  }
