/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --fm-sage: #8faa97;
  --fm-sage-deep: #5e7d68;
  --fm-sage-light: #dce8df;
  --fm-sage-mist: #eef3f0;
  --fm-cream: #f7f5f0;
  --fm-warm: #eee9e0;
  --fm-linen: #e8e3d8;
  --fm-bark: #3a3530;
  --fm-bark-light: #5c554e;
  --fm-text: #4a453f;
  --fm-text-soft: #7a756e;
  --fm-white: #ffffff;
  --fm-radius: 16px;
  --fm-radius-lg: 24px;
  --fm-radius-xl: 32px;
}

/* ── Reset & base ───────────────────────────────────────── */
.fm-page * { box-sizing: border-box; }
.fm-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--fm-text);
  background: var(--fm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.fm-page h1, .fm-page h2, .fm-page h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--fm-bark);
}
.fm-page p {
  line-height: 1.75;
  color: var(--fs-color-base);
}
.fm-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animations (gentle, slow, organic) ────────────────── */
@keyframes fm-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fm-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fm-anim { opacity: 0; }
.fm-anim.fm-in {
  animation: fm-rise 0.8s cubic-bezier(.25,.46,.45,.94) forwards;
}
.fm-d1.fm-in { animation-delay: .08s; }
.fm-d2.fm-in { animation-delay: .16s; }
.fm-d3.fm-in { animation-delay: .24s; }
.fm-d4.fm-in { animation-delay: .32s; }

/* ── Buttons ─────────────────────────────────────────────── */
.fm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}
.fm-btn-fill {
  background: var(--fm-sage-deep);
  color: var(--fm-white);
  box-shadow: 0 2px 8px rgba(94,125,104,0.2);
}
.fm-btn-fill:hover {
  background: #4d6b56;
  box-shadow: 0 4px 16px rgba(94,125,104,0.3);
  transform: translateY(-1px);
  color: var(--fm-white);
  text-decoration: none;
}
.fm-btn-soft {
  background: var(--fm-sage-mist);
  color: var(--fm-sage-deep);
  border: 1px solid var(--fm-sage-light);
}
.fm-btn-soft:hover {
  background: var(--fm-sage-light);
  color: #4d6b56;
  transform: translateY(-1px);
  text-decoration: none;
}
.fm-btn-scale:hover {
  background: var(--fm-sage-deep) !important;
  transform: scale(1.03) !important;
  color: var(--fm-white) !important;
  text-decoration: none;
}
.fm-btn-outline {
  background: transparent;
  color: var(--fm-bark);
  border: 1.5px solid var(--fm-linen);
}
.fm-btn-outline:hover {
  border-color: var(--fm-sage);
  color: var(--fm-sage-deep);
  transform: translateY(-1px);
  text-decoration: none;
}
/* White variant for dark backgrounds */
.fm-btn-white {
  background: var(--fm-white);
  color: var(--fm-sage-deep);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.fm-btn-white:hover {
  background: var(--fm-cream);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--fm-sage-deep);
}
.fm-btn-white-outline {
  background: transparent;
  color: white;
  border: 2.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 0 10px rgba(0,0,0,0.35);
}
.fm-mobile-only { display: none; }
.fm-hero-btns .fm-btn-white-outline img {
  filter: brightness(10) drop-shadow(0 0 10px rgba(0,0,0,0.35)) !important;
}
.fm-btn-white-outline:hover {
  background: rgba(255,255,255,0.45);
  border-color: rgba(255,255,255,0.6);
  color: var(--fm-white);
  text-decoration: none;
}

/* ── Phone link ──────────────────────────────────────────── */
.fm-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fm-sage-deep);
  text-decoration: none;
  margin-top: 14px;
  transition: color 0.2s;
}
.fm-tel:hover { color: var(--fm-bark); }
.fm-tel svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Mobile utility classes ─────────────────────────────── */
.mobile-br {
  display: none;
}
.mobile-hide {
  display: inline;
}

