/* ============================================
   EXPLORIA RESORTS – POCONOS CAMPAIGN
   Plain CSS (converted from Tailwind/React)
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; color: #111; background: #fff; overflow-x: hidden; min-height: 100dvh; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --teal: #0E827A;
  --teal-dark: #0E5E58;
  --teal-call: #1A9B96;
  --teal-light: #d4f0ee;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --green: #00897b;
  --yellow: #F5E531;
  --yellow-hover: #E5D521;
  --amber: #f59e0b;
  --amber-50: #fffbeb;
  --dark: #222222;
  --gray-50: #F9FAFC;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --nav-bp: 1120px;
  --radius: 1rem;
}

/* ---------- Utility ---------- */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container, .container-sm, .container-md { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container, .container-sm, .container-md { padding: 0 2rem; } }

.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Scroll Animations ---------- */
.scroll-animate { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-animate.visible { opacity: 1; transform: translateY(0); }
.scroll-fade { opacity: 0; transition: opacity 1s ease-out; }
.scroll-fade.visible { opacity: 1; }
.scroll-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-left.visible { opacity: 1; transform: translateX(0); }
.scroll-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-right.visible { opacity: 1; transform: translateX(0); }
.scroll-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.scroll-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: #fff; box-shadow: 0 1px 8px rgba(0,0,0,0.1); z-index: 50;
}
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
@media (min-width: 640px) { .nav-inner { height: 5rem; padding: 0 1.5rem; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 2rem; } }

.nav-logo { height: 2.5rem; width: auto; }
@media (min-width: 640px) { .nav-logo { height: 3rem; } }

.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1120px) { .nav-links { display: flex; } }

.nav-link {
  font-weight: 600; font-size: 0.875rem; color: var(--gray-700);
  transition: color 0.2s; background: none; border: none; cursor: pointer;
  font-family: inherit; letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--teal); }

.nav-phone {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--yellow); color: var(--dark);
  padding: 0.6rem 1.25rem; border-radius: 9999px; font-weight: 700;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  min-height: 44px;
}
.nav-phone:hover { background: var(--yellow-hover); transform: scale(1.04); }
.nav-phone-icon {
  width: 2.75rem; height: 2.75rem; background: var(--teal-call); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-phone-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.nav-phone-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-call); display: block; line-height: 1; }
.nav-phone-number { font-size: 1.25rem; font-weight: 700; color: var(--dark); display: block; line-height: 1.2; }

.nav-hamburger { display: flex; align-items: center; justify-content: center; color: var(--gray-700); padding: 0.5rem; }
@media (min-width: 1120px) { .nav-hamburger { display: none; } }
.nav-hamburger svg { width: 1.5rem; height: 1.5rem; }

.nav-mobile {
  display: none; background: #fff; border-top: 1px solid var(--gray-200);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.nav-mobile-link {
  display: block; text-align: left; font-weight: 600; padding: 0.75rem 0;
  min-height: 44px; color: var(--gray-700); border: none; background: none;
  font-family: inherit; cursor: pointer; width: 100%; font-size: 0.9375rem;
}
.nav-mobile-link:hover { color: var(--teal); }
.nav-mobile-phone {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--yellow); color: var(--dark);
  padding: 0.6rem 1.25rem; border-radius: 9999px; font-weight: 700;
  min-height: 44px; margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 100dvh;
  display: grid; grid-template-columns: 1fr; padding-top: 4rem;
}
@media (min-width: 640px) { .hero { padding-top: 5rem; } }
@media (min-width: 1024px) { .hero { grid-template-columns: 1fr 1fr; padding-top: 0; } }

.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right; }
.hero-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); }

/* Center badge (desktop) */
.hero-badge-center {
  display: none; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 20; pointer-events: none;
}
@media (min-width: 1024px) { .hero-badge-center { display: flex; } }
.hero-badge-center img { width: 300px; height: 300px; object-fit: contain; filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4)); }

/* Left panel (desktop only text) */
.hero-left {
  position: relative; z-index: 10;
  display: none; align-items: center; justify-content: center;
  padding: 3.5rem; min-height: 100dvh;
}
@media (min-width: 1024px) { .hero-left { display: flex; } }
.hero-left-content { text-align: left; }
.hero-badge-tag {
  display: inline-block; background: var(--green); color: #fff;
  padding: 0.35rem 0.75rem; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; border-radius: 4px; margin-bottom: 1rem;
}
.hero-title {
  font-size: 3.75rem; font-weight: 900; color: #fff;
  line-height: 0.95; letter-spacing: -0.05em; margin-bottom: 0.75rem;
}
@media (min-width: 1280px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle { color: rgba(255,255,255,0.82); font-size: 1.125rem; font-weight: 500; margin-bottom: 1.5rem; }

/* Right panel */
.hero-right {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) {
  .hero-right { min-height: 100dvh; }
  .hero-right::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.89); backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255,255,255,0.2);
  }
}

/* Mobile hero layout */
.hero-mobile { width: 100%; }
@media (min-width: 1024px) { .hero-mobile { display: none; } }

.hero-mobile-top {
  position: relative; padding: 1.5rem 1rem 3rem;
  text-align: center;
}
.hero-mobile-title {
  font-size: 2.5rem; font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 0.5rem;
}
.hero-mobile-subtitle { color: rgba(255,255,255,0.9); font-size: 1.0625rem; font-weight: 500; margin-bottom: 2rem; }
.hero-mobile-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--yellow); color: var(--dark);
  padding: 1rem 2.5rem; border-radius: 9999px;
  font-size: 0.9375rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25); transition: background 0.2s;
}
.hero-mobile-cta:hover { background: var(--yellow-hover); }
.hero-mobile-cta svg { width: 1.25rem; height: 1.25rem; }

