/**
 * FlowMenu Landing Blocks — Theme-Agnostic Styles.
 *
 * Marketing landing-page block library used by the storefront. Each block
 * is wrapped in .flowmenu-landing-block, which establishes a SCOPE of
 * locally-overridable variables (--fm-bg, --fm-text, --fm-heading,
 * --fm-accent, --fm-btn-bg) so individual blocks can be themed differently
 * (e.g. dark hero, light testimonials) — these variables are the
 * per-block knobs operators tune in the block editor.
 *
 * The DEFAULTS for those local variables come from storefront tokens
 * (flowmenu-storefront.css), so a stock landing block automatically
 * matches the operator's brand. When a block specifies its own colors
 * (e.g. via inline style or a style-mode class), those override the
 * defaults — without losing the operator's brand connection elsewhere.
 *
 * @migrated 3.25.0
 */

/* =====================================================================
   SELF-CONTAINED FALLBACK TOKENS  (v3.36.58)
   Stock-theme landing pages may not load flowmenu-storefront.css, which is
   where the --fm-store-* design tokens come from. Without them, every
   var(--fm-store-*) collapses and blocks render broken (no widths, default
   buttons). These fallbacks live on `html` — LOWER specificity than
   storefront's :root — so they ONLY apply when the storefront tokens are
   absent. When storefront IS loaded, its :root tokens win and the
   operator's brand styling is fully preserved.
   ===================================================================== */
html {
    --fm-store-primary:      #1f3a2e;
    --fm-store-primary-tint: #e8efe9;
    --fm-store-canvas-2:     #fafafa;
    --fm-store-paper:        #ffffff;
    --fm-store-ink:          #111111;
    --fm-store-ink-soft:     #333333;
    --fm-store-ink-mute:     #6b7280;
    --fm-store-rule:         #d1d5db;
    --fm-store-rule-soft:    #e5e7eb;
    --fm-store-success:      #10b981;
    --fm-store-success-tint: #d1fae5;
    --fm-store-success-ink:  #065f46;
    --fm-store-warn:         #f59e0b;
    --fm-store-warn-tint:    #fef3c7;
    --fm-store-danger:       #dc2626;
    --fm-store-danger-tint:  #fee2e2;
    --fm-store-danger-ink:   #991b1b;
    --fm-store-r-sm:   8px;
    --fm-store-r:      10px;
    --fm-store-r-lg:   14px;
    --fm-store-r-pill: 999px;
    --fm-store-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --fm-store-shadow:    0 2px 8px rgba(0,0,0,0.08);
    --fm-store-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --fm-store-d-2: 150ms;
    --fm-store-d-3: 220ms;
    --fm-store-ease: cubic-bezier(0.2, 0, 0, 1);
    --fm-store-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --fm-store-font-mono: "SF Mono", Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* =====================================================================
   BASE / RESET (scoped)
   ===================================================================== */

.flowmenu-landing-block {
    /* Per-block knobs — operator tunes these via block editor */
    --fm-bg:       transparent;
    --fm-text:     var(--fm-store-ink-soft);
    --fm-heading:  var(--fm-store-ink);
    --fm-accent:   var(--fm-store-primary);
    --fm-btn-bg:   var(--fm-store-primary);
    --fm-btn-text: #ffffff;
    --fm-pt: 60px;
    --fm-pb: 60px;
    --fm-max-w: 1140px;
    --fm-radius: var(--fm-store-r);
    --fm-shadow: var(--fm-store-shadow-sm);

    box-sizing: border-box;
    font-family: var(--fm-store-font);
    color: var(--fm-text);
    background: var(--fm-bg);
    padding-top: var(--fm-pt);
    padding-bottom: var(--fm-pb);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.flowmenu-landing-block *,
.flowmenu-landing-block *::before,
.flowmenu-landing-block *::after { box-sizing: border-box; }

.flowmenu-landing-block img { max-width: 100%; height: auto; display: block; }

.fm-container {
    max-width: var(--fm-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */

.fm-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--fm-heading);
    text-align: center;
    margin: 0 0 12px;
}

.fm-subheading {
    font-size: 18px;
    color: var(--fm-store-ink-mute);
    text-align: center;
    margin: 0 0 32px;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */

.fm-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--fm-store-r-sm);
    font-family: var(--fm-store-font);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--fm-store-d-3) var(--fm-store-ease);
    text-align: center;
}