/* ── Section label ───────────────────────────────────────── */
.fm-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fm-sage-deep);
  margin-bottom: 12px;
}
.fm-divider {
  width: 40px;
  height: 2px;
  background: var(--fm-sage);
  border-radius: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.fm-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
}
.fm-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.fm-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 75% bottom;
  display: block;
}
/* Warm, earthy overlay — not the cold dark green */
.fm-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(58,53,48,0.68) 0%,
    rgba(58,53,48,0.42) 45%,
    rgba(94,125,104,0.18) 100%
  );
  z-index: 1;
}
.fm-hero .fm-container {
  margin: 0;
  margin-left: 300px;
  padding-left: 24px;
  position: relative;
  z-index: 3;
}
.fm-hero-inner {
  position: relative;
  padding: 120px 0 100px;
  max-width: 720px;
}
.fm-hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fm-rise .8s cubic-bezier(.25,.46,.45,.94) .1s both;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.fm-hero-loc:hover {
  color: inherit;
  transform: scale(1.05);
  text-shadow: 0 0 12px rgba(255,255,255,0.6), 0 2px 8px rgba(0,0,0,0.4);
}
.fm-hero-loc svg { width: 14px; height: 14px; opacity: 0.8; }
.fm-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--fm-white);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  animation: fm-rise .8s cubic-bezier(.25,.46,.45,.94) .18s both;
}
.fm-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff !important;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fm-rise .8s cubic-bezier(.25,.46,.45,.94) .26s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.fm-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fm-rise .8s cubic-bezier(.25,.46,.45,.94) .34s both;
}

/* ── Hero beachgrass overlay ─────────────────────────────── */
.fm-hero-grass {
  position: absolute;
  bottom: 0px;
  left: -40px;
  width: clamp(220px, 28vw, 420px);
  pointer-events: none;
  z-index: 4;
  opacity: 0.32;
  mix-blend-mode: luminosity;
  user-select: none;
}
.fm-hero-grass img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom left;
}
@media (max-width: 1024px) {
  .fm-hero-grass {
    display: none;
  }
}
@media (max-width: 600px) {
  .fm-hero-grass {
    display: block !important;
    width: 150px;
    left: -20px;
    opacity: 0.25;
  }
}

/* ════════════════════════════════════════════════════════════
   FEATURE STRIP (below hero)
   ════════════════════════════════════════════════════════════ */
.fm-features {
  position: relative;
  z-index: 3;
  background: var(--fm-white);
}
.fm-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  margin-bottom: 24px;
  gap: 16px;
}
.fm-feature {
  background: var(--fm-white);
  border: 1px solid var(--fm-linen);
  border-radius: var(--fm-radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(58,53,48,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.fm-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(58,53,48,0.10);
}
.fm-feature-ico {
  width: 48px; height: 48px;
  background: var(--fm-sage-mist);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--fm-sage-deep);
}
.fm-feature-ico svg { width: 22px; height: 22px; }
.fm-feature-ico img { width: 22px; height: 22px; object-fit: contain; }
.fm-feature h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fm-bark);
  margin: 0 0 4px;
}
.fm-feature p {
  font-size: 0.78rem;
  color: var(--fm-text-soft);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   SECTIONS – general
   ════════════════════════════════════════════════════════════ */
.fm-sec { padding: 88px 0; }
.fm-sec-cream { background: var(--fm-cream); }
.fm-sec-sage { background: var(--fm-sage-mist); }

.fm-sec h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 0 0 16px;
}
.fm-sec p {
  font-size: 0.95rem;
  margin: 0 0 16px;
}

/* ════════════════════════════════════════════════════════════
   WELCOME – two column with reception image
   ════════════════════════════════════════════════════════════ */
