/* =====================================================================
   FEATURE PAGES — PREMIUM DESIGN SYSTEM v2
   Linear / Vercel / Stripe-inspired: rich gradients, animated ambient
   backgrounds, glass morphism, layered shadows, scroll animations.
   ===================================================================== */

:root {
    --fp-bg-0: #0a0a0a;
    --fp-bg-1: #0f0f10;
    --fp-surface: rgba(255,255,255,0.02);
    --fp-surface-hover: rgba(255,255,255,0.05);
    --fp-border: rgba(255,255,255,0.08);
    --fp-border-strong: rgba(255,255,255,0.14);
    --fp-text: #fafafa;
    --fp-text-2: #b0b0b8;
    --fp-text-3: #6f6f78;
    --fp-brand: #22c55e;
    --fp-brand-2: #10b981;
    --fp-brand-glow: rgba(34,197,94,0.35);
    --fp-accent: #a8d5a2;
    --fp-warn: #eab308;
    --fp-danger: #ef4444;
    --fp-purple: #a855f7;
    --fp-blue: #3b82f6;
}

body:has(.fp-hero-v2) {
    background: var(--fp-bg-0);
    overflow-x: hidden;
}

/* Animated gradient orbs floating in the background */
.fp-ambient {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
    opacity: 0.55;
}
.fp-ambient::before, .fp-ambient::after {
    content: ""; position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: fp-drift 20s ease-in-out infinite alternate;
}
.fp-ambient::before {
    top: -300px; left: -200px;
    background: radial-gradient(circle, var(--fp-brand-glow), transparent 70%);
}
.fp-ambient::after {
    top: 200px; right: -300px;
    background: radial-gradient(circle, rgba(59,130,246,0.3), transparent 70%);
    animation-delay: -6s;
}
@keyframes fp-drift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(80px, 60px) scale(1.1); }
    100% { transform: translate(-40px, 100px) scale(0.95); }
}

.fp-page { position: relative; z-index: 1; }
.fp-page::before {
    content: ""; position: fixed; inset: 0; z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    mix-blend-mode: overlay;
}

/* Hero */
.fp-hero-v2 {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 24px 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 900px) {
    .fp-hero-v2 { grid-template-columns: 1.05fr 1fr; gap: 80px; padding-top: 140px; }
}

.fp-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--fp-brand);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fp-fade-up 0.6s 0.05s both;
}
.fp-tag::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--fp-brand);
    box-shadow: 0 0 10px var(--fp-brand);
    animation: fp-pulse-dot 2s ease-in-out infinite;
}
@keyframes fp-pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.5; transform: scale(1.3); }
}

.fp-h1 {
    font-size: clamp(2.4rem, 5.6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--fp-text);
    margin-bottom: 24px;
    animation: fp-fade-up 0.7s 0.15s both;
}
.fp-h1 .grad {
    background: linear-gradient(135deg, #fff 0%, #a8d5a2 60%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fp-lead {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--fp-text-2);
    margin-bottom: 36px;
    max-width: 560px;
    animation: fp-fade-up 0.7s 0.25s both;
}

.fp-cta-row {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    animation: fp-fade-up 0.7s 0.35s both;
}
.fp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    border: 1px solid transparent;
}
.fp-btn--primary {
    background: linear-gradient(135deg, var(--fp-brand), var(--fp-brand-2));
    color: white;
    box-shadow: 0 8px 24px -8px var(--fp-brand-glow), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.fp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--fp-brand-glow); }
