/*
Theme Name: FST Hello Child
Theme URI: https://fstpainrelief.com
Description: Hello Elementor child theme — Full Spectrum Editorial v5 (Stitch exact match)
Author: MMF Infotech
Template: hello-elementor
Version: 5.9.5
Text Domain: fst-hello-child
*/

/* ══ Fonts ══════════════════════════════════════════════════════ */
/* Gilroy via jsDelivr CDN (Fontshare API returns empty — broken CDN) */
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-Heavy.woff') format('woff');
  font-weight: 850;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.jsdelivr.net/npm/@qpokychuk/gilroy@1.0.2/src/Gilroy-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,100,0,0');

/* ══ Design Tokens (exact Stitch values) ════════════════════════ */
:root {
  --bg:                    #0d0d0d;
  --surface:               #131313;
  --surface-dim:           #131313;
  --surface-low:           #1c1b1b;
  --surface-container:     #201f1f;
  --surface-container-low: #1c1b1b;
  --surface-container-lowest: #0e0e0e;
  --on-surface:            #F5F5F5;
  --on-surface-var:        #F5F5F5;
  --blue:                  #0077B6;
  --white:                 #F5F5F5;
  --silver:                #F5F5F5;
  --border:                rgba(255,255,255,0.1);
  --font-clash:            'Gilroy', sans-serif;
  --font-inter:            'Gilroy', sans-serif;
  --container:             1440px;
  --section-gap:           160px;
  --gutter:                24px;
}

/* ══ Reset & Base ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg) !important;
  color: var(--on-surface);
  font-family: 'Gilroy', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ══ GLOBAL GILROY ENFORCEMENT ══════════════════════════════════
   Elementor's per-widget CSS sets font-family: "Clash Display" / "Inter"
   without !important. This !important block beats all of those.
   Excluded: Material Symbols (icon font) — protected by higher specificity rules below. */
.elementor-heading-title,
.elementor-widget-text-editor *,
.elementor-widget-button .elementor-button,
.elementor-widget-button .elementor-button-text,
h1, h2, h3, h4, h5, h6, p, span, a, li, input, textarea, button, label {
  font-family: 'Gilroy', sans-serif !important;
}
/* Material Symbols exception — must come AFTER Gilroy block to win the !important war */
.material-symbols-outlined,
.elementor-widget-text-editor .material-symbols-outlined,
span.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-size: inherit;
  letter-spacing: normal !important;
  text-transform: none !important;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Hide WP page title */
.entry-title { display: none !important; }
/* Remove Elementor default padding */
.elementor-section.elementor-section-boxed > .elementor-container { max-width: 1440px !important; }

/* ══ Scroll Progress Bar ════════════════════════════════════════ */
.fst-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--blue);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ══ NAV ════════════════════════════════════════════════════════ */
.fst-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(19,19,19,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fst-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.fst-nav__logo {
  font-family: var(--font-clash);
  font-size: 20px;
  font-weight: 700;
  color: #F5F5F5;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.fst-nav__links {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 48px;
}
.fst-nav__links a {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F5F5F5;
  text-decoration: none;
  transition: color 0.3s;
}
.fst-nav__links a:hover,
.fst-nav__links a.active { color: #F5F5F5; }
.fst-nav__cta {
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F5F5F5;
  background: #0077B6;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 0;
  transition: opacity 0.2s;
}
.fst-nav__cta:hover { opacity: 0.85; color: #fff; }

/* ── Nav dropdown (services menu) ─────────────────────────── */
.fst-nav__item { position: relative; list-style: none; }

.fst-nav__dropdown {
  position: absolute;
  top: 100%;           /* flush — no gap, no dead zone */
  left: -24px;
  background: transparent;
  min-width: 220px;
  padding-top: 16px;   /* visual breathing room, but still hoverable */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  pointer-events: none;
}

/* Actual visible panel lives inside ::after so padding gap is transparent */
.fst-nav__dropdown::after {
  content: '';
  position: absolute;
  inset: 16px 0 0 0;   /* sits below the 16px padding bridge */
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: -1;
}

/* small top notch indicator */
.fst-nav__dropdown::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 36px;
  width: 8px;
  height: 8px;
  background: rgba(13,13,13,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: rotate(45deg);
  z-index: 1;
}

.fst-has-dropdown:hover .fst-nav__dropdown,
.fst-has-dropdown:focus-within .fst-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fst-nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  position: relative; /* sits above ::after panel */
  font-family: var(--font-inter);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5F5F5;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.22s cubic-bezier(0.22,1,0.36,1);
  border-left: 2px solid transparent;
}
.fst-nav__dropdown a:hover {
  color: #F5F5F5;
  padding-left: 32px;
  border-left-color: #0077B6;
}

/* ══ SECTION 1 — HERO ══════════════════════════════════════════ */

/* Fix Elementor 4.x column widths (not auto-generated from _column_size) */
#fst-hero-left {
  flex: 0 0 66.667% !important;
  width: 66.667% !important;
  max-width: 66.667% !important;
}
/* #fst-hero-right column removed — empty column deleted from JSON */

/* Pill label: bg #1c1b1b, border #0077B6, px-12px py-4px */
.fst-pill .elementor-heading-title,
.fst-pill.elementor-heading-title {
  display: inline-block !important;
  background: #1c1b1b !important;
  border: 1px solid #0077B6 !important;
  padding: 4px 12px !important;
  font-family: var(--font-inter) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #0077B6 !important;
  border-radius: 0 !important;
}
/* Proof section pill variant — same style */
.fst-pill--sm .elementor-heading-title { padding: 4px 12px !important; }

/* ── Glass card row — 2-column inner section at bottom of hero ── */
#fst-glass-row {
  max-width: 520px !important;
}
#fst-glass-row > .elementor-container {
  gap: 16px !important;
}

/* Each card column = glassmorphism panel (target via structure, _css_classes won't work on cols) */
#fst-glass-row .elementor-col-50 > .elementor-element-populated {
  background: rgba(24,28,32,0.45) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1) !important;
  padding: 28px !important;
}
#fst-glass-row .elementor-col-50:hover > .elementor-element-populated {
  transform: translateY(-4px) !important;
}
/* Card 01 (first column) — blue left accent border */
#fst-glass-row .elementor-col-50:first-child > .elementor-element-populated {
  border-left: 4px solid #0077B6 !important;
}
/* Glass card typography */
#fst-glass-row .elementor-heading-title { margin-bottom: 0 !important; }

/* Glass row widgets — override scroll-reveal opacity 0 with CSS keyframe animations.
   They're in a nested inner section so the hero JS timer won't reach them. */
#fst-glass-row .elementor-widget {
  opacity: 0;
  animation: fst-slide-up 0.65s cubic-bezier(0.22,1,0.36,1) both !important;
}



#fst-glass-row .elementor-col-50:first-child .elementor-widget:nth-child(1)  { animation-delay: 1.0s !important; }
#fst-glass-row .elementor-col-50:first-child .elementor-widget:nth-child(2)  { animation-delay: 1.1s !important; }
#fst-glass-row .elementor-col-50:last-child  .elementor-widget:nth-child(1)  { animation-delay: 1.05s !important; }
#fst-glass-row .elementor-col-50:last-child  .elementor-widget:nth-child(2)  { animation-delay: 1.15s !important; }

/* ══ SECTION 2 — STATS BAR ══════════════════════════════════════ */
#fst-stats-section {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
/* Column widths: 4 × 25% */
#fst-stat-1, #fst-stat-2, #fst-stat-3, #fst-stat-4 {
  flex: 0 0 25% !important;
  width: 25% !important;
  max-width: 25% !important;
  text-align: center !important;
}
/* Right borders between stat columns (not on last) */
#fst-stat-1, #fst-stat-2, #fst-stat-3 {
  border-right: 1px solid rgba(255,255,255,0.1) !important;
}
/* Center align stat content */
#fst-stat-1 .elementor-widget-wrap,
#fst-stat-2 .elementor-widget-wrap,
#fst-stat-3 .elementor-widget-wrap,
#fst-stat-4 .elementor-widget-wrap {
  align-items: center !important;
  text-align: center !important;
}
#fst-stat-1 .elementor-heading-title,
#fst-stat-2 .elementor-heading-title,
#fst-stat-3 .elementor-heading-title,
#fst-stat-4 .elementor-heading-title { text-align: center !important; }