.fm-welcome {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: center;
}
.fm-welcome-img {
  border-radius: var(--fm-radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(58,53,48,0.10);
}
.fm-welcome-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.fm-welcome-img:hover img { transform: scale(1.02); }
.fm-welcome-text .fm-motto {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fm-sage-deep);
  margin-top: 4px;
}
.fm-welcome-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  align-items: flex-start;
}
.fm-welcome-btns > .fm-btn {
  font-size: 1.1rem;
  padding: 15px 32px;
}
.fm-welcome-btn-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fm-tel-welcome {
  margin-top: 0;
  font-size: 0.84rem;
}

/* ════════════════════════════════════════════════════════════
   HEALTH FUND LOGOS
   ════════════════════════════════════════════════════════════ */
.fm-funds-wrap { text-align: center; }
.fm-funds-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 32px;
}
.fm-fund-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(0%);
  transition: all 0.4s ease;
}
.fm-fund-img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
.fm-funds-note {
  font-size: 0.78rem;
  color: var(--fm-text-soft);
  margin-top: 40px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   PACKAGE SLIDER
   ════════════════════════════════════════════════════════════ */
.fm-slider-wrap {
  position: relative;
  margin-top: 32px;
}
.fm-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px 20px;
  scrollbar-width: none;
}
.fm-slider-track::-webkit-scrollbar { display: none; }
.fm-slide {
  scroll-snap-align: start;
  flex: 0 0 200px;
  text-decoration: none;
  color: inherit;
  background: var(--fm-white);
  border: 1px solid var(--fm-linen);
  border-radius: var(--fm-radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 6px rgba(58,53,48,0.05);
}
.fm-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(58,53,48,0.10);
  text-decoration: none;
  color: inherit;
}
.fm-slide-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--fm-warm);
}
.fm-slide-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.fm-slide-body { padding: 12px 14px 14px; }
.fm-slide-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--fm-bark);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.4em;
}
.fm-slide-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #d4581b;
  background: linear-gradient(135deg, #d4581b 0%, #e67331 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Slider arrows */
.fm-slider-arrow {
  display: none;
  position: absolute;
  top: calc((200px * 0.75 / 2) + 8px);
  transform: translateY(-50%);
  z-index: 10;
  width: 42px; height: 42px;
  background: var(--fm-white);
  border: 1px solid var(--fm-linen);
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(58,53,48,0.10);
  transition: all 0.25s ease;
  color: var(--fm-bark);
  padding: 0;
}
.fm-slider-arrow:hover {
  background: var(--fm-cream);
  border-color: var(--fm-sage);
  box-shadow: 0 4px 16px rgba(58,53,48,0.14);
}
.fm-arrow-prev { left: -21px; }
.fm-arrow-next { right: -21px; }
@media (min-width: 769px) {
  .fm-slider-arrow { display: flex; }
  .fm-slider-wrap { padding: 0 28px; }
}
.fm-slider-wrap.fm-anim.fm-in { animation: fm-fadeIn 0.9s ease forwards; }

/* ════════════════════════════════════════════════════════════
   GIFT VOUCHER
   ════════════════════════════════════════════════════════════ */
.fm-gift {
  background: var(--fm-cream);
  border: 1px solid var(--fm-linen);
  border-radius: var(--fm-radius-xl);
  padding: 48px 52px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.fm-gift-visual {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--fm-sage-mist);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.fm-gift-body h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}
.fm-gift-body p {
  font-size: 0.92rem;
  color: var(--fm-text);
  margin: 0 0 20px;
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION – warm sage, not dark/techy
   ════════════════════════════════════════════════════════════ */
.fm-cta {
  background: linear-gradient(145deg, #4d6b56 0%, #5e7d68 50%, #6b8e77 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Soft organic blob decoration */
.fm-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.fm-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.fm-cta-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.fm-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fm-white);
  margin-bottom: 12px;
}
.fm-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.fm-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.fm-cta-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 32px auto 24px;
}
.fm-cta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.fm-cta-info .fm-tel {
  color: rgba(255,255,255,0.75);
  margin-top: 0;
  font-size: 0.82rem;
}
.fm-cta-info .fm-tel:hover { color: var(--fm-white); }
.fm-cta-dot { opacity: 0.35; }
.fm-cta-footer-inline { color: rgba(255,255,255,0.6); }
.fm-cta-footer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 28px;
}
@media (max-width: 600px) {
  .fm-cta-dot { display: none; }
  .fm-cta-info { flex-direction: column; gap: 6px; }
}

