/* ── TOKENS ── */
:root {
  --red: #E8001D;
  --red-d: #b8001a;
  --red-glow: rgba(232, 0, 29, .35);
  --c0: #080808;
  --c1: #0e0e0e;
  --c2: #141414;
  --c3: #1c1c1c;
  --white: #f5f5f5;
  --gray: #666;
  --gray-lt: #aaa;
  --font-disp: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c0);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: normal;
}

#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(232, 0, 29, .5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .08s, width .3s, height .3s, border-color .3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 18px;
  height: 18px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--red);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--c1);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* ══════════════ NAV ══════════════ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, border .4s;
}

nav.scrolled {
  background: rgba(8, 8, 8, .93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 0, 29, .18);
}

.nav-logo img {
  height: 56px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-lt);
  text-decoration: none;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}

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

.nav-links a:hover {
  color: #fff;
}

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

.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 10px 24px;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s, transform .2s, box-shadow .2s;
}

.nav-cta:hover {
  background: var(--red-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 0, 29, .3);
}

/* hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

.nav-ham.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-ham.open span:nth-child(2) {
  opacity: 0;
}

.nav-ham.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, .97);
  backdrop-filter: blur(20px);
  padding: 28px 32px;
  z-index: 999;
  border-bottom: 1px solid rgba(232, 0, 29, .18);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: color .2s, padding-left .2s;
}

.mobile-menu a:hover {
  color: var(--red);
  padding-left: 8px;
}

.mobile-menu .m-cta {
  display: block;
  margin-top: 20px;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .7;
}

.hero-bg-grad {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(232, 0, 29, .11) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(232, 0, 29, .06) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 130px 48px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}

.hero-eyebrow-line {
  width: 44px;
  height: 2px;
  background: var(--red);
}

.hero-eyebrow span {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.hero-title {
  font-family: var(--font-disp);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(68px, 9vw, 138px);
  line-height: .88;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s .45s forwards;
}

.hero-title .line-red {
  color: var(--red);
  text-shadow: 0 0 80px rgba(232, 0, 29, .4), 0 0 160px rgba(232, 0, 29, .15);
}

.hero-title .line-outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--gray-lt);
  max-width: 520px;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}

.hero-sub strong {
  color: #fff;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .75s forwards;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 40px rgba(232, 0, 29, .3);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: var(--red-d);
  box-shadow: 0 0 60px rgba(232, 0, 29, .5);
  transform: translateY(-2px);
}

.btn-secondary {
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .2);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all .3s;
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* Hero product image */
.hero-product {
  position: relative;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeLeft .9s .9s forwards;
}

.hero-product img {
  width: 380px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(232, 0, 29, .25), 0 0 120px rgba(232, 0, 29, .08);
  animation: heroFloat 4s ease-in-out infinite;
  border: 1px solid rgba(232, 0, 29, .15);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-badge {
  position: absolute;
  top: -12px;
  right: -8px;
  background: var(--red);
  color: #fff;
  padding: 8px 18px;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  box-shadow: 0 4px 20px rgba(232, 0, 29, .4);
  z-index: 3;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll span {
  font-family: var(--font-disp);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ══════════════ SECTIONS ══════════════ */
section.sect {
  padding: 110px 48px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.sect-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sect-label-line {
  width: 36px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.sect-label span {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
}

.sect-title {
  font-family: var(--font-disp);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 5.5vw, 72px);
  color: #fff;
  line-height: .9;
  margin-bottom: 16px;
}

.sect-sub {
  font-size: 16px;
  color: var(--gray-lt);
  line-height: 1.75;
  max-width: 560px;
}

/* ══════════════ ABOUT ══════════════ */
.about {
  background: var(--c1);
}

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

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

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  border: 1px solid rgba(232, 0, 29, .15);
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--c1);
  box-shadow: 0 16px 56px rgba(0, 0, 0, .6);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(232, 0, 29, .15);
  border-radius: 2px;
  z-index: -1;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag {
  border: 1px solid rgba(232, 0, 29, .25);
  color: var(--red);
  padding: 7px 16px;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  background: rgba(232, 0, 29, .06);
  transition: background .2s, color .2s;
}

.tag:hover {
  background: rgba(232, 0, 29, .12);
  color: #fff;
}

.about-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--red);
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s, transform .2s;
}

.about-ig-btn:hover {
  color: #fff;
  transform: translateX(4px);
}

.about-ig-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ══════════════ SERVICES ══════════════ */
.services {
  background: var(--c0);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255, 255, 255, .008) 3px, rgba(255, 255, 255, .008) 6px);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.srv-card {
  background: var(--c2);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: none;
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.srv-card:hover::after {
  transform: scaleX(1);
}

.srv-card:hover {
  background: var(--c3);
}

.srv-num {
  font-family: var(--font-disp);
  font-weight: 900;
  font-style: italic;
  font-size: 72px;
  color: rgba(232, 0, 29, .12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color .3s;
}

.srv-card:hover .srv-num {
  color: rgba(232, 0, 29, .2);
}

.srv-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(232, 0, 29, .1);
  border: 1px solid rgba(232, 0, 29, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .3s;
}

.srv-card:hover .srv-icon-wrap {
  background: rgba(232, 0, 29, .18);
}

.srv-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.srv-title {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.srv-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
}

/* ══════════════ PROCESS ══════════════ */
.process {
  background: var(--c1);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(232, 0, 29, .05) 0%, transparent 65%);
}

.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.proc-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(232, 0, 29, .3), var(--red));
  z-index: 0;
}

