/* =============================================================
   RFM ELEMENTS - Base Styles (v2.0.0)
   Structure + layout only. Colors via CSS variables.
   Theme sets --rfm-* vars. Fallbacks match original defaults.
   ============================================================= */

/* ── THEME VARIABLES (set these in your theme CSS) ── */
:root {
  --rfm-primary:       #C21000;
  --rfm-primary-dark:  #9e0d00;
  --rfm-primary-light: #e8342a;
  --rfm-accent:        #d4940a;
  --rfm-accent-hover:  #e8a810;
  --rfm-text:          #1a1a1a;
  --rfm-text-mid:      #3a3a3a;
  --rfm-text-muted:    #555;
  --rfm-text-light:    #888;
  --rfm-bg:            #fff;
  --rfm-bg-alt:        #fafaf8;
  --rfm-border:        rgba(0,0,0,0.08);
  --rfm-border-light:  rgba(0,0,0,0.06);
  --rfm-radius:        10px;
  --rfm-radius-sm:     8px;
  --rfm-font-display:  Georgia, serif;
}


/* =============================================================
   Card Box
   ============================================================= */
.rfm-cb {
  display: block; position: relative;
  text-decoration: none; color: inherit;
}
a.rfm-cb:hover { text-decoration: none; color: inherit; }
.rfm-cb--horizontal { display: flex; align-items: center; }
.rfm-cb--horizontal .rfm-cb__content { flex: 1; min-width: 0; }
.rfm-cb__icon {
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; flex-shrink: 0;
}
.rfm-cb__icon img { display: block; height: auto; }
.rfm-cb__icon svg { display: block; }
.rfm-cb__text-1, .rfm-cb__text-2, .rfm-cb__text-3,
.rfm-cb__text-4, .rfm-cb__text-5 { margin: 0; padding: 0; }
.rfm-cb__button {
  display: inline-block; text-decoration: none;
  cursor: pointer; transition: all 0.3s ease;
}
a.rfm-cb__button:hover { text-decoration: none; }

/* Card Box Defaults */
.rfm-cb {
  background: var(--rfm-bg); border: 1px solid var(--rfm-border);
  border-radius: var(--rfm-radius); padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rfm-cb:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); }
.rfm-cb__icon { margin-bottom: 16px; }
.rfm-cb__icon svg { width: 40px; height: 40px; }
.rfm-cb__icon img { width: 100%; height: auto; border-radius: var(--rfm-radius-sm); }
.rfm-cb__text-1 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.rfm-cb__text-2 { font-size: 0.95rem; color: var(--rfm-text-muted); line-height: 1.65; margin-bottom: 8px; }
.rfm-cb__text-3 { font-size: 0.9rem; color: var(--rfm-text-light); margin-bottom: 12px; }
.rfm-cb__button {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-top: 12px; padding: 10px 20px;
  border-radius: 4px; background: transparent;
  border: 1px solid rgba(0,0,0,0.15); color: inherit;
}


/* =============================================================
   Countdown
   ============================================================= */