.fp-btn--ghost {
    background: rgba(255,255,255,0.04);
    color: var(--fp-text);
    border-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.fp-btn--ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.fp-cta-note {
    color: var(--fp-text-3); font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 6px;
}

/* Hero visual container with animated glow */
.fp-hero__visual { position: relative; animation: fp-fade-up 0.9s 0.4s both; }
.fp-hero__visual::before {
    content: ""; position: absolute; inset: -40px;
    background: radial-gradient(circle at 50% 50%, var(--fp-brand-glow), transparent 65%);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
    animation: fp-breathe 6s ease-in-out infinite;
}
@keyframes fp-breathe {
    0%,100% { opacity: 0.35; transform: scale(0.95); }
    50%     { opacity: 0.55; transform: scale(1.05); }
}

/* Phone mockup */
.mk-phone {
    width: 320px;
    max-width: 100%;
    aspect-ratio: 9/19;
    background: linear-gradient(145deg, #1c1c1e, #0a0a0a);
    border: 3px solid #262629;
    border-radius: 46px;
    padding: 12px 8px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 40px 100px -20px rgba(0,0,0,0.7),
        0 20px 40px -20px var(--fp-brand-glow);
    position: relative;
    margin: 0 auto;
    animation: fp-float 6s ease-in-out infinite;
}
@keyframes fp-float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-8px); }
}
.mk-phone::after {
    content: "";
    position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 20px;
    background: #0a0a0a;
    border-radius: 999px;
    z-index: 3;
}
.mk-phone__screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #f5f0e8 0%, #ede7dc 100%);
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    color: #111;
    display: flex; flex-direction: column;
}
.mk-phone__hero {
    background: linear-gradient(160deg, #0f1c14 0%, #1f3a2c 100%);
    color: white;
    padding: 44px 16px 14px;
    position: relative;
    overflow: hidden;
}
.mk-phone__hero::after {
    content: ""; position: absolute;
    top: -50%; right: -30%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(168,213,162,0.2), transparent 70%);
    border-radius: 50%;
}
.mk-phone__eyebrow { font-size: 8.5px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.14em; }
.mk-phone__title { font-size: 16px; font-weight: 800; margin-top: 4px; line-height: 1.15; }
.mk-phone__meta { font-size: 9.5px; opacity: 0.75; margin-top: 4px; }
.mk-phone__body { padding: 12px; flex: 1; overflow: hidden; }

.live-dot {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 8.5px; font-weight: 700; color: #ef4444;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.live-dot::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: fp-pulse-dot 1.5s infinite;
}

