@charset "utf-8";
/* ============================================
   家族でスタートAI — LP専用CSS
   "Warm Discovery" Design System v2
   スマホ最適化リニューアル
   ============================================ */

/* --- 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;

  /* 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: 60px 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 (新) --- */
.fml-sec-title {
  font-family: var(--fml-font-display);
  font-size: 1.5em;
  font-weight: 700;
  color: var(--fml-navy);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 16px;
}

.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.92em;
  color: var(--fml-text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* --- 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: 20px 40px;
  border-radius: 60px;
  font-size: 1.1em;
  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;
}

/* --- 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 / FV
   ============================================ */
.fml-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  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(255, 249, 240, 0.78);
  z-index: 1;
}

@media (min-width: 768px) {
  .fml-hero__overlay {
    background: rgba(255, 249, 240, 0.15);
  }
}

.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(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--fml-r-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
}

.fml-hero__kicker {
  display: inline-block;
  background: linear-gradient(135deg, var(--fml-coral), var(--fml-amber));
  color: #fff;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.fml-hero__title {
  font-family: var(--fml-font-display);
  font-size: 1.75em;
  font-weight: 900;
  line-height: 1.5;
  color: var(--fml-navy);
  margin-bottom: 16px;
}

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

.fml-hero__subtitle {
  font-size: 1em;
  color: var(--fml-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.fml-hero__benefit {
  display: inline-block;
  background: var(--fml-white);
  border-radius: 24px;
  padding: 12px 24px;
  font-size: 0.95em;
  font-weight: 700;
  color: var(--fml-navy);
  box-shadow: var(--fml-shadow-md);
  border: 1.5px solid var(--fml-border-light);
  margin-bottom: 24px;
}

.fml-hero__benefit .fa-wand-magic-sparkles {
  color: var(--fml-amber);
  margin-right: 6px;
}

.fml-hero__note {
  font-size: 0.8em;
  color: var(--fml-text-mid);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ============================================
   4. 共感セクション — 悩みリスト
   ============================================ */
.fml-worries {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 32px auto 0;
}

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

.fml-worry:hover {
  transform: translateX(4px);
  box-shadow: var(--fml-shadow-sm);
}

.fml-worry__icon {
  font-size: 1.4em;
  color: var(--fml-coral);
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

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

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

.fml-empathy-bridge {
  text-align: center;
  margin-top: 36px;
  font-family: var(--fml-font-display);
  font-size: 1em;
  font-weight: 600;
  color: var(--fml-green);
  line-height: 1.8;
}

/* ============================================
   5. 解決セクション
   ============================================ */
.fml-solution {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.fml-solution__img {
  width: 100%;
  max-width: 400px;
}

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

.fml-solution__body {
  text-align: center;
}

.fml-solution__body .fml-sec-title {
  margin-bottom: 20px;
}

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

.fml-solution__text strong {
  color: var(--fml-green);
  font-weight: 700;
}

.fml-solution__change {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--fml-white);
  border-radius: var(--fml-r-md);
  box-shadow: var(--fml-shadow-sm);
  border: 1px solid var(--fml-border-light);
}

.fml-solution__before {
  font-size: 0.9em;
  color: var(--fml-text-light);
  padding: 8px 18px;
  background: var(--fml-cool-gray);
  border-radius: 20px;
}

.fml-solution__arrow {
  color: var(--fml-green);
  font-size: 1.2em;
  transform: rotate(90deg);
}

.fml-solution__after {
  font-size: 0.95em;
  font-weight: 700;
  color: var(--fml-green);
  padding: 8px 18px;
  background: rgba(67, 160, 71, 0.08);
  border-radius: 20px;
}

.fml-solution__before i,
.fml-solution__after i {
  margin-right: 6px;
}

/* ============================================
   6. 体験内容カード
   ============================================ */
.fml-trial-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.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.4s ease, box-shadow 0.4s ease;
}

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

.fml-trial-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

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

.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;
}

/* ============================================
   7. 信頼セクション — お約束
   ============================================ */
.fml-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
}

.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, box-shadow 0.3s ease;
}

.fml-promise:hover {
  transform: translateY(-3px);
  box-shadow: var(--fml-shadow-md);
}

.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: 600px;
  margin: 24px auto 0;
  padding: 20px 24px;
  background: rgba(67, 160, 71, 0.06);
  border: 1px solid rgba(67, 160, 71, 0.15);
  border-radius: var(--fml-r-md);
}

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

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

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

/* ============================================
   8. ストーリー・体験談
   ============================================ */
.fml-testimonial {
  max-width: 640px;
  margin: 32px auto;
  background: var(--fml-cream);
  border-radius: var(--fml-r-lg);
  overflow: hidden;
  box-shadow: var(--fml-shadow-md);
  border: 1px solid var(--fml-border-light);
}

.fml-testimonial__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.fml-testimonial__body {
  padding: 24px;
}

.fml-testimonial__quote {
  font-family: var(--fml-font-display);
  font-size: 1em;
  font-weight: 500;
  color: var(--fml-navy);
  line-height: 2;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--fml-green);
}

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

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

/* カウントダウン/緊急性 */
.fml-urgency {
  text-align: center;
  margin-top: 32px;
}

.fml-urgency p {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
  border: 1.5px solid var(--fml-amber);
  border-radius: 50px;
  font-size: 0.92em;
  font-weight: 700;
  color: var(--fml-navy);
}

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

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

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