/* ══ SECTION 3 — BIO ════════════════════════════════════════════ */
/* Column widths: 42% / 58% */
#fst-bio-left  { flex: 0 0 41.667% !important; width: 41.667% !important; max-width: 41.667% !important; }
#fst-bio-right { flex: 0 0 58.333% !important; width: 58.333% !important; max-width: 58.333% !important;
                 padding-left: 48px !important; }

/* Dennis photo: full grayscale, border, no border-radius */
.fst-dennis-photo img {
  filter: grayscale(100%) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
  display: block !important;
  width: 100% !important;
}

/* "— THE SPECIALIST" section label with blue line */
.fst-section-label .elementor-heading-title {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

/* Text link style */
.fst-text-link .elementor-heading-title {
  border-bottom: 1px solid #0077B6 !important;
  display: inline-block !important;
  padding-bottom: 4px !important;
  cursor: pointer !important;
}

/* ══ SECTION 4 — MARQUEE ════════════════════════════════════════ */
#fst-marquee-section {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  overflow: hidden !important;
}
.fst-marquee-outer .elementor-text-editor { overflow: hidden !important; white-space: nowrap !important; }
.fst-marquee-inner {
  display: inline-block !important;
  animation: fst-scroll 30s linear infinite !important;
  white-space: nowrap !important;
}
@keyframes fst-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ SECTION 5 — PROOF ══════════════════════════════════════════ */
/* Proof header inner section columns */
#fst-proof-section .elementor-inner-section:first-child .elementor-col-67 {
  flex: 0 0 66.667% !important; width: 66.667% !important; max-width: 66.667% !important;
}
#fst-proof-section .elementor-inner-section:first-child .elementor-col-33 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}

/* Proof cards column widths: 58% / 42% row1, 42% / 58% row2 */
#fst-proof-card1 { flex: 0 0 58.333% !important; width: 58.333% !important; max-width: 58.333% !important; }
#fst-proof-card2 { flex: 0 0 41.667% !important; width: 41.667% !important; max-width: 41.667% !important; }
#fst-proof-card3 { flex: 0 0 41.667% !important; width: 41.667% !important; max-width: 41.667% !important; }
#fst-proof-card4 { flex: 0 0 58.333% !important; width: 58.333% !important; max-width: 58.333% !important; }

/* Card base styling — Elementor 4.x doesn't apply _css_classes to columns,
   so target by ID + child populated div for both border and background */
#fst-proof-card1 > .elementor-element-populated,
#fst-proof-card2 > .elementor-element-populated,
#fst-proof-card3 > .elementor-element-populated,
#fst-proof-card4 > .elementor-element-populated {
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 0 !important;
}

/* Card backgrounds */
#fst-proof-card1 > .elementor-element-populated { background-color: #201f1f !important; }
#fst-proof-card2 > .elementor-element-populated { background-color: #1c1b1b !important; }
#fst-proof-card3 > .elementor-element-populated { background-color: #201f1f !important; }
#fst-proof-card4 > .elementor-element-populated { background-color: #131313 !important; overflow: hidden !important; }

/* Card 4 — full-bleed image with text at BOTTOM
   NOTE: .elementor-element-populated === .elementor-widget-wrap (same div in Elementor 4.x)
   So we target the single div directly and also the image widget inside it. */

#fst-proof-card4 > .elementor-widget-wrap.elementor-element-populated {
  /* Card sizing */
  position: relative !important;
  min-height: 400px !important;
  overflow: hidden !important;
  /* Remove default padding so image is flush */
  padding: 0 !important;
  /* Flex: column, text items at bottom */
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

/* Image: absolute, fills card, lowest layer */
#fst-proof-card4 .elementor-widget-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}
#fst-proof-card4 .elementor-widget-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: grayscale(100%) !important;
  opacity: 0.35 !important;
  display: block !important;
}

/* Dark-to-transparent gradient, bottom-up */
#fst-proof-card4 > .elementor-widget-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Text widgets: flex items, sit on top of gradient */
#fst-proof-card4 .elementor-widget:not(.elementor-widget-image) {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
  margin: 0 !important;
}
/* Bottom padding on the last text widget */
#fst-proof-card4 .elementor-widget:last-child {
  padding-bottom: 32px !important;
}
/* Top label spacing */
#fst-proof-card4 .elementor-widget:not(.elementor-widget-image):first-of-type {
  padding-top: 16px !important;
}

/* Card 3 — min-height to match card 4 */
#fst-proof-card3 > .elementor-widget-wrap.elementor-element-populated {
  min-height: 400px !important;
}

/* Quote text */
.fst-quote-text { font-style: italic; }

/* Proof section inner section column wrapper full width */
#fst-proof-section > .elementor-container > .elementor-col-100 {
  flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
}

/* ══ SECTION 6 — CTA ════════════════════════════════════════════ */
/* Elementor 4.x doesn't compile background_color to CSS without background_background:classic */
/* Force it via CSS directly */
#fst-cta-section {
  background-color: #0077B6 !important;
}
#fst-cta-section .elementor-col-50 {
  flex: 0 0 50% !important; width: 50% !important; max-width: 50% !important;
}
#fst-cta-section .elementor-heading-title { color: #ffffff !important; }
#fst-cta-section .elementor-button { border-radius: 0 !important; }

/* ══ SECTION — FAQ ══════════════════════════════════════════════ */
#fst-faq-section {
  background: #0d0d0d !important;
}

/* Label pill */
#fst-faq-section .fst-faq-label .elementor-heading-title {
  display: inline-block !important;
  border: 1px solid rgba(0,119,182,0.35) !important;
  border-radius: 9999px !important;
  padding: 6px 18px !important;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #0077B6 !important;
  margin-bottom: 16px !important;
}

/* Section heading */
#fst-faq-section .fst-faq-heading .elementor-heading-title {
  font-size: clamp(32px, 4.5vw, 52px) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  line-height: 0.95em !important;
  color: #F5F5F5 !important;
}

/* Accordion wrapper — constrain width, center */
#fst-faq-section .elementor-accordion {
  max-width: 820px !important;
  margin: 0 auto !important;
}

/* Each accordion item — glass card */
#fst-faq-section .elementor-accordion-item {
  background: rgba(24,28,32,0.55) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 14px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
  transition: border-color 0.25s ease !important;
}
#fst-faq-section .elementor-accordion-item:hover {
  border-color: rgba(0,119,182,0.35) !important;
}

/* Blue left accent on active item */
#fst-faq-section .elementor-accordion-item:has(.elementor-active) {
  border-left: 3px solid #0077B6 !important;
}

/* Question row */
#fst-faq-section .elementor-tab-title {
  background: transparent !important;
  border: none !important;
  padding: 22px 28px !important;
  font-family: 'Gilroy', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #E8E8E8 !important;
  letter-spacing: 0.005em !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}
#fst-faq-section .elementor-tab-title.elementor-active {
  color: #0077B6 !important;
}
#fst-faq-section .elementor-tab-title a {
  color: inherit !important;
  text-decoration: none !important;
}

/* Icon */
#fst-faq-section .elementor-accordion-icon {
  color: #0077B6 !important;
  font-size: 13px !important;
  transition: transform 0.3s ease !important;
}
#fst-faq-section .elementor-tab-title.elementor-active .elementor-accordion-icon,
#fst-faq-section .elementor-tab-title.elementor-active .elementor-accordion-icon i,
#fst-faq-section .elementor-tab-title:hover .elementor-accordion-icon {
  color: #0077B6 !important;
  transform: rotate(45deg) !important;
}

