/* ── TUNEX MARKETING — SHARED STYLES v2 ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --r: #C41E3A; --rd: #9b1530; --rlight: rgba(196,30,58,.08);
  --b: #080808; --b2: #111; --b3: #1a1a1a;
  --w: #ffffff; --off: #f8f8f8; --border: #ebebeb; --muted: #777;
  --gold: #f59e0b;
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.16,1,.3,1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--w); color: var(--b); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  padding: 0 56px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: #666; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color .2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--r); transform: scaleX(0);
  transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--b); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-nav-ghost {
  background: transparent; color: var(--b);
  border: 1.5px solid #ddd; padding: 9px 22px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: all .2s;
  font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 7px;
}
.btn-nav-ghost:hover { border-color: var(--b); }
.btn-nav-red {
  background: var(--r); color: #fff; border: none;
  padding: 10px 24px; border-radius: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: all .2s;
  font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 14px rgba(196,30,58,.35);
}
.btn-nav-red:hover { background: var(--rd); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,30,58,.45); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--r); color: #fff; border: none;
  padding: 16px 36px; border-radius: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s var(--ease);
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 24px rgba(196,30,58,.4);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { background: var(--rd); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,30,58,.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-secondary {
  background: transparent; color: var(--b);
  border: 2px solid #ddd; padding: 16px 36px; border-radius: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s var(--ease); font-family: 'Inter', sans-serif;
}
.btn-secondary:hover { border-color: var(--b); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--r); border: none;
  padding: 16px 36px; border-radius: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s var(--ease); font-family: 'Inter', sans-serif;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.3); padding: 16px 36px; border-radius: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s var(--ease); font-family: 'Inter', sans-serif;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── TICKER ── */
.ticker { background: var(--r); overflow: hidden; padding: 0; }
.ticker-track { display: flex; animation: ticker-scroll 28s linear infinite; white-space: nowrap; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 32px; border-right: 1px solid rgba(255,255,255,.12);
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.9); flex-shrink: 0;
}
.tick-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.5); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--b); padding: 96px 56px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 5px;
  background: linear-gradient(to bottom, var(--r), transparent);
}
.page-hero::after {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,58,.08) 0%, transparent 70%);
}
.page-hero-eyebrow {
  font-size: 10px; font-weight: 800; color: var(--r);
  letter-spacing: 3px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--r); }
.page-hero h1 {
  font-family: 'Bebas Neue', cursive, sans-serif;
  font-size: clamp(60px, 8vw, 108px);
  line-height: .88; letter-spacing: -2px; color: #fff; margin-bottom: 24px;
}
.page-hero h1 em { color: var(--r); font-style: normal; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.45); max-width: 600px; line-height: 1.8; }

/* ── SECTION LABELS ── */
.eyebrow {
  font-size: 10px; font-weight: 800; color: var(--r);
  letter-spacing: 3px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--r); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.white { color: rgba(255,255,255,.5); }
.eyebrow.white::before { background: rgba(255,255,255,.3); }
.section-title {
  font-family: 'Bebas Neue', cursive, sans-serif;
  font-size: clamp(36px, 5vw, 64px); line-height: .9;
  color: var(--b); letter-spacing: -1px; margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-title em { color: var(--r); font-style: normal; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 580px; }
.section-sub.center { text-align: center; margin: 0 auto; }

/* ── FOOTER ── */
.footer { background: #040404; padding: 64px 56px 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid #111; }
.foot-brand-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.foot-brand-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 260px; margin-bottom: 24px; }
.foot-socials { display: flex; gap: 8px; }
.foot-social {
  width: 38px; height: 38px; border: 1px solid #2a2a2a;
  border-radius: 8px; display: grid; place-items: center;
  color: rgba(255,255,255,.4); transition: all .2s; font-size: 16px;
}
.foot-social:hover { border-color: var(--r); color: var(--r); }
.foot-col h4 {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,.5);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col ul a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .2s; }
.foot-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.foot-copy { font-size: 11px; color: rgba(255,255,255,.25); }
.foot-contact-row { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-contact-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.35); }
.foot-contact-item i { color: var(--r); }
.foot-contact-item a { color: rgba(255,255,255,.35); transition: color .2s; }
.foot-contact-item a:hover { color: #fff; }

/* ── REVEAL ANIMATIONS ── */
.rv {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.rv.visible, .rv.on { opacity: 1; transform: none; }
.rv-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv-left.visible, .rv-left.on { opacity: 1; transform: none; }
.rv-right { opacity: 0; transform: translateX(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv-right.visible, .rv-right.on { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: scale(.94); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv-scale.visible, .rv-scale.on { opacity: 1; transform: scale(1); }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }
[data-delay="6"] { transition-delay: .48s; }

/* ── SHARED COMPONENTS ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--rlight); color: var(--r);
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(196,30,58,.15);
}
.badge-new { background: #dcfce7; color: #16a34a; font-size: 9px; font-weight: 800; padding: 3px 9px; border-radius: 100px; letter-spacing: .5px; }

/* ── STAR RATING ── */
.stars { display: flex; gap: 2px; }
.stars i { font-size: 12px; color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--r); padding: 72px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-band h2 {
  font-family: 'Bebas Neue', cursive, sans-serif;
  font-size: clamp(36px, 4.5vw, 60px); color: #fff;
  letter-spacing: -1px; line-height: .92;
}
.cta-band p { font-size: 15px; color: rgba(255,255,255,.65); margin-top: 10px; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .page-hero { padding: 72px 32px 56px; }
  .footer { padding: 48px 32px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { padding: 56px 32px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav-links { display: none; }
  .page-hero { padding: 56px 20px 44px; }
  .footer { padding: 40px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 44px 20px; flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary, .btn-white, .btn-outline-white { padding: 14px 28px; font-size: 11px; }
}
