/* ============================================================
   フミダス転職 フォームテーマ - main.css
   MBTI転職 スマホ専用フルスクリーンフォーム
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Montserrat:wght@700;800&display=swap');

/* ── カラーパレット（ブルー系） ── */
:root {
    --c-bg:       #f0f4ff;        /* 薄ブルーベース */
    --c-bg2:      #eef2ff;        /* 薄インディゴ */
    --c-pink:     #3B82F6;        /* メインブルー */
    --c-pink-lt:  #93C5FD;        /* ライトブルー */
    --c-coral:    #6366F1;        /* インディゴ（アクセント） */
    --c-mint:     #4ECDC4;        /* ミント（サブ） */
    --c-navy:     #1e293b;        /* テキスト濃 */
    --c-navy-lt:  #64748b;        /* テキスト薄 */
    --c-white:    #ffffff;
    --c-card:     #ffffff;
    --c-border:   rgba(59,130,246,.18);
    --c-shadow:   rgba(59,130,246,.10);
}

/* ── リセット ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; height: 100%; overflow: hidden; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
a { color: inherit; }

body.ff-body {
    font-family: 'Nunito', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    background: linear-gradient(160deg, #f0f4ff 0%, #eef2ff 50%, #e8f4f8 100%);
    color: var(--c-navy);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden;
}

/* ============================================================
   HEADER（ロゴ＋細プログレスライン）
   ============================================================ */
.ff-hd {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59,130,246,.12);
    position: relative;
    z-index: 50;
    gap: 14px;
}

.ff-hd__logo { height: 22px; flex-shrink: 0; }

/* ヘッダー内シンプルプログレスライン */
.ff-hd__progress {
    flex: 1;
    height: 5px;
    background: rgba(59,130,246,.15);
    border-radius: 100px;
    overflow: hidden;
}

.ff-hd__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--c-pink), var(--c-coral));
    border-radius: 100px;
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   カンガルーステージ
   ============================================================ */
.ff-roo-stage {
    flex-shrink: 0;
    padding: 6px 24px 0;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(59,130,246,.1);
    position: relative;
    z-index: 45;            /* ヘッダー(50)より低く、スライド(10)より高く */
    /* カンガルーのジャンプがヘッダーに被らないよう上方向だけclip */
    clip-path: inset(0 -60px -60px -60px);
}

/* STEPラベル：ピルバッジ風 */
.ff-roo-stage__label {
    font-family: 'Montserrat', 'Nunito', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--c-pink);
    text-align: right;
    margin-top: 2px;
    padding-bottom: 6px;
}

/* ============================================================
   ハードルプログレスバー
   ============================================================ */
.ff-hurdle {
    position: relative;
    width: 100%;
    height: 68px;
    overflow: visible;
}

/* トラック（地面ライン）：可愛い点線 */
.ff-hurdle__track {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(59,130,246,.15);
    border-radius: 3px;
}

/* 通過済みトラック */
.ff-hurdle__track::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--c-pink), var(--c-coral));
    border-radius: 3px;
    transition: width .5s cubic-bezier(.4,0,.2,1);
}

/* ハードル柱 */
.ff-hurdle__bar {
    position: absolute;
    bottom: 11px;
    width: 4px;
    height: 20px;
    background: var(--c-pink-lt);
    border-radius: 2px;
    transform-origin: bottom center;
    transition: background .3s, transform .3s;
}

.ff-hurdle__bar.is-cleared {
    background: rgba(59,130,246,.3);
    transform: rotate(80deg) translateX(5px);
    transition: background .3s, transform .4s cubic-bezier(.4,0,.2,1);
}

/* カンガルーコンテナ */
.ff-hurdle__runner {
    position: absolute;
    bottom: 11px;
    left: 0;
    width: 52px;
    height: 62px;
    transition: left .55s cubic-bezier(.4,0,.2,1);
    z-index: 2;
}

/* SVG本体 */
.ff-roo {
    width: 52px;
    height: 62px;
    overflow: visible;
    filter: drop-shadow(0 4px 8px rgba(59,130,246,.3));
}

/* 走行バウンス */
@keyframes ffRooBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

