/* ========================================================
   DESIGN TOKENS
   ======================================================== */
:root {
  --navy:    #0b0f1e;
  --navy-2:  #111827;
  --navy-3:  #1a2235;
  --red:     #cc1420;
  --red-2:   #e01e30;
  --white:   #ffffff;
  --off-white: #f5f7fa;
  --muted:   rgba(255,255,255,0.6);
  --border:  rgba(255,255,255,0.12);
  --gold:    #f5c842;

  --font-head: 'Lexend', 'IBM Plex Sans', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* ========================================================
   RESET & BASE
   ======================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========================================================
   TYPOGRAPHY UTILITIES
   ======================================================== */
.tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.tag-gold {
  background: var(--gold);
  color: var(--navy);
}
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.btn:active { transform: scale(0.97); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(204,20,32,0.45);
}
.btn-red:hover { background: var(--red-2); box-shadow: 0 6px 32px rgba(204,20,32,0.6); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-dark:hover { background: var(--red); }

.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn-pulse {
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(204,20,32,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(204,20,32,0.85); }
}

/* ========================================================
   CONTAINER
   ======================================================== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========================================================
   STICKY HEADER
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,30,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}
.logo { font-family: var(--font-head); font-weight: 700; }
.logo-main  { font-size: 1.15rem; display: block; }
.logo-sub   { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

.header-nav { display: flex; gap: 1.5rem; }
.header-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.header-nav a:hover { color: var(--white); }

.header-right { display: flex; align-items: center; gap: 1.25rem; }
.phone-link { font-weight: 700; font-size: 1rem; white-space: nowrap; }
.phone-link:hover { color: var(--gold); }

/* Mobile nav */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  text-align: left;
}
.mobile-menu .btn { margin-top: 1rem; border-bottom: none; width: 100%; }

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(204,20,32,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 1.25rem 4rem;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}
.hero-text { position: relative; z-index: 2; }
.hero-kicker { color: var(--red); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 520px; line-height: 1.7; }
.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(204,20,32,0.15);
  border: 1px solid rgba(204,20,32,0.4);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
}
.hero-price-badge strong { font-size: 1.5rem; color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: -20px 20px 80px rgba(0,0,0,0.6);
}
/* Floating stat chips */
.stat-chip {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: floatChip 3s ease-in-out infinite;
}
.stat-chip .chip-num { font-size: 1.2rem; color: var(--red); }
.stat-chip:nth-child(2) { animation-delay: 0.8s; }
.stat-chip:nth-child(3) { animation-delay: 1.6s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.chip-1 { top: 12%; left: -10%; }
.chip-2 { bottom: 20%; left: -8%; }
.chip-3 { top: 30%; right: -8%; }

/* ========================================================
   TELESHOPPING SECTIONS (alternating)
   ======================================================== */
.ts-section {
  padding: 0;
  overflow: hidden;
}
.ts-section--dark { background: var(--navy-2); }
.ts-section--darker { background: var(--navy); }
.ts-section--red   { background: var(--red); }
.ts-section--light { background: var(--off-white); color: var(--navy); }

.ts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.ts-inner--reverse { direction: rtl; }
.ts-inner--reverse > * { direction: ltr; }

/* Image pane */
.ts-img-pane {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.ts-img-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.ts-img-pane:hover img { transform: scale(1.03); }

/* Infographic overlay cards - built in CSS/HTML, not on photo */
.infographic-overlay {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11,15,30,0.92);
  border: 1px solid rgba(204,20,32,0.5);
  border-radius: 12px;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}
.ts-section--light .infographic-overlay { background: rgba(255,255,255,0.92); border-color: rgba(204,20,32,0.4); }

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.info-cell {
  text-align: center;
  padding: 0.5rem;
}
.info-cell .val { font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; }
.info-cell .lbl { font-size: 0.72rem; color: var(--muted); }
.ts-section--light .info-cell .lbl { color: rgba(0,0,0,0.5); }

/* Text pane */
.ts-text-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
}
.ts-section--light .ts-text-pane { color: var(--navy); }
.ts-section--red   .ts-text-pane { color: var(--white); }

