/* ── VARIABLES CHARTE POLARIS MONT-BLANC ── */
:root {
  --blue:         #10458E;
  --blue-light:   #1A5CB0;
  --blue-pale:    #65B2E9;
  --white:        #FFFFFF;
  --snow:         #F5F8FF;
  --black:        #0A0A0A;
  --dark:         #0D1018;
  --dark-2:       #131720;
  --dark-3:       #1A1F2A;
  --gray:         #6B7280;
  --gray-light:   #E8EEF7;
  --accent:       #F5B324;
  --accent-dark:  #D9970F;
  --font-head:    'Barlow Semi Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* ── NAV ── */
body > nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--blue);
  border-bottom: 3px solid var(--accent);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 900; letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}

.nav-logo-star {
  width: 28px; height: 28px; flex-shrink: 0;
}

.nav-logo-sub {
  display: flex; flex-direction: column; line-height: 1;
}

.nav-logo-main { font-size: 20px; font-weight: 900; letter-spacing: -0.5px; }
.nav-logo-name { font-size: 10px; font-weight: 600; letter-spacing: 4px; color: var(--blue-pale); margin-top: 1px; }

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

.nav-links a {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  text-decoration: none; text-transform: uppercase;
  padding: 22px 18px;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
  display: block;
}

.nav-links a:hover { color: var(--white); border-bottom-color: var(--white); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--black); text-transform: uppercase;
  background: var(--accent);
  padding: 11px 24px;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-dark); color: var(--black); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 48px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
          linear-gradient(135deg, rgba(16,69,142,0.75) 0%, transparent 55%),
          linear-gradient(to bottom, rgba(10,10,10,0) 35%, rgba(10,10,10,1) 100%),
          radial-gradient(ellipse at 75% 40%, rgba(101,178,233,0.08) 0%, transparent 60%);
  background-color: var(--dark-2);
  z-index: 0;
}

/* Silhouette montagne en fond */
.hero-mountain {
  position: absolute;
  bottom: 0; right: -40px;
  width: 65%; height: 80%;
  clip-path: polygon(100% 100%, 0% 100%, 8% 60%, 22% 38%, 38% 52%, 52% 20%, 67% 38%, 80% 12%, 90% 26%, 100% 18%);
  background: linear-gradient(180deg, rgba(16,69,142,0.18) 0%, rgba(16,69,142,0.04) 100%);
  z-index: 1;
}

.hero-mountain-2 {
  position: absolute;
  bottom: 0; right: 10%;
  width: 40%; height: 55%;
  clip-path: polygon(100% 100%, 0% 100%, 18% 52%, 42% 22%, 68% 46%, 100% 12%);
  background: linear-gradient(180deg, rgba(101,178,233,0.08) 0%, rgba(101,178,233,0.02) 100%);
  z-index: 1;
}

/* Trait diagonal signature 18° */
.hero-slash {
  position: absolute;
  top: 0; right: 18%;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--blue) 25%, var(--accent) 75%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0.7;
  z-index: 2;
}

.hero-slash::after {
  content: '';
  position: absolute; left: 18px; top: 0; bottom: 0; width: 2px;
  background: inherit; opacity: 0.35;
}

/* Filet accent vertical droit */
.hero-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--accent);
  z-index: 3;
}

.hero-content { position: relative; z-index: 4; max-width: 760px; }

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  color: var(--blue-pale);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px;
  background: var(--blue-pale);
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(60px, 10vw, 128px);
  font-weight: 900; line-height: 0.88;
  text-transform: uppercase; letter-spacing: -2px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 .line-accent { color: var(--accent); display: block; }
h1 .line-pale   { color: rgba(255,255,255,0.12); font-style: italic; display: block; }

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 28px 0 44px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Stats strip */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex;
  background: rgba(16,69,142,0.18);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(16,69,142,0.4);
  z-index: 4;
}

.stat-item {
  flex: 1; padding: 22px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 900; line-height: 1;
  color: var(--accent);
}

.stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  margin-top: 4px;
}

/* ── BOUTONS ── */
.btn-primary {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--black); text-transform: uppercase; text-decoration: none;
  background: var(--accent);
  padding: 15px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  color: var(--white); text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--blue);
  padding: 13px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, border-color 0.2s;
  background: transparent; cursor: pointer;
}

.btn-outline:hover { background: var(--blue); border-color: var(--blue); }

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; }

.section-tag {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: 5px;
  color: var(--blue-pale); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}

.section-tag::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--blue-pale);
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--blue);
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-track {
  display: flex; gap: 0;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 28px;
  color: rgba(255,255,255,0.65);
}