.hero-badge-mobile-wrap {
  display: flex; justify-content: center;
  margin-bottom: -4rem; position: relative; z-index: 30;
}
.hero-badge-mobile-wrap img { width: 200px; height: 200px; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35)); }

.hero-card {
  background: #fff; border-radius: 1.5rem 1.5rem 0 0; padding: 5rem 1.5rem 2rem;
}
@media (min-width: 1024px) {
  .hero-card {
    background: transparent; border-radius: 0; padding: 2rem 2.5rem;
    position: relative; z-index: 10; width: 100%; max-width: 32rem;
  }
}

.hero-greeting { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.hero-greeting strong { color: var(--green); }
.hero-headline {
  font-size: 2rem; font-weight: 900; color: var(--gray-900);
  line-height: 1.15; margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .hero-headline { font-size: 2.5rem; } }
@media (min-width: 1280px) { .hero-headline { font-size: 3rem; } }

.hero-price {
  display: flex; align-items: flex-end; gap: 0.5rem; margin-bottom: 1.75rem;
}
@media (min-width: 1024px) { .hero-price { justify-content: flex-start; } }
@media (max-width: 1023px) { .hero-price { justify-content: center; } }

.hero-price-dollar { font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; margin-top: 0.5rem; }
.hero-price-amount { font-size: 4.5rem; font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.08em; }
@media (min-width: 1024px) { .hero-price-amount { font-size: 5.5rem; } }
.hero-price-labels { display: flex; flex-direction: column; gap: 2px; padding-bottom: 0.25rem; }
.hero-price-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); }
.hero-price-badge {
  background: var(--green); color: #fff; font-size: 0.55rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem; border-radius: 9999px; margin-top: 4px;
}
@media (min-width: 1024px) { .hero-price-badge { font-size: 0.6rem; } }

