@charset "utf-8";
/* ============================================
   家族でスタートAI — LP003専用CSS
   "Controlled Urgency" Design System
   lp001ベース + 焦燥感コンポーネント追加
   完全独立型（他CSSに非依存）
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Primary palette — warm family tones */
  --fml-green: #43A047;
  --fml-green-light: #66BB6A;
  --fml-green-glow: rgba(67, 160, 71, 0.25);

  /* Warm accent spectrum */
  --fml-coral: #FF7043;
  --fml-amber: #FFB300;

  /* Urgency / Danger accents */
  --fml-danger: #D32F2F;
  --fml-danger-light: #FFEBEE;
  --fml-danger-glow: rgba(211, 47, 47, 0.15);

  /* Navy & depth */
  --fml-navy: #1a2744;

  /* Surfaces */
  --fml-cream: #FFF9F0;
  --fml-warm-gray: #F7F3EE;
  --fml-cool-gray: #F0F4F8;
  --fml-white: #FFFFFF;

  /* Text */
  --fml-text: #2D3436;
  --fml-text-mid: #555E68;
  --fml-text-light: #7B8794;

  /* Borders & misc */
  --fml-border: #E8E0D8;
  --fml-border-light: #F0EBE5;
  --fml-shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
  --fml-shadow-md: 0 4px 20px rgba(26, 39, 68, 0.08);
  --fml-shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
  --fml-shadow-glow: 0 8px 30px var(--fml-green-glow);

  /* Spacing & radius */
  --fml-r-sm: 8px;
  --fml-r-md: 16px;
  --fml-r-lg: 24px;
  --fml-r-xl: 32px;

  /* Typography scale */
  --fml-font-display: 'Noto Serif JP', 'Georgia', serif;
  --fml-font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* ============================================
   0. Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fml-font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--fml-text);
  background: var(--fml-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1024px) {
  body { font-size: 17px; }
}

@media (min-width: 1400px) {
  body { font-size: 18px; }
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* --- Layout container --- */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.inner {
  padding: 0 20px;
}

@media (min-width: 768px) {
  .inner { padding: 0 40px; }
}

/* --- Responsive display --- */
.sp-only { display: block; }
.pc-only { display: none; }

@media (min-width: 768px) {
  .sp-only { display: none; }
  .pc-only { display: block; }
}

/* ============================================
   1. Navigation
   ============================================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--fml-border-light);
  transition: box-shadow 0.3s ease;
}

header:hover {
  box-shadow: var(--fml-shadow-sm);
}

.logotype {
  max-width: 120px;
}

.logotype img {
  display: block;
  max-width: 100%;
}

nav {
  display: flex;
  align-items: center;
}

@media (max-width: 48em) {
  nav { display: inline; }
}

.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

@media (max-width: 48em) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: -100vh 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    transition: none;
  }
  #menu__toggle:checked ~ .menu__box {
    transition: margin 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
  }
  .menu__box li { width: 100%; }
}

.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em;
  font-family: var(--fml-font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--fml-text);
  transition: color 0.2s ease;
}

@media (max-width: 48em) {
  .menu__item {
    display: block;
    padding: 20px 24px;
    font-size: 17px;
    border-bottom: 1px solid var(--fml-border-light);
    position: relative;
  }
  .menu__item::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fml-text-light);
  }
  .menu__item:hover {
    background: var(--fml-cream);
    color: var(--fml-green);
  }
}

.menu__item.btn {
  border: none;
  background: linear-gradient(135deg, var(--fml-green) 0%, var(--fml-green-light) 100%);
  color: #fff;
  width: 90%;
  margin: 28px auto 0;
  border-radius: 50vh;
  text-align: center;
  padding: 10px 16px;
}

.menu__item.btn.login {
  background: var(--fml-white);
  color: var(--fml-text);
  border: 1.5px solid var(--fml-border);
}

@media (min-width: 768px) {
  .menu__item.border {
    position: relative;
    transition: 0.25s all ease;
  }
  .menu__item.border:hover {
    color: var(--fml-green);
  }
  .menu__item.border:hover::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fml-green);
    position: absolute;
    bottom: -22px;
    left: 0;
    border-radius: 2px;
  }
  .menu__item.btn {
    margin-top: 0;
    width: auto;
    margin-left: 1em;
    padding: 8px 20px;
    transition: 0.3s all ease;
  }
  .menu__item.btn:hover {
    filter: brightness(110%);
    box-shadow: var(--fml-shadow-glow);
  }
  .menu__item.btn.login:hover {
    background: var(--fml-text);
    color: #fff;
    border-color: var(--fml-text);
  }
}

#menu__toggle { opacity: 0; position: absolute; }
#menu__toggle:checked ~ .menu__btn > span { transform: rotate(45deg); }
#menu__toggle:checked ~ .menu__btn > span::before { top: 0; transform: rotate(0); background: var(--fml-coral); }
#menu__toggle:checked ~ .menu__btn > span::after { top: 0; transform: rotate(90deg); background: var(--fml-coral); }
#menu__toggle:checked ~ .menu__box { visibility: visible; left: 0; margin: 0; margin-top: 56px; }

.menu__btn {
  display: flex;
  align-items: center;
  position: relative;
  width: 24px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
}

.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--fml-text);
  top: 0;
  border-radius: 2px;
  transition: 0.25s;
}

.menu__btn span::before,
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--fml-text);
  content: '';
  border-radius: 2px;
  transition: 0.25s;
}

.menu__btn span::before { top: 8px; }
.menu__btn span::after { top: 16px; }

@media (min-width: 48em) {
  .menu__btn span { display: none; }
}

/* ============================================
   2. Shared Components
   ============================================ */

/* --- Section container --- */
.fml-sec {
  padding: 70px 0;
  position: relative;
}

/* --- Section backgrounds --- */
.fml-sec--warm { background: var(--fml-warm-gray); }
.fml-sec--cool { background: var(--fml-cool-gray); }
.fml-sec--white { background: var(--fml-white); }

/* --- Section title (lp002/lp003 style) --- */
.fml-sec-title {
  font-family: var(--fml-font-display);
  font-size: 1.6em;
  font-weight: 700;
  color: var(--fml-navy);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  display: block;
  padding-bottom: 20px;
}

.fml-sec-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--fml-green), var(--fml-green-light));
  border-radius: 3px;
}