.fm-btn--primary {
    background: var(--fm-btn-bg);
    color: var(--fm-btn-text);
}

.fm-btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.fm-btn--outline {
    background: transparent;
    color: var(--fm-btn-bg);
    border: 2px solid var(--fm-btn-bg);
    padding: 12px 24px;
    border-radius: var(--fm-store-r-sm);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.fm-btn--outline:hover {
    background: var(--fm-btn-bg);
    color: var(--fm-btn-text);
}

.fm-btn--white {
    background: #fff;
    color: var(--fm-accent);
}

.fm-btn--white:hover { background: var(--fm-store-canvas-2); }

.fm-cta-wrap { text-align: center; margin-top: 32px; }

/* =====================================================================
   INPUT
   ===================================================================== */

.fm-input {
    padding: 12px 16px;
    border: 1px solid var(--fm-store-rule);
    border-radius: var(--fm-store-r-sm);
    font-family: var(--fm-store-font);
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color var(--fm-store-d-2) var(--fm-store-ease),
                box-shadow var(--fm-store-d-2) var(--fm-store-ease);
}

.fm-input:focus {
    outline: none;
    border-color: var(--fm-accent);
    box-shadow: 0 0 0 3px var(--fm-store-primary-tint);
}

.fm-input-error { border-color: var(--fm-store-danger) !important; }

/* =====================================================================
   LOADING
   ===================================================================== */

.fm-loading {
    text-align: center;
    color: var(--fm-store-ink-mute);
    padding: 40px;
}

/* =====================================================================
   HERO
   ===================================================================== */

.fm-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 80px 24px;
}

.fm-hero-overlay { position: absolute; inset: 0; z-index: 1; }
.fm-hero-content { position: relative; z-index: 2; max-width: 700px; }
.fm-hero--center .fm-hero-content { text-align: center; margin: 0 auto; }
.fm-hero--left_aligned .fm-hero-content { text-align: left; max-width: 600px; margin-right: auto; }

.fm-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--fm-store-r-pill);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: inherit;
}

.fm-hero-headline {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.15;
    color: inherit;
}

.fm-hero-sub {
    font-size: 20px;
    margin: 0 0 28px;
    opacity: 0.9;
    color: inherit;
}

.fm-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fm-hero--center .fm-hero-ctas { justify-content: center; }

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */

.fm-hiw-steps { display: flex; gap: 32px; margin-top: 24px; }
.fm-hiw--horizontal { flex-direction: row; }
.fm-hiw--vertical { flex-direction: column; max-width: 600px; margin: 24px auto 0; }
.fm-hiw-step { flex: 1; text-align: center; position: relative; }

.fm-hiw-step-num {
    width: 36px;
    height: 36px;
    border-radius: var(--fm-store-r-pill);
    background: var(--fm-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 12px;
}

.fm-hiw-icon { font-size: 40px; margin-bottom: 12px; }

.fm-hiw-img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 12px;
    border-radius: var(--fm-radius);
}

.fm-hiw-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--fm-heading);
}

.fm-hiw-desc {
    font-size: 15px;
    color: var(--fm-store-ink-mute);
    margin: 0;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */

.fm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.fm-testimonial-card {
    background: var(--fm-store-paper);
    border: 1px solid var(--fm-store-rule-soft);
    border-radius: var(--fm-radius);
    padding: 24px;
    box-shadow: var(--fm-shadow);
}

.fm-testimonial-rating {
    color: var(--fm-store-warn);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.fm-testimonial-quote {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 16px;
    color: var(--fm-store-ink-soft);
    line-height: 1.6;
}

.fm-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fm-testimonial-photo {
    width: 44px;
    height: 44px;
    border-radius: var(--fm-store-r-pill);
    object-fit: cover;
}

/* =====================================================================
   FAQ
   ===================================================================== */

.fm-faq-list { max-width: 700px; margin: 0 auto; }

.fm-faq-item { border-bottom: 1px solid var(--fm-store-rule-soft); }

.fm-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    font-family: var(--fm-store-font);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--fm-heading);
}

.fm-faq-toggle {
    font-size: 20px;
    color: var(--fm-store-ink-mute);
    flex-shrink: 0;
    margin-left: 12px;
}

