/* =============================================
   Luxury Car Parts — main.css
============================================= */
:root {
  --bg:      #080808;
  --bg2:     #0f0f0f;
  --card:    #111111;
  --card2:   #161616;
  --border:  rgba(255,255,255,0.07);
  --red:     #E63946;
  --red2:    #c62834;
  --gold:    #D4AF37;
  --green:   #25D366;
  --text:    #e5e5e5;
  --muted:   #888;
  --font-h:  'Montserrat', sans-serif;
  --font-b:  'Inter', sans-serif;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.73rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-wa:hover { background: #1da851; }

.w-full { width: 100%; justify-content: center; }

/* ---- Top bar ---- */
.topbar {
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  padding: 0.4rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__phones, .topbar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.topbar a { opacity: 0.9; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; }
.topbar span { opacity: 0.6; }
.topbar__phones svg { opacity: 0.8; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, top 0.3s;
}
.navbar.scrolled {
  top: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.navbar__logo-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 0.9rem;
  color: #fff;
}
.navbar__logo-name {
  display: block;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.1;
}
.navbar__logo-sub {
  display: block;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__nav a {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.navbar__nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding-top: 100px;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,57,70,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,57,70,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; padding: 4rem 0; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__title-accent { color: var(--red); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
}
.hero__stat span { font-size: 0.8rem; color: var(--muted); }

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.trust-icon { color: var(--red); flex-shrink: 0; }

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section--dark { background: var(--card); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ---- Categories ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.cat-card:hover { border-color: var(--red); transform: translateY(-4px); }
.cat-card__icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.cat-card__title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1rem;
}
.cat-card__list { margin-bottom: 1rem; }
.cat-card__list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border);
}
.cat-card__list li::before { content: '→ '; color: var(--red); }
.cat-card__badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.cat-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.cat-card__btn:hover { background: var(--red2); }

/* ---- Brands ---- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.brand-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.3s;
}
.brand-card:hover { border-color: var(--gold); }
.brand-card__name {
  font-family: var(--font-h);
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.brand-card__sub { font-size: 0.72rem; color: var(--muted); }
.brands-note { text-align: center; color: var(--muted); font-size: 0.88rem; }

/* ---- Steps ---- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.step:hover { border-color: var(--red); }
.step__num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(230,57,70,0.2);
  margin-bottom: 0.5rem;
}
.step__title { font-family: var(--font-h); font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.step__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ---- Why grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: var(--red); }
.why-card__icon { font-size: 1.5rem; flex-shrink: 0; }
.why-card__title { font-family: var(--font-h); font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.why-card__desc { font-size: 0.85rem; color: var(--muted); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.testimonial-card__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card__text { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__footer { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.testimonial-card__meta { font-size: 0.75rem; color: var(--muted); }

/* ---- Prices table ---- */
.prices-table-wrap { overflow-x: auto; margin-bottom: 1.5rem; }
.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.prices-table th {
  background: rgba(230,57,70,0.1);
  color: var(--red);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.prices-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,0.85);
}
.prices-table tr:hover td { background: rgba(255,255,255,0.03); }
.price-from { color: var(--gold); font-weight: 700; }
.avail-badge {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25d366;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.prices-note { text-align: center; color: var(--muted); font-size: 0.88rem; }
.prices-note strong { color: var(--gold); }

/* ---- Contact ---- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__sub { color: var(--muted); margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.contact-list li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-list a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.contact-list a:hover { color: var(--red); }
.contact-list span { color: var(--muted); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form__title {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ---- Float WA ---- */
.float-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ---- Footer ---- */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.footer__logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-weight: 900;
  color: #fff;
}
.footer__logo-name { font-family: var(--font-h); font-weight: 900; font-size: 1.1rem; color: #fff; }
.footer__logo-sub { font-family: var(--font-h); font-weight: 700; font-size: 0.55rem; letter-spacing: 0.15em; color: var(--gold); }
.footer__brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.footer__col h4 { font-family: var(--font-h); font-weight: 700; color: #fff; margin-bottom: 1rem; font-size: 0.9rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col ul li a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--red); }
.footer__contact li { font-size: 0.85rem; color: var(--muted); }
.footer__contact a { color: var(--muted); transition: color 0.2s; }
.footer__contact a:hover { color: var(--red); }
.footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  margin-top: 1rem;
  transition: background 0.2s;
}
.footer__wa-btn:hover { background: #1da851; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__bottom p { font-size: 0.82rem; color: var(--muted); }

/* ---- Scroll animations ---- */
.anim-ready { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.anim-ready.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; }
  .navbar__nav { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(8,8,8,0.98); flex-direction: column; padding: 1.5rem; gap: 0.5rem; border-bottom: 1px solid var(--border); }
  .navbar__nav.open { display: flex; }
  .navbar__nav a { padding: 0.75rem 1rem; border-radius: 8px; }
  .hamburger { display: flex; }
  .trust-bar__inner { justify-content: center; }
  .trust-item { font-size: 0.75rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding-top: 80px; }
  .hero__cta { flex-direction: column; }
  .hero__stats { gap: 1.5rem; }
}

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


/* ===== CERERE PIESĂ HERO FORM ===== */
.contact-form--centered {
  max-width: 640px;
  margin: 0 auto;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem 0;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ===== FARURI SECTION ===== */
.faruri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}
@media (max-width: 900px) {
  .faruri-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .faruri-grid { grid-template-columns: 1fr; }
}
.faruri-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.faruri-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.faruri-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.faruri-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.faruri-card__text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.faruri-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faruri-card__list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.faruri-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.faruri-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.brand-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}
.text-center { text-align: center; }



/* ============================================================
   LUXURY CAR PARTS — CSS ADDITIONS v2
   Premium conversion-focused homepage styles
   ============================================================ */

/* ===== HERO V2 ===== */
.hero--v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #050505 0%, #0d0d0d 40%, #111 100%);
  overflow: hidden;
  padding: 5rem 0 3rem;
}
.hero__bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,16,46,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,16,46,0.04) 0%, transparent 40%),
    linear-gradient(45deg, rgba(255,255,255,0.01) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.01) 75%);
  background-size: 100% 100%, 100% 100%, 40px 40px;
  pointer-events: none;
}
.hero__inner-v2 { position: relative; z-index: 1; }
.hero__copy { max-width: 760px; }

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.hero__pill-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero__h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__h1-accent {
  display: block;
  background: linear-gradient(90deg, #c8102e, #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.hero__btn--wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.hero__btn--wa:hover { background: #1da855; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.hero__btn--call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero__btn--call:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hstat { text-align: center; padding: 0 1rem; }
.hstat__n {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hstat__l {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hstat__div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ===== QUOTE SECTION ===== */
.quote-section { padding: 4rem 0; }
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.quote-info__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}
.quote-info__sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.quote-info__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quote-info__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.quote-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #25D366;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.quote-wa-btn:hover { background: rgba(37,211,102,0.2); }
.quote-form { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; }

/* ===== PRODUCT CATEGORIES GRID ===== */
.pcat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.pcat-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.pcat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c8102e, #ff4d6d);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.pcat-card:hover {
  border-color: rgba(200,16,46,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,16,46,0.12);
}
.pcat-card:hover::before { transform: scaleX(1); }
.pcat-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pcat-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.pcat-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0 0 auto;
  flex-grow: 1;
}
.pcat-card__count {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 600;
  background: rgba(200,16,46,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.pcat-card__arrow {
  position: absolute;
  bottom: 1rem; right: 1.25rem;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.pcat-card:hover .pcat-card__arrow { color: var(--red); transform: translateX(3px); }

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 2.5rem 0 2rem;
}
.pstep {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pstep__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(200,16,46,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pstep__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.pstep__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}
.pstep__desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }
.pstep__arrow {
  font-size: 1.5rem;
  color: rgba(200,16,46,0.4);
  padding: 0 0.5rem;
  align-self: center;
  flex-shrink: 0;
  margin-top: -1rem;
}
.process-cta { text-align: center; }

/* ===== ADVANTAGES GRID ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.adv-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.25s;
}
.adv-card:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); }
.adv-card__icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--red);
}
.adv-card__title { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.adv-card__text { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* ===== BRANDS GRID ===== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.25rem 0.75rem;
  text-decoration: none;
  transition: all 0.2s;
  gap: 0.25rem;
}
.brand-card:hover { border-color: rgba(200,16,46,0.4); background: rgba(200,16,46,0.05); transform: translateY(-3px); }
.brand-card__name { font-size: 0.85rem; font-weight: 700; color: #fff; }
.brand-card__sub { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ===== QUALITY STEPS ===== */
.quality-steps {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}
.quality-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(200,16,46,0.2);
  z-index: 0;
}
.qstep {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.qstep__n {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 8px rgba(200,16,46,0.1);
}
.qstep__title { font-size: 0.9rem; font-weight: 700; color: #fff; margin: 0 0 0.4rem; }
.qstep__desc { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.2s;
}
.testi-card:hover { border-color: rgba(200,16,46,0.3); transform: translateY(-3px); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0 0 1.25rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: #fff; }
.testi-author span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(200,16,46,0.3); }
.faq-q {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  font-size: 0.93rem;
  padding: 1rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--red); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-q::after { content: '–'; }
.faq-a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding: 0 1.25rem 1.25rem;
}

/* ===== PRICE TABLE ===== */
.price-table-wrap { overflow-x: auto; margin-top: 2rem; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.price-table th {
  background: rgba(200,16,46,0.15);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-table td {
  padding: 0.85rem 1.25rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-table td strong { color: #fff; }
.price-table tr:hover td { background: rgba(255,255,255,0.02); }
.price-table tr:last-child td { border-bottom: none; }
.price-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 1rem; font-style: italic; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #0d0d0d, #1a0408);
  border-top: 1px solid rgba(200,16,46,0.2);
  border-bottom: 1px solid rgba(200,16,46,0.2);
  padding: 4rem 0;
}
.cta-final__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-final__title { font-size: 1.75rem; font-weight: 800; color: #fff; margin: 0 0 0.5rem; }
.cta-final__sub { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 0; }
.cta-final__btns { display: flex; gap: 1rem; flex-shrink: 0; }

/* ===== FLOATING CALL BUTTON ===== */
.float-call {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200,16,46,0.4);
  transition: all 0.2s;
  animation: float-pulse 3s infinite;
}
.float-call:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(200,16,46,0.5); }
@keyframes float-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(200,16,46,0.4); }
  50% { box-shadow: 0 4px 25px rgba(200,16,46,0.6), 0 0 0 8px rgba(200,16,46,0.08); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pcat-grid { grid-template-columns: repeat(3, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { flex-wrap: wrap; }
  .pstep__arrow { display: none; }
  .pstep { flex: 0 0 calc(50% - 0.5rem); }
}
@media (max-width: 768px) {
  .hero--v2 { min-height: auto; padding: 4rem 0 2.5rem; }
  .hero__h1 { font-size: 1.8rem; }
  .hero__stats { justify-content: center; }
  .hstat__div { display: none; }
  .hstat { padding: 0 0.5rem; }
  .quote-wrap { grid-template-columns: 1fr; }
  .pcat-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .quality-steps { flex-direction: column; }
  .quality-steps::before { display: none; }
  .cta-final__wrap { flex-direction: column; text-align: center; }
  .cta-final__btns { justify-content: center; }
}
@media (max-width: 480px) {
  .pcat-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__btn { justify-content: center; }
  .hstat__n { font-size: 1.6rem; }
}


/* =======================================================
   DROPDOWN NAVIGATION — v3 FINAL
   CSS handles desktop hover. JS only adds .dd-open on mobile.
   No inline style interference. No gap between trigger & menu.
   ======================================================= */

.nav-item,
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.nav-item:hover,
.nav-dropdown__trigger:hover { color: #fff; background: rgba(255,255,255,0.07); }

.nav-dropdown__arrow {
  width: 10px; height: 10px;
  transition: transform 0.2s;
  opacity: 0.55;
  flex-shrink: 0;
}

/* Wrapper — needs position:relative for the absolutely-placed menu */
.nav-dropdown { position: relative; }

/* ---- THE MENU ---- */
.nav-dropdown__menu {
  /* Hidden by default */
  display: none;

  /* Positioning: start exactly at bottom of trigger (no gap) */
  position: absolute;
  top: 100%;
  left: 0;

  /* Visual separation via padding-top inside the menu itself */
  padding: 6px 0 6px;

  /* Appearance */
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  min-width: 220px;
  max-width: 270px;
  max-height: 440px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 20px 48px rgba(0,0,0,0.65);
  scrollbar-width: thin;
  scrollbar-color: rgba(200,16,46,0.4) transparent;

  /* Subtle open animation */
  animation: ddFadeIn 0.12s ease;
}
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* DESKTOP: show on hover — uses CSS :hover, zero JS needed */
@media (min-width: 769px) {
  /* Extend the hoverable area with a pseudo-element bridge above the menu
     so the mouse can travel from trigger to menu without closing */
  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -10px;
    right: -10px;
    height: 12px; /* covers the gap between trigger bottom and menu top */
    background: transparent;
    display: none; /* activated only while hovering */
  }
  .nav-dropdown:hover::after { display: block; }
  .nav-dropdown:hover .nav-dropdown__menu { display: block; }
  .nav-dropdown:hover .nav-dropdown__arrow { transform: rotate(180deg); }
}

/* MOBILE: show when JS adds .dd-open */
.nav-dropdown.dd-open .nav-dropdown__menu {
  display: block;
  position: static;
  width: 100%;
  max-width: 100%;
  min-width: unset;
  box-shadow: none;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  margin: 0.2rem 0 0.4rem 0.5rem;
  max-height: 320px;
  animation: none;
}
.nav-dropdown.dd-open .nav-dropdown__arrow { transform: rotate(180deg); }

/* ---- MENU ITEMS ---- */
.dd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.52rem 1rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.12s, padding-left 0.12s, color 0.12s;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.dd-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-left-color: var(--red, #c8102e);
  padding-left: 1.25rem;
}
.dd-item--all {
  color: var(--red, #c8102e);
  font-weight: 700;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px;
  padding-top: 0.62rem;
  white-space: normal;
}
.dd-item--all:hover { color: #ff4d6d; background: rgba(200,16,46,0.08); }
.dd-count { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 400; margin-left: 0.25rem; }

/* ---- MOBILE nav adjustments ---- */
@media (max-width: 768px) {
  .nav-dropdown__trigger { width: 100%; justify-content: space-between; }
  .dd-item { white-space: normal; font-size: 0.85rem; padding: 0.65rem 1rem; }
  .dd-item:hover { padding-left: 1.25rem; } /* allow on mobile too */
}

/* ---- CATEGORY PAGE FORM ---- */
.cat-request-wrap {
  background: linear-gradient(135deg, #0d0d0d, #150204);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}
.cat-request-info__title { font-size:1.35rem; font-weight:800; color:#fff; margin:0 0 .6rem; }
.cat-request-info__sub   { font-size:.88rem; color:rgba(255,255,255,.6); line-height:1.6; margin:0 0 1.2rem; }
.cat-request-info__benefits { list-style:none; padding:0; margin:0 0 1.2rem; display:flex; flex-direction:column; gap:.4rem; }
.cat-request-info__benefits li { font-size:.82rem; color:rgba(255,255,255,.75); display:flex; align-items:center; gap:.5rem; }
.cat-request-info__benefits li::before { content:"✓"; color:#c8102e; font-weight:700; }
.cat-request-direct { display:flex; gap:.5rem; flex-wrap:wrap; }
.cat-req-btn { display:inline-flex; align-items:center; gap:.4rem; padding:.6rem 1rem; border-radius:8px; font-size:.82rem; font-weight:700; text-decoration:none; transition:all .2s; }
.cat-req-btn--wa  { background:#25D366; color:#fff; }
.cat-req-btn--wa:hover { background:#1da855; }
.cat-req-btn--tel { background:rgba(200,16,46,.12); color:#c8102e; border:1px solid rgba(200,16,46,.3); }
.cat-req-btn--tel:hover { background:rgba(200,16,46,.22); }
.cat-request-form { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:12px; padding:1.5rem; }
@media (max-width:768px) {
  .cat-request-wrap { grid-template-columns:1fr; gap:1.25rem; }
}
.navbar__logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