.fml-sec-sub {
  text-align: center;
  font-size: 0.95em;
  color: var(--fml-text-mid);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* --- Section heading (lp001 style) --- */
.fml-heading {
  text-align: center;
  margin-bottom: 48px;
}

.fml-heading__title {
  font-family: var(--fml-font-display);
  font-size: 1.6em;
  font-weight: 700;
  color: var(--fml-navy);
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.fml-heading__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--fml-green), var(--fml-green-light));
  border-radius: 3px;
}

.fml-heading__lead {
  font-family: var(--fml-font-display);
  font-size: 1.15em;
  font-weight: 600;
  color: var(--fml-coral);
  margin-bottom: 12px;
  line-height: 1.7;
}

.fml-heading__sub {
  margin-top: 16px;
  font-size: 0.95em;
  color: var(--fml-text-mid);
  line-height: 1.8;
}

/* --- CTA button --- */
.fml-cta {
  text-align: center;
  margin: 40px 0;
}

.fml-cta a {
  display: inline-block;
  background: linear-gradient(135deg, var(--fml-green) 0%, #2E7D32 100%);
  color: #fff !important;
  padding: 22px 48px;
  border-radius: 60px;
  font-size: 1.2em;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow:
    0 6px 20px var(--fml-green-glow),
    0 0 0 0 rgba(67, 160, 71, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 92%;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 20px var(--fml-green-glow), 0 0 0 0 rgba(67, 160, 71, 0.4); }
  50% { box-shadow: 0 8px 28px var(--fml-green-glow), 0 0 0 10px rgba(67, 160, 71, 0); }
}

.fml-cta a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.fml-cta a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px var(--fml-green-glow);
  animation: none;
}

.fml-cta a:hover::before {
  animation: none;
  left: 100%;
}

.fml-cta small {
  display: block;
  font-size: 0.78em;
  font-weight: 600;
  opacity: 1;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* --- Login link --- */
.fml-login-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--fml-text-light) !important;
  text-decoration: underline !important;
  font-size: 0.9em;
  transition: color 0.2s;
}

.fml-login-link:hover {
  color: var(--fml-green) !important;
}

/* --- Decorative divider --- */
.fml-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--fml-green), var(--fml-green-light));
  margin: 28px auto;
  border-radius: 3px;
}

/* --- Text utilities --- */
.fml-tc { text-align: center; }

/* ============================================
   3. Hero — 危機感ファースト
   ============================================ */
.fml-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.fml-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.fml-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.55);
  z-index: 1;
}

@media (min-width: 768px) {
  .fml-hero__overlay {
    background: rgba(26, 39, 68, 0.45);
  }
}

.fml-hero .wrap {
  position: relative;
  z-index: 2;
}

.fml-hero__content {
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fml-hero__content {
    background: rgba(26, 39, 68, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--fml-r-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.fml-hero__kicker {
  display: inline-block;
  font-family: var(--fml-font-display);
  font-size: 1em;
  font-weight: 600;
  color: var(--fml-amber);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.fml-hero__kicker strong {
  color: var(--fml-coral);
}

.fml-hero__title {
  font-family: var(--fml-font-display);
  font-size: 2.2em;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px;
}

.fml-hero__title span {
  color: var(--fml-amber);
}

.fml-hero__subtitle {
  font-size: 1.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  line-height: 1.8;
}

.fml-hero__benefit {
  font-size: 0.95em;
  color: var(--fml-green-light);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.7;
}

.fml-hero__benefit i {
  color: var(--fml-amber);
  margin-right: 6px;
}

.fml-hero__note {
  font-size: 0.82em;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
}

/* ============================================
   3b. Ticker Bar — 統計ティッカー
   ============================================ */
.fml-ticker {
  background: var(--fml-navy);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.fml-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fml-ticker__item {
  font-size: 0.85em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 8px;
  letter-spacing: 0.02em;
}

.fml-ticker__item i {
  color: var(--fml-amber);
  margin-right: 6px;
}

.fml-ticker__sep {
  color: rgba(255, 255, 255, 0.25);
  padding: 0 12px;
}

/* ============================================
   4. Statistics Cards — データで焦らせる
   ============================================ */
.fml-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0;
}

.fml-stat-card {
  background: var(--fml-white);
  border-radius: var(--fml-r-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--fml-shadow-md);
  border: 1px solid var(--fml-border-light);
  border-top: 4px solid var(--fml-coral);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.fml-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fml-shadow-lg);
}

.fml-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fml-coral), var(--fml-amber));
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 16px;
}

