/* css/home.css */

/* ── Shared section styles ─────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.section-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 6px;
  margin-bottom: 20px;
}

/* ── Hero ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--depth-0) 0%, var(--depth-1) 50%, var(--depth-3) 100%);
}

/* Blur-Hintergrund für die Seiten (bei Hochformat-Video) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-poster, none);
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.5) saturate(1.4);
  transform: scale(1.1);
  z-index: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(0,119,182,0.05) 100%);
  z-index: 2;
}

/* Bubbles */
.hero__bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: bubble-rise 4s ease-in infinite;
}
.bubble:nth-child(1) { width:10px; height:10px; left:15%; bottom:20%; animation-delay:0s;   animation-duration:4s; }
.bubble:nth-child(2) { width: 6px; height: 6px;  left:35%; bottom:30%; animation-delay:1s;   animation-duration:5s; }
.bubble:nth-child(3) { width:14px; height:14px; left:55%; bottom:15%; animation-delay:2s;   animation-duration:3.5s; }
.bubble:nth-child(4) { width: 8px; height: 8px;  left:75%; bottom:25%; animation-delay:0.5s; animation-duration:6s; }
.bubble:nth-child(5) { width:12px; height:12px; left:88%; bottom:10%; animation-delay:1.5s; animation-duration:4.5s; }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.3);
  margin-bottom: 36px;
}

/* Depth meter */
.depth-meter {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.5s;
}

.depth-meter.visible { opacity: 1; }

.depth-meter__label {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--depth-5);
  font-weight: 700;
}

.depth-meter__track {
  width: 3px;
  height: 120px;
  background: rgba(0,119,182,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.depth-meter__fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--depth-3), var(--depth-7));
  border-radius: 2px;
  transition: height 0.1s linear;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--depth-7);
  opacity: 0.55;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@media (max-width: 768px) {
  /* Depth meter auf Handy — gut sichtbar */
  .depth-meter {
    right: 12px;
    gap: 6px;
  }
  .depth-meter__track {
    height: 130px;
    width: 5px;
    background: rgba(0,119,182,0.2);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0,180,216,0.15);
  }
  .depth-meter__fill {
    border-radius: 4px;
    background: linear-gradient(180deg, var(--depth-2), var(--depth-6));
  }
  .depth-meter__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: rgba(0,119,182,0.85);
    text-shadow: 0 0 8px rgba(0,119,182,0.3);
  }
  .hero__title { font-size: clamp(70px, 22vw, 120px); }
}

/* ── Color Picker ──────────────────────────── */
.color-picker {
  padding: var(--section-pad);
  text-align: center;
  background: transparent; /* depth-dive handles bg */
}

.color-picker .section-title { color: white; }
.color-picker .section-sub   { color: rgba(255,255,255,0.7); }

.color-picker__product { margin: 0 auto; max-width: 340px; }

.color-picker__product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(3,4,94,0.35));
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.color-picker__product img.switching {
  opacity: 0;
  transform: scale(0.92);
}

.color-picker__dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
}

.color-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.color-dot[data-color="orange"] { background: #FC7A1F; }
.color-dot[data-color="black"]  { background: #1A1A1A; }
.color-dot[data-color="red"]    { background: #FE2A2B; }

.color-dot:hover,
.color-dot.active {
  transform: scale(1.25);
  border-color: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.25);
}

/* ── Knochenschall Technologie ─────────────── */
.bone-tech {
  padding: var(--section-pad);
  background: var(--depth-7);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.bone-tech::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bone-tech__inner { max-width: 980px; margin: 0 auto; }

.bone-tech__header .section-title { color: white; margin: 12px 0 16px; }

.bone-tech__intro {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* Lifestyle Bild */
.bone-tech__img-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 52px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}

.bone-tech__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
  transition: transform 0.8s ease;
}

.bone-tech__img-wrap:hover .bone-tech__img {
  transform: scale(1.03);
}

.bone-tech__img-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(3,4,94,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--depth-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(144,224,239,0.3);
  white-space: nowrap;
}

/* Steps */
.bone-tech__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.bone-tech__step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  padding: 32px 20px 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}

.bone-tech__step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
}

.bone-tech__step-icon {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Vibrations-Animation */
.bone-tech__vibration {
  position: relative;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
}

.bv-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--depth-3);
  animation: bv-pulse 2s ease-out infinite;
}
.bv-ring--1 { width: 28px; height: 28px; animation-delay: 0s;    opacity: 0.9; }
.bv-ring--2 { width: 44px; height: 44px; animation-delay: 0.5s;  opacity: 0.55; }
.bv-ring--3 { width: 60px; height: 60px; animation-delay: 1s;    opacity: 0.25; }

@keyframes bv-pulse {
  0%   { transform: scale(0.7); opacity: 0.8; }
  70%  { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(0.7); opacity: 0;   }
}

