/* ============================================================
   ÖNDER DSG — CSS Design System
   Dark Automotive Theme | Orange Fire Accents
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --clr-bg: #080808;
  --clr-bg2: #111111;
  --clr-bg3: #181818;
  --clr-card: #141414;
  --clr-border: #2a2a2a;
  --clr-orange: #ff6b00;
  --clr-amber: #ffaa00;
  --clr-gold: #ffd060;
  --clr-text: #e8e8e8;
  --clr-muted: #888888;
  --clr-white: #ffffff;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-orange: 0 0 30px rgba(255, 107, 0, 0.4);
  --glow-sm: 0 0 15px rgba(255, 107, 0, 0.25);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-title span {
  color: var(--clr-orange);
}

.section-sub {
  font-size: 1rem;
  color: var(--clr-muted);
  margin-top: 12px;
  max-width: 600px;
}

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 4px;
  padding: 4px 14px;
  margin-bottom: 16px;
  background: rgba(255, 107, 0, 0.07);
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-amber));
  border-radius: 2px;
  margin: 16px 0 32px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-amber));
  color: #000;
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.btn-outline:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 16px 36px;
  font-size: 1.05rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.12);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: rgba(255, 107, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* INCREASED LOGO SIZE */
.site-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--clr-muted);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-orange);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  padding: 40px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: 16px;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--clr-orange);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Pure CSS gradient — no photo */
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(120, 40, 0, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(180, 70, 0, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 10%, rgba(100, 30, 0, 0.3) 0%, transparent 60%),
    linear-gradient(160deg, #0a0500 0%, #120800 40%, #1a0c04 70%, #0e0600 100%);
}

/* Animated top-edge accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 107, 0, 0.8) 30%,
      rgba(255, 170, 0, 1) 50%,
      rgba(255, 107, 0, 0.8) 70%,
      transparent 100%);
  animation: scanline 4s ease-in-out infinite;
}

@keyframes scanline {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleX(0.6);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Circuit grid overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
  will-change: transform, opacity;
}

.particle.orange {
  background: radial-gradient(circle, #ffcc44 0%, #ff6b00 50%, transparent 100%);
  box-shadow: 0 0 6px 2px rgba(255, 107, 0, 0.6);
}

.particle.amber {
  background: radial-gradient(circle, #ffffff 0%, #ffaa00 40%, transparent 100%);
  box-shadow: 0 0 4px 1px rgba(255, 170, 0, 0.8);
}

.particle.red {
  background: radial-gradient(circle, #ff4400 0%, #aa2200 60%, transparent 100%);
  box-shadow: 0 0 8px 2px rgba(200, 50, 0, 0.4);
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
    opacity: 0;
  }

  8% {
    opacity: 0.9;
  }

  50% {
    transform: translateY(40vh) translateX(var(--dx, 20px)) scale(1) rotate(180deg);
  }

  92% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh) translateX(var(--dx2, -15px)) scale(0.3) rotate(360deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ---- 2-column hero layout ---- */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 90px);
  padding: 40px 0 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ---- Instagram Slider ---- */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  max-height: calc(100vh - 180px);
}

/* Header badge */
.ig-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 8px 10px 8px 8px;
  flex-shrink: 0;
}

.ig-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-avatar-icon {
  font-size: 1.1rem;
}

.ig-handle-info {
  flex: 1;
  min-width: 0;
}

.ig-handle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-white);
}

.ig-sub {
  font-size: 0.68rem;
  color: var(--clr-muted);
  margin-top: 1px;
}

.ig-follow-btn {
  background: linear-gradient(135deg, #f09433, #dc2743);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.ig-follow-btn:hover {
  opacity: 0.85;
  transform: scale(1.04);
}

/* Dual badge group */
.ig-header-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

/* Platform-specific avatar colours */
.ig-avatar--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ig-avatar--tiktok {
  background: linear-gradient(135deg, #010101, #2f2f2f);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

/* TikTok button */
.ig-follow-btn--tiktok {
  background: linear-gradient(135deg, #ff0050, #00f2ea);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.ig-follow-btn--tiktok:hover {
  opacity: 0.85;
}


/* Feed wrapper with fade top/bottom */
.ig-feed-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Scrolling track — CSS infinite scroll */
.ig-feed-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: igScroll 60s linear infinite;
}

.ig-feed-track:hover {
  animation-play-state: paused;
}

@keyframes igScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Individual post card */
.ig-post {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  flex-shrink: 0;
  cursor: pointer;
}

.ig-post img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #111;
  transition: transform 0.4s ease;
}

.ig-post:hover img {
  transform: scale(1.04);
}

/* Hover overlay */
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-post:hover .ig-post-overlay {
  opacity: 1;
}

.ig-like {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

/* Responsive: adjust slider on narrow screens */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  /* Show the slider on mobile and give it a fixed height so it fits well */
  .hero-right {
    display: flex;
    /* was display: none */
    height: 500px;
    max-height: 50vh;
    /* Don't let it take over the whole screen */
    margin-top: 40px;
  }

  .hero-left {
    gap: 40px;
  }
}


.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--clr-orange);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.hero-title .fire {
  color: var(--clr-orange);
}

.hero-title .amber {
  color: var(--clr-amber);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232, 232, 232, 0.75);
  margin: 24px 0 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--clr-orange);
  border-bottom: 2px solid var(--clr-orange);
  transform: rotate(45deg);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-text);
  text-transform: uppercase;
}

.trust-item:not(:last-child) {
  border-right: 1px solid var(--clr-border);
}

.trust-item .ti-icon {
  font-size: 1.3rem;
  color: var(--clr-orange);
}