.fml-stat-card__number {
  font-family: var(--fml-font-display);
  font-size: 3.2em;
  font-weight: 900;
  color: var(--fml-coral);
  line-height: 1.1;
  margin-bottom: 8px;
}

.fml-stat-card__unit {
  font-family: var(--fml-font-body);
  font-size: 0.35em;
  font-weight: 600;
  color: var(--fml-text-mid);
  vertical-align: baseline;
}

.fml-stat-card__label {
  font-size: 0.92em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 4px;
  line-height: 1.5;
}

.fml-stat-card__desc {
  font-size: 0.82em;
  color: var(--fml-text-light);
  font-style: italic;
}

/* Bridge text */
.fml-bridge-text {
  text-align: center;
  font-family: var(--fml-font-display);
  font-size: 1.15em;
  font-weight: 700;
  color: var(--fml-coral);
  margin-top: 32px;
  line-height: 1.8;
}

.fml-bridge-text i {
  margin-right: 8px;
  color: var(--fml-danger);
}

.fml-bridge-text strong {
  color: var(--fml-danger);
}

/* ============================================
   5. Empathy — 共感セクション
   ============================================ */
.fml-worries {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.fml-worry {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--fml-white);
  padding: 18px 20px;
  border-radius: var(--fml-r-md);
  box-shadow: var(--fml-shadow-sm);
  border: 1px solid var(--fml-border-light);
  border-left: 4px solid var(--fml-coral);
  transition: transform 0.3s ease;
}

.fml-worry:hover {
  transform: translateX(4px);
}

.fml-worry__icon {
  font-size: 1.5em;
  color: var(--fml-coral);
  flex-shrink: 0;
}

.fml-worry p {
  font-size: 0.92em;
  color: var(--fml-text);
  line-height: 1.7;
}

.fml-worry strong {
  color: var(--fml-navy);
}

.fml-empathy-bridge {
  text-align: center;
  font-family: var(--fml-font-display);
  font-size: 1.1em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 32px;
  line-height: 1.8;
}

.fml-empathy-bridge strong {
  color: var(--fml-green);
}

/* ============================================
   5b. Danger Box — 放置するとどうなる？
   ============================================ */
.fml-danger-box {
  background: var(--fml-danger-light);
  border: 2px solid rgba(211, 47, 47, 0.25);
  border-radius: var(--fml-r-lg);
  padding: 28px 24px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.fml-danger-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fml-danger), var(--fml-coral));
}

.fml-danger-box__title {
  font-family: var(--fml-font-display);
  font-size: 1.05em;
  font-weight: 800;
  color: var(--fml-danger);
  text-align: center;
  margin-bottom: 20px;
}

.fml-danger-box__title i {
  margin-right: 8px;
}

.fml-danger-box__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fml-danger-box__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--fml-r-sm);
}

.fml-danger-box__item i {
  color: var(--fml-danger);
  font-size: 1.3em;
  margin-top: 2px;
  flex-shrink: 0;
}

.fml-danger-box__item p {
  font-size: 0.88em;
  color: var(--fml-text);
  line-height: 1.7;
}

.fml-danger-box__item strong {
  color: var(--fml-danger);
}

/* ============================================
   6. Solution — 解決セクション
   ============================================ */
.fml-solution {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

.fml-solution__img img {
  width: 100%;
  border-radius: var(--fml-r-lg);
  box-shadow: var(--fml-shadow-lg);
}

.fml-solution__text {
  font-size: 0.95em;
  color: var(--fml-text-mid);
  line-height: 1.9;
  margin-top: 16px;
}

.fml-solution__change {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  background: var(--fml-cool-gray);
  border-radius: var(--fml-r-md);
}

.fml-solution__before {
  font-size: 0.92em;
  color: var(--fml-text-light);
}

.fml-solution__arrow {
  font-size: 1.4em;
  color: var(--fml-green);
}

.fml-solution__after {
  font-size: 1.05em;
  font-weight: 700;
  color: var(--fml-green);
}

/* ============================================
   7. Cards (Kids / Parents)
   ============================================ */
.fml-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fml-card {
  background: var(--fml-white);
  border-radius: var(--fml-r-md);
  overflow: hidden;
  box-shadow: var(--fml-shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid var(--fml-border-light);
}

.fml-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fml-shadow-lg);
}

.fml-card__img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.fml-card__body {
  padding: 24px;
}

.fml-card__title {
  font-family: var(--fml-font-display);
  font-size: 1.08em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 10px;
  line-height: 1.5;
}

.fml-card__text {
  font-size: 0.88em;
  color: var(--fml-text-mid);
  line-height: 1.85;
}

/* ============================================
   8. Project Flow BEFORE / AFTER
   ============================================ */
.fml-flow {
  margin: 40px 0;
}

.fml-flow__suptitle {
  text-align: center;
  font-family: var(--fml-font-display);
  font-size: 1.1em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.fml-flow__block {
  background: var(--fml-white);
  border-radius: var(--fml-r-lg);
  box-shadow: var(--fml-shadow-md);
  padding: 24px 20px;
  border: 1px solid var(--fml-border-light);
}

.fml-flow__block--before {
  border-left: 4px solid #b0bec5;
}

.fml-flow__block--after {
  border-left: 4px solid var(--fml-green);
}

.fml-flow__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.fml-flow__photo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--fml-shadow-sm);
}