.mk-tabs { display: flex; gap: 6px; margin-top: 12px; }
.mk-tab {
    background: rgba(255,255,255,0.12); color: white;
    border-radius: 8px; padding: 6px 10px;
    font-size: 9px; font-weight: 600;
}
.mk-tab--on { background: white; color: #0f1c14; }

.mk-session {
    background: white; border-radius: 12px;
    padding: 10px 12px; margin-bottom: 8px;
    border-left: 3px solid var(--fp-brand);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.mk-session:hover { transform: translateX(2px); }
.mk-session__time { font-size: 11px; color: var(--fp-brand-2); font-weight: 800; }
.mk-session__name { font-size: 11px; font-weight: 700; color: #111; margin-top: 2px; line-height: 1.3; }
.mk-session__meta { font-size: 9px; color: #666; margin-top: 3px; }

.mk-poll {
    background: white; border-radius: 12px; padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 8px;
}
.mk-poll__q { font-size: 11px; font-weight: 800; margin-bottom: 10px; color: #111; }
.mk-poll__row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mk-poll__label { min-width: 54px; font-size: 9px; color: #444; font-weight: 600; }
.mk-poll__bar { flex: 1; height: 8px; background: #eef2ef; border-radius: 4px; overflow: hidden; }
.mk-poll__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fp-brand-2), var(--fp-brand));
    border-radius: 4px;
    animation: fp-bar-grow 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform-origin: left;
}
@keyframes fp-bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.mk-poll__pct { font-size: 9.5px; color: #666; min-width: 32px; text-align: right; font-weight: 700; }

.mk-cloud {
    background: white; border-radius: 12px;
    padding: 14px 10px;
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    gap: 4px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mk-cloud span {
    display: inline-block; font-weight: 800; color: var(--fp-brand-2);
    animation: fp-word-in 0.6s both;
}
.mk-cloud .w1 { font-size: 10px; opacity: 0.4; animation-delay: 0.4s; }
.mk-cloud .w2 { font-size: 12px; opacity: 0.6; animation-delay: 0.3s; }
.mk-cloud .w3 { font-size: 15px; opacity: 0.8; animation-delay: 0.2s; }
.mk-cloud .w4 { font-size: 20px; animation-delay: 0.1s; }
.mk-cloud .w5 { font-size: 28px; color: #0f1c14; letter-spacing: -0.02em; }
@keyframes fp-word-in {
    from { opacity: 0; transform: translateY(6px) scale(0.9); }
    to   { opacity: var(--o, 1); transform: none; }
}

.mk-meet {
    background: white; border-radius: 12px;
    padding: 10px; margin-bottom: 8px;
    display: flex; align-items: flex-start; gap: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.mk-meet:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.mk-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 11px; font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px -4px currentColor;
}
.mk-avatar--teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.mk-avatar--violet { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.mk-avatar--pink { background: linear-gradient(135deg, #f472b6, #db2777); }
.mk-avatar--amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.mk-meet__name { font-size: 11px; font-weight: 800; color: #111; }
.mk-meet__meta { font-size: 9.5px; color: #666; margin-top: 2px; }
.mk-tag-row { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 4px; }
.mk-int-tag {
    background: #fef3c7; color: #92400e;
    font-size: 8.5px; font-weight: 800;
    padding: 2px 5px; border-radius: 4px;
}
.mk-quote { font-size: 8.5px; color: #666; font-style: italic; margin-top: 4px; line-height: 1.4; }

/* Badge mockup */
.mk-badge {
    width: 290px; max-width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow:
        0 40px 80px -20px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    color: #111;
    margin: 0 auto;
    position: relative;
    animation: fp-float 7s ease-in-out infinite;
    transform: rotate(-2deg);
}
.mk-badge::before {
    content: ""; position: absolute;
    top: 12px; left: 50%; transform: translateX(-50%);
    width: 34px; height: 6px;
    background: #d4d4d8;
    border-radius: 999px;
    z-index: 2;
}
.mk-badge__stripe {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 18px 20px 12px;
    font-size: 13px; font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex; justify-content: space-between; align-items: flex-end;
}
.mk-badge__body { padding: 22px 22px 20px; }
.mk-badge__event { font-size: 10px; color: #64748b; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.mk-badge__name { font-size: 26px; font-weight: 900; margin-top: 10px; line-height: 1.05; }
.mk-badge__company { font-size: 14px; color: var(--fp-brand-2); font-weight: 800; margin-top: 6px; }
.mk-badge__title { font-size: 12px; color: #64748b; margin-top: 2px; }
.mk-badge__footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 24px; }
.mk-badge__seat {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 10px; padding: 8px 14px; text-align: center;
}
.mk-badge__seat-l { font-size: 9px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; }
.mk-badge__seat-n { font-family: 'JetBrains Mono', monospace; font-size: 18px; font-weight: 900; }
.mk-badge__qr {
    width: 62px; height: 62px;
    background:
        conic-gradient(from 0deg at 30% 30%, #111 0 25%, transparent 0 50%, #111 0 75%, transparent 0),
        conic-gradient(from 90deg at 70% 70%, #111 0 25%, transparent 0 50%, #111 0 75%, transparent 0),
        repeating-linear-gradient(0deg,  #111 0 2px, white 2px 4px),
        repeating-linear-gradient(90deg, #111 0 2px, white 2px 4px);
    background-blend-mode: multiply;
    border-radius: 6px;
    border: 4px solid #111;
}

/* Certificate mockup */
.mk-cert {
    max-width: 520px; aspect-ratio: 4/3;
    margin: 0 auto;
    background: #fdfcf7;
    padding: 40px 34px 30px;
    color: #1f2937;
    text-align: center;
    position: relative;
    font-family: Georgia, serif;
    box-shadow:
        0 40px 80px -20px rgba(0,0,0,0.6),
        0 0 0 12px #0f1c14,
        0 0 0 13px #a8d5a2,
        0 0 0 24px #0f1c14;
    animation: fp-float 8s ease-in-out infinite;
}
.mk-cert::before, .mk-cert::after {
    content: ""; position: absolute;
    width: 44px; height: 44px;
    border: 2px solid var(--fp-brand-2);
}
.mk-cert::before { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.mk-cert::after { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }
.mk-cert__kicker { font-size: 8.5px; letter-spacing: 0.4em; color: #6b7280; margin-bottom: 4px; text-transform: uppercase; }
.mk-cert__title { font-size: 28px; letter-spacing: 4px; color: #0f1c14; font-weight: 900; margin: 4px 0 6px; }
.mk-cert__sub { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #6b7280; margin-bottom: 16px; }
.mk-cert__intro { font-size: 10px; color: #4b5563; font-style: italic; }
.mk-cert__name { font-size: 32px; font-style: italic; font-weight: 900; margin: 6px 0; color: #0f1c14; letter-spacing: -0.01em; }
.mk-cert__divider {
    display: block; width: 140px; height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    margin: 6px auto 12px;
}
.mk-cert__body { font-size: 10px; color: #374151; line-height: 1.6; padding: 0 24px; max-width: 380px; margin: 0 auto; }
.mk-cert__event { font-size: 13px; font-weight: 800; color: #0f1c14; margin-top: 12px; }
.mk-cert__meta { font-size: 9px; color: #6b7280; margin-top: 3px; letter-spacing: 0.05em; }

/* Window / browser mockup */
.mk-window {
    max-width: 560px;
    background: linear-gradient(180deg, #18181b, #0a0a0a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 40px 100px -20px rgba(0,0,0,0.7),
        0 20px 40px -20px var(--fp-brand-glow),
        0 0 0 1px rgba(255,255,255,0.04) inset;
    margin: 0 auto;
}
.mk-window__chrome {
    background: rgba(24,24,27,0.95);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mk-dot { width: 12px; height: 12px; border-radius: 50%; background: #3f3f46; }
.mk-dot--red { background: #f87171; }
.mk-dot--y { background: #fbbf24; }
.mk-dot--g { background: #4ade80; }
.mk-window__url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    color: #a1a1aa;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    text-align: center;
    margin-left: 8px;
}
.mk-window__body {
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d5 100%);
    color: #111;
    padding: 24px 22px;
    min-height: 260px;
}
.mk-window__body--dark {
    background: linear-gradient(135deg, #0f1c14 0%, #1f3a2c 60%, #2a4d38 100%);
    color: white;
}

.mk-present { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.mk-present h3 { font-size: 22px; font-weight: 900; margin: 0 0 16px; line-height: 1.15; }
.mk-present__q { font-size: 10px; letter-spacing: 0.14em; opacity: 0.7; text-transform: uppercase; margin-bottom: 4px; }
.mk-bar-row { margin-bottom: 12px; }
.mk-bar-row__head { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.mk-bar-row__bar { height: 12px; background: rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.mk-bar-row__fill {
    height: 100%; background: linear-gradient(90deg, #a8d5a2, #22c55e);
    border-radius: 6px;
    animation: fp-bar-grow 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
    transform-origin: left;
}
.mk-qside { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 12px; }
.mk-qside__h { font-size: 9px; text-transform: uppercase; opacity: 0.7; margin-bottom: 8px; letter-spacing: 0.1em; font-weight: 700; }
.mk-qside__row {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.4;
}
.mk-qside__row--pin { border: 1px solid var(--fp-warn); }
.mk-qside__row .v { font-weight: 800; color: var(--fp-accent); }

.mk-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.mk-stat {
    background: white; border-radius: 12px; padding: 14px 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.mk-stat--nps-g { background: linear-gradient(160deg, #d1fae5, #a7f3d0); }
.mk-stat--nps-a { background: linear-gradient(160deg, #fef3c7, #fde68a); }
.mk-stat__n { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; }
.mk-stat__n--g { color: #059669; }
.mk-stat__n--a { color: #d97706; }
.mk-stat__n small { font-size: 14px; font-weight: 800; opacity: 0.7; }
.mk-stat__l { font-size: 9px; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; font-weight: 700; }

.mk-sentiment {
    height: 14px; border-radius: 7px; overflow: hidden;
    display: flex;
    background: #eef2ef;
    margin: 10px 0 6px;
}
.mk-sentiment__pos { background: linear-gradient(90deg, #10b981, #059669); animation: fp-bar-grow 1s 0.2s both; transform-origin: left; }
.mk-sentiment__neu { background: #94a3b8; animation: fp-bar-grow 1s 0.4s both; transform-origin: left; }
.mk-sentiment__neg { background: linear-gradient(90deg, #f87171, #dc2626); animation: fp-bar-grow 1s 0.6s both; transform-origin: left; }
.mk-sentiment__legend { display: flex; justify-content: space-between; font-size: 9.5px; color: #6b7280; font-weight: 700; }

.mk-providers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.mk-provider {
    background: white; border-radius: 12px; padding: 14px 10px;
    text-align: center; color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.mk-provider:hover { transform: translateY(-2px); }
.mk-provider__ic { font-size: 26px; }
.mk-provider__n { font-size: 11px; font-weight: 800; margin-top: 6px; }
.mk-provider__s {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 9px; font-weight: 800; color: #059669;
    margin-top: 3px;
}
.mk-provider__s::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: #10b981; box-shadow: 0 0 6px #10b981;
    animation: fp-pulse-dot 1.5s infinite;
}
.mk-sync-notice {
    background: linear-gradient(90deg, #d1fae5, #a7f3d0);
    color: #065f46;
    padding: 10px; border-radius: 10px;
    font-size: 11px; text-align: center; font-weight: 700;
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Floating quote cards for overlay compositions */
.mk-quote-card {
    background: white; color: #111;
    border-radius: 12px; padding: 14px 16px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.35);
    border-left: 3px solid var(--fp-brand);
    font-style: italic;
    max-width: 300px;
    animation: fp-fade-up 0.6s both;
}
.mk-quote-card__t { font-size: 12px; line-height: 1.5; color: #374151; }
.mk-quote-card__a { display: block; font-style: normal; font-size: 10px; font-weight: 800; color: #6b7280; margin-top: 8px; }

/* Hub tile grid inside phone */
.mk-hub { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mk-hub__tile {
    background: white; color: #111;
    border-radius: 14px; padding: 12px 8px; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.mk-hub__tile:hover { transform: translateY(-3px); }
.mk-hub__ic { font-size: 22px; }
.mk-hub__l { font-size: 10px; font-weight: 800; margin-top: 4px; }
.mk-hub__s { font-size: 8.5px; color: #6b7280; margin-top: 1px; }
.mk-hub__upnext {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 12px; margin-bottom: 8px; font-size: 10px;
}
.mk-hub__upnext-l { font-size: 8px; font-weight: 800; color: var(--fp-brand-2); text-transform: uppercase; letter-spacing: 0.1em; }
.mk-hub__upnext-t { font-weight: 800; color: #111; margin-top: 2px; font-size: 11px; }
.mk-hub__upnext-m { color: #666; font-size: 9.5px; margin-top: 1px; }

/* Sections */
.fp-section { max-width: 1160px; margin: 0 auto; padding: 100px 24px; position: relative; }
.fp-section--narrow { max-width: 860px; }
.fp-section-tag {
    display: inline-block;
    color: var(--fp-brand);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}
.fp-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--fp-text);
    max-width: 700px;
}
.center { text-align: center; }
.fp-section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.fp-section-sub {
    color: var(--fp-text-2);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin-top: 16px;
}
.fp-section-sub.center { margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 48px; }

.fp-divider { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.fp-divider hr {
    border: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--fp-border-strong), transparent);
    margin: 0;
}

/* Feature bullets */
.fp-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.fp-bullet {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--fp-border);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.2s, border-color 0.2s, background 0.2s;
    overflow: hidden;
}
.fp-bullet::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(34,197,94,0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.fp-bullet:hover {
    transform: translateY(-3px);
    border-color: var(--fp-border-strong);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.fp-bullet:hover::before { opacity: 1; }
.fp-bullet__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(34,197,94,0.06));
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--fp-brand);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 20px;
}
.fp-bullet__title { color: var(--fp-text); font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.005em; }
.fp-bullet__desc { color: var(--fp-text-2); font-size: 0.94rem; line-height: 1.65; }

/* Steps */
.fp-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.fp-step {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--fp-border);
    border-radius: 18px;
    padding: 32px 24px 24px;
}
.fp-step__num {
    position: absolute; top: -14px; left: 24px;
    background: linear-gradient(135deg, var(--fp-brand), var(--fp-brand-2));
    color: white;
    width: 32px; height: 32px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    box-shadow: 0 4px 14px -4px var(--fp-brand-glow);
}
.fp-step__title { font-size: 1.05rem; font-weight: 700; color: var(--fp-text); margin-bottom: 8px; }
.fp-step__desc { color: var(--fp-text-2); font-size: 0.92rem; line-height: 1.65; }

/* Stats row */
.fp-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 40px 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--fp-border);
    border-radius: 20px;
}
.fp-stat { text-align: center; }
.fp-stat__num {
    font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff, var(--fp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fp-stat__l { font-size: 0.85rem; color: var(--fp-text-2); margin-top: 6px; }

/* Quote strip */
.fp-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 32px;
}
.fp-quote {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--fp-border);
    border-left: 3px solid var(--fp-brand);
    border-radius: 14px;
    padding: 20px 22px;
}
.fp-quote--neg { border-left-color: var(--fp-danger); }
.fp-quote__t { color: var(--fp-text); font-style: italic; line-height: 1.6; font-size: 0.98rem; }
.fp-quote__a { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--fp-text-3); font-weight: 700; }

/* FAQ */
.fp-faq { max-width: 820px; margin: 0 auto; padding: 60px 24px; }
.fp-faq__item {
    border-bottom: 1px solid var(--fp-border);
    transition: border-color 0.2s;
}
.fp-faq__item[open] { border-color: var(--fp-border-strong); }
.fp-faq__item:first-child { border-top: 1px solid var(--fp-border); }
.fp-faq__q {
    list-style: none;
    padding: 22px 0;
    font-size: 1.02rem; font-weight: 600;
    color: var(--fp-text);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.fp-faq__q::-webkit-details-marker { display: none; }
.fp-faq__q::after {
    content: "";
    width: 24px; height: 24px;
    border-radius: 999px;
    border: 1px solid var(--fp-border-strong);
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M6 1v10M1 6h10' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") center/12px 12px no-repeat;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.fp-faq__item[open] .fp-faq__q::after {
    transform: rotate(45deg);
    background-color: rgba(34,197,94,0.1);
    border-color: var(--fp-brand);
}
.fp-faq__a {
    color: var(--fp-text-2);
    line-height: 1.75;
    padding-bottom: 22px;
    font-size: 0.96rem;
}

/* Bottom CTA block */
.fp-cta-block {
    max-width: 1000px;
    margin: 60px auto 120px;
    padding: 64px 40px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(34,197,94,0.16), rgba(34,197,94,0.02) 60%);
    border: 1px solid var(--fp-border-strong);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.fp-cta-block::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(34,197,94,0.1), transparent 60%);
    pointer-events: none;
}
.fp-cta-block__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--fp-text);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.fp-cta-block__sub {
    color: var(--fp-text-2);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

/* Scroll animations */
[data-anim] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
[data-anim].in { opacity: 1; transform: translateY(0); }
[data-anim-delay="1"] { transition-delay: 0.08s; }
[data-anim-delay="2"] { transition-delay: 0.16s; }
[data-anim-delay="3"] { transition-delay: 0.24s; }
[data-anim-delay="4"] { transition-delay: 0.32s; }
[data-anim-delay="5"] { transition-delay: 0.4s; }
[data-anim-delay="6"] { transition-delay: 0.48s; }

@keyframes fp-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-anim] { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
    .mk-window { transform: scale(0.9); }
    .fp-cta-block { padding: 48px 24px; }
}