/* Answer text */
#fst-faq-section .elementor-tab-content {
  background: transparent !important;
  border: none !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 20px 28px 26px !important;
  color: rgba(245,245,245,0.85) !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
  font-family: 'Gilroy', sans-serif !important;
}
#fst-faq-section .elementor-tab-content p { margin: 0 !important; }
#fst-faq-section .elementor-tab-content a {
  color: #0077B6 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* ══ SECTION 7 — FOOTER ═════════════════════════════════════════ */
#fst-footer-section {
  background-color: #131313 !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}
/* Footer main row: 50% / 25% / 25% */
#fst-footer-main .elementor-col-50 { flex: 0 0 50% !important; width: 50% !important; max-width: 50% !important; }
#fst-footer-main .elementor-col-25 { flex: 0 0 25% !important; width: 25% !important; max-width: 25% !important; }
/* Footer bottom bar: 67% / 33% */
#fst-footer-bottom .elementor-col-67 { flex: 0 0 66.667% !important; width: 66.667% !important; max-width: 66.667% !important; }
#fst-footer-bottom .elementor-col-33 { flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important; }
#fst-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1) !important; }

/* Footer logo - very dark, large */
#fst-footer-section .elementor-col-50:first-child .elementor-heading-title {
  opacity: 0.3;
  line-height: 1 !important;
}

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════════ */
@keyframes fst-slide-up {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fst-slide-right {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fst-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fst-draw-line {
  from { transform: scaleX(0); transform-origin: left center; }
  to   { transform: scaleX(1); transform-origin: left center; }
}
@keyframes fst-num-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ══ SCROLL REVEAL ANIMATION ════════════════════════════════════ */
/* Spacers and dividers are never hidden (no visible content to animate) */
.elementor-widget-spacer,
.elementor-widget-divider { opacity: 1 !important; transform: none !important; transition: none !important; }

.elementor-widget {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.elementor-widget.fst-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Elementor editor preview — disable scroll reveal so client can see & edit content */
.e-preview--show-hidden-elements .elementor-widget {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* ══ HERO — CSS keyframe stagger (no transition, animations handle it) ══ */
#fst-hero-section .elementor-widget {
  transition: none !important; /* keyframes handle entry */
}

/* Pill label — in first */
#fst-hero-left .elementor-widget-wrap > .elementor-element:nth-child(1) {
  animation: fst-slide-up 0.55s cubic-bezier(0.22,1,0.36,1) both 0.12s;
}
/* H1 line 1 — REDEFINING */
#fst-hero-left .elementor-widget-wrap > .elementor-element:nth-child(3) {
  animation: fst-slide-up 0.75s cubic-bezier(0.22,1,0.36,1) both 0.28s;
}
/* H1 line 2 — PHYSICAL */
#fst-hero-left .elementor-widget-wrap > .elementor-element:nth-child(4) {
  animation: fst-slide-up 0.75s cubic-bezier(0.22,1,0.36,1) both 0.42s;
}
/* H1 line 3 — RECOVERY (blue) */
#fst-hero-left .elementor-widget-wrap > .elementor-element:nth-child(5) {
  animation: fst-slide-up 0.75s cubic-bezier(0.22,1,0.36,1) both 0.56s;
}
/* CTA row — button + description */
#fst-hero-left .elementor-widget-wrap > .elementor-element:nth-child(7) {
  animation: fst-slide-up 0.65s cubic-bezier(0.22,1,0.36,1) both 0.82s;
}
/* Glass cards — fade-up from bottom of hero */
.fst-glass-card {
  animation: fst-slide-up 0.75s cubic-bezier(0.22,1,0.36,1) both 0.9s;
}
.fst-glass-card + .fst-glass-card {
  animation-delay: 1.05s !important;
}

/* ══ HOVER — Glass cards (enhance existing tilt) ══════════════════ */
#fst-glass-01, #fst-glass-02 {
  cursor: default;
  transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}
#fst-glass-01:hover, #fst-glass-02:hover {
  box-shadow: 0 12px 48px rgba(0,119,182,0.22),
              0 0 0 1px rgba(0,119,182,0.25) !important;
}

/* ══ HOVER — Stats columns ════════════════════════════════════════ */
#fst-stats-section .elementor-column {
  transition: background 0.3s ease !important;
}
#fst-stats-section .elementor-column:hover {
  background: rgba(0,119,182,0.06) !important;
}
/* Stats number pop on counter finish */
.fst-counted { animation: fst-num-pop 0.35s cubic-bezier(0.22,1,0.36,1); }

/* ══ HOVER — Proof inner cards ════════════════════════════════════ */
#fst-proof-section .elementor-inner-section {
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1) !important;
}
#fst-proof-section .elementor-inner-section:hover {
  transform: translateY(-6px) !important;
}

/* ══ Proof divider line draw ══════════════════════════════════════ */
.fst-proof-draw .elementor-divider-separator {
  animation: fst-draw-line 0.9s cubic-bezier(0.22,1,0.36,1) forwards !important;
}

/* ══ HOVER — Buttons ══════════════════════════════════════════════ */
/* Global button defaults — blue background, white text. Overridden per-section where needed. */
.elementor-button-wrapper .elementor-button,
.elementor-widget-button .elementor-button {
  background-color: #0077B6 !important;
  color: #F5F5F5 !important;
  border-color: #0077B6 !important;
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              filter 0.22s ease !important;
}
.elementor-button-wrapper .elementor-button:hover,
.elementor-widget-button .elementor-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35) !important;
  filter: brightness(1.1) !important;
}

/* ══ HOVER — Nav links underline sweep ════════════════════════════ */
.fst-nav__links a {
  position: relative;
  padding-bottom: 2px;
}
.fst-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0077B6;
  transition: width 0.32s cubic-bezier(0.22,1,0.36,1);
}
.fst-nav__links a:hover::after,
.fst-nav__links a.active::after { width: 100%; }

/* ══ HOVER — Nav CTA button ════════════════════════════════════════ */
.fst-nav__cta {
  transition: background 0.22s ease,
              transform 0.22s ease,
              box-shadow 0.22s ease !important;
}
.fst-nav__cta:hover {
  background: #0092d4 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(0,119,182,0.45) !important;
}

/* ══ HOVER — Footer links ══════════════════════════════════════════ */
#fst-footer-section .elementor-widget-heading .elementor-heading-title {
  transition: color 0.22s ease, letter-spacing 0.22s ease !important;
  cursor: pointer;
}
#fst-footer-section .elementor-widget-heading .elementor-heading-title:hover {
  color: #0077B6 !important;
  letter-spacing: 0.14em !important;
}

/* ══ HOVER — Bio methodology link ═════════════════════════════════ */
#fst-bio-section .elementor-heading-title[class] {
  transition: color 0.2s ease, letter-spacing 0.25s ease !important;
}

/* ══ CTA section — no scroll hide (bg color makes it always obvious) ═ */
#fst-cta-section .elementor-widget {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES LISTING PAGE
══════════════════════════════════════════════════════════════ */

/* ── Backgrounds (Elementor 4.x background_color bug) ── */
#fst-services-hero,
#fst-services-list,
#fst-services-cta { background-color: #0d0d0d !important; }
#fst-services-marquee { background-color: #0e0e0e !important; }

/* ── Services hero column widths ── */
#fst-services-hero .elementor-col-67 {
  flex: 0 0 66.667% !important; width: 66.667% !important; max-width: 66.667% !important;
}
#fst-services-hero .elementor-col-33 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}

/* ── Service rows — bottom border + hover tint ── */
#fst-services-list .elementor-inner-section {
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  transition: background 0.3s ease !important;
}
#fst-services-list .elementor-inner-section:hover {
  background: rgba(255,255,255,0.02) !important;
  cursor: pointer;
}