.fml-flow__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fml-flow__badge {
  display: inline-block;
  font-size: 0.68em;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.fml-flow__badge--before {
  background: #eceff1;
  color: #607d8b;
}

.fml-flow__badge--after {
  background: #e8f5e9;
  color: var(--fml-green);
}

.fml-flow__headline {
  font-size: 1em;
  font-weight: 600;
  color: var(--fml-text);
  line-height: 1.4;
}

.fml-flow__headline strong {
  color: var(--fml-navy);
}

.fml-flow__block--after .fml-flow__headline strong {
  color: var(--fml-green);
}

.fml-flow__subtext {
  font-size: 0.82em;
  color: var(--fml-text-mid);
  margin-top: 2px;
}

/* --- タイムライン --- */
.fml-flow__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fml-flow__phase {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--fml-border-light);
}

.fml-flow__phase:last-child {
  border-bottom: none;
}

.fml-flow__bar-seg {
  width: 6px;
  min-height: 100%;
  border-radius: 3px;
  flex-shrink: 0;
  align-self: stretch;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible .fml-flow__bar-seg {
  transform: scaleY(1);
}

/* BEFORE カラー */
.fml-flow__bar-seg--b1 { background: #cfd8dc; }
.fml-flow__bar-seg--b2 { background: #b0bec5; }
.fml-flow__bar-seg--b3 { background: #90a4ae; }
.fml-flow__bar-seg--b4 { background: #78909c; }
.fml-flow__bar-seg--b5 { background: #607d8b; }
.fml-flow__bar-seg--b6 { background: #546e7a; }

/* AFTER カラー */
.fml-flow__bar-seg--a1 { background: #81C784; }
.fml-flow__bar-seg--a2 { background: #66BB6A; }
.fml-flow__bar-seg--a3 { background: #43A047; }
.fml-flow__bar-seg--a4 { background: #388E3C; }
.fml-flow__bar-seg--a5 { background: #2E7D32; }

/* Staggered animation */
.reveal.is-visible .fml-flow__bar-seg--b1 { transition-delay: 0.1s; }
.reveal.is-visible .fml-flow__bar-seg--b2 { transition-delay: 0.2s; }
.reveal.is-visible .fml-flow__bar-seg--b3 { transition-delay: 0.3s; }
.reveal.is-visible .fml-flow__bar-seg--b4 { transition-delay: 0.4s; }
.reveal.is-visible .fml-flow__bar-seg--b5 { transition-delay: 0.5s; }
.reveal.is-visible .fml-flow__bar-seg--b6 { transition-delay: 0.6s; }
.reveal.is-visible .fml-flow__bar-seg--a1 { transition-delay: 0.2s; }
.reveal.is-visible .fml-flow__bar-seg--a2 { transition-delay: 0.25s; }
.reveal.is-visible .fml-flow__bar-seg--a3 { transition-delay: 0.3s; }
.reveal.is-visible .fml-flow__bar-seg--a4 { transition-delay: 0.35s; }
.reveal.is-visible .fml-flow__bar-seg--a5 { transition-delay: 0.4s; }

.fml-flow__phase-info {
  flex: 1;
  min-width: 0;
}

.fml-flow__phase-label {
  display: inline;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--fml-text);
}

.fml-flow__phase-days,
.fml-flow__phase-time {
  display: inline;
  font-size: 0.78em;
  font-weight: 800;
  margin-left: 8px;
}

.fml-flow__phase-days { color: var(--fml-text-light); }
.fml-flow__phase-time { color: var(--fml-green); }

.fml-flow__tasks {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.fml-flow__tasks li {
  font-size: 0.78em;
  color: var(--fml-text-mid);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

.fml-flow__tasks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fml-border);
}

.fml-flow__block--after .fml-flow__tasks li::before {
  background: var(--fml-green-light);
}

/* --- ディバイダー --- */
.fml-flow__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.fml-flow__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fml-border), transparent);
}

.fml-flow__divider-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fml-green), var(--fml-green-light));
  color: var(--fml-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  box-shadow: var(--fml-shadow-glow);
  flex-shrink: 0;
}

.fml-flow__divider-text {
  font-size: 0.9em;
  font-weight: 700;
  color: var(--fml-green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- 結果（14日→1日） --- */
.fml-flow__result {
  text-align: center;
  margin-top: 32px;
  padding: 28px 20px;
  background: linear-gradient(135deg, var(--fml-cream), var(--fml-warm-gray));
  border-radius: var(--fml-r-lg);
  border: 1px solid var(--fml-border-light);
}

.fml-flow__result-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.fml-flow__result-before {
  font-size: 1.6em;
  font-weight: 800;
  color: #90a4ae;
  text-decoration: line-through;
  text-decoration-color: var(--fml-coral);
  text-decoration-thickness: 2px;
}

.fml-flow__result-text i {
  color: var(--fml-green);
  font-size: 1.2em;
}

.fml-flow__result-after {
  font-size: 2.4em;
  font-weight: 900;
  color: var(--fml-coral);
  line-height: 1;
}

.fml-flow__result-catch {
  font-size: 0.95em;
  color: var(--fml-text);
  line-height: 1.8;
}

.fml-flow__result-catch strong {
  color: var(--fml-coral);
  font-weight: 800;
}

/* ============================================
   9. Trial Content — 体験内容
   ============================================ */
.fml-trial-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 40px auto 0;
}

.fml-trial-card {
  display: flex;
  flex-direction: column;
  background: var(--fml-white);
  border-radius: var(--fml-r-md);
  overflow: hidden;
  box-shadow: var(--fml-shadow-sm);
  border: 1px solid var(--fml-border-light);
  transition: transform 0.3s ease, box-shadow 0.3s;
  position: relative;
}

.fml-trial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fml-shadow-md);
}

.fml-trial-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.fml-trial-card__body {
  padding: 20px;
}

.fml-trial-card__body h3 {
  font-family: var(--fml-font-display);
  font-size: 1em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 8px;
}

.fml-trial-card__body h3 i {
  color: var(--fml-green);
  margin-right: 6px;
}

.fml-trial-card__body p {
  font-size: 0.88em;
  color: var(--fml-text-mid);
  line-height: 1.8;
}

/* Day tag */
.fml-day-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--fml-coral), #E64A19);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 112, 67, 0.4);
}

/* ============================================
   10. Trust / Promises — 信頼セクション
   ============================================ */
.fml-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 32px;
}

.fml-promise {
  text-align: center;
  padding: 28px 20px;
  background: var(--fml-white);
  border-radius: var(--fml-r-md);
  box-shadow: var(--fml-shadow-sm);
  border: 1px solid var(--fml-border-light);
  transition: transform 0.3s ease;
}

.fml-promise:hover {
  transform: translateY(-3px);
}

.fml-promise__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fml-green), var(--fml-green-light));
  color: #fff;
  font-size: 1.3em;
  margin-bottom: 14px;
}

