/* =========================================================================
   Mehta Group — style.css — v2 "Hazard" system
   Bold, dark, asymmetric, heavy motion. Built on top of Bootstrap 5.

   CONCEPT
   The accent color is safety yellow — the actual color of the loaders,
   graders and dump trucks these tyres are built for — not a generic
   tech-brand green. The signature motif is hazard tape: diagonal
   black/yellow stripes used as literal section dividers, borrowed
   straight from warning tape on heavy machinery. A second motif is
   oversized "ghost" numerals/wordmarks bleeding off the edge of
   sections — the kind of scale you'd see stenciled on a tyre sidewall
   or a shipping crate, not a decorative flourish.

   PALETTE
     --mg-void      #0A0B0C   base background, near-black
     --mg-ink       #131518   panel/section background
     --mg-surface   #1B1E22   card background
     --mg-line      rgba(255,255,255,.09)  hairline borders on dark
     --mg-accent    #FFC300   safety yellow — primary accent
     --mg-accent-2  #FF4319   hazard orange-red — secondary/hot accent
     --mg-paper     #F3F1EA   off-white (used on light-panel sections only)
     --mg-white     #F5F4F0   near-white text on dark
     --mg-muted     #8B8E93   secondary text on dark
     --mg-steel     #4B5158   structural gray

   TYPE
     Display (huge):  'Anton' — ultra-heavy condensed, poster/stencil scale
     Label/UI:        'Space Grotesk' — technical, geometric, all-caps labels
     Body:             'Inter'
     Mono/data:        'IBM Plex Mono'
   ========================================================================= */

:root {
  --mg-void: #0A0B0C;
  --mg-ink: #131518;
  --mg-surface: #1B1E22;
  --mg-surface-2: #22262B;
  --mg-line: rgba(255, 255, 255, 0.09);
  --mg-line-strong: rgba(255, 255, 255, 0.18);

  --mg-accent: #FFC300;
  --mg-accent-ink: #1A1400;
  --mg-accent-2: #FF4319;
  --mg-accent-2-ink: #2B0A02;

  --mg-paper: #F3F1EA;
  --mg-white: #F5F4F0;
  --mg-muted: #e3e5e8;
  --mg-muted-2: #e3e5e8;
  --mg-steel: #4B5158;

  --mg-font-display: 'Anton', 'Arial Narrow', sans-serif;
  --mg-font-label: 'Space Grotesk', 'Inter', sans-serif;
  --mg-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mg-font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --mg-radius: 4px;
  --mg-container-pad: 1rem;
  --mg-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== DEALER PHONES ========== */
.mg-dealer-phones {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.mg-phone-item {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mg-phone-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Individual colors */
.mg-phone-sales {
  border-left-color: #4caf50;
}

.mg-phone-support {
  border-left-color: #2196f3;
}

.mg-phone-general {
  border-left-color: #ffc107;
}

.mg-phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  font-weight: 600;
  margin-bottom: 2px;
}

.mg-phone-label i {
  margin-right: 4px;
  font-size: 13px;
}

.mg-phone-item a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.mg-phone-item a:hover {
  color: #ffd700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .mg-dealer-phones {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 15px;
  }
  
  .mg-phone-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }
  
  .mg-phone-label {
    margin-bottom: 0;
    font-size: 13px;
  }
  
  .mg-phone-item a {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .mg-phone-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .mg-phone-item a {
    font-size: 14px;
  }
}

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  font-family: var(--mg-font-body);
  color: var(--mg-white);
  background: var(--mg-void);
  -webkit-font-smoothing: antialiased;
  cursor: default;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--mg-font-display); font-weight: 400; letter-spacing: 0.005em; color: var(--mg-white); line-height: 0.98; text-transform: uppercase; }
p, li { color: var(--mg-muted); }

a { color: var(--mg-accent); text-decoration: none; }
a:hover { color: var(--mg-accent-2); }

::selection { background: var(--mg-accent); color: var(--mg-accent-ink); }

.mg-skip-link { position: absolute; top: 0; left: 0; z-index: 2000; background: var(--mg-accent); color: var(--mg-accent-ink); padding: .6rem 1rem; }

.mg-eyebrow {
  font-family: var(--mg-font-mono);
  font-size: .74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mg-accent);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.mg-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--mg-accent); display: inline-block; }