/* ── Service name: slide right on row hover ── */
.fst-service-name .elementor-heading-title {
  display: inline-block !important;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1) !important;
}
#fst-services-list .elementor-inner-section:hover .fst-service-name .elementor-heading-title {
  transform: translateX(16px) !important;
}

/* ── Arrow: Material Symbols icon, dim by default, blue on hover ── */
.fst-service-arrow .elementor-heading-title {
  font-family: 'Material Symbols Outlined' !important;
  font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 24 !important;
  font-feature-settings: 'liga' 1 !important;
  -webkit-font-feature-settings: 'liga' 1 !important;
  font-size: 36px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #F5F5F5 !important;
  transition: color 0.3s ease !important;
}
#fst-services-list .elementor-inner-section:hover .fst-service-arrow .elementor-heading-title {
  color: #0077B6 !important;
}

/* ── Services marquee — top/bottom borders (shares .fst-marquee-inner animation) ── */
#fst-services-marquee {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  overflow: hidden !important;
}

/* ── Services CTA — fix non-standard col-83 width ── */
#fst-services-cta .elementor-col-83 {
  flex: 0 0 83.333% !important;
  width: 83.333% !important;
  max-width: 83.333% !important;
}

/* ── Services CTA glass box — Stitch exact match ── */
/* glass-panel: rgba(245,245,245,0.04) bg + blur(20) + white border */
/* + border-surgical-blue/40 overlay (overrides white border) */
#fst-services-cta .elementor-col-83 > .elementor-element-populated {
  background: rgba(245,245,245,0.04) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0,119,182,0.4) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* ── CTA watermark "FULL" — absolute bottom-right, 200px, opacity 3% ── */
#fst-services-cta .fst-cta-watermark {
  position: absolute !important;
  bottom: -80px !important;
  right: -60px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
#fst-services-cta .fst-cta-watermark .elementor-heading-title {
  font-size: 200px !important;
  line-height: 1 !important;
  opacity: 0.03 !important;
  color: #F5F5F5 !important;
  white-space: nowrap !important;
  transition: opacity 0.5s ease !important;
}
/* Hover: opacity bumps to 0.1 (matches Stitch group-hover:opacity-10) */
#fst-services-cta .elementor-col-83:hover .fst-cta-watermark .elementor-heading-title {
  opacity: 0.1 !important;
}

/* ── CTA text + button sit above watermark ── */
#fst-services-cta .elementor-col-83 .elementor-widget:not(.fst-cta-watermark) {
  position: relative !important;
  z-index: 1 !important;
}

/* ══════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES
══════════════════════════════════════════════════════════════ */

/* ── Backgrounds (Elementor 4.x bug) ── */
#fst-detail-hero,
#fst-detail-stats,
#fst-detail-mechanism,
#fst-detail-cta { background-color: #0d0d0d !important; }
#fst-detail-marquee { background-color: #000000 !important; }

/* ── Detail hero column widths ── */
#fst-detail-hero .elementor-col-67 {
  flex: 0 0 66.667% !important; width: 66.667% !important; max-width: 66.667% !important;
}
#fst-detail-hero .elementor-col-33 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}

/* ── Detail hero image — 600px full-width ── */
#fst-detail-hero .fst-detail-hero-img img {
  display: block !important;
  width: 100% !important;
  height: 600px !important;
  object-fit: cover !important;
}

/* ── Detail stats — column separator borders + hover tint ── */
#fst-stats-row .elementor-column {
  border-right: 1px solid rgba(255,255,255,0.1) !important;
  transition: background 0.3s ease !important;
}
#fst-stats-row .elementor-column:last-child { border-right: none !important; }
#fst-stats-row .elementor-column:hover { background: rgba(0,119,182,0.06) !important; }

/* ── Mechanism: 33/67 column widths ── */
#fst-detail-mechanism .elementor-col-33 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}
#fst-detail-mechanism .elementor-col-67 {
  flex: 0 0 66.667% !important; width: 66.667% !important; max-width: 66.667% !important;
}

/* ── Mechanism step: 15/85 column widths ── */
#fst-detail-mechanism .elementor-col-15 {
  flex: 0 0 15% !important; width: 15% !important; max-width: 15% !important;
}
#fst-detail-mechanism .elementor-col-85 {
  flex: 0 0 85% !important; width: 85% !important; max-width: 85% !important;
}

/* ── Mechanism step: numbers always white, no hover change ── */
.fst-step-num .elementor-heading-title {
  color: #F5F5F5 !important;
  transition: none !important;
}

/* ── Detail marquee animation ── */
#fst-detail-marquee { overflow: hidden !important; }
.fst-detail-marquee-outer .elementor-text-editor {
  overflow: hidden !important;
  white-space: nowrap !important;
}
.fst-detail-marquee-inner {
  display: inline-block !important;
  animation: fst-scroll 40s linear infinite !important;
  white-space: nowrap !important;
}

/* ── Services list: fix non-standard column widths (8% num, 17% arrow) ── */
#fst-services-list .elementor-col-8 {
  flex: 0 0 8% !important; width: 8% !important; max-width: 8% !important;
}
#fst-services-list .elementor-col-17 {
  flex: 0 0 17% !important; width: 17% !important; max-width: 17% !important;
}

/* ── Vertically center all column content within each service row ── */
#fst-services-list .elementor-inner-section .elementor-widget-wrap {
  align-items: center !important;
  justify-content: center !important;
}
/* Number and arrow — center but don't stretch */
#fst-services-list .elementor-col-8 .elementor-widget-wrap,
#fst-services-list .elementor-col-17 .elementor-widget-wrap {
  justify-content: flex-start !important;
}
#fst-services-list .elementor-col-17 .elementor-widget-wrap {
  justify-content: flex-end !important;
}

/* ── Service name link — no underline, inherits colour ── */
#fst-services-list .fst-service-name .elementor-heading-title a {
  color: inherit !important;
  text-decoration: none !important;
}
/* Full-row click handled in main.js (JS reads href + navigates on row click) */

/* ── Services hero: constrain description width to force 3-line wrap ── */
#fst-services-hero .elementor-col-67 .elementor-widget-text-editor {
  max-width: 540px !important;
}

/* ══════════════════════════════════════════════════════════════
   CLINICAL INSIGHTS PAGE (ID 76)
══════════════════════════════════════════════════════════════ */

/* Backgrounds */
#fst-insights-hero, #fst-insights-div,
#fst-insights-journal, #fst-insights-stats { background-color: #0d0d0d !important; }

/* Display XL: massive headline */
.fst-display-xl .elementor-heading-title {
  font-size: 120px !important;
  line-height: 0.9 !important;
  letter-spacing: -0.04em !important;
}

/* Description box with top border at ~40% width */
.fst-insights-desc {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  padding-top: 24px !important;
  max-width: 480px !important;
}
.fst-insights-desc p {
  font-size: 20px !important;
  color: #F5F5F5 !important;
  line-height: 1.6 !important;
  font-family: 'Gilroy', sans-serif !important;
}

/* Section number heading: subtle watermark but legible */
.fst-section-num .elementor-heading-title { opacity: 0.35 !important; }

/* Article images: overflow + grayscale */
#fst-insights-journal .fst-article-img {
  overflow: hidden !important;
  display: block !important;
}
#fst-insights-journal .fst-article-img img {
  filter: grayscale(100%) contrast(1.25) !important;
  transition: transform 0.7s ease !important;
  display: block !important;
  width: 100% !important;
  object-fit: cover !important;
}
.fst-art-01-img img { aspect-ratio: 4/5 !important; max-height: 480px; }
.fst-art-02-img img { aspect-ratio: 16/9 !important; }
.fst-art-03-img img { aspect-ratio: 1/1 !important; max-height: 360px; }

