/* ============================================================
   AUSZEIT REISEN — Homepage-specific Styles
   Hero Slider, Tabs, Reederei Strip, Reisewelten,
   Travel Designer, Team, FAQ, Testimonials, Community
   ============================================================ */


/* ------------------------------------------------------------
   Section Header Utility
   ------------------------------------------------------------ */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

/* h2::after gold underline is handled globally in global.css */

.section-header__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}


/* ============================================================
   1. HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 20, 0.15) 0%,
    rgba(11, 15, 20, 0.4) 50%,
    rgba(11, 15, 20, 0.85) 85%,
    #0B0F14 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 5%;
  max-width: 600px;
  z-index: 2;
  color: var(--color-ivory);
}

.hero-eyebrow {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
  display: block;
}

.hero-content h1 {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding-bottom: 0;
}

.hero-content h1::after {
  display: none;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(245, 243, 239, 0.85);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-dot {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 10px;
  height: 10px;
  min-width: 0;
  min-height: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 0;
  font-size: 0;
}

.hero-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.7);
}


/* ============================================================
   2. TABS (Kreuzfahrt-Navigator)
   ============================================================ */
.tabs {
  display: flex;
  align-items: stretch;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition-fast),
              border-color var(--transition-fast);
}

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

.tabs__btn--active {
  color: var(--color-white);
  border-color: var(--color-gold);
}

.tabs__icon {
  flex-shrink: 0;
  color: var(--color-gold);
}

.tabs__panel {
  display: none;
  animation: fadeIn 400ms ease;
  color: rgba(255, 255, 255, 0.85);
}

.tabs__panel--active {
  display: block;
}

.tabs__panel .btn--primary {
  /* stays gold */
}

.tabs__panel .btn--secondary {
  color: var(--color-white);
  box-shadow: inset 0 0 0 2px var(--color-gold);
}

.tabs__panel .btn--secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tabs__panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.tabs__panel-info h3 {
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.tabs__panel-for {
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.7);
}

.tabs__features {
  margin-bottom: var(--space-lg);
}

.tabs__features li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-snug);
  color: rgba(255, 255, 255, 0.85);
}

.tabs__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: var(--radius-full);
}

.tabs__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.tabs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.tabs__panel-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tabs__panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}


/* ============================================================
   3. PILLS
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
  white-space: nowrap;
}

.pill:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

.pill--dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.pill--dark:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
}


/* ============================================================
   4. REEDEREI STRIP (horizontal scroll)
   ============================================================ */
.reederei-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(var(--container-padding), calc((100% - var(--container-max)) / 2 + var(--container-padding)));
}

.reederei-strip::-webkit-scrollbar {
  display: none;
}

.reederei-strip__track {
  display: flex;
  gap: var(--space-md);
  padding-inline: max(var(--container-padding), calc((100% - var(--container-max)) / 2 + var(--container-padding)));
  width: max-content;
}

.reederei-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-lg);
  background-color: #0F1418;
  border-radius: 12px;
  min-width: 180px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: box-shadow var(--transition-base),
              transform var(--transition-base),
              border-color var(--transition-base);
  scroll-snap-align: start;
}

.reederei-tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-gold);
}

.reederei-tile picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: var(--space-md);
}

.reederei-tile picture img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.6;
  transition: filter var(--transition-base), opacity var(--transition-base);
}

.reederei-tile:hover picture img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}

.reederei-tile__name {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  margin-bottom: 2px;
}

.reederei-tile__sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-soft-text);
  margin-bottom: var(--space-sm);
}

.reederei-tile__tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.reederei-tile__tag--luxus {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

.reederei-tile__tag--expedition {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.reederei-tile__tag--meerzeit {
  background-color: #2B7A9B;
  color: var(--color-white);
}

.reederei-tile__tag--spezial {
  background-color: var(--color-gray-500);
  color: var(--color-white);
}


/* ============================================================
   5. REISEWELTEN GRID
   ============================================================ */
.reisewelten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.reisewelt-tile {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-gold-border);
  transition: border-color var(--transition-base);
}

.reisewelt-tile:hover {
  border-color: var(--color-gold);
}

.reisewelt-tile picture,
.reisewelt-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.reisewelt-tile:hover img {
  transform: scale(1.05);
}

.reisewelt-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.15) 50%,
    transparent 100%
  );
  z-index: 1;
}