.fm-faq-answer {
    padding: 0 0 18px;
    font-size: 15px;
    color: var(--fm-store-ink-mute);
}

.fm-faq-answer p { margin: 0; }

/* =====================================================================
   STATS BAR
   ===================================================================== */

.fm-stats-bar {
    background: var(--fm-store-ink);
    color: #fff;
    padding: 24px 0;
}

.fm-stats-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.fm-stat-item { text-align: center; }

.fm-stat-value {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--fm-store-font-mono);
    font-variant-numeric: tabular-nums;
}

.fm-stat-label {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 2px;
}

/* =====================================================================
   CTA BANNER
   ===================================================================== */

.fm-cta-banner { padding: 40px 0; }

.fm-cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fm-cta-headline {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: inherit;
}

/* =====================================================================
   LEAD FORM
   ===================================================================== */

.fm-lead-form-inline {
    background: var(--fm-store-canvas-2);
    border-radius: var(--fm-radius);
}

.fm-lead-form-inner {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.fm-lead-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fm-lead-success {
    padding: 20px;
    background: var(--fm-store-success-tint);
    color: var(--fm-store-success-ink);
    border-radius: var(--fm-store-r-sm);
    font-weight: 500;
}

/* Exit intent popup */
.fm-lead-form-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(17, 17, 17, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
}

.fm-lead-form-popup.fm-popup-visible { display: flex; }

.fm-lead-form-popup .fm-lead-form-inner {
    background: var(--fm-store-paper);
    border-radius: var(--fm-store-r-lg);
    padding: 40px;
    max-width: 440px;
    box-shadow: var(--fm-store-shadow-lg);
}

/* =====================================================================
   COUNTDOWN
   ===================================================================== */

.fm-countdown { text-align: center; }

.fm-countdown--inline {
    background: var(--fm-store-warn-tint);
    padding: 20px 0;
}

.fm-countdown--banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--fm-store-ink);
    color: #fff;
    padding: 10px 0;
}

.fm-countdown-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fm-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.fm-cd-unit { text-align: center; }

.fm-cd-num {
    display: block;
    font-family: var(--fm-store-font-mono);
    font-size: 32px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.fm-cd-label {
    font-family: var(--fm-store-font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.fm-cd-sep {
    font-size: 28px;
    font-weight: 300;
    opacity: 0.4;
    padding-top: 2px;
}

.fm-cd-expired {
    font-size: 18px;
    font-weight: 600;
    color: var(--fm-store-danger);
}

/* =====================================================================
   MENU PREVIEW
   ===================================================================== */

.fm-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.fm-menu-card {
    background: var(--fm-store-paper);
    border: 1px solid var(--fm-store-rule-soft);
    border-radius: var(--fm-radius);
    overflow: hidden;
    box-shadow: var(--fm-shadow);
}

.fm-menu-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.fm-menu-card-body { padding: 12px 14px; }

.fm-menu-card-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--fm-store-ink);
}

.fm-menu-card-macros {
    font-size: 12px;
    color: var(--fm-store-ink-mute);
    font-family: var(--fm-store-font-mono);
}

.fm-menu-card-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.fm-menu-card-tag {
    font-family: var(--fm-store-font-mono);
    font-size: 11px;
    padding: 2px 8px;
    background: var(--fm-store-canvas-2);
    border-radius: var(--fm-store-r-pill);
    color: var(--fm-store-ink-mute);
}

/* =====================================================================
   VIDEO
   ===================================================================== */

.fm-video-wrap {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--fm-radius);
    overflow: hidden;
    box-shadow: var(--fm-store-shadow);
}

.fm-video-desc {
    text-align: center;
    color: var(--fm-store-ink-mute);
    margin-top: 16px;
}

/* =====================================================================
   TRUST BADGES
   ===================================================================== */

.fm-trust-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.fm-trust-badge { text-align: center; }
.fm-trust-badge img { height: 40px; width: auto; margin: 0 auto 6px; }

.fm-trust-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--fm-store-ink);
}

.fm-trust-rating {
    font-size: 14px;
    color: var(--fm-store-warn);
}

/* =====================================================================
   BEFORE / AFTER
   ===================================================================== */