.mg-section { padding: 6rem 0; position: relative; }
.mg-section-tight { padding: 3.5rem 0; position: relative; }
.mg-section-paper { background: var(--mg-paper); color: var(--mg-void); }
.mg-section-paper h1, .mg-section-paper h2, .mg-section-paper h3, .mg-section-paper h4 { color: var(--mg-void); }
.mg-section-paper p, .mg-section-paper li { color: #4a4842; }
.mg-section-ink { background: var(--mg-ink); }

.mg-ghost {
  position: absolute;
  font-family: var(--mg-font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.mg-section-paper .mg-ghost { -webkit-text-stroke: 1px rgba(10,11,12,0.08); }

.mg-hazard {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg, var(--mg-accent) 0 18px, var(--mg-void) 18px 36px
  );
  background-size: 200% 100%;
  animation: mg-hazard-crawl 6s linear infinite;
}
.mg-hazard-thick { height: 34px; }
@keyframes mg-hazard-crawl { from { background-position: 0 0; } to { background-position: -100px 0; } }

.mg-btn-accent {
  background: var(--mg-accent); border: 2px solid var(--mg-accent); color: var(--mg-accent-ink);
  font-family: var(--mg-font-label); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; font-size: .88rem;
  padding: .75rem 1.6rem; border-radius: var(--mg-radius);
  transition: background .18s var(--mg-ease), color .18s var(--mg-ease), transform .18s var(--mg-ease);
  position: relative;
}
.mg-btn-accent:hover, .mg-btn-accent:focus {
  background: var(--mg-void); border-color: var(--mg-accent); color: var(--mg-accent);
}
.mg-btn-accent:disabled { opacity: .7; }

.mg-btn-outline {
  background: transparent; border: 2px solid var(--mg-line-strong); color: var(--mg-white);
  font-family: var(--mg-font-label); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; font-size: .88rem;
  padding: .7rem 1.6rem; border-radius: var(--mg-radius);
}
.mg-btn-outline:hover { border-color: var(--mg-accent); color: var(--mg-accent); }

.mg-section-paper .mg-btn-outline { border-color: rgba(10,11,12,0.2); color: var(--mg-void); }
.mg-section-paper .mg-btn-outline:hover { border-color: var(--mg-accent-2); color: var(--mg-accent-2); }

.mg-magnetic { display: inline-block; will-change: transform; }

.mg-topbar { background: var(--mg-void); color: var(--mg-muted); font-family: var(--mg-font-mono); font-size: .74rem; padding: .5rem 0; border-bottom: 1px solid var(--mg-line); }
.mg-topbar-props span { margin-right: 1.75rem; }
.mg-topbar-props i, .mg-topbar-phones i { color: var(--mg-accent); margin-right: .4rem; }

.mg-header { z-index: 1030; }
.mg-navbar {
  background: transparent; padding: 1.3rem 0;
  border-bottom: 1px solid transparent;
  transition: background .25s var(--mg-ease), padding .25s var(--mg-ease), border-color .25s var(--mg-ease);
}
.mg-header.is-scrolled .mg-navbar { background: rgba(10,11,12,0.92); backdrop-filter: blur(10px); padding: .85rem 0; border-bottom-color: var(--mg-line); }

.mg-brand { display: flex; align-items: center; gap: .7rem; }
.mg-brand-mark {
  width: 44px; height: 44px; background: var(--mg-accent); color: var(--mg-accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mg-font-display); font-size: 1.2rem; position: relative; overflow: hidden;
  transform: skew(-6deg);
}
.mg-brand-mark span { display: block; transform: skew(6deg); }
.mg-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.mg-brand-text strong { font-family: var(--mg-font-label); font-weight: 700; font-size: 1.05rem; color: var(--mg-white); letter-spacing: -.01em; }
.mg-brand-text small { font-family: var(--mg-font-mono); font-size: .64rem; color: var(--mg-muted); letter-spacing: .07em; text-transform: uppercase; }

.mg-nav-links { gap: .1rem; }
.mg-nav-links .nav-link {
  font-family: var(--mg-font-label); font-weight: 500; font-size: .9rem; text-transform: uppercase; letter-spacing: .03em;
  color: var(--mg-white); padding: .5rem 1rem; position: relative;
}
.mg-nav-links .nav-link::after {
  content: ''; position: absolute; left: 1rem; right: 1rem; bottom: .2rem; height: 2px; background: var(--mg-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .22s var(--mg-ease);
}
.mg-nav-links .nav-link:hover::after, .mg-nav-links .nav-link.active::after { transform: scaleX(1); }
.mg-nav-links .nav-link:hover, .mg-nav-links .nav-link.active { color: var(--mg-accent); }
.mg-nav-links .dropdown-menu { background: var(--mg-surface); border: 1px solid var(--mg-line); border-radius: var(--mg-radius); }
.mg-nav-links .dropdown-item { color: var(--mg-white); font-family: var(--mg-font-body); font-size: .9rem; }
.mg-nav-links .dropdown-item:hover { background: var(--mg-accent); color: var(--mg-accent-ink); }
.mg-nav-links .dropdown-item .text-muted { color: var(--mg-muted) !important; }
.mg-nav-links .dropdown-item:hover .text-muted { color: var(--mg-accent-ink) !important; }

.mg-nav-actions { display: flex; align-items: center; gap: .8rem; margin-left: 1rem; }
.mg-call-btn { width: 44px; height: 44px; border-radius: 50%; background: transparent; color: var(--mg-white); display: flex; align-items: center; justify-content: center; border: 1px solid var(--mg-line-strong); }
.mg-call-btn:hover { background: var(--mg-accent); color: var(--mg-accent-ink); border-color: var(--mg-accent); }

.mg-offcanvas { background: var(--mg-ink); color: var(--mg-white); width: 300px; }
.mg-offcanvas .nav-link { color: var(--mg-white); font-family: var(--mg-font-label); text-transform: uppercase; padding: .6rem 0; font-size: 1.05rem; }
.mg-offcanvas .nav-link:hover { color: var(--mg-accent); }
.mg-mobile-subnav-label { font-family: var(--mg-font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mg-muted); margin-top: .75rem; }

.mg-hero { position: relative; overflow: hidden; background: var(--mg-void); padding: 9.5rem 0 0; min-height: 92vh; display: flex; align-items: center; }
.mg-hero-tread {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: repeating-linear-gradient(115deg, transparent 0 34px, rgba(255,195,0,0.06) 34px 38px, transparent 38px 90px);
}
.mg-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: end; padding-bottom: 5rem; }
.mg-hero-eyebrow { margin-bottom: 1.4rem; }
.mg-hero-heading {
  font-size: clamp(3.2rem, 8vw, 7.2rem); color: var(--mg-white); margin: 0 0 1.6rem;
  letter-spacing: -.01em;
}
.mg-hero-heading .mg-line-accent { color: var(--mg-accent); display: block; }
.mg-hero-sub { font-family: var(--mg-font-body); color: var(--mg-muted); font-size: 1.15rem; max-width: 520px; margin-bottom: 2.2rem; line-height: 1.6; }
.mg-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.mg-hero-visual { position: relative; height: 100%; min-height: 420px; }
.mg-hero-photo {
  position: absolute; inset: 0; border-radius: var(--mg-radius);
  background: linear-gradient(160deg, var(--mg-surface), var(--mg-ink));
  border: 1px solid var(--mg-line);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mg-hero-photo i { font-size: 6rem; color: var(--mg-line-strong); }
.mg-hero-stat-card {
  position: absolute; left: -2.5rem; bottom: -2rem; z-index: 2;
  background: var(--mg-accent); color: var(--mg-accent-ink);
  padding: 1.6rem 1.9rem; border-radius: var(--mg-radius);
  transform: rotate(-3deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  min-width: 210px;
}
.mg-hero-stat-card .mg-stat-number { color: var(--mg-accent-ink); font-size: 3rem; }
.mg-hero-stat-card .mg-stat-label { color: var(--mg-accent-ink); opacity: .75; }

.mg-hero-marquee-anchor { position: relative; z-index: 1; }

/* Secondary "page hero" — smaller banner used on About/Contact/Privacy,
   same dark/tread/ghost-numeral language as the home hero but compact. */
.mg-page-hero { position: relative; overflow: hidden; background: var(--mg-void); padding: 8.5rem 0 4rem; }
.mg-page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.mg-page-hero .mg-hero-heading { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-bottom: 1.1rem; }
.mg-page-hero .mg-hero-sub { margin-bottom: 0; }

.mg-marquee {
  background: var(--mg-accent); color: var(--mg-accent-ink); overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.15); border-bottom: 1px solid rgba(0,0,0,0.15);
  white-space: nowrap; position: relative; z-index: 2;
}
.mg-marquee-track { display: inline-flex; align-items: center; padding: .85rem 0; will-change: transform; }
.mg-marquee-track span {
  font-family: var(--mg-font-label); font-weight: 700; text-transform: uppercase; font-size: 1rem; letter-spacing: .04em;
  padding: 0 1.75rem; display: inline-flex; align-items: center; gap: 1.75rem;
}
.mg-marquee-track span::after { content: '◆'; font-size: .6rem; opacity: .5; }

.mg-explainer-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mg-explainer-row .mg-explainer-card:nth-child(2) { margin-top: 3.5rem; }
.mg-explainer-card {
  background: var(--mg-surface); border: 1px solid var(--mg-line); border-radius: var(--mg-radius);
  padding: 2.5rem; height: 100%; position: relative; overflow: hidden;
}
.mg-explainer-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--mg-accent); }
.mg-explainer-tag { font-family: var(--mg-font-mono); font-size: .74rem; letter-spacing: .1em; color: var(--mg-accent); text-transform: uppercase; margin-bottom: .6rem; display: block; }
.mg-explainer-card h3 { font-size: 2rem; margin-bottom: .9rem; }
.mg-explainer-card p { margin-bottom: 1.25rem; }

.mg-service-card {
  background: var(--mg-surface); border-radius: var(--mg-radius); padding: 2.4rem 2rem;
  height: 100%; border: 1px solid var(--mg-line); position: relative;
}
.mg-service-card:nth-child(2) { transform: translateY(2.5rem); }
.mg-service-number { font-family: var(--mg-font-mono); font-size: .8rem; color: var(--mg-accent); margin-bottom: 1.5rem; display: block; }
.mg-service-card h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.mg-service-card p { font-size: .95rem; margin-bottom: 0; }

.mg-product-card {
  background: var(--mg-surface); border-radius: var(--mg-radius); overflow: hidden;
  border: 1px solid var(--mg-line); height: 100%; display: flex; flex-direction: column;
  transition: border-color .2s var(--mg-ease);
}
.mg-product-card:hover { border-color: var(--mg-accent); }
.mg-product-thumb {
  aspect-ratio: 4/3; background: var(--mg-ink);
  display: flex; align-items: center; justify-content: center; color: var(--mg-steel);
  position: relative; overflow: hidden;
}
.mg-product-thumb i { font-size: 2.6rem; color: var(--mg-line-strong); }
.mg-product-category-tag {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--mg-accent); color: var(--mg-accent-ink);
  font-family: var(--mg-font-mono); font-size: .68rem; letter-spacing: .06em;
  padding: .3rem .6rem; border-radius: 2px; text-transform: uppercase; font-weight: 600;
}
.mg-product-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.mg-product-body h3 { font-family: var(--mg-font-label); font-weight: 700; text-transform: none; font-size: 1.05rem; color: var(--mg-white); margin-bottom: .4rem; letter-spacing: 0; }
.mg-product-body p { color: var(--mg-muted); font-size: .87rem; flex: 1; margin-bottom: 1.1rem; }

