

body {
  font-family: 'Satoshi', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.3s ease;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
nav.scrolled {
  height: 60px;
  box-shadow: 0 8px 40px var(--shadow);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0f;
  font-family: 'Clash Display', sans-serif;
  transition: transform 0.3s ease;
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }
.logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle */
.theme-toggle {
  width: 52px;
  height: 28px;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}
.theme-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="light"] .theme-toggle::before {
  transform: translateX(24px);
}
.theme-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  pointer-events: none;
}
.theme-icon.moon { left: 6px; }
.theme-icon.sun  { right: 6px; }

.btn-primary {
  padding: 10px 22px;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,110,0.3);
}
.btn-outline {
  padding: 10px 22px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,169,110,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,169,110,0.04) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-left { animation: fadeSlideUp 0.9s ease forwards; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease forwards;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--accent); }
.hero-title .line2 {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.2s ease forwards;
}
.hero-title .line3 {
  display: block;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.35s ease forwards;
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--text2);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.5s ease forwards;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.65s ease forwards;
}
.btn-hero {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary {
  background: var(--accent);
  color: #0a0a0f;
  border: none;
}
.btn-hero-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,169,110,0.35);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.8s ease forwards;
}
.hero-stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text3);
  margin-top: 2px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeSlideRight 1s 0.3s ease forwards;
}

/* Car SVG illustration */
.car-visual {
  width: 100%;
  max-width: 560px;
  position: relative;
}
.car-float {
  animation: carFloat 4s ease-in-out infinite;
}
.car-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
.car-badge-floating {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px var(--shadow);
  animation: badgeFloat 5s ease-in-out infinite;
}
.car-badge-floating.top-right {
  top: 15%;
  right: -5%;
  animation-delay: 0.5s;
}
.car-badge-floating.bottom-left {
  bottom: 20%;
  left: -5%;
  animation-delay: 1.5s;
}
.badge-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.badge-text-main {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.badge-text-sub {
  font-size: 11px;
  color: var(--text3);
  margin-top: 1px;
}

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--accent);
}

.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
}
.section-desc {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 500px;
  margin-top: 14px;
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── ABOUT ─── */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200,169,110,0.1));
}
.about-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #0a0a0f;
  padding: 20px 24px;
  border-radius: 14px;
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 40px rgba(200,169,110,0.4);
}
.about-tag small {
  display: block;
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s ease;
}
.about-point:hover { border-color: var(--accent-border); }
.about-point-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.about-point-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* ─── SERVICES ─── */
#services { background: var(--bg); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: 0 20px 60px var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.service-card:hover .service-link { gap: 8px; }

/* ─── WHY US ─── */
#why { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-feature {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: default;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-bg), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-feature:hover {
  border-color: var(--accent-border);
  transform: translateX(6px);
}
.why-feature:hover::after { opacity: 1; }
.why-feat-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.why-feat-content { position: relative; z-index: 1; }
.why-feat-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.why-feat-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.why-visual-box {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px var(--shadow);
}
.why-visual-header {
  padding: 28px;
  border-bottom: 1px solid var(--border);
  background: var(--card2);
}
.why-visual-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.why-visual-sub {
  font-size: 13px;
  color: var(--text3);
}
.why-visual-body { padding: 24px 28px; }
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.rating-label {
  font-size: 13px;
  color: var(--text2);
  min-width: 90px;
}
.rating-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg4);
  border-radius: 3px;
  margin: 0 12px;
  overflow: hidden;
}
.rating-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 3px;
  transition: width 1.5s ease;
}
.rating-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  min-width: 36px;
  text-align: right;
}
.why-visual-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.big-rating {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.big-rating span { color: var(--accent); font-size: 20px; }
.rating-stars {
  font-size: 22px;
  letter-spacing: 2px;
}
.rating-count {
  font-size: 12px;
  color: var(--text3);
  margin-top: 3px;
}

/* ─── PRICING ─── */
#pricing { background: var(--bg); }
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-header .section-tag { justify-content: center; }
.pricing-header .section-desc { margin: 14px auto 0; }
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 50px;
  padding: 6px;
  margin: 30px auto 0;
}
.pricing-tab {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  border: none;
  color: var(--text2);
  font-family: 'Satoshi', sans-serif;
}
.pricing-tab.active {
  background: var(--accent);
  color: #0a0a0f;
  font-weight: 600;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  transition: all 0.35s ease;
}
.pricing-card.popular {
  border-color: var(--accent);
  background: var(--card2);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(200,169,110,0.15);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}
.pricing-car-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.pricing-plan {
  font-size: 13px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pricing-name {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-amount {
  font-family: 'Clash Display', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-currency {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
  align-self: flex-start;
  margin-top: 5px;
}
.price-period {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 4px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.pricing-features li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  background: var(--accent-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--bg2); }
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-header .section-tag { justify-content: center; }
.testimonials-header .section-desc { margin: 14px auto 0; }
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: marquee 35s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: var(--accent-border); }
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0f;
  background: var(--accent);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.author-role {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

/* ─── CONTACT ─── */
#contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  border-color: var(--accent-border);
  transform: translateX(4px);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 12px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.contact-form {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 40px;
}
.form-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Satoshi', sans-serif;
  transition: all 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239999b8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text3); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #0a0a0f;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
}
.form-submit:active { transform: translateY(0); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 70px 5% 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin: 14px 0 24px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--text2);
}
.social-btn:hover {
  background: var(--accent-bg);
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text3);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.footer-links a:hover::before { background: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text3);
}
.footer-copy span { color: var(--accent); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--accent); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mobile-links a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}
.mobile-links a:hover { color: var(--accent); }

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes carFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleX(0.9); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.1); }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 12px)); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