.fm-ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.fm-ba-card {
    background: var(--fm-store-paper);
    border: 1px solid var(--fm-store-rule-soft);
    border-radius: var(--fm-radius);
    overflow: hidden;
    box-shadow: var(--fm-shadow);
}

.fm-ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fm-ba-img { position: relative; }
.fm-ba-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.fm-ba-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(17, 17, 17, 0.6);
    color: #fff;
    padding: 2px 10px;
    border-radius: var(--fm-store-r-sm);
    font-size: 12px;
    font-weight: 600;
}

.fm-ba-card h4 {
    padding: 12px 16px 0;
    margin: 0;
    font-size: 16px;
    color: var(--fm-store-ink);
}

.fm-ba-result {
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--fm-accent);
    margin: 4px 0;
}

.fm-ba-story {
    padding: 0 16px 16px;
    font-size: 14px;
    color: var(--fm-store-ink-mute);
    margin: 0;
}

/* =====================================================================
   TEXT CONTENT
   ===================================================================== */

.fm-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.fm-text--img-left .fm-text-image { order: -1; }
.fm-text-body .fm-heading { text-align: left; }

.fm-text-prose {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fm-store-ink-soft);
    margin-bottom: 20px;
}

.fm-text-image img { border-radius: var(--fm-radius); }

/* =====================================================================
   ZIP CHECKER
   ===================================================================== */

.fm-zip-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.fm-zip-input {
    flex: 1;
    text-align: center;
    font-family: var(--fm-store-font-mono);
    font-size: 18px;
    letter-spacing: 2px;
}

.fm-zip-result {
    margin-top: 20px;
    text-align: center;
}

.fm-zip-success {
    padding: 20px;
    background: var(--fm-store-success-tint);
    border-radius: var(--fm-radius);
}

.fm-zip-success h3 {
    color: var(--fm-store-success-ink);
    margin-top: 0;
}

.fm-zip-fail {
    padding: 20px;
    background: var(--fm-store-danger-tint);
    border-radius: var(--fm-radius);
}

.fm-zip-fail h3 {
    color: var(--fm-store-danger-ink);
    margin-top: 0;
}

/* =====================================================================
   LOCATION CONTENT
   ===================================================================== */

.fm-location-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fm-store-ink-soft);
    margin-bottom: 24px;
}

.fm-location-areas h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--fm-store-ink);
}

.fm-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fm-area-list li {
    font-family: var(--fm-store-font-mono);
    font-size: 14px;
    color: var(--fm-store-ink-mute);
    padding: 4px 12px;
    background: var(--fm-store-canvas-2);
    border-radius: var(--fm-store-r-sm);
}

.fm-location-days {
    font-size: 15px;
    margin-top: 16px;
}

.fm-location-faqs { margin-top: 24px; }

/* =====================================================================
   PRICING TABLE
   ===================================================================== */

.fm-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fm-pricing-card {
    background: var(--fm-store-paper);
    border: 1px solid var(--fm-store-rule-soft);
    border-radius: var(--fm-radius);
    padding: 32px 28px;
    text-align: center;
    min-width: 260px;
    flex: 1;
    max-width: 340px;
    box-shadow: var(--fm-shadow);
}

.fm-pricing--highlighted {
    border-color: var(--fm-accent);
    box-shadow: 0 4px 20px var(--fm-store-primary-tint);
    transform: scale(1.03);
}

.fm-pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--fm-store-ink);
}

.fm-pricing-meals {
    font-size: 14px;
    color: var(--fm-store-ink-mute);
    margin-bottom: 16px;
}

.fm-price-amount {
    font-family: var(--fm-store-font-mono);
    font-size: 40px;
    font-weight: 800;
    color: var(--fm-store-ink);
    font-variant-numeric: tabular-nums;
}

.fm-price-per {
    font-size: 16px;
    color: var(--fm-store-ink-mute);
}

.fm-pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.fm-pricing-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--fm-store-ink-soft);
    border-bottom: 1px solid var(--fm-store-rule-soft);
}

.fm-pricing-card .fm-btn {
    width: 100%;
    margin-top: 8px;
}

/* =====================================================================
   ORDER BUMP
   ===================================================================== */

.fm-order-bump {
    background: var(--fm-store-warn-tint);
    border: 2px dashed var(--fm-store-warn);
    border-radius: var(--fm-radius);
    padding: 16px 0;
}