.ff-hurdle__runner:not(.is-jumping) .ff-roo {
    animation: ffRooBounce .35s ease-in-out infinite;
}

/* ジャンプ */
@keyframes ffRooJump {
    0%   { transform: translateY(0) rotate(0deg); }
    25%  { transform: translateY(-28px) rotate(-10deg); }
    50%  { transform: translateY(-36px) rotate(0deg); }
    75%  { transform: translateY(-18px) rotate(8deg); }
    90%  { transform: translateY(-4px)  rotate(0deg); }
    100% { transform: translateY(0)    rotate(0deg); }
}

.ff-hurdle__runner.is-jumping .ff-roo {
    animation: ffRooJump .55s cubic-bezier(.4,0,.2,1) both;
}

/* ============================================================
   MAIN
   ============================================================ */
.ff-main {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* 背景canvas */
.ff-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   スライドデッキ
   ============================================================ */
.ff-deck {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* 各スライド */
.ff-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 20px 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .42s cubic-bezier(.4,0,.2,1),
                transform .42s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ff-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.ff-slide.is-done {
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
}

.ff-slide.is-going-right {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
}

/* スライド内コンテンツ */
.ff-slide__inner {
    width: 100%;
    max-width: 420px;
}

/* STEPバッジ（各スライド上部） */
.ff-slide__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--c-pink);
    background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(99,102,241,.08));
    padding: 5px 14px;
    border-radius: 100px;
    border: 1.5px solid rgba(59,130,246,.25);
    margin-bottom: 16px;
}

/* ============================================================
   MBTI転職 ヒーロースライド
   ============================================================ */
.ff-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    position: relative;
    overflow: visible;
}

/* ── 浮遊 MBTI バッジ（背景装飾） ── */
.ff-mbti-float {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ff-mbti-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(var(--x, 0), var(--y, 0));
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    color: rgba(59,130,246,.35);
    background: rgba(255,255,255,.45);
    border: 1.5px solid rgba(59,130,246,.15);
    border-radius: 10px;
    padding: 4px 10px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: ffMbtiBadgeFloat 3.5s ease-in-out infinite alternate;
    animation-delay: calc(var(--d, 0) * 0.5s);
}

@keyframes ffMbtiBadgeFloat {
    0%   { transform: translate(var(--x), var(--y)) translateY(0) rotate(0deg); opacity: .5; }
    100% { transform: translate(var(--x), var(--y)) translateY(-8px) rotate(3deg); opacity: .8; }
}

/* ── 「MBTI × 転職」バッジ ── */
.ff-hero__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--c-pink);
    background: linear-gradient(135deg, rgba(59,130,246,.12), rgba(99,102,241,.1));
    border: 1.5px solid rgba(59,130,246,.3);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 12px;
}

.ff-hero__badge-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ── キャッチコピー ── */
.ff-hero__catch {
    position: relative;
    z-index: 1;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--c-navy);
    margin: 0 0 8px;
    letter-spacing: .01em;
}

.ff-hero__em {
    background: linear-gradient(135deg, var(--c-pink), #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── サブコピー ── */
.ff-hero__sub {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--c-navy-lt);
    margin-bottom: 16px;
}

/* ── 4ステップフロー ── */
.ff-hero__steps {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    margin-bottom: 14px;
}

.ff-hero__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(59,130,246,.15);
    border-radius: 12px;
    padding: 8px 4px 7px;
    flex: 1;
    min-width: 0;
    box-shadow: 0 2px 10px rgba(59,130,246,.08);
}

.ff-hero__step-num {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--c-pink), var(--c-coral));
    border-radius: 50%;
    text-align: center;
    flex-shrink: 0;
}

.ff-hero__step-txt {
    font-size: 9px;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.25;
    text-align: center;
    letter-spacing: -.01em;
}

.ff-hero__step-arrow {
    flex-shrink: 0;
    line-height: 1;
    color: var(--c-pink-lt);
    display: flex;
    align-items: center;
}

.ff-hero__step-arrow svg {
    width: 12px;
    height: 12px;
}

/* ── 無料バッジ＋テキスト ── */
.ff-hero__free {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-navy-lt);
    margin-bottom: 12px;
}

