:root {
    --fk-red: #ff4c5d;
    --fk-red-strong: #e8192c;
    --fk-coral: #ff766f;
    --fk-pink: #fff1f2;
    --fk-pink-soft: #fff8f7;
    --fk-ink: #231719;
    --fk-muted: #807174;
    --fk-line: #f0e3e3;
    --fk-white: #fff;
    --fk-shadow: 0 22px 60px rgba(126, 50, 55, .1);
    --fk-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.clone-home,
body.fk-page {
    margin: 0;
    overflow-x: hidden;
    color: var(--fk-ink);
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
.clone-home a, .fk-page a { color: inherit; text-decoration: none; }
.clone-home img, .fk-page img { display: block; max-width: 100%; }
.clone-home button, .clone-home input, .fk-page button, .fk-page input { font: inherit; }
.clone-home :focus-visible, .fk-page :focus-visible { outline: 3px solid rgba(255, 76, 93, .28); outline-offset: 3px; }
.fk-shell, .page-shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.mobile-home, .fk-mobile-home { display: none; }

/* header */
.site-header, .fk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 82px;
    border-bottom: 1px solid rgba(108, 53, 56, .06);
    background: rgba(255, 255, 255, .96);
}
.site-header.is-sticky, .site-header.is-scrolled, .fk-header.is-scrolled {
    position: sticky;
    top: 0;
    box-shadow: 0 12px 40px rgba(68, 24, 28, .07);
    backdrop-filter: blur(18px);
}
.nav, .fk-header .fk-shell {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}
.brand, .fk-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 184px;
    min-width: 0;
}
.brand img, .fk-logo img { width: auto; max-width: 170px; max-height: 50px; object-fit: contain; }
.fk-mobile-menu-button, .fk-mobile-menu { display: none; }
.desktop-nav, .fk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
}
.desktop-nav a, .fk-nav a {
    position: relative;
    padding: 28px 0 25px;
    color: #5d5153;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .25s ease;
}
.desktop-nav a::after, .fk-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 16px;
    height: 3px;
    border-radius: 99px;
    background: var(--fk-red);
    opacity: 0;
    transform: translateX(-50%) scaleX(.3);
    transition: .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.active, .fk-nav a:hover, .fk-nav a.active { color: var(--fk-red-strong); }
.desktop-nav a:hover::after, .desktop-nav a.active::after, .fk-nav a:hover::after, .fk-nav a.active::after { opacity: 1; transform: translateX(-50%) scaleX(1); }
.header-actions, .fk-header-actions { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.header-actions a, .fk-header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    height: 40px;
    padding: 0 18px;
    border: 1px solid #f0d5d7;
    border-radius: 99px;
    color: #5f4d50;
    font-size: 13px;
    font-weight: 700;
    transition: transform .25s var(--fk-ease), box-shadow .25s, color .25s, background .25s;
}
.header-actions a:last-child, .fk-header-actions a:last-child { border-color: var(--fk-red); color: #fff; background: linear-gradient(135deg, var(--fk-red), var(--fk-red-strong)); box-shadow: 0 10px 22px rgba(232, 25, 44, .18); }
.header-actions a:hover, .fk-header-actions a:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(120, 37, 44, .12); }

/* hero */
.desktop-home { display: block; }
.hero-slider, .fk-hero, .fk-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 30%, rgba(255, 255, 255, .96) 0 7%, transparent 34%),
        linear-gradient(128deg, #ffe2e4 0%, #fff4f1 52%, #ffd7d6 100%);
}
.hero-slider::before, .fk-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(226, 78, 88, .16) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, #000, transparent 64%);
    opacity: .38;
}
.hero-slide, .fk-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
    align-items: center;
    gap: 48px;
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(28px);
    transition: opacity .65s var(--fk-ease), transform .65s var(--fk-ease), visibility .65s;
}
.hero-slide.is-active, .fk-slide.is-active, .fk-slide.active { position: relative; min-height: 520px; opacity: 1; visibility: visible; transform: translateX(0); }
.fk-slide { display: none !important; opacity: 1; visibility: visible; transform: none; transition: none; }
.fk-slide.is-active { display: block !important; opacity: 1; visibility: visible; }
.hero-copy, .fk-slide-copy { position: relative; z-index: 2; padding: 60px 0 74px; }
.hero-copy .eyebrow, .fk-slide-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--fk-red-strong); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.hero-copy .eyebrow::before, .fk-slide-copy .eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--fk-red); }
.hero-copy h1, .fk-slide-copy h1 { max-width: 650px; margin: 0; color: #2a181b; font-size: clamp(44px, 4vw, 62px); font-weight: 800; line-height: 1.16; letter-spacing: -.045em; }
.hero-copy h1 em, .fk-slide-copy h1 em { color: var(--fk-red-strong); font-style: normal; }
.hero-copy p, .fk-slide-copy p { max-width: 580px; margin: 22px 0 0; color: #7c6669; font-size: 17px; line-height: 1.9; }
.hero-copy .actions, .fk-slide-copy .actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.hero-copy .actions a, .fk-slide-copy .actions a, .fk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 48px;
    padding: 0 24px;
    border: 1px solid var(--fk-red);
    border-radius: 9px;
    color: var(--fk-red-strong);
    background: rgba(255, 255, 255, .55);
    font-size: 14px;
    font-weight: 750;
    transition: transform .25s var(--fk-ease), box-shadow .25s, background .25s, color .25s;
}
.hero-copy .actions a:first-child, .fk-slide-copy .actions a:first-child, .fk-btn-primary { color: #fff; background: linear-gradient(135deg, var(--fk-red), var(--fk-red-strong)); box-shadow: 0 14px 30px rgba(232, 25, 44, .2); }
.hero-copy .actions a:hover, .fk-slide-copy .actions a:hover, .fk-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(168, 49, 57, .18); }
.hero-art, .fk-slide-art { position: relative; z-index: 1; align-self: stretch; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.hero-art img, .fk-slide-art img { width: min(100%, 570px); max-height: 470px; object-fit: contain; filter: drop-shadow(0 28px 35px rgba(105, 26, 30, .13)); animation: fkFloat 5.8s ease-in-out infinite; }
.hero-art::before, .fk-slide-art::before { content: ""; position: absolute; width: 410px; height: 410px; border: 1px solid rgba(255, 80, 94, .16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.2), 0 0 0 84px rgba(255,255,255,.1); }
.hero-dots, .fk-dots { position: absolute; z-index: 10; bottom: 30px; left: 50%; display: flex; align-items: center; gap: 9px; transform: translateX(-50%); }
.hero-dots button, .fk-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(131, 75, 79, .3); cursor: pointer; transition: .25s; }
.hero-dots button.is-active, .fk-dots button.is-active, .fk-dots button.active { width: 28px; border-radius: 99px; background: var(--fk-red); }
@keyframes fkFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-13px,0); } }