.hero-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.hero-feature { display: flex; align-items: center; gap: 1rem; }
.hero-feature-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-feature-icon svg { width: 1.25rem; height: 1.25rem; color: #059669; }
.hero-feature-text { color: var(--gray-700); font-size: 0.875rem; }
.hero-feature-text strong { color: var(--gray-900); }
.hero-feature-text.bonus { color: #059669; font-weight: 600; }

.hero-deadline {
  background: rgba(251,191,36,0.15); border: 1.5px dashed rgba(245,158,11,0.5);
  border-radius: 0.75rem; padding: 0.875rem 1rem;
  display: flex; align-items: flex-start; gap: 0.625rem; margin-bottom: 1.5rem;
}
.hero-deadline svg { width: 1.25rem; height: 1.25rem; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.hero-deadline p { color: var(--gray-700); font-size: 0.9375rem; line-height: 1.5; }
.hero-deadline strong { color: #b45309; }

.hero-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; background: var(--yellow); color: var(--dark);
  padding: 1.25rem; border-radius: 9999px;
  font-size: 1.0625rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(245,229,49,0.35); transition: background 0.2s, transform 0.2s;
}
.hero-cta-btn:hover { background: var(--yellow-hover); transform: translateY(-2px); }
.hero-cta-btn svg { width: 1.25rem; height: 1.25rem; }
.hero-cta-note { text-align: center; color: var(--gray-400); font-size: 0.75rem; letter-spacing: 0.05em; margin-top: 0.875rem; }

/* ============================================
   YELLOW BAR
   ============================================ */
.yellow-bar {
  background: var(--yellow); padding: 1rem 2rem;
}
.yellow-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--dark); font-size: 0.875rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.12em;
}
@media (min-width: 1024px) { .yellow-bar-inner { font-size: 1rem; } }
.yellow-bar-inner svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

/* ============================================
   SCROLLING GALLERY
   ============================================ */
.gallery-section { padding: 3rem 0; background: #fff; overflow: hidden; }
.gallery-header { max-width: 80rem; margin: 0 auto; padding: 0 1rem 2rem; }
@media (min-width: 640px) { .gallery-header { padding: 0 1.5rem 2rem; } }
.gallery-header p { color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.5rem; }
.gallery-header h2 { font-size: 2rem; font-weight: 700; color: var(--gray-900); }
@media (min-width: 768px) { .gallery-header h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .gallery-header h2 { font-size: 3rem; } }

.gallery-track-wrap { position: relative; overflow: hidden; }
.gallery-track {
  display: flex; gap: 1.5rem; padding-bottom: 2rem;
  width: max-content; will-change: transform;
}
.gallery-item {
  flex-shrink: 0; width: 18rem; cursor: pointer;
}
@media (min-width: 768px) { .gallery-item { width: 20rem; } }
@media (min-width: 1024px) { .gallery-item { width: 24rem; } }
.gallery-img-wrap {
  position: relative; height: 14rem; border-radius: 1rem;
  overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) { .gallery-img-wrap { height: 16rem; } }
@media (min-width: 1024px) { .gallery-img-wrap { height: 18rem; } }
.gallery-item:hover .gallery-img-wrap { box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
.gallery-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; display: block;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.08); }
.gallery-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.gallery-img-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
  color: #fff; font-weight: 600; font-size: 1.0625rem;
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-img-label { transform: translateY(-4px); }
.gallery-img-num {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8125rem; font-weight: 700;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-img-num { opacity: 1; }
.gallery-fade-left {
  position: absolute; left: 0; top: 0; bottom: 2rem; width: 4rem;
  background: linear-gradient(to right, #fff, transparent); pointer-events: none;
}
.gallery-fade-right {
  position: absolute; right: 0; top: 0; bottom: 2rem; width: 4rem;
  background: linear-gradient(to left, #fff, transparent); pointer-events: none;
}

/* ============================================
   OFFER SHOWCASE
   ============================================ */
.offer-section { background: var(--gray-50); }
.offer-inner { padding: 4rem 0; }
@media (min-width: 640px) { .offer-inner { padding: 5rem 0; } }
@media (min-width: 1024px) { .offer-inner { padding: 6rem 0; } }

.offer-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-50); color: var(--teal-700);
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 1.5rem;
}
.offer-tag svg { width: 1rem; height: 1rem; }
.offer-title {
  font-size: 1.5rem; font-weight: 700; color: var(--gray-900);
  margin-bottom: 0.75rem; padding: 0 1rem;
  line-height: 1.25;
}
@media (min-width: 640px) { .offer-title { font-size: 1.875rem; padding: 0; } }
@media (min-width: 768px) { .offer-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .offer-title { font-size: 2.75rem; } }
.offer-title span { color: var(--teal-600); }
.offer-desc { font-size: 0.9375rem; color: var(--gray-600); max-width: 48rem; margin: 0 auto; padding: 0 1rem; line-height: 1.7; }
@media (min-width: 640px) { .offer-desc { font-size: 1.0625rem; padding: 0; } }

.inclusions-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 3rem;
}
@media (min-width: 1024px) { .inclusions-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.inclusion-card {
  background: #fff; border-radius: 1rem; padding: 1.25rem;
  border: 2px solid var(--gray-200); box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
@media (min-width: 640px) { .inclusion-card { padding: 1.5rem; } }
.inclusion-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--teal-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.875rem;
}
@media (min-width: 640px) { .inclusion-icon { width: 3.5rem; height: 3.5rem; } }
.inclusion-icon svg { width: 1.5rem; height: 1.5rem; color: var(--teal-600); }
@media (min-width: 640px) { .inclusion-icon svg { width: 1.75rem; height: 1.75rem; } }
.inclusion-title { font-weight: 700; color: var(--gray-900); font-size: 0.9375rem; margin-bottom: 0.25rem; line-height: 1.3; }
@media (min-width: 640px) { .inclusion-title { font-size: 1.0625rem; } }
.inclusion-desc { color: var(--gray-500); font-size: 0.75rem; margin-bottom: 0.625rem; line-height: 1.5; }
@media (min-width: 640px) { .inclusion-desc { font-size: 0.8125rem; } }
.inclusion-value { font-size: 0.8125rem; font-weight: 600; color: var(--gray-400); }

.offer-main-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; align-items: stretch;
}
@media (min-width: 1024px) { .offer-main-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (min-width: 1280px) { .offer-main-grid { gap: 4rem; } }

/* Showcase Carousel */
.showcase-carousel { position: relative; display: flex; flex-direction: column; }
.showcase-img-wrap {
  position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2); flex: 1; min-height: 300px;
}
@media (min-width: 1024px) { .showcase-img-wrap { min-height: 0; } }
.showcase-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity 0.6s ease;
}
.showcase-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.showcase-controls {
  position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
@media (min-width: 640px) { .showcase-controls { bottom: 1.5rem; left: 1.5rem; right: 1.5rem; } }
.showcase-label {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border-radius: 0.75rem; padding: 0.5rem 0.875rem;
}
.showcase-label p { color: var(--gray-900); font-weight: 600; font-size: 0.875rem; }
.showcase-label span { color: var(--gray-500); font-size: 0.75rem; }
.showcase-btns { display: flex; gap: 0.5rem; }
.showcase-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: background 0.2s;
}
@media (min-width: 640px) { .showcase-btn { width: 3rem; height: 3rem; } }
.showcase-btn:hover { background: #fff; }
.showcase-btn svg { width: 1rem; height: 1rem; color: var(--gray-700); }
@media (min-width: 640px) { .showcase-btn svg { width: 1.25rem; height: 1.25rem; } }

.showcase-thumbs {
  display: flex; gap: 0.5rem; margin-top: 1rem;
  overflow-x: auto; padding: 0.5rem 0.25rem;
  scrollbar-width: none;
}
.showcase-thumbs::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .showcase-thumbs { gap: 0.75rem; } }
.thumb-btn {
  flex-shrink: 0; border-radius: 0.5rem; overflow: hidden;
  transition: opacity 0.2s; opacity: 0.6;
}
.thumb-btn.active { opacity: 1; box-shadow: 0 0 0 2px var(--teal-600), 0 0 0 4px rgba(13,148,136,0.15); }
.thumb-btn:hover { opacity: 0.9; }
.thumb-btn img { width: 6rem; aspect-ratio: 4/3; object-fit: cover; display: block; }
@media (min-width: 640px) { .thumb-btn img { width: 8rem; } }

