/* AiD Brand System — Light Theme */
:root {
  --gold: #B47E00;
  --gold-light: #D4A530;
  --brg: #004225;
  --brg-light: #006838;
  --bg: #FFFFFF;
  --bg-alt: #F7F7F7;
  --card-bg: #FFFFFF;
  --card-border: #E5E5E5;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border: #E5E5E5;
  --nav-height: 96px;
  --nav-logo-height: 92px;
  --nav-logo-height-mobile: 92px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Legacy aliases (referenced by inline styles) */
  --dark: var(--bg-alt);
  --dark-card: var(--bg-alt);
  --dark-border: var(--border);
  --gray-400: var(--text-muted);
  --gray-500: var(--text-secondary);
  --gray-600: var(--text-muted);
}

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

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

/* === SCROLL FADE-IN ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: var(--nav-logo-height); width: auto; display: block; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.nav-utility {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: background-color 0.2s, color 0.2s;
}
.lang-switch a:hover {
  color: var(--text-primary);
  background: var(--bg-alt);
}
.lang-switch a.active {
  color: var(--text-primary);
  background: rgba(180, 126, 0, 0.14);
}
.lang-flag {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.nav-cta {
  background: var(--gold); color: #FFFFFF !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-backdrop {
  display: none;
}

/* Hamburger menu */
.nav-hamburger {
  display: none; cursor: pointer; flex-direction: column;
  gap: 5px; padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1100px) {
  .nav { padding: 0 24px; }
  .nav-actions { gap: 16px; }
  .nav-links { gap: 24px; }
}

/* === HERO (stays dark with overlay) === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: #0A0A0A;
}
.hero--compact { min-height: 40vh; }
.hero--medium { min-height: 70vh; }
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-bg--overlay-aero::after {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55));
}
.hero-bg--overlay-sabre::after {
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.5));
}
.hero-bg--overlay-blog::after {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg-image--center-60 { object-position: center 60%; }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.hero-badge {
  display: inline-block; font-size: 12px; letter-spacing: 4px;
  color: var(--gold); font-weight: 600; margin-bottom: 20px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px); font-weight: 700;
  line-height: 1.05; margin-bottom: 16px; letter-spacing: -0.02em;
  color: #FFFFFF;
}
.hero p { font-size: 18px; color: #999999; margin-bottom: 32px; line-height: 1.5; }

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 14px 32px; font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: 4px; letter-spacing: 0.04em;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: #FFFFFF; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-brg { background: var(--brg); color: #FFFFFF; }
.btn-brg:hover { background: var(--brg-light); }
.btn-outline-light {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.6);
}

.sabre-hero-acronym {
  font-size: 20px;
  color: #999999;
  margin-bottom: 8px;
}
.sabre-hero-specs {
  font-size: 15px;
  color: #777777;
}
.sabre-hero-tagline {
  font-size: 24px;
  font-weight: 700;
  margin-top: 24px;
  color: var(--gold);
}
.blog-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40px;
}

/* === SECTIONS === */
.section { padding: 120px 40px; max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--bg-alt); }
.section-label {
  font-size: 12px; letter-spacing: 3px; color: var(--gold);
  font-weight: 600; text-transform: uppercase; margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  margin-bottom: 20px; letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 600px; line-height: 1.6; }

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* === CARDS === */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 28px; transition: border-color 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.card:hover { border-color: var(--brg); }
.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.card-emoji { font-size: 32px; margin-bottom: 12px; line-height: 1; }

/* === PRICING === */
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 36px; text-align: center;
  transition: all 0.2s; position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured::before {
  content: 'POPULARNE'; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--gold); color: #FFFFFF;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 16px; border-radius: 20px;
}
.pricing-label { font-size: 12px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.pricing-price { font-size: 36px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.pricing-unit { font-size: 13px; color: var(--text-secondary); }
.pricing-note { font-size: 12px; color: var(--text-secondary); margin-top: 8px; }

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  width: 100%; background: var(--bg-alt); border: 1px dashed var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px; min-height: 200px;
}

/* === GALLERY === */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery .img-placeholder { height: 200px; }
.gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; cursor: pointer; transition: transform 0.2s; }
.gallery img:hover { transform: scale(1.03); }