/* stats and shared section */
.stats, .fk-stats { position: relative; z-index: 4; background: #fff; border-bottom: 1px solid var(--fk-line); box-shadow: 0 18px 50px rgba(107, 45, 48, .05); }
.stats > .fk-shell, .fk-stats > .fk-shell, .fk-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats .stat, .fk-stat { position: relative; min-height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px 18px; text-align: center; }
.stats .stat + .stat::before, .fk-stat + .fk-stat::before { content: ""; position: absolute; left: 0; top: 30%; width: 1px; height: 40%; background: var(--fk-line); }
.stats strong, .fk-stat strong { color: var(--fk-red-strong); font-size: 30px; line-height: 1.1; letter-spacing: -.03em; }
.stats span, .fk-stat span { margin-top: 7px; color: #8f7f81; font-size: 13px; }
.section, .fk-section { position: relative; padding: 100px 0; overflow: hidden; }
.section-head, .fk-section-heading { margin-bottom: 48px; text-align: center; }
.section-head small, .fk-section-heading small { display: block; margin-bottom: 8px; color: var(--fk-red); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section-head h2, .fk-section-heading h2 { margin: 0; color: #301d20; font-size: clamp(31px, 3vw, 42px); line-height: 1.25; letter-spacing: -.035em; }
.section-head p, .fk-section-heading p { max-width: 680px; margin: 14px auto 0; color: var(--fk-muted); font-size: 15px; }

/* advantages */
.advantage-grid, .fk-advantages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advantage-card, .fk-advantage-card {
    position: relative;
    min-height: 388px;
    overflow: hidden;
    padding: 34px 34px 0;
    border: 1px solid #f4e7e7;
    border-radius: 20px;
    background: linear-gradient(160deg, #fff 20%, #fff8f7 100%);
    box-shadow: 0 16px 44px rgba(103, 42, 46, .07);
    transition: transform .4s var(--fk-ease), box-shadow .4s;
}
.advantage-card:hover, .fk-advantage-card:hover { transform: translateY(-9px); box-shadow: var(--fk-shadow); }
.advantage-card .index, .fk-advantage-card .index { color: var(--fk-red); font-size: 12px; font-weight: 800; }
.advantage-card h3, .fk-advantage-card h3 { margin: 13px 0 10px; font-size: 23px; }
.advantage-card p, .fk-advantage-card p { position: relative; z-index: 2; margin: 0; color: var(--fk-muted); font-size: 14px; }
.advantage-card img, .fk-advantage-card img { position: absolute; right: -10px; bottom: -6px; width: 82%; max-height: 225px; object-fit: contain; object-position: right bottom; transition: transform .45s var(--fk-ease); }
.advantage-card:hover img, .fk-advantage-card:hover img { transform: translate3d(-5px,-5px,0) scale(1.025); }

/* technology */
.section-tech, .fk-tech-section { background: linear-gradient(145deg, #fff6f3 0%, #ffe7e6 100%); }
.section-tech::before, .fk-tech-section::before { content: ""; position: absolute; right: -14%; top: -45%; width: 650px; height: 650px; border: 1px solid rgba(232,25,44,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.25), 0 0 0 180px rgba(255,255,255,.14); }
.tech-list, .fk-tech { display: grid; gap: 18px; }
.tech-item, .fk-tech-row {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1.05fr 1.5fr 84px;
    align-items: center;
    min-height: 112px;
    padding: 18px 28px;
    overflow: hidden;
    border: 1px solid rgba(231, 83, 90, .13);
    border-radius: 17px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 14px 36px rgba(113, 42, 45, .05);
    backdrop-filter: blur(12px);
    transition: transform .35s var(--fk-ease), background .35s;
}
.tech-item::before, .fk-tech-row::before { content: ""; position: absolute; left: 0; top: 20%; width: 4px; height: 60%; border-radius: 0 4px 4px 0; background: var(--fk-red); }
.tech-item:hover, .fk-tech-row:hover { transform: translateX(8px); background: #fff; }
.tech-item .number, .fk-tech-row .number { color: #e4a9ac; font-size: 13px; font-weight: 800; }
.tech-item h3, .fk-tech-row h3 { margin: 0; font-size: 22px; }
.tech-item p, .fk-tech-row p { margin: 0; color: var(--fk-muted); font-size: 14px; }
.tech-item img, .fk-tech-row img { justify-self: end; width: 58px; height: 58px; object-fit: contain; }

/* coverage/category panels */
.coverage-grid, .fk-categories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.coverage-card, .fk-category-card {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    padding: 34px 36px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, #ff5362, #e62235);
    box-shadow: 0 18px 40px rgba(151, 41, 50, .15);
    transition: transform .35s var(--fk-ease), box-shadow .35s;
}
.coverage-card:nth-child(2), .fk-category-card:nth-child(2) { background: linear-gradient(135deg, #ff8a79, #f05d5d); }
.coverage-card:nth-child(3), .fk-category-card:nth-child(3) { background: linear-gradient(135deg, #b96671, #843943); }
.coverage-card:nth-child(4), .fk-category-card:nth-child(4) { background: linear-gradient(135deg, #ff7485, #e44065); }
.coverage-card::after, .fk-category-card::after { content: ""; position: absolute; right: -70px; bottom: -105px; width: 250px; height: 250px; border: 42px solid rgba(255,255,255,.1); border-radius: 50%; }
.coverage-card:hover, .fk-category-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(139, 39, 47, .22); }
.coverage-card h3, .fk-category-card h3 { position: relative; z-index: 1; margin: 0; font-size: 27px; }
.coverage-card p, .fk-category-card p { position: relative; z-index: 1; max-width: 65%; margin: 12px 0 0; color: rgba(255,255,255,.82); font-size: 14px; }
.coverage-card img, .fk-category-card img { position: absolute; z-index: 1; right: 20px; bottom: 7px; width: 42%; max-height: 190px; object-fit: contain; filter: drop-shadow(0 16px 20px rgba(75,15,22,.15)); }

/* partner/service cards */
.section-partners, .fk-partner-section { background: #fff9f8; }
.partner-grid, .fk-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card, .fk-partner-card { position: relative; min-height: 410px; overflow: hidden; padding: 32px; border: 1px solid var(--fk-line); border-radius: 20px; background: #fff; box-shadow: 0 16px 42px rgba(102,40,45,.06); }
.partner-card h3, .fk-partner-card h3 { position: relative; z-index: 2; margin: 0; font-size: 22px; }
.partner-card p, .fk-partner-card p { position: relative; z-index: 2; margin: 10px 0 0; color: var(--fk-muted); font-size: 14px; }
.partner-card img, .fk-partner-card img { position: absolute; right: -4%; bottom: -2%; width: 95%; max-height: 270px; object-fit: contain; object-position: right bottom; transition: transform .5s var(--fk-ease); }
.partner-card:hover img, .fk-partner-card:hover img { transform: translate3d(-6px,-8px,0) scale(1.035); }

/* onboarding */
.steps, .fk-onboarding { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps::before, .fk-onboarding::before { content: ""; position: absolute; z-index: 0; top: 36px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, transparent, #f3b7bb 10% 90%, transparent); }
.step, .fk-step-card { position: relative; z-index: 1; padding: 0 18px; text-align: center; }
.step .number, .fk-step-card .number { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; margin: 0 auto 24px; border: 8px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--fk-red), var(--fk-red-strong)); box-shadow: 0 10px 26px rgba(232,25,44,.2); font-size: 18px; font-weight: 800; }
.step h3, .fk-step-card h3 { margin: 0; font-size: 19px; }
.step p, .fk-step-card p { margin: 9px 0 0; color: var(--fk-muted); font-size: 13px; }

/* CTA */
.merchant-cta, .fk-merchant-cta { position: relative; overflow: hidden; padding: 76px 0; color: #fff; background: linear-gradient(118deg, #d8172b 0%, #ff4e5f 58%, #ff7b6f 100%); }
.merchant-cta::before, .fk-merchant-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 45%, rgba(255,255,255,.23), transparent 28%), linear-gradient(115deg, transparent 0 54%, rgba(255,255,255,.08) 54% 55%, transparent 55%); }
.merchant-cta .fk-shell, .fk-merchant-cta .fk-shell { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.merchant-cta h2, .fk-merchant-cta h2 { margin: 0; font-size: 36px; line-height: 1.25; }
.merchant-cta p, .fk-merchant-cta p { margin: 10px 0 0; color: rgba(255,255,255,.8); }
.merchant-cta a, .fk-merchant-cta a { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; min-width: 150px; height: 50px; border-radius: 9px; color: var(--fk-red-strong); background: #fff; box-shadow: 0 14px 32px rgba(107,16,24,.2); font-size: 14px; font-weight: 800; transition: transform .25s var(--fk-ease); }
.merchant-cta a:hover, .fk-merchant-cta a:hover { transform: translateY(-3px); }

/* footer */
.site-footer, .fk-footer { padding: 66px 0 24px; color: #e9d9db; background: #35191e; }
.site-footer .footer-grid, .fk-footer .footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 64px; }
.site-footer .footer-brand img, .fk-footer .footer-brand img { width: auto; max-width: 175px; max-height: 48px; padding: 5px 8px; border-radius: 6px; background: #fff; }
.site-footer .footer-brand p, .fk-footer .footer-brand p { max-width: 280px; margin: 17px 0 0; color: #bda9ac; font-size: 13px; }
.site-footer h3, .fk-footer h3 { margin: 0 0 16px; color: #fff; font-size: 14px; }
.site-footer .footer-links, .fk-footer .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.site-footer a, .fk-footer a { color: #bda9ac; font-size: 13px; transition: color .2s; }
.site-footer a:hover, .fk-footer a:hover { color: #fff; }
.site-footer .friendship, .fk-footer .friendship { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #a58e92; font-size: 12px; }
.site-footer .footer-bottom, .fk-footer .footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #927a7f; font-size: 11px; }

/* reveal states */
.reveal { opacity: 1; transform: none; }
.js-motion .reveal { opacity: 0; transform: translate3d(0, 30px, 0); transition: opacity .72s var(--fk-ease), transform .72s var(--fk-ease); }
.js-motion .reveal.is-visible, .js-motion .reveal.revealed { opacity: 1; transform: translate3d(0,0,0); }
.js-motion [data-reveal] { opacity: 1; transform: translate3d(0,30px,0); }

/* Exact Laravel template structure */
.fk-skip-link { position: fixed; z-index: 1000; top: 8px; left: 16px; padding: 8px 14px; border-radius: 6px; color: #fff; background: var(--fk-red-strong); opacity: 0; pointer-events: none; transform: translateY(-150%) !important; transition: opacity .2s, transform .2s; }
.fk-skip-link:focus-visible { opacity: 1; pointer-events: auto; transform: translateY(0) !important; }
.fk-header-inner { display: flex; align-items: center; height: 100%; gap: 30px; }
.fk-slider { min-height: 520px; }
.fk-slide { display: block; width: 100%; }
.fk-slide-inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.95fr); align-items: center; gap: 48px; min-height: 520px; }
.fk-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px !important; color: var(--fk-red-strong) !important; font-size: 13px !important; font-weight: 800; letter-spacing: .08em; }
.fk-eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--fk-red); }
.fk-slide-copy h2 { max-width: 650px; margin: 0; color: #2a181b; font-size: clamp(44px,4vw,62px); font-weight: 800; line-height: 1.16; letter-spacing: -.045em; }
.fk-slide-copy h2 em { color: var(--fk-red-strong); font-style: normal; }
.fk-hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.fk-button { display: inline-flex; align-items: center; justify-content: center; min-width: 132px; height: 48px; padding: 0 24px; border: 1px solid var(--fk-red); border-radius: 9px; color: var(--fk-red-strong); background: rgba(255,255,255,.62); font-size: 14px; font-weight: 750; transition: transform .25s var(--fk-ease), box-shadow .25s, background .25s, color .25s; }
.fk-button:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(168,49,57,.18); }
.fk-button-primary { color: #fff; background: linear-gradient(135deg,var(--fk-red),var(--fk-red-strong)); box-shadow: 0 14px 30px rgba(232,25,44,.2); }
.fk-button-small { min-width: 90px; height: 40px; padding: 0 18px; border-radius: 99px; font-size: 13px; }
.fk-slider-controls { position: absolute; z-index: 10; right: 0; bottom: 27px; left: 0; display: flex; align-items: center; justify-content: center; gap: 14px; pointer-events: none; }
.fk-slider-dots { display: flex; align-items: center; gap: 9px; pointer-events: auto; }
.fk-slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(131,75,79,.3); cursor: pointer; transition: .25s; }
.fk-slider-dots button.is-active { width: 28px; border-radius: 99px; background: var(--fk-red); }
.fk-slider-arrow { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; padding: 0; border: 1px solid rgba(202,75,85,.18); border-radius: 50%; color: #8c666a; background: rgba(255,255,255,.75); cursor: pointer; pointer-events: auto; transition: .25s; }
.fk-slider-arrow:hover { color: #fff; border-color: var(--fk-red); background: var(--fk-red); }
.fk-stats { display: block; }
.fk-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.fk-advantages { display: block; }
.fk-advantage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fk-advantage-card { display: flex; flex-direction: column; justify-content: flex-end; }
.fk-advantage-card > div { position: relative; z-index: 2; padding-bottom: 220px; }
.fk-advantage-card > div > span { color: var(--fk-red); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.fk-tech { display: block; padding: 100px 0; background: linear-gradient(145deg,#fff6f3 0%,#ffe7e6 100%); }
.fk-tech-list { display: grid; gap: 18px; }
.fk-tech-row { grid-template-columns: 72px minmax(0,1fr) 150px; }
.fk-tech-row > span { color: #e4a9ac; font-size: 13px; font-weight: 800; }
.fk-tech-row > b { justify-self: end; color: var(--fk-red-strong); font-size: 13px; }
.fk-section-heading > p { display: block; margin: 0 0 8px; color: var(--fk-red); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.fk-section-heading > span { display: block; max-width: 680px; margin: 14px auto 0; color: var(--fk-muted); font-size: 15px; }
.fk-categories { display: block; }
.fk-category-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.fk-category-card { display: grid; grid-template-columns: 52px minmax(0,1fr) 32px; align-items: start; }
.fk-category-card > span { position: relative; z-index: 2; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 800; }
.fk-category-card small { color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .12em; }
.fk-category-card p { max-width: none; }
.fk-category-card > b { position: relative; z-index: 2; justify-self: end; font-size: 23px; }
.fk-partners { display: block; background: #fff9f8; }
.fk-partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fk-partner-card > div { position: relative; z-index: 2; }
.fk-partner-card > div > span { color: var(--fk-red); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.fk-onboarding { display: block; }
.fk-step-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.fk-step-grid::before { content: ""; position: absolute; z-index: 0; top: 52px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg,transparent,#f3b7bb 10% 90%,transparent); }
.fk-step-card { padding: 0 18px; }
.fk-step-card > span { position: absolute; z-index: 3; top: 0; left: calc(50% + 30px); display: flex; align-items: center; justify-content: center; width: 25px; height: 25px; border-radius: 50%; color: #fff; background: var(--fk-red); font-size: 9px; font-weight: 800; }
.fk-step-card img { position: relative; z-index: 2; width: 105px; height: 105px; margin: 0 auto 20px; padding: 18px; border: 8px solid #fff; border-radius: 50%; object-fit: contain; background: #fff0f1; box-shadow: 0 10px 28px rgba(197,53,64,.12); }
.fk-merchant-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.fk-merchant-cta-inner > div > p { margin: 0 0 6px; color: rgba(255,255,255,.62); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.fk-merchant-cta-inner > div > span { display: block; margin-top: 9px; color: rgba(255,255,255,.8); }
.fk-footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 64px; }
.fk-footer-brand p { color: #bda9ac; font-size: 13px; }
.fk-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.fk-footer-column h3 { margin-bottom: 7px; }
.fk-friendship { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #a58e92; font-size: 12px; }
.fk-friendship > span { color: #fff; font-weight: 700; }
.fk-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #927a7f; font-size: 11px; }
.fk-mobile-services, .fk-mobile-info, .fk-mobile-summary, .fk-mobile-nav { display: none; }

/* Desktop clone fidelity: preserve one continuous rose-to-white page flow. */
@media (min-width: 768px) {
    .fk-shell { width: min(1200px, calc(100% - 48px)); }
    .fk-hero,
    .fk-slider {
        min-height: 520px;
        background:
            radial-gradient(circle at 76% 34%, rgba(255,255,255,.96) 0 8%, transparent 32%),
            radial-gradient(circle at 18% 16%, rgba(255,255,255,.72), transparent 38%),
            linear-gradient(180deg,#fff7f7 0%,#ffecec 58%,#fff0f1 100%);
    }
    .fk-hero::before { opacity: .12; }
    .fk-slide-inner { min-height: 520px; }
    .fk-slide-art img { width: min(100%,520px); max-height: 480px; }
    .fk-slider-controls { bottom: 18px; }
    .fk-slider-dots { gap: 7px; }
    .fk-slider-dots button { width: 7px; height: 7px; background: #f5b7bc; }
    .fk-slider-dots button.is-active { width: 24px; background: #ef233c; }

    .fk-stats {
        position: relative;
        z-index: 4;
        border: 0;
        background: linear-gradient(180deg,#fff0f1 0%,#fff5f5 58%,#fffafa 100%);
        box-shadow: none;
    }
    .fk-stats::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -90px;
        left: 0;
        height: 90px;
        pointer-events: none;
        background: linear-gradient(180deg,#fffafa 0%,rgba(255,255,255,.92) 52%,#fff 100%);
    }
    .fk-stats-grid { min-height: 118px; }
    .fk-stat {
        min-height: 118px;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        padding: 20px 24px;
        text-align: left;
    }
    .fk-stat + .fk-stat::before { top: 31%; height: 38%; background: rgba(232,25,44,.1); }
    .fk-stat i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border-radius: 11px;
        color: #f15a69;
        background: #ffe1e4;
        font-size: 19px;
        font-style: normal;
        font-weight: 800;
    }
    .fk-stat div { display: flex; flex-direction: column; }
    .fk-stat strong { color: #151723; font-size: 29px; }
    .fk-stat span { margin-top: 1px; color: #9da0ab; font-size: 14px; }

    .fk-advantages {
        padding: 132px 0 106px;
        background: linear-gradient(180deg,#fff 0%,#fff 68%,#fff7f7 100%);
    }
    .fk-advantages .fk-section-heading { margin-bottom: 42px; }
    .fk-advantages .fk-section-heading > p { display: none; }
    .fk-advantages .fk-section-heading h2 { color: #171a25; font-size: 40px; letter-spacing: -.04em; }
    .fk-advantages .fk-section-heading > span { margin-top: 4px; color: #8d929e; font-size: 16px; }
    .fk-advantage-grid { gap: 26px; }
    .fk-advantage-card {
        display: flex;
        min-height: 420px;
        padding: 0;
        overflow: hidden;
        border: 1px solid rgba(30,41,59,.07);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 14px 34px rgba(70,38,42,.09);
    }
    .fk-advantage-card img {
        position: static;
        order: 0;
        width: 100%;
        height: 244px;
        padding: 24px 42px 14px;
        object-fit: contain;
        object-position: center;
        background: linear-gradient(145deg,#fff8f8 0%,#ffe9e9 100%);
        filter: none;
    }
    .fk-advantage-card > div {
        order: 1;
        min-height: 176px;
        padding: 27px 30px 25px;
        background: #fff;
    }
    .fk-advantage-card > div > span { display: none; }
    .fk-advantage-card h3 { margin: 0 0 10px; color: #171a25; font-size: 22px; }
    .fk-advantage-card p { color: #737986; font-size: 14px; line-height: 1.75; }

    .fk-tech {
        padding: 96px 0 104px;
        background:
            radial-gradient(circle at 84% 22%,rgba(255,255,255,.72),transparent 34%),
            linear-gradient(180deg,#fff7f7 0%,#ffeaea 48%,#fff6f6 100%);
    }
    .fk-tech .fk-section-heading > p { display: none; }
    .fk-tech-list { gap: 16px; }
    .fk-tech-row { min-height: 100px; border-radius: 13px; box-shadow: 0 8px 24px rgba(110,42,48,.05); }

    .fk-categories { padding: 100px 0 112px; background: linear-gradient(180deg,#fff 0%,#fff 82%,#fff8f8 100%); }
    .fk-categories .fk-section-heading > p { display: none; }
    .fk-category-grid { gap: 20px; }
    .fk-category-card {
        min-height: 330px;
        padding: 28px 26px;
        border: 1px solid rgba(232,25,44,.08);
        border-radius: 14px;
        color: #333846;
        background: linear-gradient(155deg,#fff1f2,#fffafa);
        box-shadow: 0 10px 28px rgba(70,42,45,.055);
    }
    .fk-category-card:nth-child(2) { color: #51401f; background: linear-gradient(155deg,#fff7e9,#fffdf8); }
    .fk-category-card:nth-child(3) { color: #29476c; background: linear-gradient(155deg,#eef5ff,#fafcff); }
    .fk-category-card:nth-child(4) { color: #554779; background: linear-gradient(155deg,#f3efff,#fcfbff); }
    .fk-category-card::after { border-color: rgba(255,255,255,.48); }
    .fk-category-card > span,
    .fk-category-card small { color: currentColor; opacity: .58; }
    .fk-category-card h3 { margin-top: 12px; color: currentColor; font-size: 24px; line-height: 1.4; }
    .fk-category-card p { margin-top: 18px; color: currentColor; opacity: .7; line-height: 1.8; }
    .fk-category-card ul { display: grid; gap: 16px; margin: 24px 0 0; padding: 0; list-style: none; }
    .fk-category-card li { position: relative; padding-bottom: 10px; border-bottom: 1px solid currentColor; color: currentColor; font-size: 13px; font-weight: 650; opacity: .66; }
    .fk-category-card li::after { content: "›"; position: absolute; right: 0; top: -2px; font-size: 16px; }
    .fk-category-card li:last-child { border-bottom: 0; }

    .fk-partners { padding: 104px 0; background: #fff; }
    .fk-partners .fk-section-heading > p { display: none; }
    .fk-partner-grid { gap: 26px; }
    .fk-partner-card {
        display: flex;
        flex-direction: column;
        min-height: 420px;
        padding: 0;
        overflow: hidden;
        border-radius: 15px;
    }
    .fk-partner-card img {
        position: static;
        width: 100%;
        height: 270px;
        padding: 24px 32px 0;
        object-fit: contain;
        background: linear-gradient(180deg,#fffafa,#fff1f2);
    }
    .fk-partner-card > div { padding: 22px 28px 27px; }

    .fk-onboarding { padding: 105px 0 112px; background: linear-gradient(180deg,#fffafa,#fff); }
    .fk-onboarding .fk-section-heading > p { display: none; }
}

/* Original desktop direction: Roseway — intentionally larger at 100% browser zoom. */
@media (min-width: 1081px) {
    body.fk-page { font-size: 16px; background: #fffafa; }
    body.fk-page main {
        position: relative;
        background:
            radial-gradient(ellipse 62% 18% at 8% 29%,rgba(255,205,211,.38),transparent 72%),
            radial-gradient(ellipse 58% 17% at 94% 49%,rgba(255,218,205,.38),transparent 72%),
            radial-gradient(ellipse 54% 16% at 12% 73%,rgba(255,212,220,.3),transparent 74%),
            linear-gradient(180deg,#fff4f5 0%,#fff 23%,#fff7f6 47%,#fff 70%,#fff8f8 100%);
    }
    .fk-shell { width: min(1320px, calc(100% - 72px)); }

    .fk-header { height: 84px; }
    .fk-header-inner { gap: 0; }
    .fk-header-inner > .fk-logo { width: 190px; }
    .fk-header-inner > .fk-logo img { max-width: 180px; max-height: 54px; }
    .fk-nav { gap: 6px; margin-left: 34px; }
    .fk-nav a { padding: 10px 14px; border-radius: 10px; color: #65575a; font-size: 15px; font-weight: 600; transition: color .2s, background .2s; }
    .fk-nav a::after { display: none; }
    .fk-nav a:hover { color: #e8192c; background: #fff1f2; }
    .fk-nav a.is-active { color: #e8192c; background: #ffecee; font-weight: 750; }
    .fk-header-actions { position: relative; gap: 9px; margin-left: auto; padding-left: 25px; }
    .fk-header-actions::before { content: ""; position: absolute; top: 50%; left: 7px; width: 1px; height: 24px; background: #eedfe1; transform: translateY(-50%); }
    .fk-header-actions a { min-width: auto; height: 44px; padding: 0 13px; border: 0; border-radius: 10px; color: #65575a; background: transparent; font-size: 15px; }
    .fk-header-actions a:first-child:hover { color: #e8192c; background: #fff1f2; box-shadow: none; }
    .fk-header-actions a:last-child { min-width: 108px; padding: 0 24px; border-radius: 12px; box-shadow: 0 8px 20px rgba(232,25,44,.16); }
    .fk-header-actions a:last-child:hover { box-shadow: 0 11px 24px rgba(232,25,44,.22); }

    .fk-hero,
    .fk-slider {
        min-height: 660px;
        background:
            radial-gradient(circle at 74% 38%,rgba(255,255,255,.98) 0 8%,transparent 33%),
            radial-gradient(circle at 12% 20%,rgba(255,255,255,.66),transparent 42%),
            linear-gradient(132deg,#ffe6e9 0%,#fff7f5 48%,#ffdfe0 100%);
    }
    .fk-slide.is-active { min-height: 660px; }
    .fk-slide-inner { grid-template-columns: minmax(0,1.05fr) minmax(560px,.95fr); gap: 52px; min-height: 660px; }
    .fk-slide-copy { padding: 70px 0 100px; }
    .fk-eyebrow { margin-bottom: 20px !important; font-size: 15px !important; }
    .fk-slide-copy h1,
    .fk-slide-copy h2 { max-width: 760px; font-size: clamp(62px,4.7vw,78px); line-height: 1.09; letter-spacing: -.055em; }
    .fk-hero-description { max-width: 680px !important; margin-top: 28px !important; font-size: 19px !important; line-height: 1.9 !important; }
    .fk-hero-actions { gap: 16px; margin-top: 40px; }
    .fk-hero-actions .fk-button { min-width: 158px; height: 54px; padding: 0 29px; border-radius: 11px; font-size: 16px; }
    .fk-slide-art { min-height: 620px; }
    .fk-slide-art img { width: min(100%,620px); max-height: 580px; }
    .fk-slide-art::before { width: 470px; height: 470px; }
    .fk-slider-controls { bottom: 28px; }

    .fk-stats { background: rgba(255,246,247,.76); backdrop-filter: blur(14px); }
    .fk-stats-grid { min-height: 148px; }
    .fk-stat { min-height: 148px; gap: 19px; padding: 26px 30px; }
    .fk-stat i { flex-basis: 54px; width: 54px; height: 54px; border-radius: 14px; font-size: 22px; }
    .fk-stat strong { font-size: 35px; }
    .fk-stat span { font-size: 15px; }

    .fk-section,
    .fk-advantages,
    .fk-tech,
    .fk-categories,
    .fk-partners,
    .fk-onboarding { padding: 132px 0; background: transparent; }
    .fk-section-heading { margin-bottom: 60px; }
    .fk-section-heading > p { display: block !important; margin: 0 auto 10px; font-size: 13px; letter-spacing: .2em; }
    .fk-section-heading h2,
    .fk-advantages .fk-section-heading h2 { font-size: 48px; line-height: 1.18; }
    .fk-section-heading > span,
    .fk-advantages .fk-section-heading > span { margin-top: 12px; font-size: 17px; }

    .fk-advantage-grid { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 24px; }
    .fk-advantage-card { min-height: 500px; border-radius: 24px; box-shadow: 0 24px 58px rgba(111,45,53,.1); }
    .fk-advantage-card:first-child { grid-column: span 6; display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: minmax(500px,1fr); align-items: stretch; }
    .fk-advantage-card:nth-child(2),
    .fk-advantage-card:nth-child(3) { grid-column: span 3; }
    .fk-advantage-card img { height: 294px; padding: 30px 38px 18px; }
    .fk-advantage-card:first-child img { width: 100%; height: 100%; min-height: 500px; max-height: none; padding: 54px 34px; object-position: center; }
    .fk-advantage-card > div { min-height: 206px; padding: 34px 34px 30px; }
    .fk-advantage-card:first-child > div { display: flex; flex-direction: column; justify-content: center; height: 100%; min-height: 500px; padding: 50px 42px; }
    .fk-advantage-card h3 { font-size: 28px; }
    .fk-advantage-card p { font-size: 16px; }

    .fk-tech { position: relative; }
    .fk-tech::before { display: none; }
    .fk-tech-list { gap: 20px; }
    .fk-tech-row { min-height: 126px; grid-template-columns: 84px minmax(0,1fr) 170px; padding: 24px 36px; border-radius: 18px; background: rgba(255,255,255,.84); box-shadow: 0 18px 44px rgba(100,40,47,.075); }
    .fk-tech-row h3 { font-size: 25px; }
    .fk-tech-row p { font-size: 15px; }

    .fk-category-grid { gap: 24px; }
    .fk-category-card { min-height: 430px; padding: 35px 32px; border-radius: 21px; box-shadow: 0 20px 46px rgba(80,42,48,.075); }
    .fk-category-card h3 { font-size: 27px; }
    .fk-category-card ul { gap: 20px; margin-top: 32px; }
    .fk-category-card li { padding-bottom: 13px; font-size: 15px; }

    .fk-partner-grid { gap: 28px; }
    .fk-partner-card { min-height: 500px; border-radius: 23px; box-shadow: 0 22px 52px rgba(89,43,48,.085); }
    .fk-partner-card img { height: 330px; padding: 34px 38px 0; }
    .fk-partner-card > div { padding: 29px 34px 34px; }
    .fk-partner-card h3 { font-size: 25px; }
    .fk-partner-card p { font-size: 15px; }

    .fk-step-grid { gap: 30px; }
    .fk-step-grid::before { top: 66px; }
    .fk-step-card img { width: 132px; height: 132px; padding: 22px; margin-bottom: 27px; }
    .fk-step-card > span { left: calc(50% + 38px); width: 30px; height: 30px; font-size: 11px; }
    .fk-step-card h3 { font-size: 22px; }
    .fk-step-card p { font-size: 15px; }

    .fk-merchant-cta { padding: 92px 0; }
    .fk-merchant-cta h2 { font-size: 44px; }
    .fk-merchant-cta-inner > div > span { font-size: 17px; }
    .fk-merchant-cta .fk-button { min-width: 180px; height: 56px; font-size: 16px; }
    .fk-footer {
        position: relative;
        padding: 58px 0 24px;
        background: linear-gradient(145deg,#2b1117 0%,#38171d 52%,#241015 100%);
        box-shadow: inset 0 1px rgba(255,255,255,.035);
    }
    .fk-footer::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg,#e8192c,#ff5966 55%,#ff9a8e); }
    .fk-footer .fk-shell { width: min(1160px,calc(100% - 72px)); }
    .fk-footer-grid { grid-template-columns: 1.25fr repeat(3,minmax(150px,.75fr)); gap: 54px; align-items: start; }
    .fk-footer-grid:has(.fk-footer-qr) { grid-template-columns: 1.2fr repeat(3,minmax(135px,.68fr)) .78fr; gap: 38px; }
    .fk-footer-brand { max-width: 310px; }
    .fk-footer-brand .fk-logo { width: 190px; }
    .fk-footer-brand .fk-logo img { max-width: 182px; max-height: 55px; }
    .fk-footer-brand p { max-width: 290px; margin-top: 18px; color: #c9aeb3; font-size: 15px; line-height: 1.8; }
    .fk-footer-column { gap: 11px; }
    .fk-footer-column h3 { margin-bottom: 10px; color: #fff; font-size: 17px; }
    .fk-footer a,
    .fk-footer-brand p { font-size: 14px; }
    .fk-footer-column a { position: relative; color: #c6aeb2; font-size: 14px; line-height: 1.6; }
    .fk-footer-column a::before { content: ""; position: absolute; top: 50%; left: -13px; width: 5px; height: 5px; border-radius: 50%; background: #ff5a68; opacity: 0; transform: translateY(-50%); transition: .2s; }
    .fk-footer-column a:hover { color: #fff; transform: translateX(5px); }
    .fk-footer-column a:hover::before { opacity: 1; }
    .fk-footer-qr h3 { margin: 0 0 14px; color: #fff; font-size: 17px; }
    .fk-footer-qr img { width: 116px; height: 116px; padding: 6px; border-radius: 12px; object-fit: contain; background: #fff; }
    .fk-footer-qr p { margin: 10px 0 0; color: #c6aeb2; font-size: 12px; }
    .fk-friendship { justify-content: center; gap: 12px 24px; margin-top: 34px; padding-top: 19px; text-align: center; }
    .fk-footer-bottom { align-items: center; justify-content: center; gap: 18px; margin-top: 18px; padding-top: 18px; text-align: center; }
    .fk-footer-bottom a { display: inline-flex; align-items: center; gap: 18px; }
    .fk-footer-bottom a::before { content: "·"; color: #715157; }
}

@media (max-width: 1080px) {
    .desktop-nav, .fk-nav { gap: 17px; }
    .desktop-nav a, .fk-nav a { font-size: 13px; }
    .hero-slide { grid-template-columns: 1.06fr .94fr; gap: 20px; }
    .fk-slide { display: block; }
    .hero-copy h1, .fk-slide-copy h1 { font-size: 48px; }
    .advantage-card, .fk-advantage-card { padding-inline: 26px; }
    .fk-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

/* dedicated mobile homepage */
@media (max-width: 767px) {
    body.clone-home, body.fk-page { padding-bottom: calc(64px + env(safe-area-inset-bottom)); background: #fff8f7; }
    .fk-shell, .page-shell { width: calc(100% - 32px); }
    .desktop-home, .site-header .desktop-nav, .fk-header .fk-nav, .site-header .header-actions, .fk-header .fk-header-actions,
    .desktop-home + .site-footer, .desktop-home ~ .site-footer { display: none !important; }
    .mobile-home, .fk-mobile-home { display: block; }
    .site-header, .fk-header { height: 56px; background: #fff; }
    .nav, .fk-header .fk-shell { gap: 12px; }
    .brand, .fk-logo { width: 132px; }
    .brand img, .fk-logo img { max-width: 128px; max-height: 38px; }
    .fk-header-inner { position: relative; }
    .mobile-menu-button, .fk-mobile-menu-button { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; margin-left: auto; padding: 0; border: 0; border-radius: 10px; color: var(--fk-red); background: #fff1f2; cursor: pointer; }
    .fk-mobile-menu-button span,
    .fk-mobile-menu-button span::before,
    .fk-mobile-menu-button span::after { width: 16px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
    .fk-mobile-menu-button span { position: relative; }
    .fk-mobile-menu-button span::before,
    .fk-mobile-menu-button span::after { content: ""; position: absolute; left: 0; }
    .fk-mobile-menu-button span::before { top: -5px; }
    .fk-mobile-menu-button span::after { top: 5px; }
    .fk-mobile-menu-button[aria-expanded="true"] span { background: transparent; }
    .fk-mobile-menu-button[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .fk-mobile-menu-button[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
    .fk-mobile-menu { position: absolute; z-index: 180; top: 62px; right: 0; left: 0; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding: 12px; border: 1px solid #f0dfe2; border-radius: 15px; background: rgba(255,255,255,.98); box-shadow: 0 18px 45px rgba(76,25,34,.16); backdrop-filter: blur(18px); }
    .fk-mobile-menu:not([hidden]) { display: grid; }
    .fk-mobile-menu a { display: flex; align-items: center; justify-content: center; min-height: 42px; padding: 8px 10px; border-radius: 10px; color: #5f4d52; background: #fff8fa; font-size: 12px; font-weight: 700; }
    .fk-mobile-menu a.is-primary { grid-column: 1 / -1; color: #fff; background: linear-gradient(135deg,var(--fk-red),var(--fk-red-strong)); }

    .mobile-home, .fk-mobile-home { padding: 12px 16px 28px; }
    .mobile-hero, .fk-mobile-hero { position: relative; min-height: 190px; overflow: hidden; padding: 23px 20px; border-radius: 17px; color: #fff; background: linear-gradient(135deg, #ff5c68 0%, #e8192c 100%); box-shadow: 0 15px 32px rgba(220,33,50,.2); }
    .mobile-hero::after, .fk-mobile-hero::after { content: ""; position: absolute; right: -54px; bottom: -76px; width: 210px; height: 210px; border: 32px solid rgba(255,255,255,.11); border-radius: 50%; }
    .mobile-hero h1, .fk-mobile-hero h1 { position: relative; z-index: 2; max-width: 66%; margin: 0; font-size: 25px; line-height: 1.3; }
    .mobile-hero p, .fk-mobile-hero p { position: relative; z-index: 2; max-width: 60%; margin: 8px 0 0; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.65; }
    .mobile-hero img, .fk-mobile-hero img { position: absolute; z-index: 1; right: -2px; bottom: 0; width: 46%; height: 154px; object-fit: contain; object-position: right bottom; }
    .mobile-hero a, .fk-mobile-hero a { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; height: 32px; margin-top: 15px; padding: 0 15px; border-radius: 7px; color: var(--fk-red-strong); background: #fff; font-size: 11px; font-weight: 800; }
    .mobile-trust, .fk-mobile-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 12px 0; padding: 13px 5px; border: 1px solid #f4e6e5; border-radius: 14px; background: #fff; }
    .mobile-trust > div, .fk-mobile-trust > div { position: relative; text-align: center; }
    .mobile-trust > div + div::before, .fk-mobile-trust > div + div::before { content: ""; position: absolute; left: 0; top: 15%; width: 1px; height: 70%; background: #f1e4e4; }
    .mobile-trust strong, .fk-mobile-trust strong { display: block; color: var(--fk-red-strong); font-size: 15px; }
    .mobile-trust span, .fk-mobile-trust span { display: block; margin-top: 2px; color: #9b898b; font-size: 10px; }
    .mobile-block-title, .fk-mobile-title { display: flex; align-items: center; justify-content: space-between; margin: 22px 2px 11px; }
    .mobile-block-title h2, .fk-mobile-title h2 { margin: 0; font-size: 17px; }
    .mobile-block-title a, .fk-mobile-title a { color: #a38d90; font-size: 11px; }
    .mobile-service-grid, .fk-mobile-services { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
    .mobile-service-grid a, .fk-mobile-services a { position: relative; min-height: 104px; overflow: hidden; padding: 15px; border: 1px solid #f4e5e5; border-radius: 14px; background: #fff; box-shadow: 0 8px 23px rgba(102,42,45,.045); }
    .mobile-service-grid strong, .fk-mobile-services strong { position: relative; z-index: 2; display: block; font-size: 14px; }
    .mobile-service-grid span, .fk-mobile-services span { position: relative; z-index: 2; display: block; max-width: 72%; margin-top: 5px; color: #9b898b; font-size: 10px; }
    .mobile-service-grid img, .fk-mobile-services img { position: absolute; right: 3px; bottom: 2px; width: 58px; height: 58px; object-fit: contain; }
    .mobile-info-card, .fk-mobile-info { overflow: hidden; border: 1px solid #f2e3e3; border-radius: 14px; background: #fff; }
    .mobile-info-card a, .fk-mobile-info a { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 10px; min-height: 62px; padding: 9px 14px; }
    .mobile-info-card a + a, .fk-mobile-info a + a { border-top: 1px solid #f5e9e9; }
    .mobile-info-card i, .fk-mobile-info i { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; color: var(--fk-red); background: #fff0f1; font-style: normal; }
    .mobile-info-card strong, .fk-mobile-info strong { display: block; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
    .mobile-info-card time, .fk-mobile-info time { color: #ad999c; font-size: 9px; }
    .mobile-platform-card, .fk-mobile-summary { position: relative; min-height: 150px; overflow: hidden; padding: 19px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, #5a2830, #35191e); }
    .mobile-platform-card h3, .fk-mobile-summary h3 { margin: 0; font-size: 17px; }
    .mobile-platform-card p, .fk-mobile-summary p { max-width: 64%; margin: 7px 0 0; color: #d7c5c7; font-size: 11px; }
    .mobile-platform-card img, .fk-mobile-summary img { position: absolute; right: 4px; bottom: 0; width: 40%; max-height: 135px; object-fit: contain; }
    .mobile-bottom-nav, .fk-mobile-nav { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(5, 1fr); height: calc(64px + env(safe-area-inset-bottom)); padding: 7px 6px env(safe-area-inset-bottom); border-top: 1px solid #f0e2e2; background: rgba(255,255,255,.97); box-shadow: 0 -10px 28px rgba(71,25,29,.08); backdrop-filter: blur(14px); }
    .mobile-bottom-nav a, .fk-mobile-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-width: 0; color: #9c8a8c; font-size: 9px; }
    .mobile-bottom-nav a i, .fk-mobile-nav a i { display: flex; align-items: center; justify-content: center; width: 25px; height: 25px; border-radius: 8px; font-size: 17px; font-style: normal; }
    .mobile-bottom-nav a.active, .fk-mobile-nav a.active { color: var(--fk-red-strong); font-weight: 700; }
    .mobile-bottom-nav a.active i, .fk-mobile-nav a.active i { background: #fff0f1; }

    /* Exact mobile Blade: compact hero plus dedicated service blocks */
    .fk-header .fk-nav, .fk-header .fk-header-actions { display: none !important; }
    .fk-hero { min-height: 214px; margin: 12px 16px 0; border-radius: 17px; background: linear-gradient(135deg,#ff6671 0%,#e8192c 100%); box-shadow: 0 15px 32px rgba(220,33,50,.18); }
    .fk-slider { min-height: 214px; background: transparent; }
    .fk-hero::before { opacity: .25; mask-image: none; }
    .fk-slide { inset: 0; }
    .fk-slide.is-active { min-height: 214px; }
    .fk-slide-inner { grid-template-columns: minmax(0,1fr) 42%; gap: 0; width: 100%; min-height: 214px; padding: 21px 17px; }
    .fk-slide-copy { padding: 0; }
    .fk-eyebrow { margin-bottom: 6px !important; color: rgba(255,255,255,.72) !important; font-size: 9px !important; letter-spacing: .06em; }
    .fk-eyebrow::before { width: 13px; background: rgba(255,255,255,.7); }
    .fk-slide-copy h1, .fk-slide-copy h2 { max-width: 210px; color: #fff; font-size: 24px; line-height: 1.28; letter-spacing: -.03em; }
    .fk-slide-copy h1 em, .fk-slide-copy h2 em { color: #fff; }
    .fk-hero-description { display: -webkit-box; max-width: 205px !important; margin: 7px 0 0 !important; overflow: hidden; color: rgba(255,255,255,.77) !important; font-size: 10px !important; line-height: 1.55 !important; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
    .fk-hero-actions { gap: 6px; margin-top: 11px; }
    .fk-hero-actions .fk-button { min-width: 0; height: 30px; padding: 0 10px; border-color: #fff; border-radius: 7px; color: var(--fk-red-strong); background: #fff; box-shadow: none; font-size: 9px; }
    .fk-hero-actions .fk-button-ghost { color: #fff; background: transparent; }
    .fk-slide-art { min-height: 172px; align-self: end; }
    .fk-slide-art::before { width: 125px; height: 125px; border-color: rgba(255,255,255,.13); box-shadow: 0 0 0 18px rgba(255,255,255,.05); }
    .fk-slide-art img { width: 145%; max-width: none; height: 172px; max-height: none; object-fit: contain; object-position: right bottom; filter: drop-shadow(0 12px 16px rgba(112,17,25,.15)); }
    .fk-slider-controls { bottom: 8px; justify-content: flex-start; width: auto; left: 18px; }
    .fk-slider-arrow { display: none; }
    .fk-slider-dots button { width: 5px; height: 5px; background: rgba(255,255,255,.45); }
    .fk-slider-dots button.is-active { width: 18px; background: #fff; }
    .fk-stats { margin: 10px 16px 0; border: 1px solid #f3e5e5; border-radius: 14px; box-shadow: none; }
    .fk-stats-grid { grid-template-columns: repeat(4,minmax(0,1fr)); width: 100%; }
    .fk-stat { min-height: 66px; padding: 9px 3px; }
    .fk-stat + .fk-stat::before { top: 25%; height: 50%; }
    .fk-stat strong { font-size: 15px; }
    .fk-stat span { margin-top: 3px; font-size: 8px; white-space: nowrap; }
    .fk-advantages, .fk-tech, .fk-categories, .fk-partners, .fk-onboarding { display: none !important; }
    .fk-mobile-services, .fk-mobile-info, .fk-mobile-summary { display: block; }
    .fk-mobile-services { padding: 30px 0 0; }
    .fk-mobile-info {
        margin-top: 30px;
        padding: 0;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }
    .fk-mobile-services header, .fk-mobile-info header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 10px; }
    .fk-mobile-services header p { margin: 0 0 2px; color: var(--fk-red); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
    .fk-mobile-services header h2, .fk-mobile-info header h2 { margin: 0; font-size: 17px; }
    .fk-mobile-info header a { color: #a18d90; font-size: 10px; }
    .fk-mobile-service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
    .fk-mobile-service-grid a { display: flex; align-items: center; gap: 10px; min-height: 66px; padding: 12px; border: 1px solid #f2e4e4; border-radius: 13px; background: #fff; }
    .fk-mobile-service-grid a > span { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; color: var(--fk-red); background: #fff0f1; font-size: 12px; font-weight: 800; }
    .fk-mobile-service-grid a > strong { font-size: 12px; }
    .fk-mobile-notice-list { overflow: hidden; border: 1px solid #f2e3e3; border-radius: 13px; background: #fff; }
    .fk-mobile-notice-list a { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 48px; padding: 9px 13px; }
    .fk-mobile-notice-list a + a { border-top: 1px solid #f5eaea; }
    .fk-mobile-notice-list a > span { overflow: hidden; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
    .fk-mobile-notice-list time { flex: 0 0 auto; color: #a99598; font-size: 9px; }
    .fk-mobile-notice-list > p { margin: 0; padding: 18px; color: #a18e91; font-size: 11px; text-align: center; }
    .fk-mobile-summary { margin: 30px 16px 28px; overflow: hidden; border-radius: 15px; color: #fff; background: linear-gradient(135deg,#5a2830,#35191e); }
    .fk-mobile-summary .fk-shell { width: 100%; min-height: 145px; padding: 20px; }
    .fk-mobile-summary p { margin: 0; color: #dbbec2; font-size: 9px; letter-spacing: .08em; }
    .fk-mobile-summary h2 { max-width: 76%; margin: 7px 0 15px; font-size: 18px; line-height: 1.4; }
    .fk-mobile-summary .fk-button { min-width: 0; height: 31px; padding: 0 12px; border: 0; font-size: 9px; }
    .fk-merchant-cta { display: none; }
    .fk-footer { padding: 25px 16px 20px; text-align: center; }
    .fk-footer-grid, .fk-friendship { display: none; }
    .fk-footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; margin: 0; padding: 0; border: 0; font-size: 9px; }
    .fk-mobile-nav { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3,1fr); height: calc(64px + env(safe-area-inset-bottom)); padding: 6px 18px env(safe-area-inset-bottom); border-top: 1px solid #f0e2e2; background: rgba(255,255,255,.97); box-shadow: 0 -10px 28px rgba(71,25,29,.08); backdrop-filter: blur(14px); }
    .fk-mobile-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #9c898c; font-size: 9px; }
    .fk-mobile-nav a > span { display: flex; align-items: center; justify-content: center; width: 26px; height: 25px; border-radius: 8px; font-size: 15px; }
    .fk-mobile-nav a > strong { font-weight: 600; }
    .fk-mobile-nav a.is-active { color: var(--fk-red-strong); }
    .fk-mobile-nav a.is-active > span { background: #fff0f1; }
    .fk-mobile-nav a.is-query { color: var(--fk-red-strong); }
    .fk-mobile-nav a.is-query > span { width: 48px; height: 48px; margin-top: -25px; border: 5px solid #fff; border-radius: 50%; color: #fff; background: linear-gradient(135deg,#ff6671,#e8192c); box-shadow: 0 8px 22px rgba(232,25,44,.28); font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .js-motion .reveal { opacity: 1 !important; transform: none !important; }
    .hero-slide, .fk-slide { transform: none !important; }
}