.mg-dealer-band {
  background: var(--mg-surface); color: var(--mg-white); border-radius: var(--mg-radius); border: 1px solid var(--mg-line);
  padding: 2.75rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.mg-dealer-band.mg-dealer-accent { background: var(--mg-accent); color: var(--mg-accent-ink); border-color: var(--mg-accent); }
.mg-dealer-band.mg-dealer-accent h3, .mg-dealer-band.mg-dealer-accent p { color: var(--mg-accent-ink); }
.mg-dealer-badge { display: flex; align-items: center; gap: 1.1rem; }
.mg-dealer-badge-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--mg-accent); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--mg-accent-ink); flex-shrink: 0; }
.mg-dealer-band.mg-dealer-accent .mg-dealer-badge-icon { background: var(--mg-void); color: var(--mg-accent); }
.mg-dealer-phones { display: flex; gap: 1.6rem; flex-wrap: wrap; font-family: var(--mg-font-mono); }
.mg-dealer-phones a { color: inherit; }
.mg-dealer-phones i { color: var(--mg-accent); margin-right: .4rem; }
.mg-dealer-band.mg-dealer-accent .mg-dealer-phones i { color: var(--mg-void); }

.mg-feature-item { padding: 1.5rem 0; border-top: 1px solid var(--mg-line); }
.mg-feature-item .mg-feature-index { font-family: var(--mg-font-mono); color: var(--mg-accent); font-size: .85rem; display: block; margin-bottom: .8rem; }
.mg-feature-item h4 { font-size: 1.15rem; margin-bottom: .5rem; text-transform: none; font-family: var(--mg-font-label); font-weight: 700; }
.mg-feature-item p { font-size: .9rem; margin-bottom: 0; }