.marquee-item span { color: var(--white); margin-right: 28px; }
.marquee-dot { color: var(--accent); margin: 0 6px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 18px 48px;
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
}
.breadcrumb ol {
  display: flex; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumb li {
  display: flex; align-items: center;
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
}
.breadcrumb li:not(:last-child)::after {
  content: '◆';
  font-size: 5px;
  color: var(--accent);
  margin: 0 10px;
}
.breadcrumb li a,
.breadcrumb li a span {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb li a:hover,
.breadcrumb li a:hover span { color: var(--white); }
.breadcrumb li:last-child > span { color: rgba(255,255,255,0.7); }

/* ── CATÉGORIES ── */
.categories {
  padding: 100px 48px;
  background: var(--dark);
}

.categories-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; gap: 32px;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900; line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.categories-intro {
  max-width: 300px; font-size: 14px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.38);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  list-style: none;
}

.cat-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none; color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 22px;
  background: var(--dark-2);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cat-card:hover { transform: scale(1.02); z-index: 2; }

.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  z-index: 1;
}

.cat-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s;
  filter: brightness(0.65) saturate(0.75);
}

.cat-card:hover .cat-card-bg { transform: scale(1.07); filter: brightness(0.85) saturate(0.95); }

/* Ligne accent GOLD en haut au survol — signature charte */
.cat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 3;
}

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

/* Blocs angulaires 18° sur les cartes */
.cat-angle {
  position: absolute;
  top: 0; right: -20%;
  width: 55%; height: 100%;
  background: rgba(16,69,142,0.12);
  transform: skewX(-18deg);
  z-index: 0;
  transition: background 0.4s;
}

.cat-card:hover .cat-angle { background: rgba(16,69,142,0.22); }

/* Fonds dégradés par gamme */
.cat-sportsman .cat-card-bg { background: linear-gradient(155deg, #1a2a10 0%, #243d18 40%, #1a2a10 100%); }
.cat-ranger    .cat-card-bg { background: linear-gradient(155deg, #0a1a30 0%, #10285a 40%, #0a1a30 100%); }
.cat-rzr       .cat-card-bg { background: linear-gradient(155deg, #1c0808 0%, #301010 40%, #1c0808 100%); }
.cat-general   .cat-card-bg { background: linear-gradient(155deg, #1a1408 0%, #2c2010 40%, #1a1408 100%); }
.cat-enfant    .cat-card-bg { background: linear-gradient(155deg, #0a1420 0%, #122038 40%, #0a1420 100%); }

.cat-content { position: relative; z-index: 2; }

.cat-badge {
  font-family: var(--font-head);
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  color: var(--blue-pale); text-transform: uppercase;
  margin-bottom: 6px;
}

.cat-name {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 900; line-height: 1;
  text-transform: uppercase; margin-bottom: 8px;
}

.cat-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.5;
  margin-bottom: 16px;
}

.cat-arrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
  transition: gap 0.2s;
}

.cat-card:hover .cat-arrow { gap: 16px; }

/* ── PRODUITS ── */
.products {
  padding: 100px 48px;
  background: var(--black);
}

.products-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  margin-bottom: 72px;
}

.products-header p {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.45);
}

/* Filtres */
#search_filters {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
#search_filters,
.product-filters {
  display: flex; gap: 4px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 20px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}

/* Grille produits */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover { border-color: rgba(16,69,142,0.6); transform: translateY(-4px); z-index: 2; }

.product-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,69,142,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}

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

/* Filet or en haut au survol */
.product-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}

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

.product-img-zone {
  height: 200px; background: var(--dark-3);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.product-img-zone svg { opacity: 0.12; }

.product-category-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head);
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  color: var(--white); text-transform: uppercase;
  background: var(--blue);
  padding: 4px 11px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.product-homolog {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-head);
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 8px;
}

.product-body { padding: 22px 26px 14px; flex: 1; display: flex; flex-direction: column; }

.product-family {
  font-family: var(--font-head);
  font-size: 9px; font-weight: 700; letter-spacing: 4px;
  color: var(--blue-pale); text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 900; line-height: 1;
  text-transform: uppercase; margin-bottom: 16px;
}

.product-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }

.spec-item { display: flex; flex-direction: column; }

.spec-val {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 700; color: var(--white);
}

.spec-key {
  font-size: 9px; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 1px;
}

.product-features {
  display: flex; gap: 5px; flex-wrap: wrap;
  margin-bottom: 18px; margin-top: auto;
}

.feat-tag {
  font-family: var(--font-head);
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.09);
  padding: 3px 8px;
}

.product-short-desc {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-top: auto; margin-bottom: 0;
}

.product-grid-empty {
  grid-column: 1 / -1;
  padding: 60px;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-head);
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
}

/* ── PAGINATION ── */
.pmb-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 48px 48px 64px;
  background: var(--black);
}

.pmb-page-num,
.pmb-page-btn {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  display: flex; align-items: center;
}

.pmb-page-num:hover,
.pmb-page-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.pmb-page-num.current {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  pointer-events: none;
}