.reisewelt-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
  color: var(--color-white);
}

.reisewelt-tile__eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.reisewelt-tile__title {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  line-height: var(--leading-snug);
}

.reisewelt-tile__desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--leading-snug);
}


/* ============================================================
   6. TRAVEL DESIGNER BLOCK
   ============================================================ */
.td-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.td-block__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
}

.td-block__lead {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.td-block__promise {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.td-block__usps {
  margin-bottom: var(--space-xl);
}

.td-block__usps li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
}

.td-block__usps svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.td-block__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.td-block__footer {
  font-size: var(--text-sm);
  color: var(--color-gold);
  font-style: italic;
}

.td-block__visual {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.td-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}


/* ============================================================
   7. TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
}

.team-card__image {
  aspect-ratio: 1;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-md);
  max-width: 200px;
  margin-inline: auto;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-headline);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: var(--text-sm);
  color: var(--color-gold-dark);
  font-weight: var(--weight-medium);
}


/* ============================================================
   8. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background-color: var(--color-dark-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid transparent;
  transition: box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-left-color: var(--color-gold);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::marker {
  content: '';
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-gold);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-soft-text);
  line-height: var(--leading-relaxed);
}

.faq-item__answer .link {
  display: inline-block;
  margin-top: var(--space-sm);
}


/* ============================================================
   9. TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.testimonial {
  position: relative;
  background-color: var(--color-dark-card);
  padding: var(--space-xl);
  padding-top: calc(var(--space-xl) + 12px);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-top: var(--border-gold) solid var(--color-gold);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-family: var(--font-headline);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gold-subtle);
  pointer-events: none;
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.testimonial__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-soft-text);
  margin-bottom: var(--space-lg);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.testimonial__author strong {
  color: var(--color-white);
}

.testimonial__author span {
  color: var(--color-soft-text);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}


/* ============================================================
   10. COMMUNITY / NEWSLETTER
   ============================================================ */
.community-block {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-3xl);
  align-items: start;
}

.community-block__info h2 {
  color: var(--color-white);
}

.community-block__info p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.community-block__socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.newsletter-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.newsletter-card h3 {
  color: var(--color-white);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.newsletter-form__row {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-form__row .form-input {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.newsletter-form__row .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form__row .form-input:focus {
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.12);
}


/* ============================================================
   11. QUICKLINKS
   ============================================================ */
.quicklinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}


/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tabs__panel-grid {
    grid-template-columns: 1fr;
  }

  .tabs__panel-visual {
    order: -1;
    max-height: 300px;
  }

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

  .td-block {
    grid-template-columns: 1fr;
  }

  .td-block__visual {
    order: -1;
    max-height: 360px;
  }

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

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

  .community-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 85vh;
  }

  .hero-content {
    bottom: 12%;
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  /* Travel Designer block: better mobile layout */
  .td-block__visual {
    max-height: 220px;
    border-radius: var(--radius-md);
  }

  .td-block__content {
    order: 1;
  }

  .td-block__actions {
    flex-direction: column;
  }

  .td-block__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Tabs: smaller buttons, actions stack */
  .tabs__btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-xs);
  }

  .tabs__actions {
    flex-direction: column;
  }

  .tabs__actions .btn {
    width: 100%;
  }

  /* Reisewelten: tighter grid */
  .reisewelten-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .reisewelt-tile__title {
    font-size: var(--text-base);
  }

  .reisewelt-tile__content {
    padding: var(--space-md);
  }

  .reisewelt-tile__desc {
    display: none;
  }

  /* Reederei strip: 2 visible on tablet */
  .reederei-tile {
    min-width: calc(50vw - 48px);
    max-width: 200px;
    padding: var(--space-md);
  }

  /* Travel Designer: less gap */
  .td-block {
    gap: var(--space-xl);
  }

  .td-block__visual {
    max-height: 280px;
  }

  /* Team: tighter grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .team-card__image {
    max-width: 160px;
  }

  /* FAQ: larger touch targets */
  .faq-item__question {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-base);
    min-height: 48px;
  }

  /* Section headers */
  .section-header__row {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Newsletter: stack form, full-width button */
  .newsletter-form__row {
    flex-direction: column;
  }

  .newsletter-form__row .btn {
    width: 100%;
  }

  /* Community socials: stack on mobile */
  .community-block__socials {
    flex-direction: column;
  }

  .community-block__socials .btn {
    width: 100%;
    justify-content: center;
  }

  /* Testimonials: less padding */
  .testimonial {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  /* Reisewelten: single col, landscape ratio */
  .reisewelten-grid {
    grid-template-columns: 1fr;
  }

  .reisewelt-tile {
    aspect-ratio: 16 / 10;
  }

  .reisewelt-tile__desc {
    display: block;
  }

  /* Team: single column */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card__image {
    max-width: 180px;
  }


  /* Reederei strip: 2 visible on mobile */
  .reederei-tile {
    min-width: calc(45vw - 16px);
    max-width: 160px;
    padding: var(--space-sm) var(--space-md);
  }

  .reederei-tile picture {
    height: 48px;
    margin-bottom: var(--space-sm);
  }
}


/* ============================================================
   REISE-DESIGNER TEASER
   ============================================================ */
.rd-teaser {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-dark-bg);
}