.ts-number {
  font-size: 5rem;
  font-weight: 900;
  font-family: var(--font-head);
  line-height: 1;
  opacity: 0.08;
  margin-bottom: -2rem;
  display: block;
}
.ts-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.ts-title em { color: var(--red); font-style: normal; }
.ts-section--red   .ts-title em { color: var(--gold); }
.ts-section--light .ts-title em { color: var(--red); }

.ts-body { font-size: 1rem; line-height: 1.75; opacity: 0.85; margin-bottom: 2rem; }

.proof-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.proof-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; line-height: 1.5; }
.proof-list li::before { content: '✓'; color: var(--gold); font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.ts-section--light .proof-list li::before { color: var(--red); }

/* ========================================================
   FEAR STRIP (red full-width banner)
   ======================================================== */
.fear-strip {
  background: var(--red);
  padding: 3rem 1.25rem;
  text-align: center;
}
.fear-strip h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.fear-strip p { font-size: 1.1rem; opacity: 0.9; max-width: 680px; margin: 0 auto 2rem; }

/* ========================================================
   PRICE SECTION
   ======================================================== */
.price-section {
  background: var(--navy-3);
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,20,32,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--red), #8b0a13);
  border-radius: 20px;
  padding: 2.5rem 4rem;
  margin: 2rem auto;
  position: relative;
}
.price-old { font-size: 1.1rem; text-decoration: line-through; opacity: 0.6; }
.price-new { font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; font-family: var(--font-head); }
.price-per { font-size: 1rem; opacity: 0.8; }
.price-note { font-size: 0.85rem; margin-top: 0.5rem; opacity: 0.65; }

/* ========================================================
   BOOKING FORM
   ======================================================== */