.proc-step {
  text-align: center;
  padding: 0 20px 40px;
  position: relative;
  z-index: 1;
}

.proc-dot {
  width: 64px;
  height: 64px;
  background: var(--c2);
  border: 2px solid rgba(232, 0, 29, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-disp);
  font-weight: 900;
  font-style: italic;
  font-size: 26px;
  color: var(--red);
  position: relative;
  transition: background .3s, border-color .3s, box-shadow .3s;
}

.proc-step:hover .proc-dot {
  background: rgba(232, 0, 29, .12);
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(232, 0, 29, .3);
}

.proc-step-title {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.proc-step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* ══════════════ FAQ ══════════════ */
.faq {
  background: var(--c0);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255, 255, 255, .008) 3px, rgba(255, 255, 255, .008) 6px);
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 4px;
  background: var(--c2);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item:hover {
  border-color: rgba(232, 0, 29, .25);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  cursor: pointer;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: .5px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--red);
}

.faq-q .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: 16px;
}

.faq-q .faq-icon::before,
.faq-q .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--red);
  transition: transform .3s;
}

.faq-q .faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q .faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-q .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 28px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 28px 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.75;
}

/* ══════════════ GALLERY ══════════════ */
.gallery {
  background: var(--c0);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 56px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: none;
  aspect-ratio: 1;
}

.gal-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .85) 0%, rgba(232, 0, 29, .2) 100%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-over svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  transform: scale(.7);
  transition: transform .3s;
}

.gal-item:hover .gal-over {
  opacity: 1;
}

.gal-item:hover .gal-over svg {
  transform: scale(1);
}

.gal-over-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(8, 8, 8, .9), transparent);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.gal-item:hover .gal-over-text {
  opacity: 1;
}

.gal-over-text span {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, .95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#lightbox.open {
  display: flex;
}

#lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 0 100px rgba(0, 0, 0, .8);
}

#lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: none;
  opacity: .7;
  transition: opacity .2s, transform .2s;
  font-family: var(--font-disp);
  font-weight: 300;
  line-height: 1;
}

#lb-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

#lb-prev,
#lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232, 0, 29, .15);
  border: 1px solid rgba(232, 0, 29, .3);
  color: #fff;
  font-size: 28px;
  cursor: none;
  padding: 12px 16px;
  transition: background .2s;
  font-family: var(--font-disp);
  font-weight: 700;
}

#lb-prev { left: 16px; }
#lb-next { right: 16px; }

#lb-prev:hover,
#lb-next:hover {
  background: rgba(232, 0, 29, .35);
}

/* ══════════════ METRICS ══════════════ */
.metrics {
  background: linear-gradient(135deg, var(--c0) 0%, #160000 50%, var(--c0) 100%);
  position: relative;
  overflow: hidden;
}

.metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255, 255, 255, .012) 3px, rgba(255, 255, 255, .012) 6px);
}

.met-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.met-card {
  text-align: center;
  padding: 64px 24px;
  background: rgba(255, 255, 255, .02);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.met-card:hover {
  background: rgba(232, 0, 29, .05);
}

.met-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .05);
}

.met-num {
  font-family: var(--font-disp);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(56px, 6vw, 88px);
  color: var(--red);
  line-height: 1;
  display: block;
  text-shadow: 0 0 60px rgba(232, 0, 29, .3);
}

.met-suffix {
  font-size: .55em;
}

.met-label {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 13px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 10px;
}

