/* ============================================
   DOKTER DIESEL — Gold Diesel Specialist
   Premium Stylesheet v2.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --black:        #060606;
  --dark:         #0e0e0e;
  --dark2:        #141414;
  --dark3:        #1c1c1c;
  --dark4:        #242424;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dark:    #8B6914;
  --gold-muted:   #7A5C1A;
  --white:        #ffffff;
  --off-white:    #e8e8e8;
  --gray:         #666666;
  --text-muted:   #888888;
  --text-dim:     #555555;
  --wa-green:     #25D366;

  --gradient-gold:       linear-gradient(135deg, #C9A84C 0%, #8B6914 100%);
  --gradient-gold-light: linear-gradient(135deg, #FFD700 0%, #C9A84C 50%, #8B6914 100%);
  --gradient-dark:       linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0c0c0c 100%);
  --gradient-card:       linear-gradient(145deg, #131313, #1a1a1a);
  --gradient-hero:       linear-gradient(135deg, #060606 0%, #0e0e0e 60%, #080808 100%);

  --glow-gold:    0 0 20px rgba(201,168,76,0.35), 0 0 40px rgba(201,168,76,0.15);
  --glow-gold-sm: 0 0 12px rgba(201,168,76,0.25);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-deep:  0 20px 60px rgba(0,0,0,0.7);

  --border-gold:  1px solid rgba(201,168,76,0.25);
  --border-gold-bright: 1px solid rgba(201,168,76,0.5);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-dark { background-color: var(--dark); }
.section-header-center { text-align: center; margin-bottom: 56px; }

/* === TYPOGRAPHY === */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.section-title span {
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === BADGES === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.badge-gold {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
}
.badge-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: var(--gradient-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(201,168,76,0.5);
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* === NOTICE BAR === */
.notice-bar {
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.notice-bar a { color: var(--gold-light); font-weight: 600; }
.notice-bar a:hover { color: var(--gold); }
.notice-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,6,6,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo-text { display: flex; flex-direction: column; }
.brand {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tagline-mini {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.navbar-cta { display: flex; align-items: center; gap: 10px; }
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--off-white);
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 14px;
  border: var(--border-gold);
  border-radius: 50px;
  transition: var(--transition);
}
.navbar-phone:hover { color: var(--gold-light); border-color: rgba(201,168,76,0.5); }
.navbar-wa-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 20px;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar-wa-btn:hover { transform: translateY(-1px); box-shadow: var(--glow-gold-sm); }

/* === HERO === */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: 80px 0 90px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-gold-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 560px; }
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title .highlight {
  display: block;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.3));
}
.hero-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: #999;
  margin-bottom: 28px;
}
.hero-subtitle strong { color: var(--off-white); }
.hero-divider {
  width: 60px;
  height: 1.5px;
  background: var(--gradient-gold);
  margin-bottom: 28px;
  border-radius: 2px;
}
.hero-stats {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 36px;
}
.hero-stat { text-align: center; padding: 0 16px; }
.hero-stat .number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-stat .label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.hero-cta-group { display: flex; flex-direction: column; gap: 14px; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.hero-guarantee span > span { color: var(--gold-light); font-weight: 600; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-visual-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(201,168,76,0.1);
  position: relative;
}
.hero-car-illustration {
  padding: 8px;
  background: #060606;
}
.hero-car-illustration svg { width: 100%; height: auto; display: block; }
.hero-info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--border-gold);
}
.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 16px 8px;
  border-right: 1px solid rgba(201,168,76,0.12);
  text-align: center;
}
.hero-info-item:last-child { border-right: none; }
.hero-info-item .value {
  font-weight: 700;
  font-size: 12.5px;
  color: var(--gold-light);
  margin-top: 4px;
}
.hero-info-item .text {
  font-size: 10.5px;
  color: var(--text-muted);
}
.floating-badge {
  position: absolute;
  background: rgba(10,10,10,0.9);
  border: var(--border-gold);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
  z-index: 10;
}
.floating-badge.top-right { top: -14px; right: 20px; }
.floating-badge.bottom-left { bottom: -14px; left: 20px; }
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s infinite;
}