/* Pricing Card */
.pricing-card {
  background: #fff; border-radius: 1rem; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden; display: flex; flex-direction: column;
}
@media (min-width: 640px) { .pricing-card { border-radius: 1.5rem; } }
.pricing-header {
  background: linear-gradient(to right, var(--teal-dark), var(--teal));
  padding: 1.25rem 1.5rem; color: #fff;
}
@media (min-width: 640px) { .pricing-header { padding: 1.5rem; } }
.pricing-header p { color: rgba(167,243,218,0.9); font-size: 0.8125rem; font-weight: 500; margin-bottom: 0.25rem; }
.pricing-amount { display: flex; align-items: baseline; gap: 0.5rem; }
.pricing-amount span:first-child { font-size: 2.5rem; font-weight: 700; }
@media (min-width: 640px) { .pricing-amount span:first-child { font-size: 3rem; } }
@media (min-width: 768px) { .pricing-amount span:first-child { font-size: 3.5rem; } }
.pricing-amount .sub { color: rgba(167,243,218,0.9); font-size: 0.75rem; }
@media (min-width: 640px) { .pricing-amount .sub { font-size: 0.8125rem; } }
.pricing-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 640px) { .pricing-body { padding: 1.5rem; } }
.pricing-list { display: flex; flex-direction: column; gap: 0; flex: 1; }
.pricing-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0; border-bottom: 1px solid var(--gray-100);
}
@media (min-width: 640px) { .pricing-row { gap: 0.875rem; padding: 0.875rem 0; } }
.pricing-row-icon {
  width: 2.25rem; height: 2.25rem; background: var(--teal-50);
  border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 640px) { .pricing-row-icon { width: 2.5rem; height: 2.5rem; } }