.bv-core {
  font-size: 20px;
  color: var(--depth-2);
  position: relative; z-index: 1;
  animation: bv-core-shake 0.4s ease-in-out infinite alternate;
}

@keyframes bv-core-shake {
  from { transform: translateX(-2px); }
  to   { transform: translateX(2px); }
}

.bone-tech__bone-icon { font-size: 42px; }

.bone-tech__ear-icon {
  position: relative;
  font-size: 38px;
}

.bone-tech__sound-wave {
  font-size: 20px;
  position: absolute;
  top: -12px; right: -16px;
  animation: float-note 1.8s ease-in-out infinite;
}

@keyframes float-note {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 1; }
  50%       { transform: translateY(-10px) rotate(5deg); opacity: 0.6; }
}

.bone-tech__step-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--depth-3);
  margin-bottom: 8px;
}

.bone-tech__step-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bone-tech__step-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Pfeil zwischen Steps */
.bone-tech__arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--depth-3);
  flex-shrink: 0;
}

.bone-tech__arrow-line {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--depth-4), transparent);
  animation: arrow-flow 1.5s ease-in-out infinite;
}

.bone-tech__arrow-head {
  font-size: 11px;
  animation: arrow-flow 1.5s ease-in-out infinite;
}

@keyframes arrow-flow {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Vergleich */
.bone-tech__compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.bone-tech__compare-item {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}

.bone-tech__compare-item--bad {
  background: rgba(255,80,80,0.07);
  border: 1px solid rgba(255,80,80,0.2);
}

.bone-tech__compare-item--good {
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.25);
}

.bone-tech__compare-icon { font-size: 28px; display: block; margin-bottom: 10px; }

.bone-tech__compare-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.bone-tech__compare-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bone-tech__compare-item ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.bone-tech__compare-item--bad  ul li::before { content: '—'; position: absolute; left: 0; color: rgba(255,80,80,0.7); }
.bone-tech__compare-item--good ul li::before { content: '✓'; position: absolute; left: 0; color: var(--depth-3); font-weight: 700; }

.bone-tech__compare-vs {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* CTA Button */
.bone-tech__mehr-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1.5px solid rgba(144,224,239,0.5);
  border-radius: 50px;
  color: var(--depth-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  text-decoration: none;
}

.bone-tech__mehr-btn:hover {
  background: var(--depth-2);
  color: var(--depth-7);
  border-color: var(--depth-2);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .bone-tech__steps { flex-direction: column; align-items: center; }
  .bone-tech__arrow { transform: rotate(90deg); padding: 8px 0; }
  .bone-tech__step  { max-width: 100%; width: 100%; }
  .bone-tech__compare { flex-direction: column; }
  .bone-tech__compare-item { max-width: 100%; }
  .bone-tech__compare-vs { transform: rotate(90deg); }
}

/* ── Live Counter ──────────────────────────── */
.live-counter {
  padding: var(--section-pad);
  text-align: center;
  background: transparent;
}

.live-counter__number {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 96px);
  letter-spacing: -2px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 10px 0;
}