/* Hover scale on article images */
#fst-art-01:hover .fst-article-img img,
#fst-art-02:hover .fst-article-img img,
#fst-art-03:hover .fst-article-img img { transform: scale(1.05) !important; }

/* Article cards: cursor + title hover colour */
#fst-art-01, #fst-art-02, #fst-art-03 { cursor: pointer; }
.fst-art-num .elementor-heading-title { opacity: 0.4 !important; }
#fst-art-01:hover .fst-art-title .elementor-heading-title,
#fst-art-02:hover .fst-art-title .elementor-heading-title,
#fst-art-03:hover .fst-art-title .elementor-heading-title { color: #0077B6 !important; }
.fst-art-title .elementor-heading-title {
  transition: color 0.3s ease !important;
}

/* Newsletter bento box */
#fst-insights-newsletter > .elementor-element-populated {
  background-color: #181c20 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

/* Insights stats section: borders + stat colour */
#fst-insights-stats {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
#fst-istat-1, #fst-istat-2, #fst-istat-3 {
  border-right: 1px solid rgba(255,255,255,0.1) !important;
}
#fst-istat-1 .elementor-widget-wrap,
#fst-istat-2 .elementor-widget-wrap,
#fst-istat-3 .elementor-widget-wrap,
#fst-istat-4 .elementor-widget-wrap {
  align-items: flex-start !important;
  padding-left: 32px !important;
}
#fst-insights-stats .elementor-column:hover { background: rgba(0,119,182,0.06) !important; }

/* ══════════════════════════════════════════════════════════════
   BLOG DETAIL PAGE (ID 288)
══════════════════════════════════════════════════════════════ */

/* Backgrounds */
#fst-blog-hero, #fst-blog-image,
#fst-blog-content, #fst-blog-newsletter { background-color: #0d0d0d !important; }

/* Hero descriptor */
.fst-hero-desc p {
  font-size: 22px !important;
  line-height: 1.6 !important;
  color: #e0e2e8 !important;
  font-family: 'Gilroy', sans-serif !important;
  opacity: 0.9;
}

/* Featured image: 21:9, grayscale */
.fst-blog-feat-img { overflow: hidden !important; display: block !important; }
.fst-blog-feat-img img {
  width: 100% !important;
  aspect-ratio: 21/9 !important;
  object-fit: cover !important;
  filter: grayscale(100%) brightness(0.75) !important;
  display: block !important;
  transition: transform 1s ease !important;
}
#fst-blog-image:hover .fst-blog-feat-img img { transform: scale(1.03) !important; }

/* Body text */
.fst-body-lg p {
  font-size: 20px !important;
  line-height: 1.8 !important;
  color: rgba(224,226,232,0.9) !important;
  font-family: 'Gilroy', sans-serif !important;
}

/* Sidebar labels */
.fst-sidebar-label .elementor-heading-title {
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  font-family: 'Gilroy', sans-serif !important;
  text-transform: uppercase !important;
}
.fst-sidebar-dim .elementor-heading-title { color: #F5F5F5 !important; }

/* Sidebar dividers */
#fst-blog-content .elementor-col-33 .elementor-widget-divider {
  opacity: 0.4 !important;
  margin: 8px 0 !important;
}

/* Pull quote: top/bottom border + italic */
#fst-pull-quote-row {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}
.fst-pull-quote .elementor-heading-title {
  font-style: italic !important;
  line-height: 1.1 !important;
}

/* Data viz box — target the inner section directly */
#fst-blog-data {
  background-color: #111111 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 2px !important;
  overflow: hidden !important;
}
#fst-bstat-1, #fst-bstat-2, #fst-bstat-3 {
  border-left: 1px solid rgba(255,255,255,0.1) !important;
}
#fst-bstat-1 .elementor-widget-wrap,
#fst-bstat-2 .elementor-widget-wrap,
#fst-bstat-3 .elementor-widget-wrap,
#fst-bstat-4 .elementor-widget-wrap { padding-left: 24px !important; }

/* Blog content column widths (both standard but need confirm) */
#fst-blog-content .elementor-col-33 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}
#fst-blog-content .elementor-col-67 {
  flex: 0 0 66.667% !important; width: 66.667% !important; max-width: 66.667% !important;
}

/* Blog newsletter top border */
#fst-blog-newsletter {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}

/* ══ ABOUT PAGE ══════════════════════════════════════════════════ */
.fst-about-photo .elementor-heading-title {
  background: rgba(245,245,245,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  aspect-ratio: 3/4 !important; display: flex !important;
  align-items: center !important; justify-content: center !important;
  padding: 80px 40px !important; font-size: 12px !important;
  color: #404850 !important; letter-spacing: 0.1em !important;
}
#fst-about-img > .elementor-element-populated {
  background: rgba(245,245,245,0.02) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  min-height: 500px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
}
/* About credentials — 5-col equal grid */
#fst-about-credentials-inner .elementor-col-20 {
  flex: 0 0 20% !important; width: 20% !important; max-width: 20% !important;
}

/* ══ CONTACT PAGE ════════════════════════════════════════════════ */
#fst-contact-card > .elementor-element-populated {
  background: rgba(245,245,245,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  padding: 48px !important;
}
#fst-contact-info .elementor-col-50:first-child > .elementor-element-populated {
  padding-right: 80px !important;
}
/* Contact hours — 33/33/34 col fix */
#fst-contact-hours-inner .elementor-col-34 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}

/* ══ BOOK PAGE ═══════════════════════════════════════════════════ */
#fst-book-process-inner .elementor-col-34 {
  flex: 0 0 33.333% !important; width: 33.333% !important; max-width: 33.333% !important;
}
#fst-book-testimonial .elementor-heading-title {
  font-style: italic !important; line-height: 1.2 !important;
}

/* ══ INSURANCE PAGE ══════════════════════════════════════════════ */
/* (no special overrides needed beyond shared styles) */

/* ══ ABOUT PAGE ══════════════════════════════════════════════════ */

/* Hero heading size — clamp for responsiveness */
#fst-about-hero .elementor-heading-title { line-height: 1.0 !important; }

/* Story section — non-standard col sizes */
#fst-about-story-inner .elementor-col-33 {
  flex: 0 0 33% !important; width: 33% !important; max-width: 33% !important;
}
#fst-about-story-inner .elementor-col-67 {
  flex: 0 0 67% !important; width: 67% !important; max-width: 67% !important;
}

/* Dennis photo — full-width, 4/5 aspect, grayscale + hover colour */
.fst-dennis-story-photo { display: block !important; }
.fst-dennis-story-photo img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  object-fit: cover !important;
  filter: grayscale(1) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: filter 1s ease !important;
  display: block !important;
}
.fst-dennis-story-photo img:hover { filter: grayscale(0) !important; }

/* Marquee — overflow hidden + animation */
#fst-about-marquee {
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  overflow: hidden !important;
}
.fst-about-marquee-wrap { overflow: hidden !important; display: block !important; }
.fst-about-marquee-inner {
  display: inline-block !important;
  white-space: nowrap !important;
  animation: marquee 35s linear infinite !important;
}

/* Method section — non-standard col sizes */
#fst-about-method-inner .elementor-col-67 {
  flex: 0 0 67% !important; width: 67% !important; max-width: 67% !important;
}
#fst-about-method-inner .elementor-col-33 {
  flex: 0 0 33% !important; width: 33% !important; max-width: 33% !important;
}

/* Method text column — left padding to separate from card grid */
#fst-method-text > .elementor-element-populated {
  padding-left: 56px !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

/* Method rows gap */
#fst-method-row1 .elementor-container,
#fst-method-row2 .elementor-container { gap: 16px !important; }