.ff-hero__free-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--c-pink), var(--c-coral));
    border-radius: 6px;
    padding: 2px 8px;
    letter-spacing: .06em;
}

/* ── タブレット以上 ── */
@media (min-width: 600px) {
    .ff-hero__catch { font-size: 26px; }
    .ff-hero__sub { font-size: 14px; }
    .ff-hero__steps { gap: 6px; max-width: 420px; }
    .ff-hero__step { padding: 10px 6px 9px; }
    .ff-hero__step-txt { font-size: 11px; }
    .ff-mbti-badge { font-size: 13px; padding: 5px 14px; }
}

/* 開幕テキスト */
.ff-slide__intro {
    font-size: 15px;
    line-height: 1.9;
    color: var(--c-navy-lt);
    margin-bottom: 28px;
}

/* 質問文 */
.ff-slide__q {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.6;
    color: var(--c-navy);
    margin-bottom: 22px;
    letter-spacing: .01em;
}

/* ============================================================
   入力欄
   ============================================================ */
.ff-input-wrap {
    margin-bottom: 18px;
    position: relative;
}

.ff-input {
    width: 100%;
    padding: 16px 18px;
    background: var(--c-white);
    border: 2px solid rgba(59,130,246,.22);
    border-radius: 18px;
    font-size: 16px;
    color: var(--c-navy);
    font-family: inherit;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    box-shadow: 0 2px 12px var(--c-shadow);
}

.ff-input::placeholder { color: rgba(45,32,96,.3); }

.ff-input:focus {
    border-color: var(--c-pink);
    box-shadow: 0 0 0 4px rgba(59,130,246,.14);
}

.ff-textarea {
    height: 120px;
    resize: none;
}

/* エラー */
.ff-err {
    display: none;
    font-size: 12px;
    color: #e03270;
    margin-top: 6px;
    padding-left: 4px;
}

/* ============================================================
   選択肢ボタン
   ============================================================ */
.ff-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.ff-radio { display: none; }

.ff-choice {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 14px 10px;
    background: var(--c-white);
    border: 2px solid rgba(59,130,246,.2);
    border-radius: 18px;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-navy);
    text-align: center;
    line-height: 1.4;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 3px 12px var(--c-shadow);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.ff-choice:active,
.ff-choice.is-tapped {
    transform: scale(.96);
    background: rgba(59,130,246,.08);
    border-color: var(--c-pink);
}

.ff-radio:checked + .ff-choice {
    background: linear-gradient(135deg, var(--c-pink), var(--c-coral));
    border-color: var(--c-pink);
    color: #fff;
    box-shadow: 0 6px 20px rgba(59,130,246,.42);
    transform: scale(1.04);
}

/* ============================================================
   ボタン
   ============================================================ */
.ff-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 17px 20px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .06em;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    transition: transform .15s, box-shadow .15s;
}

.ff-btn svg {
    width: 20px; height: 20px;
    fill: none; stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}

.ff-btn--primary {
    background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-coral) 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(59,130,246,.4);
}

.ff-btn--primary:active {
    transform: scale(.97);
    box-shadow: 0 3px 12px rgba(59,130,246,.3);
}

/* 送信ボタン */
.ff-btn--submit {
    background: linear-gradient(135deg, var(--c-pink) 0%, var(--c-coral) 100%);
    color: #fff;
    box-shadow: 0 6px 28px rgba(59,130,246,.5);
    animation: ffPulse 2.2s ease-in-out infinite;
    margin-top: 8px;
}

@keyframes ffPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(59,130,246,.45); }
    50%       { box-shadow: 0 8px 36px rgba(59,130,246,.7), 0 0 0 8px rgba(59,130,246,.08); }
}

.ff-btn--submit:active {
    animation: none;
    transform: scale(.97);
    box-shadow: 0 3px 14px rgba(59,130,246,.35);
}

/* ============================================================
   都道府県カード選択
   ============================================================ */
.ff-pref-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.ff-pref-card {
    min-height: 48px;
    padding: 10px 6px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 14px;
}

.ff-pref-other-li {
    grid-column: 1 / -1;
}