/* === TICKER === */
.ticker-strip {
  background: rgba(201,168,76,0.07);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-content {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 32px;
}

/* ══════════════════════════════════════════ */
/* CORE DIESEL EXPERTISE */
/* ══════════════════════════════════════════ */
.expertise-section { background: var(--dark); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.expertise-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition);
}
.expertise-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep), var(--glow-gold-sm);
}
.expertise-card:hover::before { opacity: 1; }
.expertise-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.expertise-title-card {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 12px;
}
.expertise-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.expertise-line {
  width: 40px;
  height: 1px;
  background: var(--gradient-gold);
  margin-bottom: 14px;
  border-radius: 2px;
}
.expertise-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ══════════════════════════════════════════ */
/* PRECISION DIESEL SYSTEM */
/* ══════════════════════════════════════════ */
.precision-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.precision-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 50%),
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  pointer-events: none;
}
.precision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.precision-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.precision-heading span {
  display: block;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.precision-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.precision-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.precision-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.precision-item-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient-gold);
  margin-top: 6px;
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}
.precision-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.precision-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* Precision Visual */
.precision-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.precision-circle-outer {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 20s linear infinite;
  box-shadow: 0 0 40px rgba(201,168,76,0.08);
}
.precision-circle-mid {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 15s linear infinite reverse;
}
.precision-circle-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
  border: 1.5px solid rgba(201,168,76,0.4);
  box-shadow: var(--glow-gold-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: none;
}
.precision-circle-inner span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.precision-specs {
  display: flex;
  gap: 24px;
  text-align: center;
}
.precision-spec-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.spec-num {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.spec-unit { font-size: 11px; color: var(--gold-dark); font-weight: 600; }
.spec-label { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; }

/* ══════════════════════════════════════════ */
/* DIESEL PERFORMANCE & CALIBRATION */
/* ══════════════════════════════════════════ */
.performance-section { background: var(--dark); }
.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.perf-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.perf-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.perf-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
}
.perf-card:hover::after { transform: scaleX(1); }
.perf-number {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.perf-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.perf-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}
.perf-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.perf-card-cta {
  background: linear-gradient(145deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border-color: rgba(201,168,76,0.3);
  display: flex;
  align-items: stretch;
}
.perf-cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.perf-cta-inner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.perf-cta-inner p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════ */
/* SERVICES */
/* ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5), var(--glow-gold-sm);
}
.service-icon-gold {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.service-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.service-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 3px 10px;
  border-radius: 50px;
}
.service-card-cta {
  background: linear-gradient(145deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border-color: rgba(201,168,76,0.25);
}

/* ══════════════════════════════════════════ */
/* SPESIALISASI */
/* ══════════════════════════════════════════ */
.spec-section { position: relative; overflow: hidden; }
.spec-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.spec-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.spec-heading::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.spec-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}
.spec-title span {
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.spec-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.spec-list { display: flex; flex-direction: column; gap: 20px; }
.spec-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}
.spec-item:hover { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.07); }
.spec-item-icon-gold {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-item-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.spec-item-text p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.spec-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.spec-stat-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.big-number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 11.5px; color: var(--text-muted); margin-top: 4px; }
.spec-certif {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 4px;
}
.spec-certif h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.spec-certif ul { display: flex; flex-direction: column; gap: 9px; }
.spec-certif li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════ */
/* CARS */
/* ══════════════════════════════════════════ */
.cars-section { background: var(--black); }
.cars-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.car-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.car-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold-sm);
}
.car-name { font-size: 13px; font-weight: 700; color: var(--off-white); margin-bottom: 4px; }
.car-type { font-size: 10.5px; color: var(--text-muted); }
.car-card-more { border-color: rgba(201,168,76,0.3); }
.car-card-more .car-name { color: var(--gold-light); }
.cars-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 16px 20px;
  background: rgba(201,168,76,0.04);
  border: var(--border-gold);
  border-radius: var(--radius);
}
.cars-note strong { color: var(--off-white); }

/* ══════════════════════════════════════════ */
/* TESTIMONIALS */
/* ══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.testi-card {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.testi-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--off-white); }
.testi-car { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.rating-summary {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.rating-item { text-align: center; }
.rating-big {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.rating-stars { font-size: 18px; color: var(--gold); margin: 4px 0; }
.rating-num {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
.rating-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.rating-divider { width: 1px; height: 60px; background: rgba(201,168,76,0.15); }

/* ══════════════════════════════════════════ */
/* ORDER STEPS */
/* ══════════════════════════════════════════ */
.order-section { background: var(--black); }
.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.order-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
  pointer-events: none;
}
.order-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.order-step:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.order-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  background: rgba(201,168,76,0.08);
}
.order-step-icon-gold {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.order-step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.order-step-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════ */
/* COVERAGE */
/* ══════════════════════════════════════════ */
.coverage-section { background: var(--dark); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.coverage-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
  height: 360px;
}
.coverage-map iframe { width: 100%; height: 100%; border: none; display: block; }
.coverage-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}
.coverage-title span {
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.coverage-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.coverage-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.area-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--off-white);
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 5px 13px;
  border-radius: 50px;
  transition: var(--transition);
}
.area-tag:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.35); color: var(--gold-light); }
.coverage-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 16px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════ */
/* FAQ */
/* ══════════════════════════════════════════ */
.faq-section { background: var(--dark); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-item {
  background: var(--gradient-card);
  border: var(--border-gold);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.faq-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════ */
/* FOOTER CTA */
/* ══════════════════════════════════════════ */
.footer-cta {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    var(--black);
  overflow: hidden;
}
.footer-cta-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.footer-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--white);
  margin: 16px auto 14px;
  max-width: 700px;
}
.footer-cta-title span {
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-cta-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }
.footer-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════ */
/* FOOTER */
/* ══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--gradient-gold-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand-tag { font-size: 10.5px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.footer-info { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }
.footer-copy { font-size: 11.5px; color: var(--text-dim); }

/* ══════════════════════════════════════════ */
/* FLOATING WA */
/* ══════════════════════════════════════════ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--gradient-gold);
  color: var(--black);
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4), 0 2px 8px rgba(0,0,0,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.floating-wa:hover {
  background: var(--gradient-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.55), 0 4px 12px rgba(0,0,0,0.4);
}

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

/* ══════════════════════════════════════════ */
/* RESPONSIVE */
/* ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cars-grid { grid-template-columns: repeat(4, 1fr); }
  .performance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .precision-inner { grid-template-columns: 1fr; gap: 40px; }
  .precision-visual { order: -1; }
  .spec-grid { grid-template-columns: 1fr; gap: 40px; }
  .coverage-inner { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .order-steps { grid-template-columns: repeat(2, 1fr); }
  .order-steps::before { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 64px; min-height: auto; }
  .hero-title { font-size: 34px; }
  .services-grid { grid-template-columns: 1fr; }
  .performance-grid { grid-template-columns: 1fr; }
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .order-steps { grid-template-columns: 1fr; }
  .hero-info-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .rating-summary { flex-direction: column; gap: 24px; }
  .rating-divider { display: none; }
  .navbar-phone { display: none; }
  .floating-wa span { display: none; }
  .floating-wa { padding: 14px 16px; border-radius: 50%; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .footer-cta-btns .btn { width: 100%; justify-content: center; }
}