.pricing-row-icon svg { width: 1rem; height: 1rem; color: var(--teal-600); }
@media (min-width: 640px) { .pricing-row-icon svg { width: 1.25rem; height: 1.25rem; } }
.pricing-row-text { font-weight: 500; color: var(--gray-900); flex: 1; font-size: 0.875rem; }
@media (min-width: 640px) { .pricing-row-text { font-size: 1rem; } }
.pricing-row-val { color: var(--gray-500); font-size: 0.75rem; white-space: nowrap; }
@media (min-width: 640px) { .pricing-row-val { font-size: 0.8125rem; } }
.pricing-deposit {
  background: var(--amber-50); border-radius: 0.75rem; padding: 0.875rem 1rem;
  display: flex; align-items: center; gap: 1rem; margin-top: 1rem;
}
@media (min-width: 640px) { .pricing-deposit { padding: 1rem; gap: 1rem; } }
.pricing-deposit-icon {
  width: 2.5rem; height: 2.5rem; background: #fbbf24; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
@media (min-width: 640px) { .pricing-deposit-icon { width: 3rem; height: 3rem; } }
.pricing-deposit-icon span { font-size: 1.125rem; font-weight: 700; color: #fff; }
@media (min-width: 640px) { .pricing-deposit-icon span { font-size: 1.25rem; } }
.pricing-deposit-text { flex: 1; }
.pricing-deposit-text p:first-child { font-weight: 700; color: var(--gray-900); font-size: 0.9375rem; }
@media (min-width: 640px) { .pricing-deposit-text p:first-child { font-size: 1.0625rem; } }
.pricing-deposit-text p:last-child { color: var(--gray-600); font-size: 0.75rem; }
@media (min-width: 640px) { .pricing-deposit-text p:last-child { font-size: 0.8125rem; } }
.pricing-deposit-amount { text-align: right; }
.pricing-deposit-amount p:first-child { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 2px; }
.pricing-deposit-amount p:last-child { font-size: 1.5rem; font-weight: 700; color: #d97706; }
@media (min-width: 640px) { .pricing-deposit-amount p:last-child { font-size: 1.875rem; } }
.pricing-cta-wrap { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-cta {
  display: block; width: 100%; background: var(--yellow); color: var(--dark);
  font-weight: 700; padding: 0.875rem; border-radius: 0.75rem; text-align: center;
  transition: background 0.2s; font-size: 0.9375rem; box-shadow: 0 4px 20px rgba(245,229,49,0.25);
}
@media (min-width: 640px) { .pricing-cta { padding: 1rem; font-size: 1.0625rem; } }
.pricing-cta:hover { background: var(--yellow-hover); }
.pricing-cta-note { text-align: center; color: var(--gray-500); font-size: 0.75rem; }
@media (min-width: 640px) { .pricing-cta-note { font-size: 0.8125rem; } }
.pricing-cta-note strong { color: var(--teal); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section {
  position: relative; padding: 5rem 0; overflow: hidden;
}
.hiw-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.6)); }
.hiw-inner { position: relative; z-index: 1; }
.hiw-header { text-align: center; margin-bottom: 3rem; }
.hiw-header p { color: #5eead4; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.875rem; margin-bottom: 0.75rem; }
.hiw-header h2 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 640px) { .hiw-header h2 { font-size: 2.5rem; } }
@media (min-width: 768px) { .hiw-header h2 { font-size: 3rem; } }
.hiw-header p.desc { color: rgba(255,255,255,0.9); font-size: 1.0625rem; max-width: 40rem; margin: 0 auto; }

.hiw-card {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-radius: 1.5rem; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .hiw-card { padding: 3rem; } }
.hiw-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 768px) { .hiw-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .hiw-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.hiw-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hiw-step-icon-wrap { position: relative; margin-bottom: 1.5rem; }
.hiw-step-icon {
  width: 5rem; height: 5rem; border-radius: 1rem;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(13,148,136,0.3);
}
.hiw-step-icon svg { width: 2.25rem; height: 2.25rem; color: #fff; }
.hiw-step-num {
  position: absolute; bottom: -8px; right: -8px;
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; color: #000; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hiw-step h3 { font-weight: 700; color: var(--gray-900); font-size: 1.0625rem; margin-bottom: 0.75rem; }
.hiw-step p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; }

.hiw-cta { text-align: center; }
.hiw-cta a {
  display: inline-block; background: var(--yellow); color: var(--dark);
  padding: 1rem 3rem; border-radius: 0.75rem; font-size: 1.0625rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hiw-cta a:hover { background: var(--yellow-hover); transform: scale(1.04); }

/* ============================================
   ACCOMMODATIONS
   ============================================ */
.accom-section { padding: 5rem 0; background: #f5f5f5; overflow: hidden; }
.accom-header { text-align: center; margin-bottom: 4rem; }
.accom-header p { color: var(--teal-600); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem; }
.accom-header h2 { font-size: 2rem; font-weight: 700; color: var(--gray-900); }
@media (min-width: 768px) { .accom-header h2 { font-size: 2.75rem; } }
@media (min-width: 1024px) { .accom-header h2 { font-size: 3.5rem; } }

.accom-card { padding: 4rem 0; }
.accom-card.alt { background: #f5f5f5; }
.accom-card-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
@media (min-width: 1024px) { .accom-card-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* Card image with carousel */
.accom-img-wrap {
  position: relative; height: 24rem; border-radius: 1rem;
  overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
@media (min-width: 1024px) { .accom-img-wrap { height: 31rem; } }
.accom-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity 0.5s ease;
}
.accom-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.accom-carousel-controls {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.accom-carousel-btn {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2); transition: background 0.2s;
}
.accom-carousel-btn:hover { background: #fff; }
.accom-carousel-btn svg { width: 1.25rem; height: 1.25rem; color: var(--gray-700); }
.accom-dots { display: flex; gap: 0.5rem; }
.accom-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 9999px;
  background: rgba(255,255,255,0.5); transition: all 0.3s; border: none; cursor: pointer;
}
.accom-dot.active { background: #fff; width: 2rem; }

/* Card content */
.accom-content h3 { font-size: 2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .accom-content h3 { font-size: 2.5rem; } }
.accom-content .subtitle { color: var(--teal-600); font-weight: 600; font-size: 1.0625rem; margin-bottom: 1.5rem; }
.accom-content p { color: var(--gray-700); line-height: 1.75; font-size: 1.0625rem; margin-bottom: 2rem; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
.amenity { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-700); }
.amenity svg { width: 1.25rem; height: 1.25rem; color: var(--teal-600); flex-shrink: 0; }
.amenity span { font-size: 0.875rem; font-weight: 500; }
.accom-cta {
  display: block; width: 100%; max-width: 16rem;
  background: var(--yellow); color: var(--dark);
  padding: 1rem; border-radius: 0.5rem; text-align: center;
  font-size: 1.0625rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.accom-cta:hover { background: var(--yellow-hover); transform: scale(1.04); }
.things-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.things-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.things-dot { width: 0.5rem; height: 0.5rem; background: var(--teal-600); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }
.things-item h4 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.things-item p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.5; }

/* Reverse order for alternating layouts */
.accom-card-grid.reverse .accom-content { order: 1; }
@media (min-width: 1024px) { .accom-card-grid.reverse .accom-content { order: 1; } }
.accom-card-grid.reverse .accom-img-wrap-outer { order: 2; }

/* ============================================
   BONUS SECTION
   ============================================ */
.bonus-section {
  position: relative; padding: 8rem 0; overflow: hidden; background: #111827;
}
.bonus-bg { position: absolute; inset: 0; z-index: 0; }
.bonus-bg img { width: 100%; height: 100%; object-fit: cover; }
.bonus-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.bonus-inner { position: relative; z-index: 10; max-width: 64rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
@media (min-width: 640px) { .bonus-inner { padding: 0 1.5rem; } }
.bonus-card {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-radius: 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 3rem 2rem;
}
@media (min-width: 640px) { .bonus-card { padding: 3.5rem 3rem; } }
@media (min-width: 1024px) { .bonus-card { padding: 4rem; } }
.bonus-label { color: var(--gray-600); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; margin-bottom: 1rem; }
.bonus-label span { color: var(--green); }
.bonus-sub { color: var(--gray-800); font-size: 1.125rem; margin-bottom: 0.75rem; }
@media (min-width: 640px) { .bonus-sub { font-size: 1.25rem; } }
.bonus-title { font-size: 2.5rem; font-weight: 900; color: var(--gray-900); line-height: 1.1; margin-bottom: 2rem; }
@media (min-width: 640px) { .bonus-title { font-size: 3rem; } }
@media (min-width: 768px) { .bonus-title { font-size: 3.5rem; } }
.bonus-desc { color: var(--gray-700); line-height: 1.75; max-width: 40rem; margin: 0 auto 2.5rem; font-size: 1rem; }
@media (min-width: 640px) { .bonus-desc { font-size: 1.0625rem; } }
.bonus-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--green); color: #fff;
  padding: 1rem 2.5rem; border-radius: 9999px;
  font-weight: 700; font-size: 0.9375rem;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 8px 24px rgba(0,137,123,0.3);
}
.bonus-cta:hover { background: #00796b; transform: scale(1.04); }
.bonus-cta svg { width: 1.25rem; height: 1.25rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 6rem 0; background: var(--gray-50); overflow: hidden; }
.testimonials-header { max-width: 80rem; margin: 0 auto; padding: 0 1rem 3rem; text-align: center; }
.testimonials-header h2 { font-size: 2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
@media (min-width: 768px) { .testimonials-header h2 { font-size: 2.75rem; } }
@media (min-width: 1024px) { .testimonials-header h2 { font-size: 3rem; } }
.testimonials-header p { color: var(--gray-600); font-size: 1.0625rem; max-width: 48rem; margin: 0 auto; }

.testimonials-track {
  display: flex; gap: 1rem; overflow-x: auto; padding: 0 1rem 2rem;
  snap-type: x mandatory; scrollbar-width: none;
  scroll-snap-type: x mandatory; justify-content: center; flex-wrap: wrap;
}
@media (min-width: 640px) { .testimonials-track { gap: 1.5rem; padding: 0 1.5rem 2rem; flex-wrap: nowrap; justify-content: flex-start; } }
@media (min-width: 1024px) { .testimonials-track { padding: 0 2rem 2rem; justify-content: center; flex-wrap: wrap; } }
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex-shrink: 0; width: calc(100% - 2rem); max-width: 22rem;
  background: #fff; border-radius: 1rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.5rem; position: relative; scroll-snap-align: center;
}
@media (min-width: 640px) { .testimonial-card { width: 21.875rem; padding: 2rem; } }
.testimonial-quote-icon {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem; opacity: 0.5;
}
@media (min-width: 640px) { .testimonial-quote-icon { top: 1.5rem; right: 1.5rem; width: 3rem; height: 3rem; } }
.testimonial-quote-icon svg { width: 100%; height: 100%; }
.testimonial-quote-icon.orange svg { color: #FFFCE0; }
.testimonial-quote-icon.teal svg { color: #ccfbf1; }
.testimonial-text { color: var(--gray-700); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.testimonial-read-more {
  font-size: 0.875rem; font-weight: 600; background: none; border: none;
  cursor: pointer; margin-bottom: 1rem; padding: 0; transition: color 0.2s;
}
.testimonial-read-more.orange { color: var(--yellow); }
.testimonial-read-more.orange:hover { color: var(--yellow-hover); }
.testimonial-read-more.teal { color: var(--teal-600); }
.testimonial-read-more.teal:hover { color: var(--teal-700); }
.testimonial-divider { border-top: 1px solid var(--gray-100); padding-top: 1rem; }
.testimonial-name { font-weight: 600; color: var(--gray-900); }
.testimonial-title { font-size: 0.875rem; color: var(--gray-500); }

/* ============================================
   EXPLORE POCONOS BENTO
   ============================================ */
.bento-section { padding: 4rem 0; background: #fff; }
@media (min-width: 768px) { .bento-section { padding: 5rem 0; } }
.bento-header { text-align: center; margin-bottom: 3rem; }
.bento-header h2 { font-size: 2rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
@media (min-width: 768px) { .bento-header h2 { font-size: 2.75rem; } }
@media (min-width: 1024px) { .bento-header h2 { font-size: 3rem; } }
.bento-header p { color: var(--gray-600); font-size: 1.0625rem; max-width: 40rem; margin: 0 auto; line-height: 1.65; }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 180px;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 1.25rem;
  }
}

.bento-item {
  position: relative; border-radius: 1rem; overflow: hidden;
  cursor: pointer; group: true;
}
.bento-item.col-span-2 { grid-column: span 2; }
.bento-item.row-span-2 { grid-row: span 2; }
/* On mobile: item 6 spans 2 cols; on desktop it's single col */
.bento-item[data-id="6"] { grid-column: span 2; }
@media (min-width: 768px) { .bento-item[data-id="6"] { grid-column: span 1; } }

.bento-item img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.bento-item:hover img { transform: scale(1.06); }
.bento-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent); }
.bento-item-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; z-index: 10;
}
@media (min-width: 768px) { .bento-item-content { padding: 1.5rem; } }
.bento-item-title-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .bento-item-title-row { margin-bottom: 0.5rem; } }
.bento-item-title-row svg { width: 1rem; height: 1rem; color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .bento-item-title-row svg { width: 1.25rem; height: 1.25rem; } }
.bento-item-title { font-size: 0.875rem; font-weight: 700; color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .bento-item-title { font-size: 1.25rem; } }
.bento-item-text { font-size: 0.75rem; color: rgba(255,255,255,0.9); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (min-width: 768px) { .bento-item-text { font-size: 0.9375rem; } }

/* Bento Lightbox */
.bento-lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.bento-lightbox.open { display: flex; }
.bento-lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(6px); }
.bento-lightbox-content {
  position: relative; background: #fff; border-radius: 1rem;
  max-width: 40rem; width: 100%; max-height: 90vh; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  animation: zoomIn 0.25s ease-out;
}
@keyframes zoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.bento-lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 20;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s; border: none; cursor: pointer;
}
.bento-lightbox-close:hover { background: rgba(0,0,0,0.7); }
.bento-lightbox-close svg { width: 1.25rem; height: 1.25rem; }
.bento-lightbox-img { position: relative; height: 14rem; }
@media (min-width: 768px) { .bento-lightbox-img { height: 18rem; } }
.bento-lightbox-img img { width: 100%; height: 100%; object-fit: cover; }
.bento-lightbox-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent); }
.bento-lightbox-img-title {
  position: absolute; bottom: 1rem; left: 1.5rem; right: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.bento-lightbox-img-title-icon {
  padding: 0.5rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); border-radius: 0.5rem;
}
.bento-lightbox-img-title-icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.bento-lightbox-img-title h3 { font-size: 1.25rem; font-weight: 700; color: #fff; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
@media (min-width: 768px) { .bento-lightbox-img-title h3 { font-size: 1.75rem; } }
.bento-lightbox-body { padding: 1.5rem; overflow-y: auto; max-height: calc(90vh - 14rem); }
@media (min-width: 768px) { .bento-lightbox-body { max-height: calc(90vh - 18rem); } }
.bento-lightbox-desc { color: var(--gray-700); line-height: 1.65; margin-bottom: 1.5rem; }
.bento-lightbox-meta { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.bento-meta-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.bento-meta-row svg { width: 1.25rem; height: 1.25rem; color: var(--teal-600); margin-top: 2px; flex-shrink: 0; }
.bento-meta-row span { color: var(--gray-600); }
.bento-highlights { background: var(--gray-50); border-radius: 0.75rem; padding: 1rem; }
.bento-highlights h4 {
  font-weight: 600; color: var(--gray-900); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.bento-highlights h4 svg { width: 1rem; height: 1rem; }
.bento-highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.bento-highlight { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-600); font-size: 0.875rem; }
.bento-highlight-dot { width: 0.375rem; height: 0.375rem; background: #5eead4; border-radius: 50%; flex-shrink: 0; }

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-section { padding: 3rem 0; background: var(--gray-50); }
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-icon {
  width: 3.5rem; height: 3.5rem; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); margin-bottom: 1rem;
}
.trust-icon svg { width: 2rem; height: 2rem; color: var(--teal-600); }
.trust-item h3 { font-weight: 700; color: var(--gray-900); font-size: 1.0625rem; margin-bottom: 0.25rem; }
.trust-item p { color: var(--gray-600); font-size: 0.875rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 6rem 0; background: #fff; }
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header p { color: var(--teal-600); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem; }
.faq-header h2 { font-size: 2rem; font-weight: 700; color: var(--gray-900); }
@media (min-width: 768px) { .faq-header h2 { font-size: 2.75rem; } }
@media (min-width: 1024px) { .faq-header h2 { font-size: 3rem; } }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; text-align: left; background: #fff;
  transition: background 0.2s; font-family: inherit; cursor: pointer;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question-text { font-weight: 600; color: var(--gray-900); font-size: 1.0625rem; padding-right: 1rem; }
.faq-chevron { width: 1.25rem; height: 1.25rem; color: var(--gray-500); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--gray-600); line-height: 1.7; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative; padding: 4rem 0; overflow: hidden;
}
@media (min-width: 640px) { .final-cta { padding: 5rem 0; } }
@media (min-width: 768px) { .final-cta { padding: 7rem 0; } }
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.final-cta-inner { position: relative; z-index: 10; max-width: 48rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
.final-cta-inner h2 {
  font-size: 1.75rem; font-weight: 700; color: #fff; margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
@media (min-width: 640px) { .final-cta-inner h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .final-cta-inner h2 { font-size: 2.75rem; } }
@media (min-width: 1024px) { .final-cta-inner h2 { font-size: 3rem; } }
.final-cta-inner p { color: rgba(255,255,255,0.9); font-size: 1.0625rem; margin-bottom: 2.5rem; }
.final-cta-btn {
  display: block; width: 100%; max-width: 16rem; margin: 0 auto;
  background: var(--yellow); color: var(--dark);
  padding: 1.25rem; border-radius: 0.5rem; text-align: center;
  font-size: 1.0625rem; font-weight: 700;
  transition: background 0.2s, transform 0.2s; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.final-cta-btn:hover { background: var(--yellow-hover); transform: scale(1.04); }
.final-cta-note { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 0.75rem; }
.final-cta-note strong { color: var(--teal-call); }
.final-cta-details { color: rgba(255,255,255,0.9); font-size: 0.875rem; margin-top: 1rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #fff; padding: 4rem 0; border-top: 1px solid var(--gray-200); margin-bottom: 8rem; }
@media (min-width: 1120px) { .footer { margin-bottom: 0; } }
.footer-inner { max-width: 48rem; margin: 0 auto; padding: 0 1rem; text-align: center; }
.footer-logo { height: 4rem; width: auto; margin: 0 auto 2rem; }
.footer-legal { color: var(--gray-700); font-size: 0.8125rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 48rem; }
.footer-disclosure { color: var(--gray-900); font-weight: 700; font-size: 0.8125rem; line-height: 1.7; margin-bottom: 1rem; letter-spacing: 0.02em; max-width: 60rem; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.875rem; }
.footer-link { color: var(--gray-600); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; transition: color 0.2s; background: none; border: none; font-family: inherit; }
.footer-link:hover { color: var(--teal-700); }
.footer-sep { color: var(--gray-400); }

/* ============================================
   MODALS
   ============================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 1rem;
  width: 100%; max-width: 56rem; max-height: 90vh;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: scale(0.94); transition: transform 0.2s;
}
.modal-backdrop.open .modal-box { transform: scale(1); }
.modal-box.sm { max-width: 32rem; }
.modal-box.lg { max-width: 64rem; }
.modal-header {
  position: sticky; top: 0; background: #fff;
  border-bottom: 1px solid var(--gray-200); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; z-index: 10;
}
@media (min-width: 640px) { .modal-header { padding: 1.5rem 2rem; } }
.modal-header h2 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
@media (min-width: 640px) { .modal-header h2 { font-size: 1.5rem; } }
.modal-close-btn {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.modal-close-btn:hover { background: var(--gray-100); }
.modal-close-btn svg { width: 1.25rem; height: 1.25rem; color: var(--gray-600); }
@media (min-width: 640px) { .modal-close-btn svg { width: 1.5rem; height: 1.5rem; } }
.modal-body { overflow-y: auto; padding: 1.5rem; flex: 1; }
@media (min-width: 640px) { .modal-body { padding: 2rem; } }
.modal-body h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin: 2rem 0 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { color: var(--gray-700); line-height: 1.7; margin-bottom: 1rem; }
.modal-body ul { list-style: disc; padding-left: 1.5rem; color: var(--gray-700); margin-bottom: 1rem; }
.modal-body ul li { line-height: 1.7; margin-bottom: 0.5rem; }
.modal-disclosure {
  background: #fffbeb; border: 1px solid #fde68a;
  border-radius: 0.75rem; padding: 1.5rem; margin: 2rem 0;
}
.modal-disclosure h3 { margin-top: 0; color: var(--gray-900); }
.modal-disclosure p { font-size: 0.875rem; font-weight: 700; color: var(--gray-800); text-transform: uppercase; letter-spacing: 0.04em; }
.modal-info-box {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 0.75rem; padding: 1.5rem; margin-top: 1rem;
}
.modal-info-box h3 { margin-top: 0; }
.modal-info-box p { font-size: 0.875rem; color: var(--gray-700); }
.modal-meta { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1.5rem; }

/* Media / Gallery modal */
.gallery-modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.gallery-modal-backdrop.open { opacity: 1; pointer-events: all; }
.gallery-modal-inner { position: relative; max-width: 64rem; width: 100%; }
.gallery-modal-img {
  width: 100%; height: auto; max-height: 85vh; object-fit: contain;
  border-radius: 0.75rem; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-modal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.5rem; border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem;
  text-align: center;
}
.gallery-modal-caption p:first-child { color: #fff; font-size: 1.125rem; font-weight: 600; }
.gallery-modal-caption p:last-child { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 0.25rem; }
.gallery-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  border-radius: 50%; padding: 0.75rem; color: #fff;
  transition: background 0.2s; border: none; cursor: pointer;
}
.gallery-modal-nav:hover { background: rgba(0,0,0,0.7); }
.gallery-modal-nav svg { width: 2rem; height: 2rem; }
.gallery-modal-prev { left: 1.5rem; }
.gallery-modal-next { right: 1.5rem; }
.gallery-modal-close {
  position: absolute; top: -1rem; right: -1rem;
  background: rgba(0,0,0,0.6); border-radius: 50%; padding: 0.5rem;
  color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.gallery-modal-close svg { width: 1.25rem; height: 1.25rem; }

/* Testimonial Modal */
.testimonial-modal-body { padding: 1.5rem; position: relative; }
@media (min-width: 640px) { .testimonial-modal-body { padding: 2rem; } }
.testimonial-modal-quote { position: absolute; top: 1.5rem; right: 1.5rem; }
.testimonial-modal-quote.orange svg { color: #FFFCE0; }
.testimonial-modal-quote.teal svg { color: #ccfbf1; }
.testimonial-modal-quote svg { width: 3rem; height: 3rem; }
.testimonial-modal-text { color: var(--gray-700); font-size: 1.125rem; line-height: 1.75; margin-bottom: 2rem; position: relative; z-index: 1; }
.testimonial-modal-footer { border-top: 1px solid var(--gray-100); padding-top: 1.5rem; }
.testimonial-modal-footer p:first-child { font-weight: 600; color: var(--gray-900); font-size: 1.0625rem; }
.testimonial-modal-footer p:last-child { color: var(--gray-500); }

/* ============================================
   STICKY ELEMENTS
   ============================================ */
/* Scroll to top */
.scroll-top-btn {
  position: fixed; z-index: 46;
  bottom: 1rem; right: 1rem;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: opacity 0.3s, transform 0.3s;
  opacity: 0; transform: translateY(1rem); pointer-events: none;
}
@media (max-width: 1119px) { .scroll-top-btn { bottom: 5.5rem; } }
@media (min-width: 1120px) { .scroll-top-btn { bottom: 1.5rem; right: 1.5rem; width: 3rem; height: 3rem; } }
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top-progress {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.scroll-top-btn svg.arrow { width: 1rem; height: 1rem; color: var(--teal-call); position: relative; z-index: 1; }
@media (min-width: 1120px) { .scroll-top-btn svg.arrow { width: 1.25rem; height: 1.25rem; } }

/* Sticky mobile CTA bar */
.sticky-mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 45;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: translateY(100%); opacity: 0; pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 1120px) { .sticky-mobile-bar { display: none; } }
.sticky-mobile-bar.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
.sticky-mobile-bar-inner {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200); padding: 0.75rem 1rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--yellow); color: var(--dark);
  padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 700;
  min-height: 44px; transition: background 0.2s; box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  width: 100%;
}
.sticky-mobile-cta:hover { background: var(--yellow-hover); }
.sticky-mobile-icon {
  width: 3rem; height: 3rem; background: var(--teal-call); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sticky-mobile-icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.sticky-mobile-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.sticky-mobile-text span:first-child { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-call); }
.sticky-mobile-text span:last-child { font-size: 1.25rem; font-weight: 700; color: var(--dark); }