.fml-promise h3 {
  font-family: var(--fml-font-display);
  font-size: 1.1em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 8px;
}

.fml-promise p {
  font-size: 0.88em;
  color: var(--fml-text-mid);
  line-height: 1.7;
}

.fml-card-notice {
  max-width: 780px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--fml-r-md);
}

.fml-card-notice p {
  font-size: 0.85em;
  color: var(--fml-text-mid);
  line-height: 1.8;
}

.fml-card-notice i {
  color: var(--fml-amber);
  margin-right: 6px;
}

/* ============================================
   11. Testimonial & Urgency
   ============================================ */
.fml-testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 780px;
  margin: 32px auto;
  padding: 28px 24px;
  background: var(--fml-cream);
  border-radius: var(--fml-r-lg);
  border: 1px solid var(--fml-border-light);
}

.fml-testimonial__img img {
  width: 100%;
  border-radius: var(--fml-r-md);
  max-height: 260px;
  object-fit: cover;
}

.fml-testimonial__quote {
  font-size: 0.95em;
  color: var(--fml-text);
  line-height: 1.9;
  font-style: italic;
}

.fml-testimonial__author {
  font-size: 0.82em;
  color: var(--fml-text-light);
  text-align: right;
}

/* Urgency banner */
.fml-urgency {
  text-align: center;
  padding: 18px 20px;
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border: 2px solid var(--fml-amber);
  border-radius: var(--fml-r-md);
  max-width: 480px;
  margin: 24px auto;
  animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 179, 0, 0); }
}

.fml-urgency p {
  font-size: 1em;
  font-weight: 700;
  color: var(--fml-navy);
}

.fml-urgency i {
  color: var(--fml-coral);
  margin-right: 8px;
}

.fml-urgency strong {
  color: var(--fml-danger);
  font-size: 1.15em;
}

/* Countdown banner */
.fml-countdown {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.fml-countdown__text {
  font-size: 0.82em;
  color: var(--fml-danger);
  font-weight: 600;
}

.fml-countdown__text i {
  margin-right: 6px;
}

/* ============================================
   12. Pricing
   ============================================ */
.fml-plans {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.fml-plan {
  background: var(--fml-white);
  border-radius: var(--fml-r-lg);
  overflow: hidden;
  box-shadow: var(--fml-shadow-md);
  border: 2px solid var(--fml-border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s;
}

.fml-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--fml-shadow-lg);
}

.fml-plan--rec {
  border-color: var(--fml-coral);
}

.fml-plan__badge {
  position: absolute;
  top: -1px;
  right: 18px;
  background: linear-gradient(135deg, var(--fml-coral), var(--fml-amber));
  color: #fff;
  padding: 4px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fml-plan__head {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--fml-border-light);
}

.fml-plan__name {
  font-family: var(--fml-font-display);
  font-size: 1.25em;
  font-weight: 700;
  color: var(--fml-navy);
  margin-bottom: 2px;
}

.fml-plan__sub {
  font-size: 0.85em;
  color: var(--fml-text-light);
}

.fml-plan__target {
  padding: 10px 24px;
  text-align: center;
  font-size: 0.8em;
  color: var(--fml-text-mid);
  background: var(--fml-cream);
  border-bottom: 1px solid var(--fml-border-light);
}

.fml-plan__price {
  padding: 26px 24px;
  text-align: center;
  background: var(--fml-cool-gray);
}

.fml-plan__amount {
  font-family: var(--fml-font-display);
  font-size: 2.6em;
  font-weight: 900;
  color: var(--fml-navy);
  line-height: 1.1;
}

.fml-plan--rec .fml-plan__amount {
  color: var(--fml-coral);
}

.fml-plan__unit {
  font-family: var(--fml-font-body);
  font-size: 0.38em;
  font-weight: 400;
  color: var(--fml-text-light);
}

.fml-plan__body { padding: 24px; }

.fml-plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fml-plan__list li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 0.88em;
  line-height: 1.6;
  border-bottom: 1px solid var(--fml-border-light);
  color: var(--fml-text-mid);
}