.rfm-cd { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.rfm-cd__unit { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.rfm-cd__number { display: block; line-height: 1; }
.rfm-cd__label { display: block; }
.rfm-cd__expired { text-align: center; }


/* =============================================================
   Marquee
   ============================================================= */
.rfm-mq { overflow: hidden; white-space: nowrap; display: flex; }
.rfm-mq__track {
  display: inline-flex; align-items: center;
  animation: rfm-mq-scroll var(--rfm-mq-speed, 30s) linear infinite;
  animation-direction: var(--rfm-mq-direction, normal); flex-shrink: 0;
}
.rfm-mq--pause:hover .rfm-mq__track { animation-play-state: paused; }
.rfm-mq__text { flex-shrink: 0; }
.rfm-mq__sep { flex-shrink: 0; }
@keyframes rfm-mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}


/* =============================================================
   Pricing Row
   ============================================================= */
.rfm-pr { display: flex; align-items: center; justify-content: space-between; text-decoration: none; color: inherit; }
a.rfm-pr:hover { text-decoration: none; color: inherit; }
.rfm-pr__info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.rfm-pr__dot { flex-shrink: 0; }
.rfm-pr__text { min-width: 0; }
.rfm-pr__title { margin: 0; }
.rfm-pr__desc { margin: 0; }
.rfm-pr__price { flex-shrink: 0; white-space: nowrap; }


/* =============================================================
   FAQ Accordion
   ============================================================= */
.rfm-faq__item { overflow: hidden; }
.rfm-faq__question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; gap: 12px; font: inherit;
}
.rfm-faq__question-text { flex: 1; min-width: 0; }
.rfm-faq__icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s ease;
}
.rfm-faq__icon svg { display: block; fill: none; stroke: currentColor; }
.rfm-faq__item.is-open .rfm-faq__icon { transform: rotate(180deg); }
.rfm-faq[data-icon-type="plus_minus"] .rfm-faq__item.is-open .rfm-faq__icon { transform: rotate(0deg); }
.rfm-faq[data-icon-type="plus_minus"] .rfm-faq__item.is-open .rfm-faq__icon svg line:first-child {
  transform: scaleY(0); transform-origin: center; transition: transform 0.3s ease;
}
.rfm-faq__answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.3s ease, opacity 0.3s ease; }
.rfm-faq__item.is-open .rfm-faq__answer { max-height: 2000px; opacity: 1; }