/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials {
  background: var(--c1);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.test-card {
  background: var(--c2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.test-card:hover {
  transform: translateY(-4px);
}

.test-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.test-card:hover::before {
  opacity: 1;
}

.test-quote-styled {
  font-size: 56px;
  color: rgba(232, 0, 29, .15);
  font-family: Georgia, serif;
  line-height: .8;
  margin-bottom: 16px;
  position: relative;
}

.test-quote-styled::after {
  content: '"';
  position: absolute;
  font-size: 56px;
  color: rgba(232, 0, 29, .08);
  right: 0;
  bottom: 0;
}

.test-stars {
  color: var(--red);
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.test-text {
  font-size: 16px;
  color: var(--gray-lt);
  line-height: 1.75;
  margin-bottom: auto;
  padding-bottom: 24px;
  flex-grow: 1;
}

.test-author-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff4d6a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.test-author {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.test-vehicle {
  font-size: 12px;
  color: var(--gray-lt);
  margin-top: 2px;
  font-family: var(--font-disp);
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.test-vehicle svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
}

.test-verified {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.test-verified svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
}

/* ══════════════ INSTAGRAM ══════════════ */
.instagram-sect {
  background: var(--c0);
  position: relative;
  overflow: hidden;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 40px;
}

.ig-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.ig-item:hover img {
  transform: scale(1.08);
}

.ig-over {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-over svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  opacity: .9;
}

.ig-item:hover .ig-over {
  opacity: 1;
}

.ig-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.ig-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 28px;
}

.ig-stat {
  text-align: center;
}

.ig-stat-n {
  display: block;
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: 32px;
  color: #fff;
}

.ig-stat-l {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: #fff;
  padding: 16px 36px;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 0 40px rgba(225, 48, 108, .25);
}

.ig-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(225, 48, 108, .4);
}

.ig-follow svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ══════════════ CONTACT ══════════════ */
.contact {
  background: var(--c0);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232, 0, 29, .06) 0%, transparent 65%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.c-touch-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.c-touch-item:hover {
  border-color: rgba(232, 0, 29, .3);
  background: rgba(232, 0, 29, .05);
  transform: translateX(6px);
}

.c-touch-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(232, 0, 29, .1);
  border: 1px solid rgba(232, 0, 29, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-touch-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}

.c-touch-label strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-family: var(--font-disp);
  font-weight: 700;
}

.c-touch-label span {
  font-size: 13px;
  color: var(--gray);
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.c-input,
.c-textarea,
.c-select {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 15px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  transition: border-color .2s, background .2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.c-input:focus,
.c-textarea:focus,
.c-select:focus {
  border-color: var(--red);
  background: rgba(232, 0, 29, .04);
}

.c-input::placeholder,
.c-textarea::placeholder {
  color: var(--gray);
}

.c-textarea {
  height: 120px;
  resize: vertical;
}

.c-select option {
  background: var(--c2);
}

.c-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 17px 32px;
  cursor: none;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 40px rgba(232, 0, 29, .25);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.c-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.c-submit:hover::before {
  transform: translateX(100%);
}

.c-submit:hover {
  background: var(--red-d);
  box-shadow: 0 0 60px rgba(232, 0, 29, .4);
  transform: translateY(-2px);
}

/* ══════════════ FOOTER ══════════════ */
footer {
  background: var(--c1);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-inner img {
  height: 44px;
  mix-blend-mode: screen;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--gray);
  font-size: 13px;
  font-family: var(--font-disp);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-copy {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-disp);
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.f-soc {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-lt);
  text-decoration: none;
  transition: all .2s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.f-soc:hover {
  background: rgba(232, 0, 29, .12);
  border-color: var(--red);
  color: var(--red);
}

.f-soc svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* ══════════════ WHATSAPP FLOAT ══════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s, background .2s, box-shadow .2s;
  text-decoration: none;
  animation: waPulse 2s ease-in-out infinite;
}

.wa-float.show {
  opacity: 1;
  transform: translateY(0);
}

.wa-float:hover {
  background: #1DA851;
  box-shadow: 0 6px 32px rgba(37, 211, 102, .6);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, .4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, .12); }
}

/* ══════════════ ANIMATIONS ══════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes ringAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

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

.reveal-left.vis {
  opacity: 1;
  transform: translateX(0);
}

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

.reveal-right.vis {
  opacity: 1;
  transform: translateX(0);
}

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ══════════════ RESPONSIVE ══════════════ */
@media(max-width:1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 110px;
  }

  .hero-product {
    text-align: center;
  }

  .hero-product img {
    width: 300px;
  }

  .hero-text {
    order: -1;
  }

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

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

  .proc-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .proc-steps::before {
    display: none;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

@media(max-width:900px) {
  .met-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gal-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media(max-width:768px) {
  section.sect {
    padding: 72px 24px;
  }

  nav {
    padding: 0 20px;
  }

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

  .nav-ham {
    display: flex;
  }

  .hero-inner {
    padding: 96px 24px 72px;
  }

  .hero-title {
    font-size: clamp(56px, 14vw, 90px);
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-eyebrow,
  .hero-sub {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-product {
    margin: 0 auto;
    text-align: center;
  }

  .hero-product img {
    width: 260px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }

  .hero-scroll {
    display: none;
  }

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

  .proc-steps {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .ig-stats {
    gap: 24px;
  }

  .ig-stat-n {
    font-size: 24px;
  }

  footer {
    padding: 32px 24px;
  }

  .footer-links {
    display: none;
  }

  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  .faq-q {
    padding: 16px 20px;
    font-size: 14px;
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: clamp(50px, 16vw, 80px);
  }

  .c-row {
    grid-template-columns: 1fr;
  }

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

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

  .proc-steps {
    grid-template-columns: 1fr;
  }
}

@media(hover:none) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none;
  }
}