.fml-plan__list li:last-child { border-bottom: none; }

.fml-plan__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--fml-green);
  font-weight: 700;
  font-size: 0.9em;
}

.fml-plan__cta {
  padding: 0 24px 24px;
  text-align: center;
}

.fml-plan__cta a {
  display: block;
  padding: 16px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none !important;
  transition: all 0.3s ease;
  font-size: 1em;
  letter-spacing: 0.03em;
}

.fml-plan__cta--fill a {
  background: linear-gradient(135deg, var(--fml-coral) 0%, #E64A19 100%);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255, 112, 67, 0.35);
  animation: ctaPulsePlan 2.5s ease-in-out infinite;
}

@keyframes ctaPulsePlan {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 112, 67, 0.35), 0 0 0 0 rgba(255, 112, 67, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(255, 112, 67, 0.4), 0 0 0 8px rgba(255, 112, 67, 0); }
}

.fml-plan__cta--fill a:hover {
  box-shadow: 0 8px 30px rgba(255, 112, 67, 0.5);
  transform: translateY(-3px) scale(1.02);
  animation: none;
}

/* Pricing note */
.fml-price-note {
  text-align: center;
  margin-top: 32px;
}

.fml-price-note__reg {
  display: inline-block;
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  padding: 14px 28px;
  border-radius: var(--fml-r-md);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.92em;
  border: 1px solid #FFE082;
}

.fml-price-note__reg .amt {
  font-size: 1.25em;
  color: var(--fml-coral);
}

.fml-price-note small {
  display: block;
  color: var(--fml-text-light);
  font-size: 0.8em;
  margin-top: 4px;
}

/* ============================================
   13. FAQ
   ============================================ */
.fml-faq {
  max-width: 820px;
  margin: 0 auto;
}

.fml-faq__cat {
  margin-bottom: 28px;
  background: var(--fml-white);
  border-radius: var(--fml-r-md);
  box-shadow: var(--fml-shadow-sm);
  border: 1px solid var(--fml-border-light);
  overflow: hidden;
}

.fml-faq__cat-title {
  font-family: var(--fml-font-display);
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  padding: 14px 20px;
  margin: 0;
  background: linear-gradient(135deg, var(--fml-navy), #2c3e5a);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fml-faq__cat-title i {
  font-size: 1.1em;
}

.fml-faq__item {
  border-bottom: 1px solid var(--fml-border-light);
}

.fml-faq__item:last-child {
  border-bottom: none;
}

.fml-faq__q {
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9em;
  color: var(--fml-text);
  transition: color 0.2s, background 0.2s;
  gap: 12px;
  user-select: none;
  -webkit-user-select: none;
}

.fml-faq__q:hover {
  color: var(--fml-green);
  background: rgba(67, 160, 71, 0.03);
}

.fml-faq__q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--fml-green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78em;
  font-weight: 800;
  flex-shrink: 0;
}

.fml-faq__q-text {
  flex: 1;
}

.fml-faq__q-toggle {
  font-size: 1.4em;
  font-weight: 300;
  color: var(--fml-green);
  flex-shrink: 0;
  width: 1.2em;
  text-align: center;
  transition: transform 0.3s;
}

.fml-faq__q.is-open .fml-faq__q-toggle {
  transform: rotate(45deg);
}

.fml-faq__a-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--fml-coral);
  color: #fff;
  border-radius: 50%;
  font-size: 0.78em;
  font-weight: 800;
  flex-shrink: 0;
  margin-right: 10px;
  vertical-align: top;
}

.fml-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.fml-faq__a-inner {
  padding: 18px 16px;
  font-size: 0.86em;
  color: var(--fml-text-mid);
  line-height: 1.9;
  background: var(--fml-cream);
  display: flex;
  gap: 0;
}

.fml-faq__a-text {
  flex: 1;
}

/* ============================================
   14. Closing CTA
   ============================================ */
.fml-closing {
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(211, 47, 47, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(67, 160, 71, 0.08) 0%, transparent 50%),
    linear-gradient(170deg, #FFF5F5 0%, #FFF9F0 40%, #F0F7F0 100%);
  position: relative;
  overflow: hidden;
}

.fml-closing::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 160, 71, 0.06), transparent 70%);
  pointer-events: none;
}

.fml-closing__img {
  margin-bottom: 28px;
}

.fml-closing__img img {
  width: 100%;
  max-width: 600px;
  border-radius: var(--fml-r-lg);
  box-shadow: var(--fml-shadow-lg);
  margin: 0 auto;
}

.fml-closing__title {
  font-family: var(--fml-font-display);
  font-size: 1.4em;
  font-weight: 700;
  color: var(--fml-navy);
  line-height: 1.6;
  margin-bottom: 16px;
}

.fml-closing__text {
  font-size: 0.92em;
  color: var(--fml-text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.9;
}

.fml-closing__sub {
  font-size: 0.88em;
  color: var(--fml-text-light);
  margin-top: 8px;
}

/* ============================================
   15. Bridge (セクション間つなぎ)
   ============================================ */
.fml-bridge {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.fml-bridge p {
  font-family: var(--fml-font-display);
  font-size: 1em;
  font-weight: 600;
  color: var(--fml-navy);
  line-height: 1.8;
  margin: 0;
}

.fml-bridge--warm {
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
}

.fml-bridge--cool {
  background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
}

/* ============================================
   16. Footer overrides
   ============================================ */
footer .text-center { text-align: center; }
footer .text-left { text-align: left; }
footer .img-responsive { display: block; max-width: 100%; height: auto; }

/* ── Video ── */
.fml-video {
  max-width: 680px;
  margin: 0 auto;
}
.fml-video__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--fml-navy);
  border-radius: var(--fml-r-md);
  overflow: hidden;
  box-shadow: var(--fml-shadow-lg);
}
.fml-video__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  footer .hidden-xs { display: none !important; }
  footer .visible-xs { display: block !important; }
  footer .visible-sm { display: none !important; }
}