/* FAQ Defaults */
.rfm-faq__item {
  background: var(--rfm-bg); border: 1px solid var(--rfm-border);
  border-radius: var(--rfm-radius-sm); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.rfm-faq__item + .rfm-faq__item { margin-top: 12px; }
.rfm-faq__question { padding: 18px 24px; font-size: 1rem; font-weight: 600; color: var(--rfm-text); line-height: 1.4; }
.rfm-faq__question:hover { color: var(--rfm-primary); }
.rfm-faq__icon svg { width: 18px; height: 18px; stroke-width: 2.5; color: var(--rfm-text-light); }
.rfm-faq__answer { padding: 0 24px; font-size: 0.95rem; color: var(--rfm-text-muted); line-height: 1.7; }
.rfm-faq__item.is-open .rfm-faq__answer { padding-bottom: 20px; }


/* =============================================================
   Stats Counter
   ============================================================= */
.rfm-stats { display: grid; }
.rfm-stats__item { display: flex; flex-direction: column; align-items: center; }
.rfm-stats__icon { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.rfm-stats__icon svg { display: block; }
.rfm-stats__number { line-height: 1; white-space: nowrap; }
.rfm-stats__prefix, .rfm-stats__suffix { display: inline; }
.rfm-stats__label { margin: 0; }

/* Stats Defaults - NO background, parent controls it.
   Set --rfm-stats-text, --rfm-stats-label, --rfm-stats-divider on the parent
   to adapt to dark/light/colored backgrounds. */
.rfm-stats { border-radius: var(--rfm-radius-sm); padding: 40px 48px; gap: 32px; }
.rfm-stats__item { text-align: center; }
.rfm-stats__number { font-size: 2.5rem; font-weight: 700; color: var(--rfm-stats-text, inherit); line-height: 1; margin-bottom: 6px; }
.rfm-stats__prefix, .rfm-stats__suffix { font-size: 0.75em; opacity: 0.8; }
.rfm-stats__label { font-size: 0.8rem; color: var(--rfm-stats-label, inherit); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
.rfm-stats__icon svg { width: 24px; height: 24px; margin-bottom: 8px; stroke: var(--rfm-stats-text, currentColor); opacity: 0.4; }
.rfm-stats--dividers .rfm-stats__item + .rfm-stats__item { border-left: 1px solid var(--rfm-stats-divider, rgba(255,255,255,0.1)); padding-left: 32px; }


/* =============================================================
   Testimonial Card
   ============================================================= */
.rfm-test { position: relative; }
.rfm-test__quote-mark { display: block; line-height: 1; font-size: 3em; opacity: 0.15; }
.rfm-test__stars { display: flex; align-items: center; gap: 2px; }
.rfm-test__star { display: block; }
.rfm-test__quote { margin: 0; }
.rfm-test__author { display: flex; align-items: center; gap: 12px; }
.rfm-test__avatar {
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.rfm-test__avatar--image { object-fit: cover; }
.rfm-test__meta { min-width: 0; }
.rfm-test__name { margin: 0; }
.rfm-test__subtitle { margin: 0; }

/* Testimonial Defaults */
.rfm-test {
  background: var(--rfm-bg); border: 1px solid var(--rfm-border);
  border-radius: var(--rfm-radius); padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.rfm-test__quote-mark { font-family: var(--rfm-font-display); font-size: 3rem; color: var(--rfm-border); margin-bottom: -8px; }
.rfm-test__stars { margin-bottom: 12px; }
.rfm-test__star { width: 16px; height: 16px; fill: var(--rfm-accent); stroke: var(--rfm-accent); }
.rfm-test__quote { font-size: 0.95rem; color: var(--rfm-text-mid); line-height: 1.7; margin-bottom: 16px; }
.rfm-test__author { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--rfm-border-light); }
.rfm-test__avatar { width: 44px; height: 44px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.rfm-test__avatar--initials { background: var(--rfm-primary); color: #fff; }
.rfm-test__avatar--image { width: 44px; height: 44px; }
.rfm-test__name { font-size: 0.9rem; font-weight: 600; color: var(--rfm-text); }
.rfm-test__subtitle { font-size: 0.8rem; color: var(--rfm-text-light); }


/* =============================================================
   CTA Banner
   ============================================================= */
.rfm-cta { position: relative; background-size: cover; background-position: center; }
.rfm-cta--two-col { display: flex; align-items: center; }
.rfm-cta__text { min-width: 0; }
.rfm-cta__eyebrow { text-transform: uppercase; letter-spacing: 2px; }
.rfm-cta__heading { margin: 0; }
.rfm-cta__heading em { font-style: italic; }
.rfm-cta__desc { margin: 0; }
.rfm-cta__buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rfm-cta__btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; cursor: pointer; transition: all 0.3s ease; border: none;
}
.rfm-cta__btn:hover { text-decoration: none; }
.rfm-cta__media { flex-shrink: 0; }
.rfm-cta__media img { display: block; max-width: 100%; height: auto; }
@media (max-width: 768px) {
  .rfm-cta--two-col { flex-direction: column; }
  .rfm-cta__text { flex: none; width: 100%; }
}

/* CTA Defaults */
.rfm-cta { border-radius: var(--rfm-radius-sm); padding: 60px 48px; }
.rfm-cta--simple { text-align: center; }
.rfm-cta--simple .rfm-cta__buttons { justify-content: center; }
.rfm-cta--two-col { gap: 40px; }
.rfm-cta__eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; margin-bottom: 12px; opacity: 0.7; }
.rfm-cta__heading { font-size: 2rem; font-weight: 500; line-height: 1.2; margin-bottom: 16px; }
.rfm-cta__heading em { color: var(--rfm-primary); }
.rfm-cta__desc { font-size: 1rem; line-height: 1.7; color: var(--rfm-text-muted); margin-bottom: 24px; max-width: 600px; }
.rfm-cta__btn { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 14px 32px; border-radius: 4px; }
.rfm-cta__btn--primary { background: var(--rfm-accent); color: #fff; }
.rfm-cta__btn--primary:hover { background: var(--rfm-accent-hover); color: #fff; }
.rfm-cta__btn--secondary { background: transparent; border: 1px solid rgba(0,0,0,0.2); color: inherit; }
.rfm-cta__btn--secondary:hover { border-color: rgba(0,0,0,0.4); }
.rfm-cta__media img { border-radius: var(--rfm-radius-sm); }
.rfm-cta__text { flex: 0 0 55%; }


/* =============================================================
   Step Process
   ============================================================= */
.rfm-steps--vertical .rfm-step { display: flex; align-items: flex-start; gap: 16px; }
.rfm-steps--horizontal { display: flex; align-items: flex-start; }
.rfm-steps--horizontal .rfm-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.rfm-step__num-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.rfm-step__num {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0; font-weight: 700; text-align: center;
}
.rfm-step__num svg { display: block; width: 50%; height: 50%; }
.rfm-steps--vertical .rfm-step__connector { flex: 1; min-height: 24px; margin: 8px 0; }
.rfm-steps--horizontal .rfm-step__connector { width: 100%; margin: 8px 0; }
.rfm-step__content { min-width: 0; }
.rfm-step__title { margin: 0; }
.rfm-step__desc { margin: 0; }
@media (max-width: 768px) {
  .rfm-steps--horizontal { flex-direction: column; }
  .rfm-steps--horizontal .rfm-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
}

/* Step Defaults */
.rfm-steps--vertical .rfm-step { gap: 20px; }
.rfm-step__num {
  width: 48px; height: 48px; font-size: 1.1rem;
  background: var(--rfm-primary); color: #fff;
}
.rfm-steps--connected .rfm-step__connector { width: 2px; min-height: 20px; flex: 1; background: var(--rfm-border); margin: 6px 0; }
.rfm-step__title { font-size: 1.1rem; font-weight: 600; color: var(--rfm-text); margin-bottom: 4px; }
.rfm-step__desc { font-size: 0.9rem; color: var(--rfm-text-muted); line-height: 1.65; }
.rfm-step__content { padding-bottom: 8px; }
.rfm-steps--horizontal .rfm-step__num-wrap { flex-direction: row; gap: 0; }
.rfm-steps--horizontal .rfm-step__connector {
  height: 2px; width: 100%; flex: 1; margin: 0 8px;
  background: var(--rfm-border); align-self: center;
}


/* =============================================================
   Section Container
   ============================================================= */
.rfm-sec { width: 100%; }
.rfm-sec__inner { margin-left: auto; margin-right: auto; width: 100%; }
.rfm-sec__inner--boxed { max-width: 1280px; padding-left: 60px; padding-right: 60px; }
.rfm-sec__inner--wide { max-width: 1440px; padding-left: 40px; padding-right: 40px; }
.rfm-sec__inner--full { max-width: 100%; }
@media (max-width: 768px) {
  .rfm-sec__inner--boxed, .rfm-sec__inner--wide { padding-left: 20px; padding-right: 20px; }
}


/* =============================================================
   Image Badge
   ============================================================= */
.rfm-ibadge { position: relative; display: inline-block; line-height: 0; }
.rfm-ibadge__img { display: block; width: 100%; height: auto; object-fit: cover; }
.rfm-ibadge--rounded .rfm-ibadge__img { border-radius: 12px; }
.rfm-ibadge--circle .rfm-ibadge__img { border-radius: 50%; aspect-ratio: 1; }
.rfm-ibadge--square .rfm-ibadge__img { border-radius: 0; }
.rfm-ibadge__badge {
  position: absolute; display: flex; flex-direction: column; align-items: center;
  justify-content: center; border-radius: 50%; text-align: center; z-index: 2;
  overflow: hidden; width: 100px; height: 100px; background: var(--rfm-primary);
  box-shadow: 0 6px 20px rgba(194,16,0,0.4);
}
.rfm-ibadge__badge--bottom-right { bottom: -10px; right: -10px; }
.rfm-ibadge__badge--bottom-left  { bottom: -10px; left: -10px; }
.rfm-ibadge__badge--top-right    { top: -10px; right: -10px; }
.rfm-ibadge__badge--top-left     { top: -10px; left: -10px; }
.rfm-ibadge__num { font-weight: 700; line-height: 1; font-size: 24px; color: #fff; }
.rfm-ibadge__label { line-height: 1.2; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; font-size: 11px; color: #fff; }
.rfm-ibadge__accent { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 30%; height: 3px; background: rgba(255,255,255,0.4); border-radius: 2px; }


/* =============================================================
   Gallery Grid
   ============================================================= */
.rfm-gallery { display: grid; width: 100%; gap: 16px; }
.rfm-gallery--cols-1 { grid-template-columns: 1fr; }
.rfm-gallery--cols-2 { grid-template-columns: repeat(2, 1fr); }
.rfm-gallery--cols-3 { grid-template-columns: repeat(3, 1fr); }
.rfm-gallery--cols-4 { grid-template-columns: repeat(4, 1fr); }
.rfm-gallery--cols-5 { grid-template-columns: repeat(5, 1fr); }
.rfm-gallery--cols-6 { grid-template-columns: repeat(6, 1fr); }
.rfm-gallery__item { position: relative; overflow: hidden; display: block; text-decoration: none; border-radius: var(--rfm-radius-sm); }
.rfm-gallery--grid .rfm-gallery__item { height: 280px; }
.rfm-gallery__item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.rfm-gallery__item--tall { grid-row: span 2; }
.rfm-gallery__item--wide { grid-column: span 2; }
.rfm-gallery__item--large { grid-row: span 2; grid-column: span 2; }
.rfm-gallery--grid .rfm-gallery__item--tall,
.rfm-gallery--grid .rfm-gallery__item--large { height: 100%; }
.rfm-gallery--hover-zoom .rfm-gallery__item:hover img,
.rfm-gallery--hover-both .rfm-gallery__item:hover img { transform: scale(1.08); }
.rfm-gallery--hover-overlay .rfm-gallery__item::after,
.rfm-gallery--hover-both .rfm-gallery__item::after {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none;
}
.rfm-gallery--hover-overlay .rfm-gallery__item:hover::after,
.rfm-gallery--hover-both .rfm-gallery__item:hover::after { opacity: 1; }
.rfm-gallery--masonry .rfm-gallery__item { height: auto; }
.rfm-gallery--masonry .rfm-gallery__item img { height: auto; }
@media (max-width: 768px) {
  .rfm-gallery--cols-3, .rfm-gallery--cols-4, .rfm-gallery--cols-5, .rfm-gallery--cols-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .rfm-gallery__item--wide, .rfm-gallery__item--large { grid-column: span 1; }
  .rfm-gallery__item--tall, .rfm-gallery__item--large { grid-row: span 1; }
}
@media (max-width: 480px) {
  .rfm-gallery--cols-2, .rfm-gallery--cols-3, .rfm-gallery--cols-4,
  .rfm-gallery--cols-5, .rfm-gallery--cols-6 { grid-template-columns: 1fr; }
}


/* =============================================================
   Testimonial Carousel
   ============================================================= */
.testimonial-carousel { position: relative; overflow: hidden; margin-top: 48px; }
.testimonial-track { display: flex; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 4px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--rfm-bg-alt); border-radius: 6px; padding: 36px 32px;
  position: relative; border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(194,16,0,0.15); transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--rfm-font-display);
  font-size: 80px; color: var(--rfm-primary); opacity: 0.1;
  position: absolute; top: 16px; left: 28px; line-height: 1;
}
.testimonial-card .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card .star { width: 15px; height: 15px; fill: var(--rfm-accent); stroke: var(--rfm-accent); stroke-width: 1; }
.testimonial-text { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--rfm-text-muted); margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-initials {
  width: 40px; height: 40px; background: var(--rfm-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--rfm-text); }
.testimonial-city { font-size: 12px; color: var(--rfm-text-muted); }

/* Carousel controls */
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 44px; height: 44px; border-radius: 50%; background: transparent;
  border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s;
  position: relative;
}
.carousel-dot::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--rfm-text-light);
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active::after { background: var(--rfm-primary); transform: translate(-50%, -50%) scale(1.3); }
.carousel-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--rfm-border);
  background: var(--rfm-bg); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s;
}
.carousel-btn:hover { border-color: var(--rfm-primary); background: var(--rfm-primary); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { width: 15px; height: 15px; stroke: var(--rfm-text-muted); fill: none; stroke-width: 2; }
.testimonials-footer { text-align: center; margin-top: 36px; }
@media (max-width: 768px) {
  .testimonial-slide { grid-template-columns: 1fr; }
}

/* ── SECTION HEADER ── */
.rfm-sh { margin-bottom: 8px; }
.rfm-sh--left { text-align: left; }
.rfm-sh--center { text-align: center; }
.rfm-sh--center .rfm-sh__desc { margin-left: auto; margin-right: auto; }
.rfm-sh--right { text-align: right; }
.rfm-sh--right .rfm-sh__desc { margin-left: auto; }
.rfm-sh__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--rfm-primary); margin-bottom: 16px;
}
.rfm-sh__eyebrow::before { content: ''; width: 36px; height: 1.5px; background: currentColor; }
.rfm-sh--center .rfm-sh__eyebrow { justify-content: center; }
.rfm-sh__heading {
  font-family: var(--rfm-font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(32px, 4vw, 52px); font-weight: 500; line-height: 1.15;
  color: var(--rfm-text); margin-bottom: 20px;
}
.rfm-sh__heading em { font-style: italic; color: var(--rfm-primary); }
.rfm-sh__desc {
  font-size: 16px; line-height: 1.75; color: var(--rfm-text-muted);
  font-weight: 300; max-width: 560px;
}

/* ── PHONE LINK ── */
.rfm-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: color 0.2s;
}
.rfm-phone--stacked { flex-direction: column; gap: 4px; }
.rfm-phone__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rfm-phone__label { font-size: 0.75em; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.rfm-phone__number { font-weight: 600; }

/* ── SOCIAL ICONS ── */
.rfm-social { display: flex; align-items: center; gap: 14px; }
.rfm-social--vertical { flex-direction: column; }
.rfm-social__link { display: inline-flex; align-items: center; transition: color 0.2s, transform 0.2s; }
.rfm-social__link:hover { transform: translateY(-2px); }

/* ── FOOTER BRAND ── */
.rfm-fbrand__logo { display: block; margin-bottom: 16px; }
.rfm-fbrand__logo img { height: auto; }
.rfm-fbrand__tagline { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.rfm-fbrand__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: color 0.2s, transform 0.25s;
}
.rfm-fbrand__cta:hover { transform: translateX(4px); }
.rfm-fbrand__cta svg { transition: transform 0.25s; }
.rfm-fbrand__cta:hover svg { transform: translateX(3px); }

/* ── FOOTER INFO ── */
.rfm-finfo__title {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px;
}
.rfm-finfo__name { font-weight: 600; margin-bottom: 8px; }
.rfm-finfo__addr { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.rfm-finfo__phone { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.rfm-finfo__phone a { text-decoration: none; transition: color 0.2s; }

/* ── FOOTER BOTTOM ── */
.rfm-fbot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 12px;
}
.rfm-fbot a { text-decoration: none; transition: color 0.2s; }
.rfm-fbot__sep { margin: 0 8px; opacity: 0.4; }
@media (max-width: 768px) {
  .rfm-fbot { flex-direction: column; text-align: center; gap: 8px; }
}

/* ── PRODUCT CAROUSEL ── */
.rfm-pc {
  position: relative; overflow: hidden;
  border: 1px solid var(--rfm-border, #e0e0e0);
  border-radius: 8px; aspect-ratio: 4/5;
}
.rfm-pc__track {
  display: flex; height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rfm-pc__slide {
  min-width: 100%; height: 100%; position: relative;
}
.rfm-pc__slide a { display: block; width: 100%; height: 100%; }
.rfm-pc__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.rfm-pc__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #fff;
}
.rfm-pc__badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  padding: 10px 16px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
}
.rfm-pc__dots {
  position: absolute; bottom: 56px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 8px; z-index: 3;
}
.rfm-pc__dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  cursor: pointer; padding: 0; transition: all 0.3s;
}
.rfm-pc__dot.active {
  width: 24px; border-radius: 4px;
}

/* ── SCROLL CUE ── */
.rfm-scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; transition: opacity 0.3s;
}
.rfm-scroll-cue:hover { opacity: 0.8; }
.rfm-scroll-cue__label {
  font-size: 10px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; writing-mode: vertical-rl;
}
.rfm-scroll-cue__line {
  width: 1px; height: 48px; background: currentColor; opacity: 0.4;
  animation: rfm-scroll-pulse 2s ease-in-out infinite;
}
@keyframes rfm-scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6); opacity: 0.8; }
}
.rfm-scroll-cue--arrow .rfm-scroll-cue__icon svg,
.rfm-scroll-cue--arrow_circle .rfm-scroll-cue__icon svg {
  animation: rfm-scroll-bounce 2s ease-in-out infinite;
}
@keyframes rfm-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.rfm-scroll-cue__circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid currentColor; opacity: 0.4;
  display: flex; align-items: center; justify-content: center;
}
.rfm-scroll-cue__mouse {
  width: 22px; height: 34px; border: 2px solid currentColor;
  border-radius: 11px; position: relative; opacity: 0.5;
}
.rfm-scroll-cue__wheel {
  width: 3px; height: 8px; background: currentColor;
  border-radius: 2px; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: rfm-scroll-wheel 2s ease-in-out infinite;
}
@keyframes rfm-scroll-wheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0; }
}

