/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --yellow: #f5c518;
  --white: #f5f5f5;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --transition: 0.3s ease;
  --border: 1px solid rgba(245, 197, 24, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--yellow);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
}

.section-title span {
  color: var(--yellow);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 16px;
}

/* ICONS */
.ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ico svg {
  stroke-width: 1.5;
  fill: none;
}

.ico-sm svg {
  width: 14px;
  height: 14px;
}

.ico-md svg {
  width: 20px;
  height: 20px;
}

.ico-lg svg {
  width: 26px;
  height: 26px;
}

.ico-xl svg {
  width: 36px;
  height: 36px;
}

.ico-y svg {
  stroke: var(--yellow);
}

.ico-w svg {
  stroke: var(--white);
}

.ico-b svg {
  stroke: var(--black);
}

.ico-g svg {
  stroke: var(--gray);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.clip {
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(245, 197, 24, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--yellow);
}

.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-2px);
}

.btn-dark-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-dark-outline:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: var(--border);
  transition: all var(--transition);
}

.navbar.scrolled {
  height: 62px;
  border-bottom-color: rgba(245, 197, 24, 0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 70px;
  display: block;
}

.nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  stroke-width: 2.5;
  fill: none;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 2px;
  line-height: 1;
}

.nav-logo-text span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.99);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 28px 32px;
  border-bottom: var(--border);
  flex-direction: column;
  gap: 4px;
  transform: translateY(-120%);
  opacity: 0;
  transition: all 0.35s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 14px 0;
  border-bottom: var(--border);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav a:hover {
  color: var(--yellow);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.62) 55%, rgba(10, 10, 10, 0.88) 100%),
    url('images/toyota-bz4x.png') center/cover no-repeat;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.28);
  padding: 8px 20px;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 36px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 150px);
  line-height: 0.88;
  letter-spacing: 2px;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  color: var(--yellow);
  letter-spacing: 5px;
  margin-bottom: 36px;
}

.hero-tagline {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 56px;
  right: 56px;
  display: flex;
}

.stat {
  text-align: right;
  padding: 0 28px;
  border-right: 2px solid rgba(245, 197, 24, 0.35);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--yellow);
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.scroll-text {
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* TICKER */
.ticker {
  background: var(--yellow);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  animation: ticker 26s linear infinite;
}

.ticker-item {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-item svg {
  width: 12px;
  height: 12px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
  opacity: 0.35;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* BRANDS */
.brands {
  padding: 100px 0;
  border-bottom: var(--border);
}

.brands-header {
  text-align: center;
  margin-bottom: 64px;
}

.brands-header .section-label {
  justify-content: center;
}

.brands-header .section-label::before {
  display: none;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  cursor: default;
}

.brand-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.7);
  transition: all 0.6s ease;
}

.brand-card:hover .brand-card-img img {
  filter: grayscale(0%) brightness(0.85);
  transform: scale(1.05);
}

.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.35) 50%, transparent 100%);
}

.brand-card-body {
  padding: 28px 32px 36px;
  position: relative;
}

.brand-card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  width: 36px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.brand-card:hover .brand-card-body::before {
  transform: scaleX(1);
}

.brand-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.18);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.brand-model {
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.brand-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

/* WHY */
.why {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: 'WHY US';
  position: absolute;
  top: 60px;
  right: -60px;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(245, 197, 24, 0.025);
  letter-spacing: 10px;
  pointer-events: none;
  line-height: 1;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-box {
  aspect-ratio: 4/5;
  background: var(--dark-2);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 88% 100%, 0 100%);
  position: relative;
}

.why-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.why-img-box:hover img {
  filter: grayscale(0%);
}

.why-accent-box {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--yellow);
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%, 0 84%);
}

.why-accent-num {
  font-family: var(--font-display);
  font-size: 50px;
  color: var(--black);
  line-height: 1;
}

.why-accent-text {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
  text-align: center;
}

.why-features {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.why-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: var(--border);
  transition: padding-left var(--transition);
}