.ff-pref-card--other {
    background: rgba(59,130,246,.05);
    border-color: rgba(59,130,246,.2);
    color: var(--c-navy-lt);
    font-size: 13px;
}

.ff-pref-card.is-selected {
    background: linear-gradient(135deg, var(--c-pink), var(--c-coral));
    border-color: var(--c-pink);
    color: #fff;
    box-shadow: 0 6px 18px rgba(59,130,246,.4);
    transform: scale(1.04);
}

/* その他：セレクトボックス */
.ff-pref-select-wrap {
    margin-top: 8px;
    margin-bottom: 4px;
    animation: ffSlideDown .25s ease both;
}

@keyframes ffSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ff-pref-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
    cursor: pointer;
}

/* ============================================================
   選択肢：1列レイアウト（転職時期など）
   ============================================================ */
.ff-choices--single {
    grid-template-columns: 1fr;
    gap: 10px;
}

.ff-choices--single .ff-choice {
    min-height: 54px;
    justify-content: flex-start;
    padding-left: 22px;
    font-size: 15px;
}

/* ============================================================
   戻るボタン
   ============================================================ */
.ff-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-navy-lt);
    -webkit-tap-highlight-color: transparent;
    transition: color .2s;
    letter-spacing: .02em;
}

.ff-back svg {
    width: 15px; height: 15px;
    fill: none; stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}

.ff-back:active { color: var(--c-pink); }

/* スキップ */
.ff-skip {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
    color: rgba(45,32,96,.35);
    text-decoration: underline;
    text-align: center;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    transition: color .2s;
}

.ff-skip:active { color: var(--c-pink); }

/* ============================================================
   最終ステップ
   ============================================================ */
.ff-final__icon {
    font-size: 56px;
    text-align: center;
    margin-bottom: 16px;
    animation: ffBounceUD 1s ease-in-out infinite alternate;
}

@keyframes ffBounceUD {
    from { transform: translateY(0); }
    to   { transform: translateY(-8px); }
}

.ff-final__msg {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--c-navy);
}

/* ============================================================
   プライバシーテキスト
   ============================================================ */
.ff-privacy {
    font-size: 11px;
    color: rgba(45,32,96,.4);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.7;
}

.ff-privacy a {
    color: var(--c-pink);
    text-decoration: underline;
}

/* ============================================================
   ローディング
   ============================================================ */
.ff-loading {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(253,244,248,.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: var(--c-navy-lt);
}

.ff-loading.is-visible { display: flex; }

.ff-loading__ring {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(59,130,246,.18);
    border-top-color: var(--c-pink);
    border-radius: 50%;
    animation: ffSpin .8s linear infinite;
}

@keyframes ffSpin { to { transform: rotate(360deg); } }

/* ============================================================
   完了画面
   ============================================================ */
.ff-done {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #f0f4ff 0%, #eef2ff 60%, #e8f4f8 100%);
    z-index: 101;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 40px 32px;
}

.ff-done.is-visible { display: flex; }

.ff-done__burst {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ff-done__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--c-pink), var(--c-coral));
    border-radius: 50%;
    font-size: 32px;
    line-height: 72px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(59,130,246,.45);
    animation: ffPopIn .5s cubic-bezier(.175,.885,.32,1.275) both;
}

@keyframes ffPopIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.ff-done__msg {
    font-size: 16px;
    color: var(--c-navy-lt);
    line-height: 1.8;
    animation: ffFadeUp .5s .3s ease both;
}

@keyframes ffFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   フッター
   ============================================================ */
.ff-ft {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 16px max(env(safe-area-inset-bottom), 10px);
    background: rgba(255,255,255,.7);
    border-top: 1px solid rgba(59,130,246,.1);
    position: relative;
    z-index: 50;
}

.ff-ft a {
    font-size: 10px;
    color: rgba(45,32,96,.35);
    text-decoration: none;
    letter-spacing: .04em;
    -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   スクリーン大きめ（タブレット以上）
   ============================================================ */
@media (min-width: 600px) {
    .ff-slide { padding: 40px 60px 60px; }
    .ff-slide__q { font-size: 22px; }
    .ff-choices { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