@media (min-width: 768px) and (max-width: 991px) {
  footer .hidden-sm { display: none !important; }
  footer .visible-sm { display: block !important; }
  footer .visible-xs { display: none !important; }
}

@media (min-width: 992px) {
  footer .visible-sm,
  footer .visible-xs { display: none !important; }
}

/* ============================================
   17. Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }

/* Staggered cards */
.fml-cards .fml-card:nth-child(1) { transition-delay: 0s; }
.fml-cards .fml-card:nth-child(2) { transition-delay: 0.12s; }
.fml-cards .fml-card:nth-child(3) { transition-delay: 0.24s; }

/* ============================================
   Responsive: Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .fml-sec { padding: 100px 0; }

  /* Section titles */
  .fml-sec-title { font-size: 2.2em; }
  .fml-heading { margin-bottom: 56px; }
  .fml-heading__title { font-size: 2.2em; }
  .fml-heading__sub { font-size: 1.05em; }

  /* Hero */
  .fml-hero { padding: 120px 0 100px; }
  .fml-hero__content { max-width: 600px; text-align: left; margin: 0; padding: 44px 36px; }
  .fml-hero__title { font-size: 2.8em; }
  .fml-hero__subtitle { font-size: 1.15em; }
  .fml-hero__kicker { font-size: 1.15em; }
  .fml-hero__benefit { font-size: 1.05em; }

  /* Ticker */
  .fml-ticker__item { font-size: 0.92em; }

  /* Stats */
  .fml-stat-cards { flex-direction: row; gap: 24px; }
  .fml-stat-card { flex: 1; padding: 36px 28px; }
  .fml-stat-card__number { font-size: 3.8em; }

  /* Bridge text */
  .fml-bridge-text { font-size: 1.35em; }

  /* Worries */
  .fml-worry p { font-size: 0.98em; }

  /* Danger box */
  .fml-danger-box { padding: 32px 28px; }
  .fml-danger-box__items { flex-direction: row; gap: 16px; }
  .fml-danger-box__item { flex: 1; }

  /* Solution */
  .fml-solution { flex-direction: row; align-items: center; gap: 36px; }
  .fml-solution__img { flex: 0 0 40%; }
  .fml-solution__change { flex-direction: row; gap: 16px; }

  /* Bridge */
  .fml-bridge { padding: 44px 20px; }
  .fml-bridge p { font-size: 1.3em; }

  /* CTA */
  .fml-cta a { padding: 24px 56px; font-size: 1.3em; }

  /* Cards */
  .fml-cards { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .fml-card { flex: 1 1 calc(33.333% - 16px); min-width: 280px; }
  .fml-card__img { height: 240px; }
  .fml-card__title { font-size: 1.15em; }
  .fml-card__text { font-size: 0.92em; }

  /* Trial cards */
  .fml-trial-cards { flex-direction: row; gap: 24px; }
  .fml-trial-card { flex: 1; }
  .fml-trial-card__img img { height: 200px; }

  /* Promises */
  .fml-promises { flex-direction: row; gap: 20px; }
  .fml-promise { flex: 1; }

  /* Testimonial */
  .fml-testimonial { flex-direction: row; align-items: center; gap: 28px; padding: 36px 32px; }
  .fml-testimonial__img { flex: 0 0 40%; }
  .fml-testimonial__img img { max-height: 300px; }

  /* Pricing */
  .fml-plans { flex-direction: row; gap: 28px; }
  .fml-plan { flex: 1; }
  .fml-plan__name { font-size: 1.4em; }
  .fml-plan__amount { font-size: 3em; }
  .fml-plan__list li { font-size: 0.92em; }

  /* FAQ */
  .fml-faq__q { font-size: 0.95em; padding: 18px 8px 18px 16px; }
  .fml-faq__a-inner { font-size: 0.92em; padding: 0 16px 20px; }
  .fml-faq__cat-title { font-size: 1.1em; }

  /* Video */
  .fml-video { max-width: 780px; }

  /* Closing */
  .fml-closing { padding: 100px 0; }
  .fml-closing__img img { max-width: 640px; }
  .fml-closing__title { font-size: 2.2em; }
  .fml-closing__text { font-size: 1.05em; max-width: 640px; }

  /* Flow responsive */
  .fml-flow__suptitle { font-size: 1.25em; margin-bottom: 32px; }
  .fml-flow__block { padding: 28px 28px; }
  .fml-flow__photo { width: 80px; height: 80px; }
  .fml-flow__headline { font-size: 1.1em; }
  .fml-flow__timeline { flex-direction: row; gap: 3px; }
  .fml-flow__phase {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-bottom: none;
    flex: 1;
  }
  .fml-flow__bar-seg {
    width: auto;
    height: 8px;
    min-height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
    align-self: auto;
    transform: scaleX(0);
    transform-origin: left;
  }
  .reveal.is-visible .fml-flow__bar-seg { transform: scaleX(1); }
  .fml-flow__phase-info { flex: none; }
  .fml-flow__phase-label { display: block; font-size: 0.78em; }
  .fml-flow__phase-days,
  .fml-flow__phase-time { display: block; font-size: 0.7em; margin-left: 0; margin-top: 1px; }
  .fml-flow__tasks li { font-size: 0.7em; }
  .fml-flow__result { padding: 36px 28px; }
  .fml-flow__result-before { font-size: 2em; }
  .fml-flow__result-after { font-size: 3em; }
  .fml-flow__result-catch { font-size: 1.05em; }
}