.pulse-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--depth-2);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.live-counter__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.live-counter__stats {
  display: flex;
  gap: 1px;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.stat-box {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  background: rgba(255,255,255,0.07);
}

.stat-box__num {
  font-family: var(--font-display);
  font-size: 24px;
  color: white;
  letter-spacing: 1px;
}

.stat-box__label {
  font-size: 8px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Comparison ────────────────────────────── */
.comparison {
  padding: var(--section-pad);
  text-align: center;
  background: transparent;
}

.comparison .section-title { color: white; }

.comparison__table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.comparison__table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.comparison__table th {
  padding: 10px 14px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.comparison__table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.comparison__table td:first-child {
  text-align: left;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.col-swimbeats { background: rgba(144,224,239,0.1); }
.col-swimbeats th { color: var(--depth-2) !important; }

.check { color: var(--depth-2); font-size: 18px; }
.cross { color: rgba(255,255,255,0.2); font-size: 18px; }
.price-highlight { color: var(--depth-2); font-weight: 700; font-family: var(--font-display); font-size: 18px; }

/* ── Testimonials ──────────────────────────── */
.testimonials {
  padding: var(--section-pad);
  text-align: center;
  background: transparent;
}

.testimonials .section-title { color: white; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.testimonial-card__stars { color: #ffd60a; font-size: 14px; margin-bottom: 12px; }

.testimonial-card__text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--depth-5), var(--depth-4));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; font-size: 12px; color: white; }
.testimonial-card__author span   { display: block; font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ── Unser Warum ───────────────────────────── */
.why-us {
  padding: var(--section-pad);
  text-align: center;
  background: transparent;
}

.why-us .section-title { color: white; }

.why-us__text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin: 16px auto 36px;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.why-card__icon  { font-size: 28px; margin-bottom: 8px; }
.why-card__title { font-size: 12px; font-weight: 700; color: white; margin-bottom: 4px; }
.why-card__sub   { font-size: 10px; color: rgba(255,255,255,0.45); }

/* ── FAQ ───────────────────────────────────── */
.faq {
  padding: var(--section-pad);
  background: transparent;
}

.faq .section-title { color: white; text-align: center; margin-bottom: 30px; }

.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '▶';
  color: var(--depth-4);
  font-size: 11px;
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after { transform: rotate(90deg); }
.faq__item[open] summary { color: var(--depth-2); }

.faq__item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  padding-bottom: 16px;
}

/* ── Bundle ────────────────────────────────── */
.bundle {
  padding: var(--section-pad);
  text-align: center;
  background: transparent;
}

.bundle .section-title { color: white; }
.bundle .section-sub   { color: rgba(255,255,255,0.65); }

.bundle__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 20px;
  flex-wrap: wrap;
}

.bundle__item {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 20px 16px;
  min-width: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.bundle__item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.bundle__icon  { font-size: 32px; margin-bottom: 8px; }
.bundle__name  { font-size: 11px; font-weight: 700; color: white; letter-spacing: 1px; }
.bundle__price { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

.bundle__plus {
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.bundle__total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.bundle__old-price {
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.bundle__new-price {
  font-family: var(--font-display);
  font-size: 42px;
  color: white;
  letter-spacing: -1px;
}

.bundle__saving {
  font-size: 12px;
  background: rgba(144,224,239,0.2);
  color: var(--depth-2);
  border: 1px solid rgba(144,224,239,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .bundle__items { flex-direction: column; }
  .bundle__plus  { transform: rotate(90deg); }
}

/* ── Testimonials Enhanced ─────────────────── */
.testimonials__proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 560px;
  margin: 20px auto 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
}

.testimonials__proof-item {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
}

.testimonials__proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.testimonials__proof-num {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--depth-2);
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 5px;
}

.testimonials__proof-label {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.testimonials__grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px !important;
}

.testimonial-card__verified {
  font-size: 10px;
  color: #6ee7b7;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr !important; }
  .testimonials__proof-bar { max-width: 100%; }
}

/* ── Trust Bar ─────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(3,4,94,0.92);
  border-bottom: 1px solid rgba(0,180,216,0.15);
  padding: 0 20px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-right: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.68);
  white-space: nowrap;
}

.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon { font-size: 18px; }

.trust-bar__num {
  font-weight: 800;
  color: var(--depth-2);
  font-family: var(--font-display);
  font-size: 15px;
  margin-right: 2px;
}

@media (max-width: 640px) {
  .trust-bar__item {
    padding: 10px 12px;
    font-size: 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 50%;
    justify-content: center;
    text-align: center;
  }
  .trust-bar__item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-bar__item:last-child      { border-bottom: none; }
  .trust-bar__item:nth-last-child(2) { border-bottom: none; }
}

/* ── Swim Scenarios ─────────────────────────── */
.swim-scenarios {
  padding: var(--section-pad);
  text-align: center;
  background: transparent;
}

.swim-scenarios .section-title { color: white; }
.swim-scenarios .section-sub   { color: rgba(255,255,255,0.6); margin-bottom: 0; }

.swim-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 36px auto 0;
}

.scenario-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 32px 26px 28px;
  text-align: left;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.scenario-card--1 {
  background: linear-gradient(145deg, rgba(0,60,140,0.96) 0%, rgba(0,119,182,0.82) 100%);
  border: 1px solid rgba(0,180,216,0.2);
}
.scenario-card--2 {
  background: linear-gradient(145deg, rgba(2,62,138,0.96) 0%, rgba(0,77,130,0.85) 100%);
  border: 1px solid rgba(0,180,216,0.18);
}
.scenario-card--3 {
  background: linear-gradient(145deg, rgba(3,4,94,0.97) 0%, rgba(0,50,110,0.88) 100%);
  border: 1px solid rgba(0,180,216,0.18);
}
.scenario-card--4 {
  background: linear-gradient(145deg, rgba(0,20,70,0.98) 0%, rgba(3,4,94,0.9) 100%);
  border: 1px solid rgba(0,180,216,0.15);
}

.scenario-card__bg-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 88px;
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.scenario-card__icon {
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
}

.scenario-card__tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--depth-3);
  display: block;
  margin-bottom: 8px;
}

.scenario-card__title {
  font-family: var(--font-display);
  font-size: 27px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.scenario-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

.scenario-card__shine {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--depth-3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scenario-card:hover .scenario-card__shine { opacity: 1; }

@media (max-width: 640px) {
  .swim-scenarios__grid { grid-template-columns: 1fr; }
  .scenario-card { min-height: 180px; }
}