.pmb-page-btn.disabled {
  opacity: 0.25;
  pointer-events: none;
}

.pmb-page-prev { margin-right: 8px; }
.pmb-page-next { margin-left: 8px; }

.pmb-page-spacer {
  color: rgba(255,255,255,0.2);
  padding: 0 4px;
  font-size: 14px;
}

.product-footer {
  padding: 14px 26px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
}

.product-price { font-family: var(--font-head); }
.price-from { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; }
.price-val { font-size: 18px; font-weight: 900; color: var(--white); }
.price-unit { font-size: 10px; color: rgba(255,255,255,0.35); }

.product-link {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  transition: gap 0.2s;
}

.product-card:hover .product-link { gap: 12px; }

/* ── CTA DEVIS ── */
.cta-devis {
  position: relative; overflow: hidden;
  background: var(--dark-2);
}

.cta-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }

.cta-content {
  padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}

/* Bloc angulaire 18° derrière le contenu */
.cta-content::before {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 30%; height: 120%;
  background: rgba(16,69,142,0.08);
  transform: skewX(-18deg);
  z-index: -1;
}

.cta-content h2 { font-size: clamp(34px, 4.5vw, 58px); margin-bottom: 18px; }

.cta-content p {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.5); max-width: 420px; margin-bottom: 36px;
}

.cta-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }

.cta-point {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}

/* Losange or — élément graphique charte */
.cta-point::before {
  content: '';
  display: block; width: 7px; height: 7px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Visuel droite CTA */
.cta-visual {
  background: var(--blue);
  position: relative; overflow: hidden;
  clip-path: polygon(48px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cta-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,69,142,0.98) 0%, #10458E 50%, var(--blue-pale) 140%);
  display: flex; align-items: center; justify-content: center;
}

/* Grille de points — texture charte */
.cta-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Filet or vertical dans le visuel */
.cta-visual-stripe {
  position: absolute; top: 0; right: 60px; bottom: 0;
  width: 4px; background: var(--accent); opacity: 0.4;
  transform: skewX(-18deg);
}

.cta-visual-content {
  text-align: center; position: relative; z-index: 2; padding: 48px 40px;
}

.cta-visual-label {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: 5px;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin-bottom: 24px;
}

.cta-visual-years {
  font-family: var(--font-head);
  font-size: 96px; font-weight: 900; line-height: 1; color: var(--white);
}

.cta-visual-sub {
  font-family: var(--font-head);
  font-size: 12px; letter-spacing: 3px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; margin-top: 8px;
}

.cta-guarantee-box {
  margin-top: 32px; padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 3px solid var(--accent);
}

.cta-guarantee-label {
  font-family: var(--font-head);
  font-size: 10px; letter-spacing: 3px;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin-bottom: 4px;
}

.cta-guarantee-val {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; color: var(--white); text-transform: uppercase;
}

/* ── SEO TEXT BLOCK ── */
.seo-block {
  padding: 80px 48px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.seo-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }

.seo-sidebar h3 {
  font-family: var(--font-head);
  font-size: 34px; font-weight: 900; text-transform: uppercase;
  line-height: 0.9; margin-bottom: 24px;
}

.seo-meta { display: flex; flex-direction: column; gap: 14px; }

.seo-meta-item {
  padding: 14px 16px;
  background: var(--dark-2);
  border-left: 3px solid var(--accent);
}

.seo-meta-label {
  font-family: var(--font-head);
  font-size: 9px; font-weight: 700; letter-spacing: 3px;
  color: var(--blue-pale); text-transform: uppercase; margin-bottom: 4px;
}

.seo-meta-val {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 900;
}

.seo-content { display: flex; flex-direction: column; gap: 24px; }

.seo-content h4 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}

.seo-content p {
  font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.4);
}

/* ── FOOTER ── */
.footer-links {
  padding: 40px 48px;
  background: var(--black);
  border-top: 3px solid var(--accent);
  display: flex; justify-content: space-between; align-items: center;
}

.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }

.footer-logo-star { width: 24px; height: 24px; opacity: 0.7; }

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 900;
  color: var(--white); text-transform: uppercase; letter-spacing: -0.5px;
}

.footer-logo-text span { color: var(--blue-pale); }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-nav a {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  color: rgba(255,255,255,0.3); text-transform: uppercase; text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

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

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

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

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { display: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 80px; }
  .hero-stats { display: none; }
  .categories { padding: 60px 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-header { flex-direction: column; align-items: flex-start; }
  .products { padding: 60px 24px; }
  .products-header { grid-template-columns: 1fr; gap: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .cta-content { padding: 48px 28px; }
  .seo-block { padding: 60px 24px; }
  .seo-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { flex-direction: column; gap: 24px; text-align: center; }
}
  