.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;
}

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

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

.fml-faq__item:first-child {
  border-radius: var(--fml-r-md) var(--fml-r-md) 0 0;
}

.fml-faq__item:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--fml-r-md) var(--fml-r-md);
}

.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;
}

/* ============================================
   11. Closing CTA
   ============================================ */
.fml-closing {
  text-align: center;
  padding: 70px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(67, 160, 71, 0.08) 0%, transparent 50%),
    linear-gradient(170deg, #F0F7F0 0%, #FFF9F0 40%, #FFF5E6 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(255, 179, 0, 0.06), transparent 70%);
  pointer-events: none;
}

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

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

.fml-closing__sub {
  font-size: 0.92em;
  color: var(--fml-text-mid);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.8;
}

.fml-cta--final a {
  font-size: 1.2em;
  padding: 22px 44px;
}

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

@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; }
}

/* ============================================
   13. 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 worries */
.fml-worries .fml-worry:nth-child(1) { transition-delay: 0s; }
.fml-worries .fml-worry:nth-child(2) { transition-delay: 0.1s; }
.fml-worries .fml-worry:nth-child(3) { transition-delay: 0.2s; }
.fml-worries .fml-worry:nth-child(4) { transition-delay: 0.3s; }

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

/* Staggered promises */
.fml-promises .fml-promise:nth-child(1) { transition-delay: 0s; }
.fml-promises .fml-promise:nth-child(2) { transition-delay: 0.1s; }
.fml-promises .fml-promise:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   Responsive: Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .fml-sec { padding: 90px 0; }
  .fml-sec-title { font-size: 2em; }
  .fml-sec-sub { font-size: 1em; }

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

  /* CTA */
  .fml-cta a { padding: 22px 52px; font-size: 1.2em; }

  /* Worries */
  .fml-worry { padding: 20px 24px; }
  .fml-worry p { font-size: 0.95em; }
  .fml-empathy-bridge { font-size: 1.15em; }

  /* Solution */
  .fml-solution { flex-direction: row; gap: 36px; }
  .fml-solution__img { width: 40%; flex-shrink: 0; }
  .fml-solution__body { text-align: left; }
  .fml-solution__body .fml-sec-title { text-align: left; }
  .fml-solution__body .fml-sec-title::after { left: 0; transform: none; }
  .fml-solution__change { flex-direction: row; gap: 16px; }
  .fml-solution__arrow { transform: none; }

  /* Trial cards */
  .fml-trial-cards { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .fml-trial-card { flex: 1 1 calc(33.333% - 16px); min-width: 220px; }
  .fml-trial-card__img { height: 200px; }
  .fml-trial-card__body h3 { font-size: 1.1em; }
  .fml-trial-card__body p { font-size: 0.92em; }

  /* Promises */
  .fml-promises { flex-direction: row; gap: 20px; max-width: 800px; }
  .fml-promise { flex: 1; }
  .fml-promise h3 { font-size: 1.15em; }

  /* Testimonial */
  .fml-testimonial { display: flex; flex-direction: row; }
  .fml-testimonial__img { width: 40%; height: auto; min-height: 240px; }
  .fml-testimonial__body { width: 60%; padding: 32px; display: flex; flex-direction: column; justify-content: center; }
  .fml-testimonial__quote { font-size: 1.05em; }

  /* 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; }

  /* Closing */
  .fml-closing { padding: 90px 0; }
  .fml-closing__img img { max-width: 560px; }
  .fml-closing__sub { font-size: 1em; }
  .fml-cta--final a { font-size: 1.3em; padding: 24px 56px; }
}

/* ============================================
   Responsive: Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .fml-sec { padding: 110px 0; }
  .fml-sec-title { font-size: 2.4em; }
  .fml-sec-sub { font-size: 1.05em; }

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

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

  /* Worries */
  .fml-worry { padding: 22px 28px; }
  .fml-worry p { font-size: 1em; }
  .fml-empathy-bridge { font-size: 1.25em; }

  /* Solution */
  .fml-solution { gap: 48px; }
  .fml-solution__text { font-size: 1.05em; }
  .fml-solution__change { gap: 20px; padding: 24px; }

  /* Trial cards */
  .fml-trial-card__img { height: 240px; }
  .fml-trial-card__body { padding: 24px; }
  .fml-trial-card__body h3 { font-size: 1.15em; }
  .fml-trial-card__body p { font-size: 0.95em; }

  /* Promises */
  .fml-promise { padding: 32px 24px; }
  .fml-promise__icon { width: 60px; height: 60px; font-size: 1.5em; }
  .fml-promise h3 { font-size: 1.2em; }
  .fml-promise p { font-size: 0.92em; }

  /* Testimonial */
  .fml-testimonial__quote { font-size: 1.1em; }

  /* 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; }

  /* Closing */
  .fml-closing { padding: 110px 0; }
  .fml-closing__img img { max-width: 640px; }
  .fml-closing__sub { font-size: 1.05em; }
  .fml-cta--final a { font-size: 1.35em; padding: 26px 68px; }
}

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

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

  .fml-solution__img { max-width: 450px; }
  .fml-solution__text { font-size: 1.1em; }

  .fml-trial-card__img { height: 280px; }

  .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-closing__img img { max-width: 720px; }
}