.mg-stats { background: var(--mg-ink); border-top: 1px solid var(--mg-line); border-bottom: 1px solid var(--mg-line); }
.mg-stat { text-align: left; padding: 1rem 0; }
.mg-stat-number { font-family: var(--mg-font-display); font-size: clamp(2.6rem, 5.5vw, 4.5rem); color: var(--mg-accent); display: block; line-height: .9; }
.mg-stat-label { color: var(--mg-muted); font-family: var(--mg-font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .7rem; display: block; }

.mg-hover-lift { transition: transform .2s var(--mg-ease); will-change: transform; }

.form-control, .form-select {
  border-radius: var(--mg-radius); border: 1px solid var(--mg-line-strong);
  background: var(--mg-ink); color: var(--mg-white);
  padding: .68rem .9rem; font-size: .94rem;
}
.form-control::placeholder { color: var(--mg-muted-2); }
.form-control:focus, .form-select:focus {
  border-color: var(--mg-accent); box-shadow: 0 0 0 3px rgba(255,195,0,0.18); background: var(--mg-ink); color: var(--mg-white);
}
.form-select { color-scheme: dark; }
.form-label { font-family: var(--mg-font-label); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .03em; color: var(--mg-white); }
.invalid-feedback { font-size: .8rem; }

.mg-section-paper .form-control, .mg-section-paper .form-select { background: #fff; color: var(--mg-void); border-color: rgba(10,11,12,0.15); }
.mg-section-paper .form-label { color: var(--mg-void); }

.mg-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.mg-form-feedback { display: none; font-size: .9rem; padding: .7rem 1rem; border-radius: var(--mg-radius); font-family: var(--mg-font-mono); }
.mg-feedback-success { display: block !important; background: rgba(255,195,0,0.12); color: var(--mg-accent); border: 1px solid rgba(255,195,0,0.35); }
.mg-feedback-error { display: block !important; background: rgba(255,67,25,0.12); color: #FF7A54; border: 1px solid rgba(255,67,25,0.35); }

.mg-subscribe-form .mg-form-feedback { font-size: .76rem; padding: .5rem .7rem; margin-top: .5rem; }

.mg-modal .modal-content { border-radius: var(--mg-radius); border: 1px solid var(--mg-line); background: var(--mg-surface); }
.mg-modal .modal-header { border-bottom: 1px solid var(--mg-line); }
.mg-modal .modal-title { font-family: var(--mg-font-display); text-transform: uppercase; color: var(--mg-white); }
.mg-modal .btn-close { filter: invert(1); }

.mg-contact-info-card { background: var(--mg-surface); border: 1px solid var(--mg-line); border-radius: var(--mg-radius); padding: 2.2rem; }
.mg-contact-info-list li { display: flex; gap: .8rem; margin-bottom: 1.2rem; align-items: flex-start; }
.mg-contact-info-list i { color: var(--mg-accent); font-size: 1.1rem; margin-top: .15rem; }
.mg-contact-info-list a, .mg-contact-info-list span { color: var(--mg-white); }
.mg-map-frame { border-radius: var(--mg-radius); overflow: hidden; border: 1px solid var(--mg-line); filter: grayscale(1) invert(0.92) contrast(0.9); }
.mg-map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

.mg-timeline { position: relative; padding-left: 2.75rem; }
.mg-timeline::before { content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--mg-line); }
.mg-timeline-item { position: relative; padding-bottom: 2.5rem; }
.mg-timeline-item:last-child { padding-bottom: 0; }
.mg-timeline-item::before { content: ''; position: absolute; left: -2.75rem; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--mg-accent); border: 4px solid var(--mg-void); box-shadow: 0 0 0 2px var(--mg-line); }
.mg-timeline-year { font-family: var(--mg-font-mono); color: var(--mg-accent); font-weight: 600; font-size: 1rem; }
.mg-timeline-item h4 { text-transform: none; font-family: var(--mg-font-label); font-size: 1.25rem; }

.mg-mv-card { background: var(--mg-surface); border: 1px solid var(--mg-line); border-radius: var(--mg-radius); padding: 2.2rem; height: 100%; }
.mg-mv-card i { font-size: 1.9rem; color: var(--mg-accent); margin-bottom: 1rem; display: inline-block; }
.mg-mv-card h3 { text-transform: none; font-family: var(--mg-font-label); font-size: 1.4rem; }

.mg-org-value { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.mg-org-value i { color: var(--mg-accent); font-size: 1.35rem; margin-top: .15rem; }
.mg-org-value strong { color: var(--mg-white); font-family: var(--mg-font-label); }

.mg-leader-preview-card { background: var(--mg-surface); border: 1px solid var(--mg-line); border-radius: var(--mg-radius); overflow: hidden; height: 100%; display: block; transition: border-color .2s var(--mg-ease); }
.mg-leader-preview-card:hover { border-color: var(--mg-accent); }
.mg-leader-portrait { aspect-ratio: 1/1; background: var(--mg-ink); display: flex; align-items: center; justify-content: center; color: var(--mg-line-strong); font-size: 2.8rem; }
.mg-leader-preview-body { padding: 1.5rem 1.4rem 1.7rem; }
.mg-leader-preview-body h3 { font-size: 1.15rem; margin-bottom: .2rem; color: var(--mg-white); text-transform: none; font-family: var(--mg-font-label); font-weight: 700; }
.mg-leader-preview-body span { font-family: var(--mg-font-mono); font-size: .8rem; color: var(--mg-muted); }

.mg-profile-hero { background: var(--mg-void); padding: 8rem 0 3.5rem; position: relative; overflow: hidden; }
.mg-profile-hero > .container { position: relative; z-index: 1; }
.mg-breadcrumb { font-family: var(--mg-font-mono); font-size: .8rem; position: relative; z-index: 1; }
.mg-breadcrumb a { color: var(--mg-muted); }
.mg-breadcrumb a:hover { color: var(--mg-accent); }
.mg-breadcrumb .current { color: var(--mg-accent); }

.mg-profile-portrait { aspect-ratio: 3/4; border-radius: var(--mg-radius); overflow: hidden; background: var(--mg-surface); display: flex; align-items: center; justify-content: center; color: var(--mg-line-strong); font-size: 4.5rem; border: 1px solid var(--mg-line); }
.mg-pull-quote { border-left: 4px solid var(--mg-accent); padding: .6rem 0 .6rem 1.75rem; font-family: var(--mg-font-display); font-size: 1.7rem; text-transform: none; color: var(--mg-white); margin: 2.25rem 0; letter-spacing: 0; line-height: 1.2; }
.mg-profile-bio p { margin-bottom: 1.2rem; color: var(--mg-muted); line-height: 1.8; }
.mg-cross-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.mg-cross-link { border: 1px solid var(--mg-line); background: var(--mg-surface); border-radius: var(--mg-radius); padding: 1rem 1.25rem; flex: 1 1 220px; color: var(--mg-white); display: flex; align-items: center; justify-content: space-between; }
.mg-cross-link:hover { border-color: var(--mg-accent); color: var(--mg-white); }
.mg-cross-link i { color: var(--mg-accent); }

.mg-policy-toc { position: sticky; top: 6.5rem; background: var(--mg-surface); border: 1px solid var(--mg-line); border-radius: var(--mg-radius); padding: 1.6rem; }
.mg-policy-toc a { display: block; color: var(--mg-muted); padding: .35rem 0; font-size: .88rem; font-family: var(--mg-font-mono); }
.mg-policy-toc a:hover { color: var(--mg-accent); }
.mg-policy-body h2 { font-size: 1.5rem; text-transform: none; font-family: var(--mg-font-label); margin-top: 2.5rem; scroll-margin-top: 6.5rem; color: var(--mg-white); }
.mg-policy-body p, .mg-policy-body li { color: var(--mg-muted); line-height: 1.8; }

.mg-footer { background: var(--mg-ink); color: var(--mg-muted); padding: 5rem 0 1.5rem; border-top: 1px solid var(--mg-line); }
.mg-footer .mg-brand-text strong { color: var(--mg-white); }
.mg-footer-blurb { font-size: .9rem; margin: 1.1rem 0 1.3rem; color: var(--mg-muted); line-height: 1.7; max-width: 320px; }
.mg-footer-heading { font-family: var(--mg-font-label); color: var(--mg-white); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 700; }
.mg-footer-list { list-style: none; padding: 0; margin: 0; }
.mg-footer-list li { margin-bottom: .7rem; }
.mg-footer-list a { color: var(--mg-muted); font-size: .9rem; }
.mg-footer-list a:hover { color: var(--mg-accent); }
.mg-footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; }
.mg-footer-contact i { color: var(--mg-accent); margin-top: .2rem; }
.mg-footer-contact a { color: var(--mg-muted); }
.mg-footer-rule { border-color: var(--mg-line); margin: 3rem 0 1.4rem; }
.mg-footer-bottom { font-size: .78rem; color: var(--mg-muted-2); font-family: var(--mg-font-mono); }
.mg-social-icons { display: flex; gap: .6rem; margin-top: .3rem; }
.mg-social-icons a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--mg-line-strong); display: flex; align-items: center; justify-content: center; color: var(--mg-white); }
.mg-social-icons a:hover { background: var(--mg-accent); border-color: var(--mg-accent); color: var(--mg-accent-ink); }