.why-feature:hover {
  padding-left: 6px;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--yellow);
  opacity: 0.3;
  line-height: 1;
  padding-top: 2px;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.feature-header .ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
}

.feature-title {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* PARTS */
.parts {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
}

.parts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.part-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-2);
}

.part-card:first-child {
  grid-column: span 2;
  aspect-ratio: auto;
}

.part-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) grayscale(15%);
  transition: all 0.55s ease;
}

.part-card:hover .part-card-bg {
  filter: brightness(0.5) grayscale(0%);
  transform: scale(1.05);
}

.part-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.96) 0%, transparent 55%);
}

.part-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transition: transform var(--transition);
}

.part-card:hover .part-card-content {
  transform: translateY(-8px);
}

.part-card-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.part-card-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
}

.part-card-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.part-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 10px;
}

.part-card-desc {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.6;
  max-width: 400px;
}

.part-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition);
}

.part-card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--yellow);
  stroke-width: 2;
  fill: none;
}

.part-card:hover .part-card-link {
  opacity: 1;
  transform: translateX(0);
}

/* CTA BANNER */
.cta-banner {
  padding: 100px 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'PARTS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 280px;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: 10px;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text .section-label {
  color: rgba(0, 0, 0, 0.45);
}

.cta-text .section-label::before {
  background: rgba(0, 0, 0, 0.45);
}

.cta-text .section-title {
  color: var(--black);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-bar {
  width: 72px;
  height: 4px;
  background: var(--yellow);
  margin-bottom: 24px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 2px;
}

/* ABOUT */
.about-intro {
  padding: 120px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(15%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 85% 100%, 0 100%);
}

.about-corner-tl {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 72px;
  height: 72px;
  border-top: 4px solid var(--yellow);
  border-left: 4px solid var(--yellow);
}

.about-corner-br {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 72px;
  height: 72px;
  border-bottom: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
}

.about-text p {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-text p strong {
  color: var(--yellow);
  font-weight: 600;
}

/* MISSION VISION */
.mission-vision {
  padding: 80px 0;
  background: var(--dark);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.mv-card {
  background: var(--dark-2);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.mv-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
}

.mv-num {
  font-family: var(--font-display);
  font-size: 90px;
  color: rgba(245, 197, 24, 0.05);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.mv-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
}

.mv-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--yellow);
}

.mv-text {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
}

/* TRUST */
.trust {
  padding: 120px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 60px;
}

.trust-card {
  background: var(--dark-2);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.trust-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card:hover {
  transform: translateY(-4px);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.trust-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
}

.trust-title {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--yellow);
}

.trust-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* SERVICES */
.services-grid-full {
  padding: 60px 0 120px;
  background: var(--dark);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3px;
}

.service-card {
  background: var(--dark-2);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85);
  transition: all 0.55s ease;
}

.service-card:hover .service-card-img img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--dark-2));
}

.service-card-body {
  padding: 32px;
}

.service-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
}

.service-card-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid rgba(245, 197, 24, 0.16);
  padding: 4px 12px;
}

/* REQUEST */
.request-section {
  padding: 80px 0 120px;
}

.request-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.request-info {
  position: sticky;
  top: 100px;
}

.request-info h2 {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
}

.request-info h2 span {
  color: var(--yellow);
}

.request-info>p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.request-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.req-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.req-step-num {
  width: 36px;
  height: 36px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}

.req-step-text strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.req-step-text span {
  font-size: 13px;
  color: var(--gray);
}