/* === TESTIMONIALS === */
.testimonial {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-left: 3px solid var(--brg); border-radius: 8px; padding: 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.testimonial-quote {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brg); display: flex; align-items: center;
  justify-content: center; color: #FFFFFF; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text-primary); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--border); padding: 20px 0;
}
.faq-question {
  font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-primary); transition: color 0.2s;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 20px; height: 20px; stroke: var(--text-muted);
  fill: none; stroke-width: 2; flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s;
  color: var(--text-secondary); font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 200px; padding-top: 12px;
}

/* === PRODUCT SECTIONS === */
.product-section {
  padding: 80px 40px; max-width: 1200px; margin: 0 auto;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.product-layout.reverse { direction: rtl; }
.product-layout.reverse > * { direction: ltr; }
.product-image { width: 100%; border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; }
.product-name { font-size: 32px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.product-tag { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.product-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.product-specs { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.product-price { display: flex; align-items: baseline; gap: 12px; }
.product-price .amount { font-size: 28px; font-weight: 700; color: var(--text-primary); }
.product-price .currency { font-size: 14px; color: var(--text-muted); }

/* === STICKY TABS === */
.sticky-tabs {
  position: sticky; top: var(--nav-height); z-index: 50;
  background: #FFFFFF; backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); padding: 0 40px;
  display: flex; gap: 0;
}
.sticky-tabs a {
  display: block; padding: 16px 24px; color: var(--text-muted);
  text-decoration: none; font-size: 14px; font-weight: 500;
  border-bottom: 2px solid transparent; transition: all 0.2s;
}
.sticky-tabs a:hover, .sticky-tabs a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* === COMPARISON TABLE === */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table thead th {
  text-align: center; padding: 16px 12px; color: var(--gold);
  font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border);
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody td {
  padding: 12px; text-align: center; border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.comparison-table tbody td:first-child { text-align: left; color: var(--text-muted); font-weight: 500; }
.comparison-table tbody tr:last-child td {
  font-weight: 700; color: var(--text-primary); font-size: 16px; border-bottom: none;
}

/* === TECH GRID === */
.tech-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 24px;
  border-left: 3px solid var(--brg);
  transition: border-color 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tech-card:hover { border-left-color: var(--gold); }
.tech-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.tech-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* === SETUP CONFIGURATOR === */
.setup-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 24px; text-align: center;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.setup-card:hover { border-color: var(--gold); }
.setup-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.setup-use { font-size: 12px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.setup-wheels { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.setup-price { font-size: 22px; font-weight: 700; color: var(--text-primary); }
.setup-price-note { font-size: 11px; color: var(--text-muted); }

/* === SOCIAL PROOF === */
.proof-stats { display: flex; gap: 48px; margin-bottom: 32px; }
.proof-stat .number { font-size: 40px; font-weight: 700; color: var(--gold); }
.proof-stat .label { font-size: 13px; color: var(--text-muted); }
.athletes-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.athlete {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px;
  background: var(--card-bg); border-radius: 6px; border: 1px solid var(--card-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.athlete-medal { font-size: 24px; flex-shrink: 0; }
.athlete-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; color: var(--text-primary); }
.athlete-result { font-size: 12px; color: var(--text-muted); }

/* === CTA SECTION === */
.cta-section { text-align: center; padding: 100px 40px; max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; color: var(--text-primary); }
.cta-section p { color: var(--text-secondary); margin-bottom: 24px; }

/* === FOOTER === */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border); padding: 40px;
  text-align: center; color: var(--text-muted); font-size: 13px;
}
.footer a { color: var(--gold); text-decoration: none; }

/* === PROOF BAR === */
.proof-bar { background: #004225; padding: 48px 40px; }
.proof-bar-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center; gap: 0;
}
.proof-bar-stat { text-align: center; flex: 1; }
.proof-bar-number { display: block; font-size: 48px; font-weight: 800; color: #FFFFFF; line-height: 1.1; }
.proof-bar-label { display: block; font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.02em; }
.proof-bar-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* === STEP CARDS === */
.step-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 24px 20px; text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.step-number {
  font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 10px;
  line-height: 1; letter-spacing: -0.02em;
}
.step-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.grid-4-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* === CASE STUDY === */
.case-study-data { text-align: center; }
.case-study-delta {
  font-size: 72px; font-weight: 800; color: var(--brg); line-height: 1;
  letter-spacing: -0.03em;
}
.case-study-metric {
  font-size: 16px; font-weight: 600; color: var(--text-secondary); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 2px;
}

/* === CARD ICONS (replacing emoji) === */
.card-icon { width: 40px; height: 40px; min-width: 40px; max-width: 40px; min-height: 40px; max-height: 40px; margin-bottom: 16px; color: var(--gold); }
.card-icon svg { width: 40px; height: 40px; display: block; }

/* === ATHLETE CARDS === */
.athlete-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 24px; text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.athlete-card-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brg); color: #FFFFFF;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; margin-bottom: 12px;
}
.athlete-card-photo {
  width: 64px; height: 64px; min-width: 64px; max-width: 64px;
  border-radius: 50%; object-fit: cover;
  margin-bottom: 12px; border: 2px solid var(--border);
  display: block; margin-left: auto; margin-right: auto;
}
.athlete-card-photo--small {
  width: 40px; height: 40px; min-width: 40px; max-width: 40px;
  margin: 0; display: inline-block;
}
.athlete-card-name { font-weight: 700; font-size: 15px; color: var(--text-primary); margin-bottom: 4px; }
.athlete-card-discipline { font-size: 12px; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.athlete-card-achievement { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* === MEDAL ICONS (replacing emoji) === */
.athlete-medal-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #FFFFFF;
}
.athlete-medal-icon.gold { background: #C9A633; }
.athlete-medal-icon.silver { background: #8E8E8E; }
.athlete-medal-icon.bronze { background: #A0652F; }

/* === BRANDS BAR === */
.brands-bar { padding: 48px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-bar-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.brand-text {
  font-size: 15px; font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.05em; opacity: 0.5; transition: opacity 0.3s;
}
.brand-text:hover { opacity: 1; }
.brands-bar-inner img {
  height: 36px; width: auto; opacity: 0.4; filter: grayscale(100%);
  transition: all 0.3s; object-fit: contain;
}
.brands-bar-inner img:hover { opacity: 1; filter: grayscale(0%); }

/* === TEAM ENDORSEMENT (sabre.html) === */
.team-endorsement {
  background: var(--bg-alt); border-radius: 8px; padding: 16px 20px;
  margin-bottom: 16px;
}
.team-endorsement-header {
  font-size: 13px; color: var(--text-secondary); margin-bottom: 12px;
}
.team-endorsement-athletes {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.team-endorsement-athlete {
  display: flex; align-items: center; gap: 8px;
}
.team-endorsement-athlete img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
  border: 1.5px solid var(--border);
}
.team-endorsement-athlete span {
  font-size: 12px; font-weight: 600; color: var(--text-primary);
}

/* === PRODUCT GALLERIES (sabre.html) === */
.product-gallery { display: grid; gap: 8px; margin-top: 40px; }
.product-gallery-5 { grid-template-columns: repeat(5, 1fr); }
.product-gallery-4 { grid-template-columns: repeat(4, 1fr); }
.product-gallery-6 { grid-template-columns: repeat(3, 1fr); }
.product-gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; }

/* === DISC VARIANTS === */
.disc-variants { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }

/* === TABLE SCROLL === */
.table-scroll-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* === GRID MODIFIERS === */
.grid-2--narrow { max-width: 800px; margin-left: auto; margin-right: auto; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-actions { gap: 12px; }
  .nav-utility { gap: 10px; }
  .nav-hamburger { display: flex; }
  .nav-backdrop {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    min-height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.28);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 95;
  }
  .nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    width: min(340px, calc(100vw - 24px));
    min-height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px;
    gap: 0;
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 32px rgba(0,0,0,0.08);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 96;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; padding-top: 16px; }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .nav-cta { display: inline-block; text-align: center; width: 100%; }
  .lang-switch { padding: 3px; }
  .lang-switch a {
    padding: 6px 8px;
    font-size: 11px;
    gap: 5px;
  }
  .lang-flag {
    width: 12px;
    height: 12px;
  }
  .section { padding: 60px 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-4-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-section { padding: 40px 20px; }
  .product-layout, .product-layout.reverse { grid-template-columns: 1fr; gap: 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .proof-stats { flex-direction: column; gap: 16px; }
  .athletes-list { grid-template-columns: 1fr; }
  .sticky-tabs { overflow-x: auto; }
  .sticky-tabs a { white-space: nowrap; padding: 14px 16px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 15px; margin-bottom: 20px; }
  .hero-content { padding: 0 16px; }
  .proof-bar { padding: 32px 20px; }
  .proof-bar-inner { flex-wrap: wrap; gap: 24px; }
  .proof-bar-stat { flex: 0 0 calc(50% - 12px); }
  .proof-bar-divider { display: none; }
  .proof-bar-number { font-size: 36px; }
  .case-study-delta { font-size: 56px; }
  .brands-bar-inner { gap: 24px; }
  .product-gallery-5, .product-gallery-4, .product-gallery-6 { grid-template-columns: repeat(2, 1fr); }
  .product-gallery img { height: 140px; }
  .product-gallery-5 img:last-child { grid-column: 1 / -1; height: 180px; }
  .disc-variants { grid-template-columns: 1fr; }
  .table-scroll-wrapper { margin: 0 -20px; padding: 0 20px; }
  .comparison-table { min-width: 600px; }
  .grid-2--narrow { max-width: none; }
}

@media (max-width: 420px) {
  .nav { padding: 0 16px; }
  .nav-logo { height: var(--nav-logo-height-mobile); }
  .nav-actions { gap: 8px; }
  .nav-utility { gap: 8px; }
  .lang-switch a {
    padding: 5px 7px;
  }
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  padding: 8px;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; }
.gallery img, .product-gallery img { cursor: pointer; }

/* Language switch (in nav) */
.nav-lang { display: flex; align-items: center; }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 2px 6px;
}
.lang-switch a:hover { color: var(--text-primary); }
.lang-switch a.active {
  color: var(--gold);
}

/* Equipment section */
.equip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.equip-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; }
.equip-card .card-icon { margin: 0 auto 16px; }
.equip-number { font-size: 48px; font-weight: 800; color: var(--gold); line-height: 1; }
.equip-label { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-top: 4px; }
.equip-brands { font-size: 13px; color: var(--text-secondary); margin-top: 12px; line-height: 1.5; }
.equip-toggle { display: inline-block; font-size: 13px; color: var(--gold); cursor: pointer; margin-top: 12px; border: none; background: none; font-family: inherit; }
.equip-toggle:hover { color: var(--gold-light); }
.equip-detail { display: none; text-align: left; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.equip-detail.open { display: block; }
.equip-detail strong { color: var(--text-primary); font-weight: 600; }
.equip-items { display: inline; }

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

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.blog-card-image { width: 100%; height: 200px; object-fit: cover; object-position: center 40%; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.blog-card-title { font-size: 24px; font-weight: 700; margin-top: 8px; line-height: 1.3; }
.blog-card-title a { color: var(--text-primary); text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); margin-top: 8px; line-height: 1.6; }
.blog-card-link { display: inline-block; margin-top: 12px; font-size: 14px; color: var(--gold); text-decoration: none; font-weight: 500; }

/* Blog post */
.blog-post { max-width: 720px; margin: 0 auto; padding: 120px 20px 60px; }
.blog-post-header { margin-bottom: 32px; }
.blog-post-header time { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.blog-post-header h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin-top: 8px; line-height: 1.2; letter-spacing: -0.02em; }
.blog-post-subtitle { font-size: 18px; color: var(--text-secondary); margin-top: 8px; }
.blog-back { font-size: 13px; color: var(--gold); text-decoration: none; display: inline-block; margin-bottom: 16px; }
.blog-post-hero { width: 100%; max-height: 400px; object-fit: cover; object-position: center; border-radius: 12px; margin-bottom: 32px; }
.blog-post-content { font-size: 16px; line-height: 1.8; color: var(--text-secondary); }
.blog-post-content h2 { font-size: 24px; font-weight: 700; color: var(--text-primary); margin: 40px 0 16px; }
.blog-post-content h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin: 32px 0 12px; }
.blog-post-content p { margin-bottom: 16px; }
.blog-post-content strong { color: var(--text-primary); }
.blog-post-content ul, .blog-post-content ol { margin: 16px 0; padding-left: 24px; }
.blog-post-content li { margin-bottom: 8px; }
.blog-post-content img { max-width: 100%; border-radius: 8px; margin: 24px 0; display: block; }
.blog-post-content h2 + p > img, .blog-post-content h3 + p > img { margin-top: 16px; }
.blog-post-content p > img + img { margin-top: 8px; }
.blog-post-content .gallery-inline { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 24px 0; }
.blog-post-content .gallery-inline img { margin: 0; width: 100%; height: 200px; object-fit: cover; }
.blog-post-content blockquote { border-left: 3px solid var(--gold); padding-left: 16px; margin: 24px 0; font-style: italic; color: var(--text-muted); }
.blog-post-content a { color: var(--gold); }
.blog-post-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }

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