.mg-whatsapp-fab {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1040;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; box-shadow: 0 12px 28px rgba(37,211,102,0.35);
  transition: transform .18s var(--mg-ease);
}
.mg-whatsapp-fab:hover { transform: scale(1.08); color: #fff; }

.mg-cursor-glow {
  position: fixed; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,195,0,0.10) 0%, rgba(255,195,0,0) 70%);
  pointer-events: none; z-index: 5; transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .3s ease;
}

.mg-index-rail {
  position: fixed; right: 1.75rem; top: 50%; transform: translateY(-50%); z-index: 20;
  display: flex; flex-direction: column; gap: .9rem;
}
.mg-index-rail a { width: 8px; height: 8px; border-radius: 50%; background: var(--mg-line-strong); display: block; transition: background .2s ease, transform .2s ease; }
.mg-index-rail a:hover, .mg-index-rail a.active { background: var(--mg-accent); transform: scale(1.4); }

/* ---------------------------------------------------------------------
   Custom cursor — a small dot + a lagging outline ring, replacing the
   system cursor site-wide on fine-pointer devices. Scales up over
   anything clickable for clear affordance.
   --------------------------------------------------------------------- */
@media (pointer: fine) {
  body.mg-custom-cursor-on, body.mg-custom-cursor-on a, body.mg-custom-cursor-on button,
  body.mg-custom-cursor-on input, body.mg-custom-cursor-on textarea, body.mg-custom-cursor-on select { cursor: none; }
}
.mg-cursor-dot, .mg-cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 4000;
  border-radius: 50%; opacity: 0;
}
.mg-cursor-dot { width: 6px; height: 6px; background: var(--mg-accent); }
.mg-cursor-ring { width: 34px; height: 34px; border: 1px solid var(--mg-line-strong); transition: width .2s var(--mg-ease), height .2s var(--mg-ease), border-color .2s var(--mg-ease), background .2s var(--mg-ease), opacity .2s ease; }
.mg-cursor-ring.is-hover { width: 56px; height: 56px; border-color: var(--mg-accent); background: rgba(255,195,0,0.08); }