.urgent-box {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--dark-2);
  border-left: 4px solid var(--yellow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.urgent-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.urgent-info .section-label {
  margin-bottom: 6px;
}

.urgent-info p {
  font-size: 14px;
  color: var(--gray-light);
}

.urgent-info strong {
  color: var(--yellow);
}

/* FORM */
.form-box {
  background: var(--dark-2);
  padding: 48px;
  border: var(--border);
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-control:focus {
  border-color: rgba(245, 197, 24, 0.45);
}

.form-control::placeholder {
  color: var(--gray);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--yellow);
  pointer-events: none;
}

select.form-control {
  cursor: pointer;
  padding-right: 44px;
}

select.form-control option {
  background: var(--dark-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
}

.alert-success {
  display: none;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.32);
  padding: 20px 24px;
  margin-bottom: 24px;
  gap: 16px;
  align-items: center;
}

.alert-success.show {
  display: flex;
}

.alert-success svg {
  width: 28px;
  height: 28px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.alert-success strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.alert-success span {
  font-size: 13px;
  color: var(--gray-light);
}

/* CONTACT */
.contact-section {
  padding: 80px 0 120px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}

.contact-card {
  background: var(--dark-2);
  padding: 22px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  border-left: 3px solid var(--yellow);
  transition: all var(--transition);
}

.contact-card:hover {
  background: var(--dark-3);
  transform: translateX(4px);
}

.contact-card svg {
  width: 22px;
  height: 22px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.contact-card-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 15px;
  color: var(--white);
}

.map-container {
  margin-top: 32px;
  height: 280px;
  overflow: hidden;
  border: var(--border);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(70%) invert(4%);
  border: none;
}

.map-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-label svg {
  width: 12px;
  height: 12px;
  stroke: var(--black);
  stroke-width: 2.5;
  fill: none;
}

/* FOOTER */
.footer {
  background: var(--dark);
  border-top: var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer-brand-name span {
  color: var(--yellow);
}

.footer-brand-tagline {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--dark-3);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.social-btn:hover svg {
  stroke: var(--black);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray);
  stroke-width: 1.5;
  fill: none;
  transition: stroke var(--transition);
}

.footer-heading {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--yellow);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--gray);
}

.footer-copy span {
  color: var(--yellow);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--yellow);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

