/* ============================================
   BIZ CORP · Site vitrine B2B pièces auto
   Stylesheet global
   ============================================ */

:root {
  --red: #e63946;
  --red-dark: #b71c1c;
  --red-deep: #780000;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #2a2a2a;
  --gray-text: #6b6b6b;
  --light: #f5f5f7;
  --light-2: #ebebee;
  --white: #ffffff;
  --border: #e1e1e6;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.15);
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1240px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: 'Oswald', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--red); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.95rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.eyebrow.light { color: #ff6b75; }
.light { color: var(--white); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
}
.section-dark .btn-ghost {
  color: var(--white);
  border-color: var(--white);
}
.section-dark .btn-ghost:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn.full { width: 100%; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--dark);
  color: #c0c0c0;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar .lang {
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  transition: all 0.2s;
}
.topbar .lang:hover { color: var(--red); }

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  font-size: 1.3rem;
}
.logo-text { color: var(--dark); }

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}
.nav a:hover { color: var(--red); }
.nav a.active { color: var(--red); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2a0a0c 100%);
  color: var(--white);
  padding: 100px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(230, 57, 70, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(230, 57, 70, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-text { max-width: 800px; }
.hero h1 {
  color: var(--white);
  margin: 12px 0 24px;
}
.hero .lead {
  font-size: 1.15rem;
  color: #d0d0d0;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero .lead strong { color: var(--white); }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero .btn-ghost:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 700px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
}
.hero-stats span {
  font-size: 0.85rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   BRANDS
   ============================================ */
.brands {
  background: var(--light);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.brands-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.brands-row span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.brands-row span:hover { opacity: 1; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 96px 0;
}
.section-alt { background: var(--light); }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: inline-block; }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-top: 16px;
}
.section-dark .section-sub { color: #c0c0c0; }
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 70%, #2a0a0c 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 100%, rgba(230, 57, 70, 0.2) 0%, transparent 60%);
}
.page-header > .container { position: relative; }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p {
  color: #c0c0c0;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   CARDS GRID
   ============================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.25s;
}
.section-alt .card { background: var(--white); }
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* ============================================
   CATEGORIES (homepage)
   ============================================ */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}
.cat:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.cat-emoji {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.cat h4 {
  margin-bottom: 6px;
  color: var(--dark);
}
.cat span {
  font-size: 0.85rem;
  color: var(--gray-text);
}

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text .eyebrow { display: inline-block; }
.why-text p {
  color: var(--gray-text);
  margin: 16px 0 28px;
  font-size: 1.05rem;
}
.checks {
  margin-bottom: 32px;
}
.checks li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--dark);
  color: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.2s;
}
.why-card:nth-child(2),
.why-card:nth-child(3) {
  background: var(--red);
}
.why-card:hover { transform: translateY(-4px); }
.why-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-label {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0;
  right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.6;
  line-height: 1;
}
.testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial strong { color: var(--white); font-size: 1rem; }
.testimonial span { color: #a0a0a0; font-size: 0.85rem; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--red-dark);
  border-color: var(--white);
}
.cta-band .btn-primary:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: #c0c0c0;
  padding: 64px 0 0;
}
.footer .logo { margin-bottom: 16px; }
.footer .logo-text { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-about {
  font-size: 0.92rem;
  color: #909090;
  max-width: 340px;
}
.footer h5 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
.footer ul li {
  padding: 5px 0;
  font-size: 0.92rem;
}
.footer ul a:hover { color: var(--red); }
.contact-list li { color: #909090; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #707070;
}
.footer-bottom-inner a {
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-bottom-inner a:hover { color: var(--red); }

/* ============================================
   À PROPOS · STORY
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col p {
  color: var(--gray-text);
  margin: 16px 0;
  font-size: 1.05rem;
}
.story-stats {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--red);
}
.story-stat {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.story-stat:last-child { border-bottom: none; }
.story-stat strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--red);
  min-width: 80px;
}
.story-stat span { color: var(--dark); font-weight: 500; }

/* ============================================
   À PROPOS · TEAM
   ============================================ */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-member {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.25s;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}
.team-member h4 { margin-bottom: 4px; }
.team-member > span {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.team-member p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-top: 12px;
}

/* ============================================
   SERVICES · SERVICE ROWS
   ============================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-visual { order: 1; }
.step {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  background: rgba(230, 57, 70, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.service-text h2 { margin-bottom: 16px; }
.service-text p {
  color: var(--gray-text);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.service-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-visual.red { background: linear-gradient(135deg, #e63946, #780000); }
.service-visual.dark { background: linear-gradient(135deg, #1a1a1a, #3a3a3a); }
.service-visual.purple { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); }
.service-visual.gold { background: linear-gradient(135deg, #b8860b, #5d4205); }
.big-emoji {
  font-size: 8rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* ============================================
   SERVICES · PRICING
   ============================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--red);
  background: var(--dark);
  color: var(--white);
}
.price-card.featured h3 { color: var(--white); }
.price-card.featured .price-target { color: #c0c0c0; }
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card h3 { margin-bottom: 16px; }
.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price .amount {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
}
.price-card.featured .price .amount { color: var(--white); }
.price .period { color: var(--gray-text); }
.price-target {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-card.featured .price-target { border-color: rgba(255,255,255,0.15); }
.price-card ul { margin-bottom: 28px; }
.price-card ul li {
  padding: 8px 0;
  font-size: 0.95rem;
}
.price-card .btn { width: 100%; }
.price-card.featured .btn-primary {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.price-card.featured .btn-primary:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ============================================
   SERVICES · FAQ
   ============================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.faq details[open] {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: '−';
}
.faq p {
  padding: 0 24px 20px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ============================================
   CATALOGUE · SEARCH
   ============================================ */
.search-section {
  background: var(--light);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.search-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.search-form input,
.search-form select {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}
.search-form input { flex: 2; }
.search-form input:focus,
.search-form select:focus {
  outline: none;
  border-color: var(--red);
}
.search-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-top: 14px;
}

/* CATALOGUE · FILTERS */
.filter-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--dark);
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* CATALOGUE · PRODUCTS */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.product-img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.product h4 {
  padding: 18px 20px 4px;
  font-size: 1.05rem;
}
.product-ref {
  padding: 0 20px;
  font-size: 0.78rem;
  color: var(--gray-text);
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-fit {
  padding: 4px 20px 14px;
  font-size: 0.88rem;
  color: var(--dark-3);
}
.product-foot {
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.stock { font-weight: 600; }
.stock.in { color: #2d8a3e; }
.stock.low { color: #c8801a; }
.product-cta {
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
}
.product-cta:hover { color: var(--red-dark); }
.catalogue-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--dark);
  color: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
}
.contact-info h3 {
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--red);
}
.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(230, 57, 70, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-block h5 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}
.info-block p {
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-block a:hover { color: var(--red); }
.info-block .small {
  font-size: 0.82rem;
  color: #808080;
  margin-top: 2px;
}

/* CONTACT FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  margin-bottom: 8px;
}
.form-intro {
  color: var(--gray-text);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: all 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}
.field textarea { resize: vertical; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 24px;
  font-size: 0.88rem;
  color: var(--gray-text);
  cursor: pointer;
}
.checkbox input {
  margin-top: 3px;
  accent-color: var(--red);
}
.form-success {
  margin-top: 20px;
  padding: 16px;
  background: #e8f5ea;
  border: 1px solid #4caf50;
  border-radius: var(--radius-sm);
  color: #2d8a3e;
  font-size: 0.95rem;
}

/* CONTACT · MAP MOCK */
.map-mock {
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: var(--radius);
  padding: 80px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.map-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  font-size: 4rem;
  margin-bottom: 16px;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(230, 57, 70, 0.5));
}
.map-mock p {
  position: relative;
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.map-mock .btn {
  position: relative;
  color: var(--white);
  border-color: var(--white);
}
.map-mock .btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .topbar-left span:nth-child(2) { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
  .nav a.active::after { display: none; }
  .burger { display: flex; }
  .header-cta .btn-primary { display: none; }

  .hero { padding: 60px 0 80px; }
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 1.8rem; }

  .section { padding: 64px 0; }

  .why-grid,
  .two-col,
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-row.reverse .service-text { order: 1; }
  .service-row.reverse .service-visual { order: 2; }
  .big-emoji { font-size: 5rem; }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

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

  .cta-inner {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .topbar-left, .topbar-right { gap: 12px; font-size: 0.78rem; }
  .topbar-right span:first-child { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom-inner a { margin-left: 0; margin-right: 16px; }
  .contact-form { padding: 28px 24px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.6s ease-out backwards;
}
.hero-text { animation: fadeUp 0.8s ease-out; }