/* ---------------------------------------------------------------------
   Film grain overlay — a fixed, low-opacity noise texture over the
   whole page for a premium, less-flat surface. Pure SVG, no images.
   --------------------------------------------------------------------- */
.mg-grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------
   Drifting gradient blobs — soft, blurred accent shapes behind the hero
   and other dark sections for depth. Pure CSS, GPU-cheap, looping drift.
   --------------------------------------------------------------------- */
.mg-blob-field { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.mg-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; }
.mg-blob-a { width: 420px; height: 420px; background: var(--mg-accent); top: -120px; left: -80px; animation: mg-blob-drift-a 22s ease-in-out infinite; }
.mg-blob-b { width: 360px; height: 360px; background: var(--mg-accent-2); bottom: -140px; right: -60px; opacity: .22; animation: mg-blob-drift-b 26s ease-in-out infinite; }
@keyframes mg-blob-drift-a { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, 40px) scale(1.15); } }
@keyframes mg-blob-drift-b { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-50px, -30px) scale(1.1); } }

/* ---------------------------------------------------------------------
   Page-transition sweep — a full-screen accent panel that wipes in on
   internal link clicks, giving navigation an app-like feel.
   --------------------------------------------------------------------- */
.mg-page-transition {
  position: fixed; inset: 0; z-index: 3500; background: var(--mg-accent);
  transform: scaleY(0); transform-origin: bottom; pointer-events: none;
}

