/* =============================================
   BIKEFERNIE.COM — TRIBAN RC120 DISC
   styles.css
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3c5e;
  --navy-dark: #0d2540;
  --teal: #0c7a8b;
  --teal-light: #e8f7f9;
  --orange: #e07b1a;
  --orange-hover: #c4680e;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f2f4f7;
  --gray-200: #e5e9ef;
  --gray-400: #9aaabb;
  --gray-600: #5a6a7e;
  --gray-800: #2e3d4f;
  --text: #1c2b3a;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 20px rgba(26,60,94,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,94,0.16);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

address { font-style: normal; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 40px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  box-shadow: 0 4px 16px rgba(224,123,26,0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-100);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn--large { padding: 17px 36px; font-size: 16px; }
.btn--full { width: 100%; }

/* ===== PUB BADGE ===== */
.pub-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #fff3cd;
  color: #8a6800;
  border: 1.5px solid #f0c847;
  border-radius: 4px;
  padding: 2px 8px;
  line-height: 1.6;
}

.pub-badge--light {
  background: rgba(255,255,255,0.12);
  color: var(--gray-400);
  border-color: var(--gray-600);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(26,60,94,0.12);
}

.header__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--navy); }

.header__cta { margin-left: 16px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== STICKY BUY BAR ===== */
.buy-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--navy-dark);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.buy-bar.visible { transform: translateY(0); }

.buy-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.buy-bar__info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.buy-bar__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.buy-bar__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}

.buy-bar__stars {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,37,64,0.88) 0%,
    rgba(13,37,64,0.65) 50%,
    rgba(13,37,64,0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(224,123,26,0.15);
  border: 1px solid rgba(224,123,26,0.4);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
  grid-column: 1;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  grid-column: 1;
  margin-bottom: 0;
}

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  grid-column: 1;
  max-width: 600px;
}

.hero__card {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}

/* ===== PRICE CARD ===== */
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.price-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}

.price-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.price-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.price-card__rating { text-align: right; }

.stars { color: #f5a623; font-size: 16px; }
.stars--large { font-size: 24px; }
.star-half { opacity: 0.35; }

.rating-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-dark);
}

.rating-count {
  font-size: 12px;
  color: var(--gray-600);
}

.price-card__note {
  font-size: 11px;
  color: var(--gray-600);
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-dark);
  padding: 24px 0;
}

.trust-bar__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg { flex-shrink: 0; }
.trust-item svg path, .trust-item svg rect, .trust-item svg circle { stroke: rgba(255,255,255,0.7); }

/* ===== INTRO ===== */
.intro { background: var(--off-white); }

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro__text p {
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.intro__image:hover img { transform: scale(1.04); }

/* ===== PAIN POINTS ===== */
.pain { background: var(--white); }

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

.pain-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pain-card__problem { }
.pain-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.pain-card__problem h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.pain-card__problem p, .pain-card__solution p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
}

.pain-card__arrow {
  font-size: 20px;
  color: var(--teal);
  font-weight: 700;
  text-align: center;
}

.pain-card__solution { }
.solution-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

/* ===== BENEFITS ===== */
.benefits { background: var(--off-white); }

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.benefit-card__icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ===== SHOWCASE ===== */
.showcase { background: var(--white); }

.showcase__wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.showcase__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.showcase__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.showcase__hint {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 16px;
}

.showcase__cta {
  text-align: center;
  margin-top: 36px;
}

/* Hotspots */
.hotspot {
  position: absolute;
  cursor: pointer;
  z-index: 5;
}

.hotspot__dot {
  display: block;
  width: 18px; height: 18px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(224,123,26,0.35);
  transition: transform var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(224,123,26,0.35); }
  50% { box-shadow: 0 0 0 8px rgba(224,123,26,0.12); }
}

.hotspot:hover .hotspot__dot,
.hotspot.active .hotspot__dot {
  transform: scale(1.25);
  background: var(--teal);
  animation: none;
}

.hotspot__tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  min-width: 170px;
  max-width: 200px;
  font-size: 13px;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(6px);
  z-index: 10;
}

.hotspot__tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy-dark);
}

.hotspot__tooltip strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--orange);
}

