:root {
  --red: #e10600;
  --red-dark: #b80500;
  --red-glow: rgba(225, 6, 0, 0.45);
  --black: #0a0a0a;
  --black-soft: #111111;
  --gray: #1a1a1a;
  --gray-mid: #2a2a2a;
  --gray-light: #3a3a3a;
  --text: #e8e8e8;
  --text-muted: #9a9a9a;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::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(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: calc(88px + env(safe-area-inset-bottom));
}
body.menu-open { overflow: hidden; }
.container { width: min(1140px, 92%); margin-inline: auto; }
.container-narrow { width: min(720px, 92%); margin-inline: auto; }
.text-red { color: var(--red); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-turbo {
  width: 56px;
  height: 56px;
  border: 3px dashed var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.preloader-text {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  z-index: 101;
  box-shadow: 0 0 12px var(--red-glow);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(225, 6, 0, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-mark {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--red-glow);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.logo-ikiz { color: var(--red); }
.logo-turbo { color: #fff; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.75rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--red);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 0 28px var(--red-glow);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-block { width: 100%; text-align: center; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .preloader-turbo, .turbo-blades, .turbo-ring-1, .turbo-ring-2, .marquee { animation: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 80%, var(--red-glow) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%);
  z-index: 1;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  top: 20%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.hero-turbo-visual {
  position: absolute;
  right: 6%;
  top: 42%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  opacity: 0.3;
  z-index: 2;
}
.turbo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.turbo-ring-1 { width: 100%; height: 100%; animation: spin 14s linear infinite; border-style: dashed; }
.turbo-ring-2 { width: 72%; height: 72%; animation: spin 9s linear infinite reverse; border-color: rgba(225, 6, 0, 0.4); }
.turbo-core {
  position: absolute;
  width: 28%;
  height: 28%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--red), var(--red-dark));
  border-radius: 50%;
  box-shadow: 0 0 50px var(--red-glow);
}
.turbo-blades {
  position: absolute;
  width: 55%;
  height: 55%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0deg 25deg, var(--red) 25deg 45deg, transparent 45deg 70deg, var(--red) 70deg 90deg, transparent 90deg 115deg, var(--red) 115deg 135deg, transparent 135deg 160deg, var(--red) 160deg 180deg, transparent 180deg 205deg, var(--red) 205deg 225deg, transparent 225deg 250deg, var(--red) 250deg 270deg, transparent 270deg 295deg, var(--red) 295deg 315deg, transparent 315deg 360deg);
  border-radius: 50%;
  animation: spin 2.5s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 2rem;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.badge {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: var(--red);
  border-radius: 2px;
}
.badge-outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--gray-mid);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-card-inner {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gray-mid);
  border-left: 4px solid var(--red);
  padding: 1.75rem;
  border-radius: 6px;
}
.hero-card-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}
.hero-checklist { list-style: none; }
.hero-checklist li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.hero-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.hero-card-link:hover { text-decoration: underline; }

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
  margin-top: auto;
  margin-bottom: 0;
}
.hero-stat {
  background: rgba(17, 17, 17, 0.9);
  padding: 1.25rem 1rem;
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.hero-stat span:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Marquee */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 0.65rem 0;
  border-block: 1px solid var(--red-dark);
}
.marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-label {
  display: block;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.section-desc {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.section-desc code { color: var(--red); }

/* Photo slots */
.photo-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
  background: var(--gray);
  aspect-ratio: 4 / 3;
}
.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.5s var(--ease);
}
.photo-slot.has-photo:hover img { transform: scale(1.06); }
.photo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(145deg, var(--gray), var(--black-soft));
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.photo-placeholder code { color: var(--red); font-size: 0.8rem; }
.photo-icon { font-size: 2rem; opacity: 0.6; }
.photo-slot.has-photo .photo-placeholder { display: none; }
.photo-slot.is-empty img { display: none; }
.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-slot.has-photo:hover .photo-overlay { opacity: 1; }
.photo-zoom {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 6, 0, 0.5);
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.photo-slot.has-photo:hover .photo-zoom { opacity: 1; }
.photo-slot-large { aspect-ratio: 16 / 10; min-height: 240px; }

/* About */
.about-shop { background: var(--black); }
.about-shop-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}
.about-shop-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 1rem;
}
.about-shop-text p {
  color: var(--text-muted);
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.feature-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feature-pills span {
  padding: 0.4rem 0.9rem;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
}

/* Turbo cards */
.turbo-info { background: var(--black-soft); }
.turbo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.turbo-card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 1.75rem;
  border-radius: 8px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.turbo-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.card-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 6, 0, 0.12);
  border-radius: 8px;
  margin-bottom: 1rem;
  color: var(--red);
}
.card-icon-wrap svg { width: 24px; height: 24px; }
.turbo-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.turbo-card p { color: var(--text-muted); font-size: 1rem; font-weight: 500; }