/* ---------------------------------------------------------------------
   Glitch hover — brief RGB-split flicker on the hero accent word.
   --------------------------------------------------------------------- */
.mg-glitch { position: relative; display: inline-block; cursor: default; }
.mg-glitch:hover { animation: mg-glitch-shake .3s linear; }
.mg-glitch:hover::before, .mg-glitch:hover::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; overflow: hidden;
}
.mg-glitch:hover::before { color: var(--mg-accent-2); clip-path: inset(0 0 55% 0); animation: mg-glitch-1 .3s linear; }
.mg-glitch:hover::after { color: #4CD3FF; clip-path: inset(45% 0 0 0); animation: mg-glitch-2 .3s linear; }
@keyframes mg-glitch-shake { 0%, 100% { transform: translate(0,0); } 20% { transform: translate(-2px,1px); } 40% { transform: translate(2px,-1px); } 60% { transform: translate(-1px,-1px); } 80% { transform: translate(1px,1px); } }
@keyframes mg-glitch-1 { 0% { transform: translate(0,0); } 20% { transform: translate(-3px,0); } 40% { transform: translate(3px,0); } 100% { transform: translate(0,0); } }
@keyframes mg-glitch-2 { 0% { transform: translate(0,0); } 20% { transform: translate(3px,0); } 40% { transform: translate(-3px,0); } 100% { transform: translate(0,0); } }

/* ---------------------------------------------------------------------
   FAQ accordion
   --------------------------------------------------------------------- */
.mg-faq-list { border-top: 1px solid var(--mg-line); max-width: 820px; }
.mg-faq-item { border-bottom: 1px solid var(--mg-line); }
.mg-faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--mg-font-label); font-weight: 700; font-size: 1.05rem; color: var(--mg-white);
}
.mg-faq-question i { color: var(--mg-accent); transition: transform .25s var(--mg-ease); flex-shrink: 0; }
.mg-faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.mg-faq-answer { color: var(--mg-muted); padding-bottom: 1.5rem; margin: 0; max-width: 680px; line-height: 1.75; }