.fade-up-delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 1024px) {

  .why-layout,
  .about-layout,
  .request-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-visual,
  .about-visual {
    max-width: 480px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    display: none;
  }

  .why::before {
    font-size: 120px;
    right: -40px;
  }

  .brands {
    padding: 80px 0;
  }

  .parts {
    padding: 80px 0;
  }

  .why {
    padding: 80px 0;
  }

  .cta-banner {
    padding: 72px 0;
  }

  .cta-banner::before {
    font-size: 160px;
  }

  .page-hero-title {
    font-size: clamp(50px, 8vw, 100px);
  }

  .services-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    padding-top: 72px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 100px);
  }

  .hero-title-sub {
    font-size: clamp(20px, 5vw, 40px);
    letter-spacing: 3px;
    margin-bottom: 24px;
  }

  .hero-tagline {
    font-size: 15px;
    margin-bottom: 36px;
    max-width: 100%;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .hero-scroll {
    display: none;
  }

  /* Brands */
  .brands {
    padding: 60px 0;
  }

  .brands-header {
    margin-bottom: 40px;
  }

  .brands-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .brand-card-img {
    height: 220px;
  }

  .brand-card-body {
    padding: 20px 24px 28px;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-desc {
    font-size: 12px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 48px);
  }

  /* Why */
  .why {
    padding: 60px 0;
  }

  .why::before {
    font-size: 80px;
    right: -20px;
    top: 30px;
  }

  .why-layout {
    gap: 40px;
  }

  .why-accent-box {
    width: 120px;
    height: 120px;
    bottom: -18px;
    right: -18px;
  }

  .why-accent-num {
    font-size: 38px;
  }

  .why-feature {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .feature-num {
    font-size: 28px;
  }

  .feature-title {
    font-size: 14px;
  }

  .feature-desc {
    font-size: 13px;
  }

  /* Parts */
  .parts {
    padding: 60px 0;
  }

  .parts-header {
    margin-bottom: 36px;
  }

  .parts-grid {
    grid-template-columns: 1fr;
  }

  .part-card:first-child {
    grid-column: span 1;
  }

  .part-card {
    aspect-ratio: 16/10;
    min-height: 260px;
  }

  .part-card-content {
    padding: 24px;
  }

  .part-card-title {
    font-size: 24px;
  }

  .part-card-desc {
    font-size: 12px;
  }

  .part-card-link {
    opacity: 1;
    transform: translateX(0);
  }

  /* CTA */
  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner::before {
    font-size: 100px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .cta-text .section-label {
    justify-content: center;
  }

  .cta-actions {
    justify-content: center;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .footer-brand-desc {
    margin-bottom: 20px;
  }

  /* Page Hero */
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-title {
    font-size: clamp(44px, 10vw, 80px);
  }

  .page-hero-bar {
    width: 48px;
    height: 3px;
    margin-bottom: 16px;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 28px 20px;
  }

  .request-info {
    position: static;
  }

  .request-info h2 {
    font-size: 36px;
  }

  .request-layout,
  .contact-layout {
    gap: 40px;
  }

  /* Trust */
  .trust {
    padding: 80px 0;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-card {
    padding: 32px 24px;
  }

  /* About */
  .about-intro {
    padding: 60px 0;
  }

  .about-layout {
    gap: 40px;
  }

  /* Mission Vision */
  .mission-vision {
    padding: 60px 0;
  }

  .mv-card {
    padding: 36px 28px;
  }

  .mv-title {
    font-size: 28px;
  }

  /* Services */
  .services-grid-full {
    padding: 40px 0 80px;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .service-card-img {
    height: 200px;
  }

  .service-card-body {
    padding: 24px;
  }

  .service-card-title {
    font-size: 24px;
  }

  /* Contact */
  .contact-section {
    padding: 40px 0 80px;
  }

  .contact-layout {
    gap: 40px;
  }

  .map-container {
    height: 220px;
  }

  /* Container */
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn {
    justify-content: center;
    padding: 12px 24px;
    font-size: 12px;
  }

  .navbar {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(40px, 16vw, 80px);
  }

  .hero-title-sub {
    font-size: clamp(17px, 5vw, 30px);
  }

  .hero-badge {
    font-size: 9px;
    padding: 5px 12px;
  }

  .section-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .brand-card-img {
    height: 180px;
  }

  .brand-card-body {
    padding: 16px 20px 24px;
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-model {
    font-size: 12px;
  }

  .brand-desc {
    font-size: 12px;
  }

  .part-card {
    min-height: 220px;
  }

  .part-card-content {
    padding: 18px;
  }

  .part-card-title {
    font-size: 22px;
  }

  .why::before {
    display: none;
  }

  .cta-banner::before {
    font-size: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .request-info h2 {
    font-size: 30px;
  }

  .mv-card {
    padding: 28px 20px;
  }

  .mv-title {
    font-size: 24px;
  }

  .mv-num {
    font-size: 60px;
  }

  .trust-card {
    padding: 28px 20px;
  }

  .why-accent-box {
    width: 100px;
    height: 100px;
    bottom: -14px;
    right: -14px;
  }

  .why-accent-num {
    font-size: 32px;
  }

  .about-corner-tl {
    width: 48px;
    height: 48px;
    top: -12px;
    left: -12px;
  }

  .about-corner-br {
    width: 48px;
    height: 48px;
    bottom: -12px;
    right: -12px;
  }

  .page-hero {
    padding: 110px 0 48px;
  }

  .page-hero-title {
    font-size: clamp(36px, 12vw, 60px);
  }

  .mobile-nav a {
    font-size: 18px;
    padding: 12px 0;
  }

  .contact-card {
    padding: 16px 20px;
    gap: 14px;
  }

  .map-container {
    height: 180px;
  }

  .urgent-box {
    padding: 20px;
    flex-direction: column;
    gap: 12px;
  }

  .req-step {
    gap: 12px;
  }

  .req-step-num {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .why-feature {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .feature-num {
    font-size: 24px;
  }

  .ticker-item {
    font-size: 11px;
    padding: 0 24px;
    letter-spacing: 2px;
  }

  .stat-num {
    font-size: 36px;
  }

  .stat-label {
    font-size: 9px;
  }
}