/* Icon card — square aspect ratio, icon top / text bottom */
#fst-card-01, #fst-card-02, #fst-card-03, #fst-card-04 {
  transition: border-color 0.4s ease, transform 0.3s ease !important;
  cursor: default !important;
  aspect-ratio: 1 / 1 !important;
}
#fst-card-01:hover, #fst-card-02:hover, #fst-card-03:hover, #fst-card-04:hover {
  border-color: #0077B6 !important;
  transform: translateY(-6px) !important;
}

/* Make intermediate containers stretch to fill the card height */
#fst-card-01 .elementor-container,
#fst-card-02 .elementor-container,
#fst-card-03 .elementor-container,
#fst-card-04 .elementor-container,
#fst-card-01 .elementor-column,
#fst-card-02 .elementor-column,
#fst-card-03 .elementor-column,
#fst-card-04 .elementor-column {
  height: 100% !important;
}

/* Widget wrap: full height, flex column — icon at top, title+subtitle pushed to bottom */
#fst-card-01 .elementor-element-populated,
#fst-card-02 .elementor-element-populated,
#fst-card-03 .elementor-element-populated,
#fst-card-04 .elementor-element-populated {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
}

/* Hide spacer — flex handles vertical distribution */
#fst-card-01 .elementor-widget-spacer,
#fst-card-02 .elementor-widget-spacer,
#fst-card-03 .elementor-widget-spacer,
#fst-card-04 .elementor-widget-spacer {
  display: none !important;
}

/* Title heading gets margin-top: auto → pushes it (and subtitle) to the bottom */
#fst-card-01 .fst-about-method-title,
#fst-card-02 .fst-about-method-title,
#fst-card-03 .fst-about-method-title,
#fst-card-04 .fst-about-method-title {
  margin-top: auto !important;
}

/* Material Symbols icon in method cards */
.fst-method-icon .elementor-heading-title {
  font-family: 'Material Symbols Outlined' !important;
  font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 48 !important;
  font-feature-settings: 'liga' 1 !important;
  -webkit-font-feature-settings: 'liga' 1 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 48px !important;
  line-height: 1 !important;
}

/* Method link hover */
.fst-method-link .elementor-heading-title {
  cursor: pointer !important;
  transition: color 0.3s ease !important;
}
.fst-method-link:hover .elementor-heading-title { color: #0077B6 !important; }

/* CTA section — non-standard col sizes */
#fst-about-cta-inner .elementor-col-66 {
  flex: 0 0 66% !important; width: 66% !important; max-width: 66% !important;
}
#fst-about-cta-inner .elementor-col-34 {
  flex: 0 0 34% !important; width: 34% !important; max-width: 34% !important;
}

/* ══ TESTIMONIALS PAGE ═══════════════════════════════════════════ */

/* Hero quote — very large display */
#fst-testi-hero .fst-testi-hero-quote .elementor-heading-title {
  font-size: clamp(56px, 7vw, 100px) !important;
  line-height: 1.0 !important;
}

/* Stats bar — full-width divider style */
#fst-testi-stats .elementor-column {
  border-right: 1px solid rgba(255,255,255,0.08);
}
#fst-testi-stats .elementor-column:last-child {
  border-right: none !important;
}
#fst-testi-stats-inner { padding: 0 !important; }

/* Testimonial grid — 32px gap between cards */
#fst-testi-row1,
#fst-testi-row2 {
  gap: 32px !important;
}
#fst-testi-row1 .elementor-container,
#fst-testi-row2 .elementor-container {
  gap: 32px !important;
}

/* 58/42 column size fixes */
#fst-testi-row1 .elementor-col-58,
#fst-testi-row2 .elementor-col-58 {
  flex: 0 0 58% !important; width: 58% !important; max-width: 58% !important;
}
#fst-testi-row1 .elementor-col-42,
#fst-testi-row2 .elementor-col-42 {
  flex: 0 0 42% !important; width: 42% !important; max-width: 42% !important;
}

/* Stagger — Row 1 col-42 drops 64px, Row 2 col-58 rises 64px */
#fst-testi-row1 .elementor-col-42 {
  margin-top: 64px !important;
}
#fst-testi-row2 .elementor-col-58 {
  margin-top: -64px !important;
}

/* Image card (Row 2 col-58) — grayscale bg photo + gradient overlay */
#fst-testi-row2 .elementor-col-58 {
  position: relative !important;
  overflow: hidden !important;
}
#fst-testi-row2 .elementor-col-58::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url('/wp-content/uploads/2026/05/testi-training-bg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  filter: grayscale(1) brightness(0.35) !important;
  z-index: 0 !important;
}
#fst-testi-row2 .elementor-col-58::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, #0d0d0d 0%, rgba(13,13,13,0.3) 55%, transparent 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
#fst-testi-row2 .elementor-col-58 .elementor-element-populated {
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  min-height: 440px !important;
}

/* Pull quote card */
#fst-testi-row2 .fst-testi-pull-quote .elementor-heading-title {
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.15 !important;
}

/* Eyebrow tag — same as other pages */
.fst-eyebrow-tag .elementor-heading-title {
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 16px !important;
  border: 1px solid rgba(0,119,182,0.35) !important;
  background: rgba(0,119,182,0.06) !important;
  letter-spacing: 0.15em !important;
}

/* ══ IMAGE ADDITIONS — all new image widgets ═════════════════════ */

/* About page — Dennis portrait */
.fst-dennis-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: 4/5 !important;
  filter: grayscale(1) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: filter 1s ease !important;
}
.fst-dennis-photo img:hover {
  filter: grayscale(0) !important;
}
#fst-about-img > .elementor-element-populated {
  padding: 0 !important;
}

/* Testimonials — Lee Piercy small avatar */
.fst-lee-photo img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover !important;
  filter: grayscale(1) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  display: block !important;
}
#fst-testi-hero .elementor-col-15 {
  flex: 0 0 15% !important;
  width: 15% !important;
  max-width: 15% !important;
}
#fst-testi-hero .elementor-col-85 {
  flex: 0 0 85% !important;
  width: 85% !important;
  max-width: 85% !important;
}

/* Contact page — map image */
.fst-contact-map img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: grayscale(1) brightness(0.6) contrast(1.2) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* Book page — consultation room image */
.fst-book-room-img img {
  width: 100% !important;
  object-fit: cover !important;
  filter: grayscale(1) brightness(0.75) contrast(1.2) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  margin-bottom: 0 !important;
}

/* ══════════════════════════════════════════════════════════════════
   ══ STITCH NEW HERO — VIDEO BACKGROUND + ORBITAL CIRCLES ════════
   ══════════════════════════════════════════════════════════════ */

/* Keyframes */
@keyframes fst-orbital-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Circle 1: inhale (small → big) */
@keyframes fst-breathe-1 {
  0%, 100% {
    transform: translateY(calc(-50% + var(--orb-y1))) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(calc(-50% + var(--orb-y1))) scale(1.14);
    opacity: 0.2;
  }
}

/* Circle 2: exhale (big → small) — opposite phase */
@keyframes fst-breathe-2 {
  0%, 100% {
    transform: translateY(calc(-40% + var(--orb-y2))) scale(1.14);
    opacity: 0.2;
  }
  50% {
    transform: translateY(calc(-40% + var(--orb-y2))) scale(1);
    opacity: 0.9;
  }
}
@keyframes fst-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

/* Hero section: relative container for orbital circles */
#fst-hero-section {
  position: relative !important;
  overflow: hidden !important;
}

/* Stats row — strip ALL default Elementor spacing between buttons/divider/stats
   so the gap is controlled purely by the divider's own gap setting (6px each side) */