/* ── ICON CHECKLIST ── */
.rfm-icl { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.rfm-icl--horizontal { flex-direction: row; flex-wrap: wrap; }
.rfm-icl--grid_2col { display: grid; grid-template-columns: 1fr 1fr; }
.rfm-icl__item { display: flex; align-items: flex-start; }
.rfm-icl__item--right { flex-direction: row-reverse; }
.rfm-icl__icon { display: inline-flex; align-items: center; flex-shrink: 0; }
.rfm-icl__text { line-height: 1.6; }

/* ── TRUST BADGES ── */
.rfm-tb__badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.rfm-tb--stacked .rfm-tb__badges { flex-direction: column; align-items: flex-start; }
.rfm-tb--compact .rfm-tb__badges { gap: 8px; }
.rfm-tb__item { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 500; }
.rfm-tb__icon { flex-shrink: 0; }
.rfm-tb__ratings {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 14px; padding: 12px 16px; border-radius: 8px;
  transition: transform 0.3s;
}
.rfm-tb__ratings:hover { transform: translateY(-2px); }
.rfm-tb__rating { text-align: center; transition: transform 0.3s; }
.rfm-tb__rating:hover { transform: translateY(-3px); }
.rfm-tb__rating-stars { font-size: 0.75rem; letter-spacing: 1px; }
.rfm-tb__rating-num { font-size: 0.85rem; font-weight: 700; font-family: var(--rfm-font-display, serif); }
.rfm-tb__rating-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; margin-top: 2px; }
.rfm-tb__rating-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }

/* ── SOCIAL PROOF BADGES ── */
.rfm-spb {
  display: flex; align-items: stretch; justify-content: center; gap: 8px;
  flex-wrap: wrap;
}
.rfm-spb__item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 32px; border-radius: 8px;
  transition: all 0.35s; cursor: default;
  flex: 1 1 0%; min-width: 0;
}
.rfm-spb__item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(194,16,0,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.rfm-spb__icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rfm-spb__stars { font-size: 0.6rem; letter-spacing: 2px; line-height: 1; margin-bottom: 2px; color: #F59E0B; }
.rfm-spb__name { font-size: 0.78rem; font-weight: 600; line-height: 1.2; margin-bottom: 1px; }
.rfm-spb__score { font-size: 0.65rem; font-weight: 400; }
@media (max-width: 768px) {
  .rfm-spb { gap: 10px; }
  .rfm-spb__item { padding: 12px 20px; flex: calc(50% - 10px); max-width: calc(50% - 10px); }
}
@media (max-width: 480px) {
  .rfm-spb__item { flex: 100%; max-width: 100%; }
}