.fm-order-bump-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fm-bump-img {
    width: 80px;
    height: 80px;
    border-radius: var(--fm-store-r-sm);
    object-fit: cover;
}

.fm-bump-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.fm-bump-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--fm-accent);
}

/* =====================================================================
   STICKY CTA
   ===================================================================== */

#fm-sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 12px 24px;
    background: var(--fm-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(17, 17, 17, 0.15);
    transition: bottom var(--fm-store-d-3) var(--fm-store-ease);
}

#fm-sticky-cta.fm-sticky-visible { bottom: 0; }

#fm-sticky-cta .fm-sticky-text {
    font-size: 16px;
    font-weight: 600;
}

#fm-sticky-cta .fm-btn {
    padding: 10px 24px;
    font-size: 15px;
}

/* =====================================================================
   STYLE MODES
   ===================================================================== */

.flowmenu-style-dark {
    --fm-bg:      var(--fm-store-ink);
    --fm-text:    var(--fm-store-rule-soft);
    --fm-heading: #ffffff;
}

.flowmenu-style-light {
    --fm-bg: var(--fm-store-paper);
}

.flowmenu-style-gray {
    --fm-bg: var(--fm-store-canvas-2);
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 1200px) {
    .fm-menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .flowmenu-landing-block { --fm-pt: 40px; --fm-pb: 40px; }
    .fm-heading { font-size: 26px; }
    .fm-subheading { font-size: 16px; }
    .fm-hero-headline { font-size: 32px; }
    .fm-hero-sub { font-size: 17px; }
    .fm-hero { padding: 60px 20px; }
    .fm-hiw-steps { flex-direction: column; gap: 24px; }
    .fm-stats-inner { gap: 24px; }
    .fm-stat-value { font-size: 22px; }
    .fm-cta-banner-inner { flex-direction: column; text-align: center; }
    .fm-text-content { grid-template-columns: 1fr; }
    .fm-text--img-left .fm-text-image { order: 0; }
    .fm-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .fm-pricing-grid { flex-direction: column; align-items: center; }
    .fm-pricing--highlighted { transform: none; }
    .fm-ba-grid { grid-template-columns: 1fr; }
    .fm-cd-num { font-size: 24px; }
}

@media (max-width: 480px) {
    .fm-hero-headline { font-size: 26px; }
    .fm-hero-ctas { flex-direction: column; }
    .fm-menu-grid { grid-template-columns: 1fr; }
    .fm-zip-form { flex-direction: column; }
    .fm-lead-fields { flex-direction: column; }
}

/* =====================================================================
   REVIEW GATE
   ===================================================================== */

.fm-review-gate {
    max-width: 560px;
    margin: 40px auto;
    text-align: center;
    padding: 40px 20px;
}

.fm-review-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--fm-store-ink);
}

.fm-review-header p {
    color: var(--fm-store-ink-mute);
    font-size: 15px;
    margin-bottom: 24px;
}

.fm-review-greeting { font-size: 16px; }

.fm-review-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.fm-star {
    font-size: 48px;
    color: var(--fm-store-rule);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--fm-store-d-2) var(--fm-store-ease),
                transform var(--fm-store-d-2) var(--fm-store-ease);
    padding: 0;
    line-height: 1;
}

.fm-star:hover,
.fm-star-active {
    color: var(--fm-store-warn);
    transform: scale(1.15);
}

.fm-review-prompt {
    color: var(--fm-store-ink-mute);
    font-size: 13px;
}

.fm-review-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 24px 0;
}

.fm-review-link {
    min-width: 260px;
    text-align: center;
    font-size: 16px;
    padding: 14px 24px;
}

.fm-review-thanks {
    color: var(--fm-store-ink-mute);
    margin-top: 16px;
}

.fm-review-feedback-form {
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
}

.fm-review-feedback-text {
    width: 100%;
    border: 1px solid var(--fm-store-rule);
    border-radius: var(--fm-store-r-sm);
    padding: 12px;
    font-family: var(--fm-store-font);
    font-size: 14px;
    resize: vertical;
    margin-bottom: 12px;
}

.fm-review-feedback-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 16px;
    font-size: 13px;
}

.fm-review-feedback-categories label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.fm-review-submit-feedback { width: 100%; }