.hotspot:hover .hotspot__tooltip,
.hotspot.active .hotspot__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== COMPARISON ===== */
.comparison { background: var(--off-white); }

.table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.compare-table thead tr { background: var(--navy-dark); }
.compare-table th { color: var(--white); font-weight: 700; }
.compare-table th.col-highlight { background: var(--teal); }

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--off-white); }

.col-highlight { background: rgba(12,122,139,0.06); font-weight: 600; }

.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; }

.comparison__note {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  font-style: italic;
}

/* ===== SOCIAL PROOF ===== */
.avis { background: var(--white); }

.avis__header {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 48px;
}

.avis__score {
  flex-shrink: 0;
  text-align: center;
}

.avis__num {
  display: block;
  font-size: 72px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.avis__out {
  font-size: 24px;
  color: var(--gray-600);
  font-weight: 700;
}

.avis__meta { flex: 1; }
.avis__count { font-size: 18px; margin-bottom: 8px; color: var(--navy-dark); }
.avis__summary {
  font-size: 16px;
  color: var(--gray-600);
  font-style: italic;
}

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

.review-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
}

.review-card__header strong {
  display: block;
  font-size: 15px;
  color: var(--navy-dark);
}

.review-card__header span {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
}

.review-card p {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 14px;
}

.review-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 600;
}

.avis__disclaimer {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 24px;
  font-style: italic;
}

/* ===== HIGHLIGHTS ===== */
.highlights { background: var(--off-white); }

.highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.highlights__bars { }

.progress-item { margin-bottom: 20px; }

.progress-item__label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.progress-item__val { color: var(--teal); }

.progress-bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s ease;
}

.highlights__note {
  font-size: 11px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 8px;
}

.highlights__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.highlights__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.highlights__image:hover img { transform: scale(1.04); }

/* ===== LIFESTYLE ===== */
.lifestyle { background: var(--white); }

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

.lifestyle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition);
}

.lifestyle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.lifestyle-card__img {
  height: 220px;
  overflow: hidden;
}

.lifestyle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lifestyle-card:hover .lifestyle-card__img img { transform: scale(1.06); }

.lifestyle-card__body {
  padding: 24px;
  background: var(--white);
}

.lifestyle-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.lifestyle-card__body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ===== SIZES ===== */
.sizes { background: var(--off-white); }

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.size-table th, .size-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.size-table thead { background: var(--navy-dark); }
.size-table th { color: var(--white); font-weight: 700; }
.size-table tbody tr:last-child td { border-bottom: none; }
.size-table tbody tr:nth-child(even) { background: var(--off-white); }
.size-table tbody tr:hover { background: var(--teal-light); }

.sizes__disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff8f0;
  border: 1px solid #f0c88a;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.5;
}

.sizes__cta {
  text-align: center;
  margin-top: 28px;
}

/* ===== HOW TO BUY ===== */
.howtobuy { background: var(--white); }

.steps {
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step__num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-display);
}

.step__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.step__body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.howtobuy__cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== FAQ ===== */
.faq { background: var(--off-white); }

.faq__list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item__q:hover { color: var(--teal); }

.faq-item__q::after {
  content: '+';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--teal);
  transition: transform var(--transition), background var(--transition);
}

.faq-item__q[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--teal);
  color: var(--white);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-item__a.open { max-height: 300px; }

.faq-item__a p {
  padding: 0 4px 20px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta { padding: 0; }

.final-cta__inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,37,64,0.92) 0%,
    rgba(13,37,64,0.75) 60%,
    rgba(13,37,64,0.5) 100%
  );
}

.final-cta__content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 620px;
}

.final-cta__content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-cta__content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 28px;
}

.final-cta__price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.final-cta__price .price-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.final-cta__price .price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
}

.final-cta__rating {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.final-cta__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.final-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.75);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.footer__disclaimer {
  font-size: 13px;
  line-height: 1.65;
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
}

.footer__company h4, .footer__links h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__company address {
  font-size: 13px;
  line-height: 1.8;
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,37,64,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray-600);
  line-height: 1;
  transition: color var(--transition);
}

.modal__close:hover { color: var(--navy); }

.modal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal h3 { color: var(--navy-dark); margin-bottom: 16px; }