/* Services grid */
.services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 2rem 1.75rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  border-color: rgba(225, 6, 0, 0.5);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(225, 6, 0, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.service-card p { color: var(--text-muted); font-weight: 500; }

/* Process */
.process { background: var(--black-soft); }
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  position: relative;
}
.process-step::after {
  content: "→";
  position: absolute;
  right: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.25rem;
  z-index: 1;
}
.process-step:last-child::after { display: none; }
.step-num {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px var(--red-glow);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.process-step p { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }

/* Gallery */
.gallery { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid .photo-slot { aspect-ratio: 1; cursor: pointer; }
.gallery-grid .photo-slot-wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* Why */
.why {
  background: linear-gradient(160deg, var(--black-soft), var(--black));
  border-block: 1px solid rgba(225, 6, 0, 0.12);
}
.why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.photo-slot-why { aspect-ratio: 3 / 4; min-height: 300px; }
.why-list { list-style: none; margin-top: 1.25rem; }
.why-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}
.why-stats { display: flex; flex-direction: column; gap: 1rem; }
.stat {
  background: var(--gray);
  border-left: 4px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonials */
.testimonials { background: var(--black-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 1.75rem;
  border-radius: 8px;
  margin: 0;
}
.stars { color: var(--red); letter-spacing: 0.1em; margin-bottom: 0.75rem; font-size: 0.9rem; }
.testimonial p {
  color: var(--text);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 500;
}
.testimonial footer { color: var(--text-muted); font-weight: 700; font-size: 0.95rem; }

/* FAQ */
.faq { background: var(--black); }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 1.5rem 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* CTA */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #8b0400 100%);
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}
.cta-inner p { margin-bottom: 1.5rem; opacity: 0.9; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-banner .btn-outline:hover { background: #fff; color: var(--red-dark); }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-card {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 1.5rem;
  border-radius: 8px;
  transition: border-color 0.25s;
}
.contact-card:hover { border-color: rgba(225, 6, 0, 0.4); }
.contact-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.contact-card p { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; }
.contact-detail { color: #fff !important; font-weight: 700 !important; font-size: 1rem !important; }
.contact-address { white-space: pre-line; line-height: 1.5; text-align: left; }
.contact-detail a { color: var(--red); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form {
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  padding: 2rem;
  border-radius: 8px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.form-note { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  margin-bottom: 1rem;
}
.contact-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--black-soft);
  border: 1px solid var(--gray-mid);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.map-wrap {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  background: var(--gray);
}
.map-iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
  border: 0;
}
.map-link {
  display: block;
  padding: 0.9rem 1.25rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  background: var(--black-soft);
  border-top: 1px solid var(--gray-mid);
  transition: background 0.2s, color 0.2s;
}
.map-link:hover {
  background: var(--red);
  color: #fff;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 200;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-icon { width: 30px; height: 30px; position: relative; z-index: 2; }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: wp-pulse 2s ease-out infinite;
  z-index: 0;
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: #fff;
  color: #111;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes wp-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Back top */
.back-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  z-index: 199;
  width: 44px;
  height: 44px;
  background: var(--gray);
  border: 1px solid var(--gray-mid);
  color: var(--red);
  font-size: 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}
.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid var(--red);
  border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--red);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.5rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}
.lightbox-close { top: max(1rem, env(safe-area-inset-top)); right: max(1rem, env(safe-area-inset-right)); }
.lightbox-prev { left: max(1rem, env(safe-area-inset-left)); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: max(1rem, env(safe-area-inset-right)); top: 50%; transform: translateY(-50%); }

/* Footer */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--gray-mid);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer-brand p { color: var(--text-muted); margin-top: 0.75rem; font-weight: 500; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--gray-mid);
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; }

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
  .hero-turbo-visual { display: none; }
  .turbo-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .why-inner { grid-template-columns: 1fr 1fr; }
  .photo-slot-why { grid-column: span 2; aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav { height: 64px; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    padding: 1rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid var(--gray-mid);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  .hero { min-height: auto; padding-top: 64px; padding-bottom: 0; }
  .hero-grid { padding: 2.5rem 0 1.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.25rem); }
  .hero-desc { font-size: 1.05rem; }
  .hero-buttons { flex-direction: column; }
  .btn { text-align: center; padding: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-num { font-size: 1.4rem; }
  .section { padding: 3.5rem 0; }
  .container { width: 94%; }
  .about-shop-inner { grid-template-columns: 1fr; }
  .turbo-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .photo-slot-wide { grid-column: span 2; }
  .why-inner { grid-template-columns: 1fr; }
  .photo-slot-why { grid-column: 1; order: 2; }
  .why-text { order: 1; }
  .why-stats { order: 3; flex-direction: row; flex-wrap: wrap; }
  .why-stats .stat { flex: 1; min-width: 140px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-inline: auto; }
  .whatsapp-tooltip { display: none; }
  .whatsapp-float { width: 56px; height: 56px; }
  .lightbox-prev, .lightbox-next { display: none; }
}

@media (max-width: 380px) {
  .logo-text { font-size: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .photo-slot-wide { grid-column: span 1; }
  .hero-stats { grid-template-columns: 1fr; }
}