/* ============================================
   Responsive: Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .fml-sec { padding: 120px 0; }
  .fml-sec-title { font-size: 2.6em; }
  .fml-heading { margin-bottom: 64px; }
  .fml-heading__title { font-size: 2.6em; }
  .fml-heading__sub { font-size: 1.1em; }

  /* Hero */
  .fml-hero { padding: 160px 0 140px; }
  .fml-hero__content { max-width: 660px; padding: 48px 44px; }
  .fml-hero__title { font-size: 3.4em; }
  .fml-hero__subtitle { font-size: 1.25em; }
  .fml-hero__kicker { font-size: 1.25em; }

  /* Stats */
  .fml-stat-card { padding: 44px 32px; }
  .fml-stat-card__number { font-size: 4.2em; }
  .fml-stat-card__label { font-size: 1em; }

  /* Bridge text */
  .fml-bridge-text { font-size: 1.5em; }

  /* Danger box */
  .fml-danger-box { padding: 36px 32px; }
  .fml-danger-box__title { font-size: 1.15em; }
  .fml-danger-box__item p { font-size: 0.95em; }

  /* Bridge */
  .fml-bridge { padding: 52px 20px; }
  .fml-bridge p { font-size: 1.5em; }

  /* CTA */
  .fml-cta a { padding: 26px 68px; font-size: 1.35em; }

  /* Cards */
  .fml-card__img { height: 270px; }
  .fml-card__body { padding: 28px; }
  .fml-card__title { font-size: 1.2em; }
  .fml-card__text { font-size: 0.95em; }

  /* Trial cards */
  .fml-trial-card__img img { height: 240px; }

  /* Promises */
  .fml-promise { padding: 36px 28px; }

  /* Pricing */
  .fml-plan__amount { font-size: 3.4em; }
  .fml-plan__name { font-size: 1.5em; }
  .fml-plan__list li { font-size: 0.95em; padding: 11px 0 11px 30px; }
  .fml-plan__body { padding: 28px; }

  /* FAQ */
  .fml-faq__q { font-size: 1em; }
  .fml-faq__a-inner { font-size: 0.95em; }

  /* Video */
  .fml-video { max-width: 960px; }

  /* Closing */
  .fml-closing { padding: 120px 0; }
  .fml-closing__img img { max-width: 760px; }
  .fml-closing__title { font-size: 2.6em; }
  .fml-closing__text { font-size: 1.1em; max-width: 700px; }

  /* Flow responsive */
  .fml-flow__suptitle { font-size: 1.35em; margin-bottom: 36px; }
  .fml-flow__block { padding: 32px 36px; }
  .fml-flow__photo { width: 88px; height: 88px; }
  .fml-flow__head { gap: 20px; margin-bottom: 24px; }
  .fml-flow__headline { font-size: 1.15em; }
  .fml-flow__timeline { gap: 4px; }
  .fml-flow__bar-seg { height: 10px; }
  .fml-flow__phase-label { font-size: 0.82em; }
  .fml-flow__phase-days,
  .fml-flow__phase-time { font-size: 0.72em; }
  .fml-flow__tasks li { font-size: 0.73em; }
  .fml-flow__divider { margin: 36px 0; }
  .fml-flow__divider-icon { width: 52px; height: 52px; font-size: 1.4em; }
  .fml-flow__divider-text { font-size: 1em; }
  .fml-flow__result { padding: 40px 36px; margin-top: 40px; }
  .fml-flow__result-before { font-size: 2.2em; }
  .fml-flow__result-after { font-size: 3.4em; }
  .fml-flow__result-catch { font-size: 1.1em; }
}

/* ============================================
   Responsive: Wide Desktop (1400px+)
   ============================================ */
@media (min-width: 1400px) {
  .wrap { max-width: 1320px; }
  .fml-sec-title { font-size: 2.8em; }
  .fml-heading__title { font-size: 2.8em; }

  .fml-hero__content { max-width: 720px; padding: 52px 48px; }
  .fml-hero__title { font-size: 3.8em; }
  .fml-hero__subtitle { font-size: 1.35em; }
  .fml-hero__kicker { font-size: 1.35em; }

  .fml-stat-card__number { font-size: 4.8em; }

  .fml-bridge { padding: 56px 20px; }
  .fml-bridge p { font-size: 1.6em; }

  .fml-card__img { height: 300px; }
  .fml-card__body { padding: 32px; }

  .fml-plan { border-radius: var(--fml-r-xl); }
  .fml-plan__head { padding: 30px; }
  .fml-plan__amount { font-size: 3.8em; }
  .fml-plan__body { padding: 32px; }
  .fml-plan__list li { font-size: 1em; }

  .fml-video { max-width: 1000px; }
  .fml-closing__img img { max-width: 860px; }
  .fml-closing__title { font-size: 2.8em; }
  .fml-closing__text { font-size: 1.15em; }
}