/* ---------------------------------------------------------------------
   3D tilt on product cards (JS sets --rx/--ry via mousemove)
   --------------------------------------------------------------------- */
.mg-tilt { transform: perspective(900px) rotateX(var(--ry, 0deg)) rotateY(var(--rx, 0deg)); transition: transform .15s ease-out; }

/* ---------------------------------------------------------------------
   Preloader
   --------------------------------------------------------------------- */
.mg-preloader {
  position: fixed; inset: 0; z-index: 3000; background: var(--mg-void);
  display: flex; align-items: center; justify-content: center;
}
.mg-preloader-mark { font-family: var(--mg-font-display); font-size: 3.5rem; color: var(--mg-accent); letter-spacing: .02em; }

/* ---------------------------------------------------------------------
   Scroll progress bar
   --------------------------------------------------------------------- */
.mg-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: var(--mg-accent); transform-origin: left; transform: scaleX(0);
  z-index: 1050;
}

@media (max-width: 991.98px) {
  .mg-section { padding: 4rem 0; }
  .mg-hero-grid { grid-template-columns: 1fr; padding-bottom: 0; }
  .mg-hero-visual { min-height: 300px; margin-top: 3rem; }
  .mg-hero-stat-card { left: 0; }
  .mg-explainer-row { grid-template-columns: 1fr; }
  .mg-explainer-row .mg-explainer-card:nth-child(2) { margin-top: 0; }
  .mg-service-card:nth-child(2) { transform: none; }
  .mg-dealer-band { flex-direction: column; align-items: flex-start; }
  .mg-policy-toc { position: static; margin-bottom: 2rem; }
  .mg-index-rail { display: none; }
}

@media (max-width: 575.98px) {
  .mg-hero { padding: 7.5rem 0 0; min-height: auto; }
  .mg-hero-ctas .btn { width: 100%; }
  .mg-dealer-phones { flex-direction: column; gap: .6rem; }
  .mg-hero-stat-card { position: static; transform: none; margin-top: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .mg-marquee-track { animation: none !important; }
}