.rd-teaser__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.rd-teaser__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rd-teaser__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 15, 20, 0.6) 0%,
    rgba(11, 15, 20, 0.85) 100%
  );
}

.rd-teaser__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-3xl) var(--container-padding);
}

.rd-teaser__title {
  font-family: var(--font-headline);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
  padding-bottom: 0;
}

.rd-teaser__title::after {
  display: none;
}

.rd-teaser__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
}

.rd-teaser__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.rd-teaser__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--color-gold-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.rd-teaser__chip:hover {
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
}

.rd-teaser__chip[aria-pressed="true"] {
  background: var(--color-gold-gradient);
  color: var(--color-navy);
  font-weight: var(--weight-semibold);
  border-color: var(--color-gold);
}

.rd-teaser__chip[aria-pressed="true"]:hover {
  background: linear-gradient(135deg, #D4B96A 0%, #E0C87A 50%, #D4B96A 100%);
}

.rd-teaser__chip--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.rd-teaser__cta {
  margin-bottom: var(--space-lg);
}

.rd-teaser__cta .btn {
  font-size: var(--text-lg);
  padding: 1rem 2.5rem;
}

.rd-teaser__proof {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .rd-teaser__title {
    font-size: var(--text-3xl);
  }

  .rd-teaser__subtitle {
    font-size: var(--text-base);
  }

  .rd-teaser__chips {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 16px;
  }

  .rd-teaser__chip {
    font-size: 0.8rem;
    padding: 10px 8px;
  }

  .rd-teaser__cta .btn {
    font-size: var(--text-base);
    padding: 0.75rem 1.5rem;
  }
}


/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  height: 60px;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding-inline: var(--container-padding);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-contact--visible {
  transform: translateY(0);
}

.sticky-contact__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.sticky-contact__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.sticky-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.sticky-contact__btn:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.sticky-contact__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sticky-contact__btn--whatsapp:hover {
  background: #25D366;
  color: var(--color-white);
}

@media (max-width: 768px) {
  .sticky-contact__label {
    display: none;
  }

  .sticky-contact__actions {
    width: 100%;
    justify-content: space-around;
  }

  .sticky-contact__btn span {
    display: none;
  }

  .sticky-contact__btn {
    padding: 10px;
    border-radius: var(--radius-full);
  }

  .sticky-contact__btn svg {
    width: 20px;
    height: 20px;
  }
}

/* WhatsApp floating button above sticky bar */
.sticky-contact--visible ~ .whatsapp-btn,
body.sticky-bar-visible .whatsapp-btn {
  bottom: 80px;
}