#fst-hero-section .elementor-widget-divider {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Remove default 10px column padding from the buttons inner section */
#fst-hero-section .elementor-inner-section:not(.fst-stats-row) .elementor-element-populated {
  padding-bottom: 0 !important;
}
/* Stats inner section — no top margin */
#fst-hero-section .fst-stats-row {
  margin-top: 0 !important;
}
/* Stats number headings — no bottom margin */
#fst-hero-section .fst-stats-row .elementor-heading-title {
  margin-bottom: 0 !important;
}
/* Stats column padding — keep left-align, remove top/bottom */
#fst-hero-section .fst-stats-row .elementor-element-populated {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* CSS custom props for JS parallax (set by main.js) */
#fst-hero-section {
  --orb-y1: 0px;
  --orb-y2: 0px;
  --orb-y3: 0px;
}

/* Orbital circle 1 — right side, medium ring — breathing in */
#fst-hero-section::before {
  content: '' !important;
  position: absolute !important;
  right: -80px !important;
  top: 50% !important;
  width: 560px !important;
  height: 560px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255,255,255,0.35) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  animation: fst-breathe-1 5s ease-in-out infinite !important;
  will-change: transform, opacity !important;
}

/* Orbital circle 2 — right side, larger ring — breathing out (opposite phase) */
#fst-hero-section::after {
  content: '' !important;
  position: absolute !important;
  right: -220px !important;
  top: 40% !important;
  width: 860px !important;
  height: 860px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(255,255,255,0.20) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  animation: fst-breathe-2 5s ease-in-out infinite !important;
  will-change: transform, opacity !important;
}

/* Circle 3 removed — only two circles now */
#fst-hero-section > .elementor-container::before {
  content: none !important;
}
#fst-hero-section > .elementor-container {
  position: relative !important;
  z-index: 2 !important;
}

/* Video: dim the video to ~55% brightness, like Magician's Code opacity:0.55 */
#fst-hero-section .elementor-background-video-container {
  filter: brightness(0.55) !important;
}

/* Gradient overlay — mirrors Magician's Code exactly:
   135deg, dark charcoal left (0.88) → mid (0.65) → still covered right (0.40)
   Never goes to transparent — minimum 0.40 coverage across full width. */
#fst-hero-section > .elementor-background-overlay {
  background: linear-gradient(
    135deg,
    rgba(10,8,6,0.88) 0%,
    rgba(10,8,6,0.65) 55%,
    rgba(10,8,6,0.40) 100%
  ) !important;
  opacity: 1 !important;
}

/* ── Elementor editor override — lighten overlay so content is editable ── */
/* Body gets .elementor-editor-active when the editor is open.
   This keeps the frontend dark while making the editor usable. */
.elementor-editor-active #fst-hero-section .elementor-background-video-container {
  filter: brightness(1) !important;
}
.elementor-editor-active #fst-hero-section > .elementor-background-overlay {
  background: rgba(10,8,6,0.25) !important;
  opacity: 1 !important;
}

/* BUTTON ROW — keep both CTAs close together on the left */
[data-id="dyxvqq4"] {
  width: fit-content !important;
  max-width: 100% !important;
}
[data-id="dyxvqq4"] > .elementor-container {
  flex-wrap: nowrap !important;
  gap: 12px !important;
}
[data-id="dyxvqq4"] .elementor-column {
  width: auto !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
}

/* "REGENERATION." heading — blue, upright */
.fst-hero-regen .elementor-heading-title {
  color: #0077B6 !important;
  font-style: normal !important;
}

/* Hide the 3rd old heading (was RECOVERY) */
.fst-hero-hidden {
  display: none !important;
}

/* Hero badge — make it a true pill with pulse dot */
.fst-pill .elementor-heading-title,
.fst-pill.elementor-heading-title {
  border-radius: 9999px !important;
}
.fst-pill .elementor-heading-title::before {
  content: '' !important;
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #0077B6 !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  animation: fst-pulse-dot 2s ease-in-out infinite !important;
}

/* ══════════════════════════════════════════════════════════════════
   ══ PILL BUTTONS — SITEWIDE ════════════════════════════════════
   ══════════════════════════════════════════════════════════════ */

/* All Elementor buttons → pill shape */
.elementor-button-wrapper .elementor-button,
.elementor-button-wrapper a.elementor-button,
.elementor-widget-button .elementor-button,
a.elementor-button,
.elementor-button {
  border-radius: 9999px !important;
}

/* Nav CTA → pill */
.fst-nav__cta {
  border-radius: 9999px !important;
}

/* Override the CTA section button (was forced to 0) */
#fst-cta-section .elementor-button {
  border-radius: 9999px !important;
}

/* Glass cards → already handled by .fst-glass-card CSS above */

/* ══════════════════════════════════════════════════════════════════
   ══ REVIEWS / TESTIMONIALS HOMEPAGE SECTION ═════════════════════
   ══════════════════════════════════════════════════════════════ */

#fst-reviews-section {
  background: #0d0d0d !important;
}

/* Card columns — glassmorphism cards */
#fst-reviews-section .elementor-col-33 > .elementor-element-populated {
  background: rgba(24,28,32,0.55) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 14px !important;
  padding: 36px 32px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  transition: border-color 0.25s ease, transform 0.3s ease !important;
}
#fst-reviews-section .elementor-col-33:hover > .elementor-element-populated {
  border-color: rgba(0,119,182,0.35) !important;
  transform: translateY(-4px) !important;
}

/* Stars */
.fst-review-stars .elementor-heading-title {
  color: #0077B6 !important;
  font-size: 16px !important;
  letter-spacing: 5px !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* Quote text */
.fst-review-quote .elementor-heading-title {
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
  font-style: italic !important;
  color: rgba(245,245,245,0.78) !important;
}

/* Author name */
.fst-review-author .elementor-heading-title {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #F5F5F5 !important;
  margin-top: auto !important;
}

/* Reviewer role/condition */
.fst-review-role .elementor-heading-title {
  font-size: 11px !important;
  color: #F5F5F5 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-weight: 500 !important;
}

/* Section header: label + heading left-aligned */
#fst-reviews-section .fst-reviews-header {
  max-width: 640px !important;
}

/* Cards row gap */
#fst-reviews-section > .elementor-container > .elementor-col-100 > .elementor-element-populated > .elementor-inner-section .elementor-container {
  gap: 24px !important;
}

/* ══════════════════════════════════════════════════════════════════
   ══ MOBILE RESPONSIVE ══════════════════════════════════════════
   ══════════════════════════════════════════════════════════════ */

/* ── Hamburger button — hidden on desktop ── */
.fst-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.fst-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F5F5F5;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.fst-nav.mobile-open .fst-nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fst-nav.mobile-open .fst-nav__hamburger span:nth-child(2) { opacity: 0; }
.fst-nav.mobile-open .fst-nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MEDIUM SCREENS (laptops 768–1280px) ─────────────────────── */
@media (max-width: 1280px) {
  /* Shrink the big hero headings (TOTAL BODY / REGENERATION.) only —
     NOT glass card labels, NOT the pill badge */
  #fst-hero-section .elementor-heading-title {
    font-size: clamp(48px, 7vw, 80px) !important;
    line-height: 0.93em !important;
  }
  /* Pill badge — keep tiny */
  #fst-hero-section .fst-pill .elementor-heading-title,
  #fst-hero-section .fst-pill.elementor-heading-title {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }
  /* Stat numbers — always 28px, never scaled by the big-heading clamp */
  #fst-hero-section .fst-stat-num .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1 !important;
  }
  /* Glass card headings — restore their own sizes, don't blow them up */
  #fst-glass-row .elementor-heading-title {
    font-size: revert !important;
    line-height: revert !important;
  }
  /* "01" / "02" numbers in glass cards */
  #fst-glass-row .elementor-col-50:first-child .elementor-widget:first-child .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1 !important;
    color: #0077B6 !important;
  }
  #fst-glass-row .elementor-col-50:last-child .elementor-widget:first-child .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1 !important;
    color: rgba(255,255,255,0.3) !important;
  }
  /* Label text — keep small */
  #fst-glass-row .elementor-col-50 .elementor-widget:last-child .elementor-heading-title {
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.55) !important;
  }
}