.booking-section {
  background: var(--navy-2);
  padding: 5rem 1.25rem;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.booking-left h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.booking-left p  { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }

.booking-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
.form-control:focus { outline: none; border-color: var(--red); }
.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-control option { background: var(--navy-2); }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Calendar */
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.cal-nav { background: rgba(255,255,255,0.08); border: none; color: var(--white); border-radius: 6px; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; transition: background 0.2s; }
.cal-nav:hover { background: rgba(255,255,255,0.15); }
.cal-month { font-weight: 600; font-size: 0.9rem; }
.cal-grid-head { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-size: 0.7rem; color: var(--muted); margin-bottom: 0.35rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 1rem; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: var(--white);
  background: transparent;
  border: none;
}
.cal-day:hover:not(.cal-day--empty):not(.cal-day--past) { background: rgba(204,20,32,0.3); }
.cal-day--empty { cursor: default; background: transparent; }
.cal-day--past  { opacity: 0.35; color: rgba(255, 255, 255, 0.4); cursor: not-allowed; background: transparent; }
.cal-day--today { border: 1px solid rgba(204,20,32,0.6); }
.cal-day--selected { background: var(--red) !important; color: var(--white) !important; font-weight: 700; }

.timeslots { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.slot-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.slot-btn:hover  { background: rgba(204,20,32,0.2); border-color: var(--red); }
.slot-btn.active { background: var(--red); border-color: var(--red); }
.slot-placeholder { font-size: 0.8rem; color: var(--muted); font-style: italic; }

.consent-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 1.25rem; }
.consent-row input { margin-top: 3px; accent-color: var(--red); flex-shrink: 0; }
.consent-row label { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.consent-row a { color: rgba(255,255,255,0.6); text-decoration: underline; }

.field-err { display: block; color: #ff6b6b; font-size: 0.78rem; margin-top: -0.75rem; margin-bottom: 0.75rem; }

/* ========================================================
   MODAL DIALOG
   ======================================================== */
.modal-dialog {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--navy-3);
  color: var(--white);
  padding: 0;
  max-width: 540px;
  width: 90%;
  box-shadow: var(--shadow);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 1000;
}
.modal-dialog::backdrop {
  background: rgba(6, 8, 16, 0.85);
  backdrop-filter: blur(8px);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  font-size: 1.2rem;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
}
.close-modal-x {
  font-size: 1.8rem;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.close-modal-x:hover {
  color: var(--white);
}
.modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}

/* ========================================================
   SUCCESS DIALOG
   ======================================================== */
dialog.success-dialog {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--white);
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: #060810;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand .logo-main { font-size: 1.05rem; margin-bottom: 0.25rem; }
.footer-legal { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 420px; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end; text-align: right; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }

/* ========================================================
   SCROLL-TO-TOP
   ======================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 90;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(204,20,32,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ========================================================
   COOKIE BANNER
   ======================================================== */
.cookie {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 200;
  transition: transform 0.4s ease, opacity 0.4s;
}
.cookie.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie p { font-size: 0.82rem; color: var(--muted); flex: 1; line-height: 1.5; }
.cookie p a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.cookie .btn { flex-shrink: 0; padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ========================================================
   SECTION DIVIDER
   ======================================================== */
.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

/* ========================================================
   REVEAL ANIMATION
   ======================================================== */
.reveal { opacity: 1; transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; }

/* ========================================================
   RESPONSIVE — TABLET
   ======================================================== */
@media (max-width: 900px) {
  .ts-inner { grid-template-columns: 1fr; min-height: auto; }
  .ts-inner--reverse { direction: ltr; }
  .ts-img-pane { min-height: 380px; }
  .ts-text-pane { padding: 2.5rem 1.5rem; }
  .ts-number { font-size: 3rem; margin-bottom: -1.5rem; }
  .booking-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { align-items: flex-start; text-align: left; }
}

/* ========================================================
   6 TRAPS ACCORDION / CARDS (LandingPageV2)
   ======================================================== */
.traps-list-container {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1.25rem;
}
.trap-accordion-item {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.trap-accordion-item:hover {
  border-color: rgba(204,20,32,0.4);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.trap-accordion-trigger {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
}
.trap-accordion-trigger span.num {
  color: var(--red);
  margin-right: 0.75rem;
  font-weight: 800;
}
.trap-accordion-trigger .chevron {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--muted);
}
.trap-accordion-item.open .trap-accordion-trigger .chevron {
  transform: rotate(180deg);
  color: var(--white);
}
.trap-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 2rem;
}
.trap-accordion-item.open .trap-accordion-content {
  max-height: 800px;
  padding: 0 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
}
.trap-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.trap-story-box {
  background: rgba(204,20,32,0.05);
  border-left: 4px solid var(--red);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
}
.trap-solution-box {
  background: rgba(245,200,66,0.05);
  border-left: 4px solid var(--gold);
  padding: 1.25rem;
  border-radius: 0 8px 8px 0;
}
.trap-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: block;
}
.trap-story-box .trap-box-title { color: #ff6b6b; }
.trap-solution-box .trap-box-title { color: var(--gold); }

.trap-story-box p, .trap-solution-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .trap-details-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .trap-accordion-trigger { padding: 1.25rem 1.5rem; font-size: 1.05rem; }
  .trap-accordion-item.open .trap-accordion-content { padding: 0 1.5rem 1.5rem; padding-top: 1.25rem; }
}

/* ========================================================
   RESPONSIVE — MOBILE
   ======================================================== */
@media (max-width: 640px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-right .btn { display: none; }
  .header-right .phone-link { font-size: 0.85rem; }

  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 3rem 1.25rem 2rem; gap: 1.5rem; }
  .hero-photo-wrap { order: -1; }
  .hero-photo { max-height: 50vw; border-radius: 10px; }
  .chip-1, .chip-2, .chip-3 { display: none; }

  .hero-price-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }
  .hero-price-badge strong {
    white-space: nowrap;
  }
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
  }

  .ts-img-pane { min-height: 260px; }
  .ts-text-pane { padding: 2rem 1.25rem; }

  .price-tag { padding: 2rem 2rem; }
  .price-new { font-size: 3rem; }

  .booking-card { padding: 1.25rem; }
  .fear-strip h2 { font-size: 1.4rem; }
  .cookie { flex-direction: column; }
  .infographic-overlay { position: static; border-radius: 0; }
  .infographic-grid { grid-template-columns: repeat(4,1fr); }
}