/* ════════════════════════════════════════════════════════════
   LOCATION SECTION (from vervetel-budapest)
   ════════════════════════════════════════════════════════════ */
.fm-location-section { padding: 88px 0; background: var(--fm-cream); }
.fm-location-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.vb-section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #799c86;
  background: rgba(121,156,134,0.10);
  border: 1px solid rgba(121,156,134,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.vb-location-features {
  list-style: none;
  padding: 0; margin: 20px 0 28px;
}
.vb-location-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #ede8dd;
  font-size: 0.93rem;
  color: #4a4a4a;
}
.vb-location-features li:last-child { border-bottom: none; }
.vb-location-features li svg { color: #799c86; flex-shrink:0; margin-top:2px; width:16px; height:16px; }
.vb-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border: 1px solid #ede8dd;
}
.vb-map-wrap iframe { display:block; width:100%; height:380px; border:none; }
.vb-tel-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #5a7a66;
  text-decoration: none;
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.vb-tel-link:hover { color: #2c4637; text-decoration: underline; }
.vb-tel-link svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .fm-location-two-col { grid-template-columns: 1fr; gap: 32px; }
  .vb-map-wrap iframe { height: 280px; }
  .fm-location-section { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════ */
.fm-reviews { padding: 88px 0; background: var(--fm-warm); }

/* ════════════════════════════════════════════════════════════
   HIDE DEFAULT WP TITLE
   ════════════════════════════════════════════════════════════ */
.fm-page .entry-title,
.fm-page .page-title { display: none !important; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1500px) {   
   .fm-hero .fm-container {
  margin: 0;
  margin-left: 20px;
  padding-left: 24px;
  position: relative;
  z-index: 3;
}
.fm-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 100% bottom;
  display: block;
}

}   
@media (max-width: 1024px) {
  .fm-features-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .fm-hero { min-height: 75vh; }
  .fm-hero .fm-container { margin: 0 auto; margin-left: auto; padding-left: 24px; padding-top: 40px}
  .fm-hero-inner { padding: 0px 0 150px; }
  .fm-hero-bg img {
    object-fit: cover;
    object-position: 65% top;
  }
  .fm-features-row { grid-template-columns: repeat(2, 1fr); margin-top: 16px; margin-bottom: 16px; gap: 10px; }
  .fm-feature { padding: 20px 14px; border-radius: var(--fm-radius); }
  .fm-welcome { grid-template-columns: 1fr; gap: 32px; }
  .fm-sec { padding: 64px 0; }
  .fm-sec-cream { padding-top: 52px !important; }
  .fm-gift { flex-direction: column; text-align: center; padding: 36px 28px; gap: 20px; }
  .fm-funds-logos { gap: 24px; }
  .fm-fund-img { height: 60px; }
  .fm-reviews { padding: 64px 0; }
}
@media (max-width: 600px) {
  .fm-hero-btns { flex-direction: column; align-items: stretch; margin-top: 80px; }
  .fm-hero-btns .fm-btn { width: 100%; justify-content: center; }
  .fm-features-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .fm-feature { padding: 16px 10px; }
  .fm-feature h3 { font-size: 0.8rem; }
  .fm-feature p { font-size: 0.72rem; }
  .fm-feature-ico { width: 40px; height: 40px; border-radius: 12px; }
  .fm-feature-ico svg { width: 18px; height: 18px; }
  .fm-slider-cta { display: flex !important; justify-content: center !important; }
  .fm-slider-cta > .fm-btn { white-space: normal; text-align: center; max-width: 90%; }
  .fm-welcome-btns { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
  .fm-welcome-btn-col { flex: 1; min-width: 0; }
  .fm-welcome-btn-col .fm-btn { width: 100%; justify-content: center; font-size: 1.0rem; padding: 11px 14px; }
  .fm-welcome-btns > .fm-btn { flex: 1; justify-content: center; font-size: 1.0rem; padding: 11px 14px; }
  .fm-funds-logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; justify-items: center; }
  .fm-fund-img { height: 50px; }
}


@media (max-width: 480px) {
  .fm-hero h1 { font-size: 2.8rem; }
  .fm-hero {
    min-height: 68vh;
  }
  .fm-hero-bg img {
    object-fit: cover;
    object-position: 65% top;
  }
  .fm-hero-loc {
    display: none;
  }
  .fm-hero-btns .fm-btn-arlista {
    display: none;
  }
  .fm-hero-btns .fm-mobile-only {
    display: inline-flex !important;
  }
  .fm-hero-btns .fm-mobile-only,
  .fm-hero-btns .fm-btn-phone {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(0,0,0,0.35);
    filter: brightness(1.15);
  }
  .fm-hero-btns .fm-mobile-only img,
  .fm-hero-btns .fm-btn-phone img {
    filter: brightness(3) drop-shadow(0 0 10px rgba(0,0,0,0.35)) !important;
  }
  .mobile-br {
    display: block;
  }
  .mobile-hide {
    display: none;
  }
  .fm-newsletter-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ════════════════════════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════════════════════════ */
.fm-faq-list { margin-top: 36px; }
.fm-faq-item {
  border-bottom: 1px solid var(--fm-linen);
  background: var(--fm-white);
  transition: background 0.2s ease;
}
.fm-faq-item:first-child {
  border-top: 1px solid var(--fm-linen);
  border-top-left-radius: var(--fm-radius);
  border-top-right-radius: var(--fm-radius);
}
.fm-faq-item:last-child {
  border-bottom-left-radius: var(--fm-radius);
  border-bottom-right-radius: var(--fm-radius);
}
.fm-faq-item:hover {
  background: var(--fm-warm);
}
.fm-faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--fm-bark);
  transition: color .2s ease;
}
.fm-faq-btn:hover { color: var(--fm-sage-deep); }
.fm-faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--fm-warm);
  border: 1px solid var(--fm-linen);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .2s ease, border-color .2s ease;
  color: var(--fm-sage-deep);
}
.fm-faq-item.open .fm-faq-icon {
  transform: rotate(45deg);
  background: var(--fm-sage-deep);
  border-color: var(--fm-sage-deep);
  color: var(--fm-white);
}
.fm-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), padding .3s ease;
}
.fm-faq-item.open .fm-faq-body {
  max-height: 500px;
}
.fm-faq-body p {
  padding: 0 20px 24px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--fm-text);
}
.fm-faq-body p strong {
  color: var(--fm-sage-deep);
  font-weight: 600;
}
.fm-faq-body p a {
  color: var(--fm-sage-deep);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.fm-faq-body p a:hover {
  color: var(--fm-bark);
}
@media (max-width: 768px) {
  .fm-faq-btn {
    font-size: 0.95rem;
    padding: 20px 16px;
  }
  .fm-faq-body p {
    padding: 0 16px 20px;
    font-size: 0.9rem;
  }
}

/* ════════════════════════════════════════════════════════════
   GLASSMORPHISM SEARCH BAR
   ════════════════════════════════════════════════════════════ */
.fm-search-section {
  position: relative;
  padding: 48px 0 56px;
  background: var(--fm-warm);
  overflow: visible;
}
.fm-search-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.fm-search-label {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fm-bark);
  margin: 0 0 8px;
}
.fm-search-sublabel {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fm-text-soft);
  margin: 0 0 24px;
}
.fm-search-glass {
  position: relative;
  z-index: 50;
}
.fm-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.fm-search-input-wrap svg {
  position: absolute;
  left: 24px;
  width: 20px;
  height: 20px;
  color: var(--fm-sage-deep);
  pointer-events: none;
  flex-shrink: 0;
}
.fm-search-input {
  width: 100%;
  padding: 22px 52px 22px 56px !important;
  height: auto !important;
  font-family: 'Inter', sans-serif;
  font-size: 1rem !important;
  color: var(--fm-bark) !important;
  border: 1.5px solid rgba(143, 170, 151, 0.35) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow:
    0 4px 24px rgba(143, 170, 151, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
  outline: none;
}
.fm-search-input::placeholder {
  color: var(--fm-text-soft);
  font-weight: 400;
}
.fm-search-input:focus {
  border-color: var(--fm-sage) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow:
    0 8px 32px rgba(143, 170, 151, 0.18),
    0 0 0 4px rgba(143, 170, 151, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}
.fm-search-clear {
  position: absolute;
  right: 20px;
  width: 32px !important;
  height: 32px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: rgba(143, 170, 151, 0.15) !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--fm-text-soft);
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: none !important;
  transition: all 0.2s;
}
.fm-search-clear:hover {
  background: rgba(143, 170, 151, 0.3);
  color: var(--fm-bark);
}
.fm-search-clear.visible {
  display: flex;
}

/* Results dropdown */
.fm-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 380px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(143, 170, 151, 0.25);
  border-radius: 16px;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.10),
    0 4px 16px rgba(143, 170, 151, 0.08);
  z-index: 100;
  display: none;
  padding: 6px;
}
.fm-search-results.open {
  display: block;
  animation: fm-dropdown-in 0.22s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes fm-dropdown-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fm-search-results::-webkit-scrollbar {
  width: 6px;
}
.fm-search-results::-webkit-scrollbar-track {
  background: transparent;
}
.fm-search-results::-webkit-scrollbar-thumb {
  background: rgba(143, 170, 151, 0.3);
  border-radius: 3px;
}
.fm-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  gap: 12px;
  text-decoration: none !important;
}
.fm-result-item:hover,
.fm-result-item.active {
  background: rgba(143, 170, 151, 0.12);
}
.fm-result-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fm-bark);
  flex: 1;
  min-width: 0;
}
.fm-result-name mark {
  background: rgba(143, 170, 151, 0.25);
  color: inherit;
  border-radius: 2px;
  padding: 0 1px;
}
.fm-result-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.fm-result-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fm-sage-deep);
  white-space: nowrap;
}
.fm-result-price-old {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--fm-text-soft);
  white-space: nowrap;
  text-decoration: line-through;
}
.fm-result-price-disc {
  color: #004080;
}
.fm-result-time {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fm-sage-deep);
  white-space: nowrap;
}
.fm-result-cat {
  font-size: 0.68rem;
  color: var(--fm-text-soft);
  white-space: nowrap;
  margin-top: 2px;
}
.fm-result-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--fm-text-soft);
  font-size: 0.9rem;
}
.fm-result-count {
  padding: 8px 16px 4px;
  font-size: 0.75rem;
  color: var(--fm-text-soft);
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .fm-search-section {
    padding: 32px 0 40px;
  }
  .fm-search-label {
    font-size: 1.25rem;
  }
  .fm-search-input {
    padding: 18px 48px 18px 50px;
    font-size: 0.95rem;
    border-radius: 999px;
  }
  .fm-search-results {
    max-height: 320px;
    border-radius: 14px;
  }
}
@media (max-width: 600px) {
  .fm-search-section {
    padding: 24px 0 32px;
  }
  .fm-search-label {
    font-size: 1.1rem;
  }
  .fm-search-sublabel {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .fm-search-input {
    padding: 16px 44px 16px 46px;
    font-size: 0.9rem;
    border-radius: 999px;
  }
  .fm-search-input::placeholder {
    font-size: 0.9rem !important;
  }
  .fm-search-input-wrap svg {
    left: 18px;
    width: 18px;
    height: 18px;
  }
  .fm-search-clear {
    right: 16px;
    width: 32px !important;
    height: 32px !important;
  }
  .fm-result-item {
    padding: 10px 12px;
  }
  .fm-result-name {
    font-size: 0.85rem;
  }
}