.legal-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Cookie modal */
.modal--cookie { max-width: 460px; }
.modal--cookie h3 {
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.cookie-toggle { display: flex; flex-direction: column; gap: 4px; }

.cookie-toggle__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
}

.cookie-toggle__desc {
  font-size: 12px;
  color: var(--gray-400);
  padding-bottom: 8px;
}

.toggle { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-200);
  border-radius: 24px;
  transition: background var(--transition);
}
.toggle__slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle input:checked + .toggle__slider { background: var(--teal); }
.toggle input:checked + .toggle__slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle__slider { opacity: 0.7; cursor: not-allowed; }
.toggle input:disabled:checked + .toggle__slider { background: var(--gray-400); }

.cookie-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===== COOKIE BAR ===== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: var(--navy-dark);
  border-top: 2px solid var(--teal);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.cookie-bar.hidden { transform: translateY(110%); }

.cookie-bar__content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-bar__content p {
  flex: 1;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  min-width: 240px;
}

.cookie-bar__content a { color: var(--orange); text-decoration: underline; }

.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn-cookie--refuse {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.btn-cookie--refuse:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-cookie--custom {
  background: transparent;
  color: var(--white);
  border-color: var(--teal);
}
.btn-cookie--custom:hover { background: var(--teal); }

.btn-cookie--accept {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-cookie--accept:hover { background: var(--orange-hover); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 16px;
    z-index: 1001;
  }

  .header__cta { display: none; }
  .header__burger { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
  }
  .hero__eyebrow, .hero__title, .hero__subtitle { grid-column: 1; }
  .hero__card {
    grid-column: 1;
    grid-row: auto;
  }

  .intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .intro__image img { height: 280px; }

  .pain__grid { grid-template-columns: 1fr; }
  .pain-card { grid-template-columns: 1fr; }
  .pain-card__arrow { transform: rotate(90deg); text-align: center; }

  .benefits__grid { grid-template-columns: repeat(2, 1fr); }

  .showcase__img { height: 300px; }

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

  .highlights__grid { grid-template-columns: 1fr; gap: 32px; }
  .highlights__image img { height: 240px; }

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

  .avis__header { flex-direction: column; gap: 16px; text-align: center; }
  .avis__score { display: flex; align-items: baseline; gap: 4px; }

  .final-cta__content { padding: 40px 24px; }
  .final-cta__btns { flex-direction: column; }

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

  .buy-bar__info { gap: 10px; }
  .buy-bar__stars { display: none; }

  .hotspot__tooltip { min-width: 140px; font-size: 12px; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .price-card__top { flex-direction: column; }
  .price-card__rating { text-align: left; }
  .cookie-bar__actions { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hotspot__tooltip, .progress-bar__fill,
  .btn, .benefit-card, .lifestyle-card, .review-card {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}

.hero__bg{
 object-fit:cover!important;
 object-position:center 58%!important;
}
@media(min-width:1400px){
 .hero{min-height:92vh;}
 .hero__content{padding-top:40px;}
}


/* Patch: intro section product image */
.intro__image img{
  display:block;
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  object-position:center;
}
.intro__image{
  background:#eef3f6;
}


/* Final patch: lifestyle cards images */
.lifestyle-card__img{
  height: 250px;
  overflow: hidden;
  background: #eef3f6;
}
.lifestyle-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* Hotspots alignment patch */
.showcase__image-wrap{position:relative;}
.hotspot{transform:translate(-50%,-50%);}
@media (max-width: 700px){
  .showcase__img{height:320px;object-fit:cover;object-position:center bottom;}
}


/* Precise product hotspots patch */
.showcase__wrapper{
  max-width: 1120px;
}
.showcase__image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.showcase__img--precise{
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 58%;
  display: block;
  transform: scale(1.10);
  transform-origin: center center;
}
.showcase__image-wrap .hotspot{
  transform: translate(-50%, -50%);
}
.showcase__image-wrap .hotspot__dot{
  width: 22px;
  height: 22px;
  border-width: 4px;
}
@media (max-width: 900px){
  .showcase__img--precise{
    height: 390px;
    transform: scale(1.18);
    object-position: center 60%;
  }
}