/* ============================================================
   ABOUT
   ============================================================ */
.section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper .about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--clr-orange), transparent 60%);
  z-index: -1;
  opacity: 0.5;
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-amber));
  color: #000;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--glow-orange);
}

.about-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-badge-float .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feat:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.05);
}

.feat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  font-size: 1.1rem;
}

.feat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: var(--clr-bg2);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-sub {
  margin: 12px auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.product-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow-sm);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  transition: var(--transition);
}

.product-card:hover .product-icon {
  background: rgba(255, 107, 0, 0.2);
  box-shadow: var(--glow-sm);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--clr-orange);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 4px;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {
  padding: 80px 0;
}

.brands-header {
  text-align: center;
  margin-bottom: 50px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.brand-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.brand-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(255, 107, 0, 0.05);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 0.05em;
}

.brand-name {
  font-size: 0.72rem;
  color: var(--clr-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Horizontal infinite brands marquee ───────────────────── */
.brands-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: brandsScroll 30s linear infinite;
}

.brands-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes brandsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Individual brand card */
.brand-card-m {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 18px 16px;
  cursor: default;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.brand-card-m:hover {
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.06);
  color: var(--clr-white);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

/* SVG logo sizing */
.brand-svg {
  width: 56px;
  height: 56px;
  display: block;
}

.brand-svg--wide {
  width: 90px;
  height: 32px;
}

.brand-card-m span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.brand-card-m:hover span {
  color: var(--clr-orange);
}

/* Original scale for img logos */
.brand-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) opacity(0.65);
  transition: filter 0.3s ease;
}

.brand-card-m:hover .brand-logo-img {
  filter: brightness(0) invert(1) opacity(1);
}



/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--clr-bg2);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateX(6px);
}

.why-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
  opacity: 0.4;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

.why-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-stat-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 3px solid var(--clr-orange);
}

.why-stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
}

.why-stat-lbl {
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-top: 6px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  border-color: rgba(255, 107, 0, 0.4);
  transform: translateX(6px);
}

.cm-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-orange);
  flex-shrink: 0;
}

.cm-label {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.cm-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-white);
}

.contact-cta-box {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 170, 0, 0.06));
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.contact-cta-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.contact-cta-box p {
  color: var(--clr-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid var(--clr-border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--clr-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-wrapper {
    max-width: 500px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-item {
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .contact-cta-box {
    padding: 32px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .why-visual {
    display: none;
  }

  .hero-stats {
    margin-top: 48px;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner {
    gap: 16px;
    flex-direction: column;
  }

  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid var(--clr-border);
    padding: 8px 0;
    width: 100%;
    justify-content: center;
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   CATALOG — Category Tabs + Price Table
   ============================================================ */

/* Tabs */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0 20px;
}

.cat-tab {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cat-tab:hover {
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--clr-text);
}

.cat-tab.active {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-amber));
  border-color: transparent;
  color: #000;
  box-shadow: var(--glow-sm);
}

/* Search */
.cat-search-wrap {
  position: relative;
  margin-bottom: 28px;
}

.cat-search {
  width: 100%;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 48px 14px 20px;
  outline: none;
  transition: var(--transition);
}

.cat-search::placeholder {
  color: var(--clr-muted);
}

.cat-search:focus {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}

.cat-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  pointer-events: none;
}

/* Price Table */
.cat-panel {
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-table thead {
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.15), rgba(255, 170, 0, 0.08));
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.price-table th {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-orange);
  padding: 14px 20px;
  text-align: left;
}

.price-table th.pt-price,
.price-table td.pt-price {
  text-align: right;
}

.price-table th.pt-action,
.price-table td.pt-action {
  width: 60px;
  text-align: center;
}

.price-table th.pt-cat,
.price-table td.pt-cat {
  width: 160px;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(255, 107, 0, 0.05);
}

.price-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--clr-text);
}

.pt-name {
  font-weight: 500;
}

.pt-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.pt-badge.sanziman {
  background: rgba(220, 38, 38, 0.15);
  color: #f87171;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.pt-badge.mekatronik {
  background: rgba(255, 107, 0, 0.12);
  color: #fb923c;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.pt-badge.kavrama {
  background: rgba(234, 179, 8, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.pt-badge.kart {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.pt-badge.sarf {
  background: rgba(148, 163, 184, 0.1);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.price-val {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-orange);
}

.pt-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.2);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.pt-wa-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  transform: scale(1.1);
}

.cat-note {
  font-size: 0.78rem;
  color: var(--clr-muted);
  margin-top: 20px;
  font-style: italic;
  line-height: 1.6;
}

.pt-empty {
  text-align: center;
  padding: 48px;
  color: var(--clr-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .cat-tabs {
    gap: 8px;
  }

  .cat-tab {
    font-size: 0.78rem;
    padding: 8px 14px;
  }

  .price-table th.pt-cat,
  .price-table td.pt-cat {
    display: none;
  }

  .price-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  .price-table th {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .site-logo-img {
    height: 60px;
    /* Resize huge logo on mobile */
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-features {
    gap: 16px;
  }

  .feature-box {
    padding: 20px 16px;
  }

  .trust-bar-inner {
    gap: 16px;
    flex-direction: column;
  }

  .trust-item {
    border-right: none !important;
    border-bottom: 1px solid var(--clr-border);
    padding: 8px 0;
    width: 100%;
    justify-content: center;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-links {
    margin-top: 8px;
  }

  .cat-tab {
    font-size: 0.72rem;
    padding: 7px 12px;
  }

  .price-val {
    font-size: 0.95rem;
  }
}