@media (max-width: 767px) {

  /* ── Nav ── */
  .fst-nav__hamburger { display: flex !important; }
  .fst-nav__links     { display: none !important; }
  .fst-nav__cta       { display: none !important; }

  /* Mobile menu open */
  .fst-nav.mobile-open .fst-nav__links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px 48px;
    z-index: 9998;
    overflow-y: auto;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .fst-nav.mobile-open .fst-nav__item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .fst-nav.mobile-open .fst-nav__item > a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #F5F5F5;
  }
  .fst-nav.mobile-open .fst-nav__dropdown {
    display: flex !important;
    flex-direction: column;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 12px 16px !important;
    min-width: unset !important;
    gap: 0 !important;
  }
  .fst-nav.mobile-open .fst-nav__dropdown a {
    padding: 10px 0 !important;
    font-size: 13px !important;
    color: #F5F5F5 !important;
    letter-spacing: 0.05em !important;
  }
  .fst-nav.mobile-open .fst-nav__cta {
    display: block !important;
    margin-top: 32px !important;
    text-align: center !important;
    padding: 14px 24px !important;
    font-size: 12px !important;
  }

  /* ── Global section padding ── */
  .elementor-top-section > .elementor-container {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  /* ── Hero ── */
  #fst-hero-section .elementor-heading-title:not(.fst-pill .elementor-heading-title):not(.fst-pill.elementor-heading-title) {
    font-size: clamp(36px, 10vw, 80px) !important;
    line-height: 0.93em !important;
    letter-spacing: -0.04em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* ── Hero inner sections — stack buttons/columns ── */
  #fst-hero-section .elementor-inner-section {
    flex-wrap: wrap !important;
  }
  #fst-hero-section .elementor-inner-section .elementor-column {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .fst-pill .elementor-heading-title,
  .fst-pill.elementor-heading-title {
    font-size: 10px !important;
    padding: 6px 14px !important;
    letter-spacing: 0.15em !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  #fst-hero-section { padding: 64px 16px 80px !important; }

  /* ── Stats bar ── */
  #fst-stat-1, #fst-stat-2, #fst-stat-3, #fst-stat-4 {
    flex: 0 0 50% !important; width: 50% !important; max-width: 50% !important;
    border-right: none !important;
  }
  #fst-stat-1, #fst-stat-2 { border-bottom: 1px solid rgba(255,255,255,0.1) !important; }

  /* ── Services hero ── */
  #fst-services-hero .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-services-hero .elementor-heading-title {
    font-size: clamp(36px, 10vw, 64px) !important;
    line-height: 1em !important;
  }
  #fst-services-hero .elementor-col-67,
  #fst-services-hero .elementor-col-33 {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }

  /* ── Services list rows ── */
  #fst-services-list .elementor-inner-section .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-services-list .elementor-col-8  { display: none !important; }
  #fst-services-list .elementor-col-17 { display: none !important; }
  #fst-services-list .elementor-col-50,
  #fst-services-list .elementor-col-25 {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
    text-align: left !important;
  }
  #fst-services-list .fst-service-name .elementor-heading-title {
    font-size: clamp(24px, 7vw, 40px) !important;
  }
  #fst-services-list .elementor-inner-section {
    padding: 28px 0 !important;
  }

  /* ── Service detail hero ── */
  #fst-detail-hero .elementor-col-67,
  #fst-detail-hero .elementor-col-33 {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-detail-hero .elementor-heading-title {
    font-size: clamp(36px, 10vw, 60px) !important;
    line-height: 1em !important;
  }
  #fst-detail-hero .fst-detail-hero-img { display: none !important; }

  /* ── About page ── */
  #fst-bio-left, #fst-bio-right {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-about-hero .elementor-heading-title {
    font-size: clamp(40px, 12vw, 72px) !important;
    line-height: 0.95em !important;
  }
  #fst-card-01, #fst-card-02, #fst-card-03, #fst-card-04 {
    flex: 0 0 50% !important; width: 50% !important; max-width: 50% !important;
  }
  #fst-method-text {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-method-text > .elementor-element-populated {
    padding-left: 0 !important;
    padding-top: 32px !important;
  }

  /* ── Testimonials ── */
  #fst-testi-hero .elementor-heading-title {
    font-size: clamp(36px, 10vw, 60px) !important;
  }
  #fst-testi-row1 .elementor-col-58,
  #fst-testi-row1 .elementor-col-42,
  #fst-testi-row2 .elementor-col-42,
  #fst-testi-row2 .elementor-col-58 {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
    margin-top: 0 !important;
  }
  #fst-testi-row1, #fst-testi-row2,
  #fst-testi-row1 .elementor-container,
  #fst-testi-row2 .elementor-container { gap: 16px !important; }
  #fst-testi-stats .elementor-column {
    flex: 0 0 50% !important; width: 50% !important; max-width: 50% !important;
  }

  /* ── Blogs/Insights ── */
  #fst-insights-hero .elementor-heading-title,
  #fst-blog-hero .elementor-heading-title {
    font-size: clamp(36px, 10vw, 60px) !important;
    line-height: 1em !important;
  }

  /* ── Contact / Book / Insurance heroes ── */
  .elementor-section .elementor-heading-title {
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  /* ── Bio section heading ── */
  #fst-bio-section .elementor-heading-title {
    font-size: clamp(32px, 9vw, 64px) !important;
    line-height: 1em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* ── Stats section numbers ── */
  #fst-stats-section .elementor-heading-title {
    font-size: clamp(32px, 9vw, 64px) !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
  }

  /* ── Hero stats — left align on mobile ── */
  #fst-hero-section .elementor-inner-section .elementor-heading-title,
  #fst-hero-section .elementor-inner-section .elementor-widget-text-editor * {
    text-align: left !important;
  }

  /* ── Glass row — stack columns ── */
  #fst-glass-row .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }

  /* ── CTA sections ── */
  #fst-cta-section .elementor-heading-title,
  #fst-testi-cta .elementor-heading-title,
  #fst-detail-cta .elementor-heading-title,
  #fst-about-cta .elementor-heading-title {
    font-size: clamp(40px, 12vw, 72px) !important;
    line-height: 1em !important;
  }
  #fst-cta-section .elementor-column,
  #fst-testi-cta .elementor-column,
  #fst-detail-cta .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }

  /* ── Glass cards (homepage proof section) ── */
  #fst-glass-01, #fst-glass-02 {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }

  /* ── Proof section — full width on mobile ── */
  #fst-proof-section .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-proof-section .elementor-heading-title {
    font-size: clamp(36px, 10vw, 80px) !important;
    line-height: 0.95em !important;
  }

  /* ── System section heading ── */
  #fst-system-section .elementor-heading-title {
    font-size: clamp(30px, 8.5vw, 64px) !important;
    line-height: 1.05em !important;
  }

  /* ── Marquee ── */
  #fst-marquee-section, #fst-services-marquee, #fst-detail-marquee {
    padding: 24px 0 !important;
  }

  /* ── Reviews section ── */
  #fst-reviews-section .elementor-inner-section .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
    margin-bottom: 16px !important;
  }
  #fst-reviews-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
  #fst-reviews-section .elementor-inner-section {
    flex-wrap: wrap !important;
  }

  /* ── FAQ section ── */
  #fst-faq-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #fst-faq-section .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
  }
  #fst-faq-section .elementor-heading-title {
    font-size: clamp(32px, 9vw, 56px) !important;
    line-height: 1em !important;
  }

  /* ── Footer ── */
  #fst-footer-section .elementor-column {
    flex: 0 0 100% !important; width: 100% !important; max-width: 100% !important;
    text-align: center !important;
  }
  #fst-footer-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── "What Our Clients Say" section heading ── */
  #fst-reviews-section .elementor-heading-title {
    font-size: clamp(32px, 9vw, 56px) !important;
  }
}
