@charset "UTF-8";

/* =========================================================
   LUMIQ for Business
   Organized stylesheet
   ========================================================= */

:root {
    --black: #0A2540;
    --white: #FFFFFF;
    --bg-gray: #F6F9FC;
    --blue: #635BFF;
    --blue-dark: #4F46E5;
    --muted: #425466;
    --border: #E6EBFC;
    --accent: #00D4B2;
    --header-height: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--black);
    background: var(--bg-gray);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
p,
ul {
    margin: 0;
}

ul {
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        opacity .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.pc-br {
    display: block;
}

.sp-br {
    display: none;
}

/* =========================================================
   Shared layout
   ========================================================= */

.section {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 140px 24px;
}

.section-in {
    width: 100%;
    max-width: 1080px;
}

.sec-title {
    margin-bottom: 16px;
    color: var(--black);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.04em;
    text-align: center;
}

.sec-sub {
    max-width: 700px;
    margin: 0 auto 80px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.calc-disclaimer,
.usecase-note {
    max-width: 900px;
    margin: 36px auto 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

.form-hp {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

/* Defer rendering of off-screen sections. */
.sec-product-showcase,
.sec-steps,
.sec-integration,
.sec-trial,
.sec-pricing,
.sec-faq,
.biz-contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

#product-screen,
#flow,
#solutions,
#trial,
#pricing,
#faq,
#contact {
    scroll-margin-top: 94px;
}

/* =========================================================
   Unified header and section navigation
   ========================================================= */

.sim-hd {
    position: fixed;
    inset: 0 0 auto;
    z-index: 9999;
    display: flex;
    align-items: center;
    height: var(--header-height);
    border-bottom: 1px solid rgba(10, 37, 64, .07);
    background: rgba(255, 255, 255, .97);
}

.sim-hd-in {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 22px;
}

.sim-hd-logo {
    flex: 0 0 auto;
    color: var(--black);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.sim-hd-logo > span {
    color: var(--blue);
}

.sim-hd-product-name {
    display: inline-block;
    margin-left: 8px;
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    transform: translateY(1px);
}

.section-jump-nav {
    position: static;
    z-index: auto;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.section-jump-nav-in {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    gap: 2px;
}

.section-jump-link {
    position: relative;
    flex: 0 0 auto;
    padding: 9px 11px;
    border-radius: 999px;
    color: #52657A;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.section-jump-link:hover,
.section-jump-link.is-active {
    color: var(--blue-dark);
    background: rgba(99, 91, 255, .09);
}

.sim-hd-cta {
    flex: 0 0 auto;
    padding: 10px 17px;
    border-radius: 999px;
    color: var(--white);
    background: var(--black);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .10);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.sim-hd-cta:hover {
    color: var(--white);
    background: var(--muted);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    transform: translateY(-1px);
}

.header-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(10, 37, 64, .12);
    border-radius: 999px;
    color: var(--black);
    background: var(--white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

/* =========================================================
   Hero
   ========================================================= */

.b2b-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 820px;
    padding: 118px 24px 110px;
    overflow: hidden;
    background: #F7F9FD;
}

.b2b-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 20%, rgba(99, 91, 255, .15), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(47, 205, 178, .12), transparent 32%),
        linear-gradient(180deg, #F4F7FC 0%, #FFFFFF 100%);
}

.b2b-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image:
        linear-gradient(rgba(10, 37, 64, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 37, 64, .025) 1px, transparent 1px);
    background-size: 44px 44px;
}

.b2b-hero-bg::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 120px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.b2b-hero-in {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    gap: 68px;
}

.b2b-hero-content {
    flex: 0 1 520px;
    max-width: 520px;
}

.b2b-hero-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 9px 15px;
    gap: 9px;
    border: 1px solid rgba(99, 91, 255, .16);
    border-radius: 999px;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 8px 24px rgba(50, 50, 93, .06);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.b2b-hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(99, 91, 255, .12);
}

.b2b-title {
    margin-bottom: 30px;
    color: var(--black);
    font-size: clamp(40px, 4.2vw, 58px);
    font-weight: 900;
    line-height: 1.38;
    letter-spacing: -.055em;
}

.b2b-sub {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: -.01em;
}

.b2b-sub strong {
    color: var(--black);
    font-weight: 900;
}

.b2b-microcopy {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.b2b-microcopy svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
}

.b2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 16px 40px;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue);
    box-shadow:
        0 16px 34px rgba(99, 91, 255, .24),
        0 4px 10px rgba(99, 91, 255, .12);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
}

.b2b-btn:hover {
    color: var(--white);
    background: var(--black);
    box-shadow:
        0 12px 24px rgba(10, 37, 64, .25),
        0 4px 8px rgba(0, 0, 0, .10);
    transform: translateY(-2px);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 9px 18px;
    color: #65758A;
    font-size: 12px;
    font-weight: 700;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust-item::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #168A72;
    background: rgba(47, 205, 178, .13);
    font-size: 11px;
    font-weight: 900;
}

.b2b-hero-visual {
    flex: 1 1 680px;
    width: 100%;
    max-width: 720px;
    min-width: 0;
}

.hero-product-stage {
    position: relative;
    width: 100%;
    padding: 28px 18px 44px 10px;
}

.hero-product-stage::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 10%;
    right: 0;
    width: 86%;
    height: 78%;
    opacity: .72;
    border-radius: 44px;
    background: linear-gradient(135deg, rgba(99, 91, 255, .16), rgba(47, 205, 178, .10));
    transform: rotate(2deg);
}

.hero-product-browser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 55, 90, .14);
    border-radius: 22px;
    background: var(--white);
    box-shadow:
        0 28px 60px rgba(30, 55, 90, .16),
        0 8px 20px rgba(30, 55, 90, .08);
    transform: rotate(-1deg);
    transform-origin: center;
}

.hero-product-browser-top {
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 15px;
    gap: 7px;
    border-bottom: 1px solid #E9EDF3;
    background: #FBFCFE;
}

.hero-product-browser-top i {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.hero-product-browser-top i:nth-child(1) {
    background: #FF6B6B;
}

.hero-product-browser-top i:nth-child(2) {
    background: #FFD166;
}

.hero-product-browser-top i:nth-child(3) {
    background: #55C57A;
}

.hero-product-addressbar {
    width: 44%;
    height: 10px;
    margin-left: 8px;
    border-radius: 999px;
    background: #E7ECF3;
}

.hero-product-browser img {
    display: block;
    width: 100%;
    height: auto;
}

.hero-product-live {
    position: absolute;
    top: 8px;
    right: 4px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .70);
    border-radius: 999px;
    color: var(--white);
    background: rgba(10, 37, 64, .88);
    box-shadow: 0 12px 28px rgba(10, 37, 64, .20);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
}

.hero-product-live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #62E6C8;
    box-shadow: 0 0 0 4px rgba(98, 230, 200, .16);
}

.hero-result-preview {
    position: absolute;
    right: -8px;
    bottom: 0;
    z-index: 4;
    width: 48%;
    overflow: hidden;
    border: 1px solid rgba(30, 55, 90, .12);
    border-radius: 17px;
    background: var(--white);
    box-shadow:
        0 20px 44px rgba(30, 55, 90, .17),
        0 6px 16px rgba(30, 55, 90, .08);
    transform: rotate(1deg);
}

.hero-result-preview-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 13px;
    border-bottom: 1px solid #E9EDF3;
    color: var(--black);
    background: var(--white);
    font-size: 10px;
    font-weight: 900;
}

.hero-result-preview-label span {
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 9px;
    letter-spacing: .10em;
}

.hero-result-preview-image {
    height: 150px;
    overflow: hidden;
}

.hero-result-preview-image img {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(-1%);
}

.hero-product-chip {
    position: absolute;
    left: -5px;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 10px;
    border: 1px solid rgba(99, 91, 255, .15);
    border-radius: 14px;
    color: var(--black);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 15px 35px rgba(30, 55, 90, .14);
    font-size: 11px;
    font-weight: 900;
}

.hero-product-chip strong {
    color: var(--blue);
    font-family: "Inter", sans-serif;
    font-size: 18px;
}

/* =========================================================
   Feature section
   ========================================================= */
/* ── FEATURE SECTION ── */
.sec-feature { background: linear-gradient(160deg, #0A1930 0%, #0d2847 100%); padding: 140px 24px; display: flex; justify-content: center; }
.sec-feature-in { display: flex; align-items: center; gap: 80px; width: 100%; max-width: 1200px; }
.feature-visual { flex: 2.8; }
.feature-img-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); }
.feature-img-wrap-bottom { width: 100%; }
.feature-img-wrap-bottom img { width: 100%; display: block; }
.feature-img { width: 100%; display: block; }
.feature-list { flex: 1; }
.feature-list .sec-title { text-align: left; margin-bottom: 48px; color: #fff; }
.feature-list-title { word-break: keep-all; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
.feature-item:last-child { margin-bottom: 0; }
.feature-item-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(99,91,255,0.2); border: 1px solid rgba(99,91,255,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.feature-item-icon svg { width: 20px; height: 20px; color: #818CF8; }
.feature-item-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.02em; }
.feature-item-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; font-weight: 400; }

/* =========================================================
   Three-step flow
   ========================================================= */
/* ── STEP SECTION ── */
.sec-steps { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px; }
.step-card { background: var(--white); border-radius: 16px; padding: 48px 32px; border: 1px solid rgba(50,50,93,0.05); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: 0 2px 5px rgba(0,0,0,0.01); }
.step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(50, 50, 93, 0.08), 0 4px 12px rgba(0,0,0,0.03); border-color: rgba(99, 91, 255, 0.2); }
.step-num { font-size: 13px; font-weight: 800; color: var(--blue); margin-bottom: 16px; letter-spacing: 0.05em; }
.step-title { font-size: 22px; font-weight: 900; margin-bottom: 16px; color: var(--black); letter-spacing: -0.03em; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.6; font-weight: 500; flex-grow: 1; }
.step-ui { margin-top: 40px; height: 100px; display: flex; align-items: center; justify-content: center; background: var(--bg-gray); border-radius: 12px; padding: 16px; border: 1px solid rgba(50,50,93,0.05); }
.ui-mock-input { background: var(--white); padding: 10px 14px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); width: 100%; border: 1px solid rgba(50,50,93,0.05); font-size: 12px; color: var(--black); font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.ui-mock-input span:last-child { color: var(--white); background: var(--blue); padding: 4px 12px; border-radius: 4px; font-size: 11px; }
.ui-mock-map { width: 100%; height: 70px; border-radius: 8px; background: #E2E8F0 url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=600&q=80') center/cover; position: relative; overflow: hidden; border: 1px solid rgba(50,50,93,0.1); }
.ui-mock-map::after { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(99, 91, 255, 0.4), transparent); display: none; }

.ui-mock-graph { width: 100%; display: flex; align-items: flex-end; gap: 4px; height: 65px; }
.ui-mock-graph div { flex: 1; background: var(--blue); border-radius: 3px 3px 0 0; opacity: 0.85; }

/* =========================================================
   Reusable cards
   ========================================================= */
/* ── TESTIMONIALS SECTION ── */
.sec-integration { background: var(--bg-gray); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 16px; }
.testimonial-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(50, 50, 93, 0.03), 0 1px 3px rgba(0,0,0,0.01); border: 1px solid rgba(50,50,93,0.05); display: flex; flex-direction: column; position: relative; }
.testimonial-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.testimonial-card-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.testimonial-icon { width: 48px; height: 48px; background: rgba(99,91,255,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.testimonial-icon svg { width: 24px; height: 24px; color: var(--blue); }

/* ★ 修正ポイント：文字サイズ、行間、色を調整し、重要語句をハイライト */
.testimonial-body { font-size: 14.5px; color: var(--muted); line-height: 1.9; flex: 1; position: relative; z-index: 2; font-weight: 500; }
.testimonial-body strong { color: var(--black); font-weight: 800; background: linear-gradient(transparent 60%, rgba(99, 91, 255, 0.15) 60%); padding: 0 2px; }

.testimonial-author { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 24px; }
.testimonial-role { font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.testimonial-name { font-size: 16px; font-weight: 800; color: var(--black); letter-spacing: -0.01em; }

/* =========================================================
   Pricing base
   ========================================================= */
/* ── PRICING SECTION ── */
.sec-pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }
.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; gap: 24px; align-items: stretch; }
.pricing-grid-3 .price-card { display: flex; flex-direction: column; }
.price-card { background: var(--white); border-radius: 20px; padding: 36px 28px; box-shadow: 0 13px 27px -5px rgba(50,50,93,0.05), 0 8px 16px -8px rgba(0,0,0,0.02); border: 1px solid rgba(50,50,93,0.08); position: relative; transition: all 0.4s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -12px rgba(50,50,93,0.12), 0 18px 36px -18px rgba(0,0,0,0.05); }
.price-card.popular { border: 2px solid var(--blue); }
.popular-badge { position: absolute; top: -14px; left: 32px; background: var(--blue); color: var(--white); font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 980px; letter-spacing: 0.04em; }
.price-name { font-size: 22px; font-weight: 900; margin-bottom: 10px; color: var(--black); letter-spacing: -0.03em; }
.price-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; font-weight: 500; height: 60px; overflow: hidden; }
.price-amount-wrap { margin-bottom: 16px; height: 130px; display: flex; flex-direction: column; justify-content: flex-end; }
.price-amount-flex { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.price-old { font-size: 18px; font-weight: 800; color: #86868B; text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: #FF4A4A; }
.price-arrow { width: 18px; height: 18px; color: var(--muted); }
.price-new { font-size: 38px; font-weight: 900; color: var(--black); line-height: 1; letter-spacing: -0.04em; }
.price-new span { font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-left: 2px; }
.price-free-badge { display: inline-flex; align-items: center; background: linear-gradient(135deg, #FF4A4A 0%, #D80000 100%); color: var(--white); padding: 5px 12px; border-radius: 6px; font-size: 13px; font-weight: 800; box-shadow: 0 4px 12px rgba(255, 74, 74, 0.3); letter-spacing: 0.05em; margin-bottom: 8px; }
.price-amount { font-size: 38px; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; }
.price-amount span { font-size: 15px; color: var(--muted); font-weight: 700; }
.price-init { font-size: 12px; color: var(--muted); font-weight: 700; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(50,50,93,0.08); min-height: 70px; line-height: 1.6; }
.price-init-note { display: inline-block; margin-top: 4px; font-size: 11px; font-weight: 600; color: var(--muted); }
.price-pay { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(50,50,93,0.08); }
.price-pay-label { display: block; font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: 0.04em; margin-bottom: 4px; }
.price-pay-val { display: block; font-size: 12px; font-weight: 600; color: var(--black); line-height: 1.5; }
.price-rule { margin-top: 16px; font-size: 11px; font-weight: 600; color: var(--muted); line-height: 1.6; }
.price-list { list-style: none; }
.price-list li { font-size: 13px; color: var(--black); font-weight: 600; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-list svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.campaign-box { margin-top: 20px; background: rgba(99, 91, 255, 0.05); border: 1px solid rgba(99, 91, 255, 0.15); border-radius: 12px; padding: 16px; }
.campaign-title { font-size: 13px; font-weight: 800; color: var(--blue); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.campaign-desc { font-size: 12px; color: var(--black); line-height: 1.6; font-weight: 500; }
.price-old-hidden { visibility: hidden; }
.price-badge-hidden { visibility: hidden; }

/* ── PRICING UX UPDATE：Pro推奨・OEM別導線 ── */
.pricing-eyebrow {
    display: block;
    margin-bottom: 12px;
    text-align: center;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}
.pricing-saas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 30px;
    max-width: 920px;
    margin: 0 auto;
}
.pricing-saas-grid .price-card {
    display: flex;
    flex-direction: column;
    padding: 42px 36px 34px;
}
.price-card-standard {
    background: #fff;
    border-color: rgba(50,50,93,.10);
}
.price-card.recommended {
    border: 2px solid var(--blue);
    background: linear-gradient(180deg, rgba(99,91,255,.055) 0%, #fff 34%);
    box-shadow: 0 28px 70px -24px rgba(79,70,229,.42), 0 12px 30px rgba(50,50,93,.10);
    transform: translateY(-12px);
    overflow: visible;
}
.price-card.recommended:hover {
    transform: translateY(-16px);
    box-shadow: 0 34px 80px -22px rgba(79,70,229,.46), 0 16px 34px rgba(50,50,93,.12);
}
.plan-badge {
    position: absolute;
    top: -13px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
}
.plan-badge-light {
    color: var(--muted);
    background: #eef2f7;
    border: 1px solid rgba(66,84,102,.12);
}
.price-card.recommended .popular-badge {
    top: -17px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 22px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 8px 20px rgba(99,91,255,.32);
    white-space: nowrap;
}
.plan-kicker {
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}
.price-card.recommended .price-name {
    font-size: 30px;
}
.price-card.recommended .price-new {
    color: var(--blue-dark);
}
.plan-fit-title {
    margin: 4px 0 12px;
    color: var(--black);
    font-size: 13px;
    font-weight: 900;
}
.plan-fit-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-gray);
}
.plan-fit-list li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.55;
}
.plan-fit-list li:last-child { margin-bottom: 0; }
.plan-fit-list li::before {
    content: "";
    position: absolute;
    top: .58em;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
}
.plan-fit-list-recommended {
    background: rgba(99,91,255,.07);
    border: 1px solid rgba(99,91,255,.14);
}
.campaign-box-recommended {
    background: rgba(99,91,255,.085);
    border-color: rgba(99,91,255,.22);
}
.price-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.price-card-cta:hover { transform: translateY(-2px); }
.price-card-cta-secondary {
    color: var(--blue-dark);
    background: #fff;
    border: 1.5px solid rgba(99,91,255,.38);
}
.price-card-cta-secondary:hover {
    background: rgba(99,91,255,.06);
    box-shadow: 0 8px 18px rgba(99,91,255,.12);
}
.price-card-cta-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 10px 24px rgba(99,91,255,.30);
}
.price-card-cta-primary:hover {
    color: #fff;
    box-shadow: 0 14px 30px rgba(99,91,255,.38);
}
.recommended-note {
    margin-top: 10px;
    color: var(--blue-dark);
    font-size: 11.5px;
    font-weight: 800;
    text-align: center;
}
.oem-panel {
    display: grid;
    grid-template-columns: 1.3fr 1fr .8fr;
    align-items: center;
    gap: 28px;
    max-width: 1100px;
    margin: 72px auto 0;
    padding: 32px 34px;
    border: 1px solid rgba(50,50,93,.09);
    border-radius: 20px;
    background: linear-gradient(135deg, #f8faff 0%, #fff 55%, rgba(0,212,178,.05) 100%);
    box-shadow: 0 14px 38px rgba(50,50,93,.06);
}
.oem-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #007f6b;
    background: rgba(0,212,178,.10);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}
.oem-panel-copy h3 {
    margin-bottom: 10px;
    color: var(--black);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.03em;
}
.oem-panel-copy p {
    color: var(--muted);
    font-size: 13px;
    font-weight: 550;
    line-height: 1.75;
}
.oem-feature-list {
    list-style: none;
    padding-left: 0;
}
.oem-feature-list li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 21px;
    color: var(--black);
    font-size: 12.5px;
    font-weight: 700;
}
.oem-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #009d84;
    font-weight: 900;
}
.oem-panel-action {
    padding-left: 24px;
    border-left: 1px solid rgba(50,50,93,.10);
}
.oem-panel-action strong {
    display: block;
    color: var(--black);
    font-size: 24px;
    font-weight: 900;
}
.oem-panel-action > span {
    display: block;
    margin: 3px 0 14px;
    color: var(--muted);
    font-size: 11.5px;
    font-weight: 700;
}
.price-card-cta-oem {
    min-height: 46px;
    color: #006e5d;
    background: rgba(0,212,178,.10);
    border: 1px solid rgba(0,157,132,.22);
    font-size: 12px;
}
.price-card-cta-oem:hover {
    color: #005c4e;
    background: rgba(0,212,178,.16);
    box-shadow: 0 8px 18px rgba(0,157,132,.12);
}

@media (max-width: 900px) {
    .pricing-saas-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        gap: 28px;
    }
    .price-card.recommended {
        order: -1;
        transform: none;
    }
    .price-card.recommended:hover { transform: translateY(-4px); }
    .oem-panel {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin-top: 36px;
    }
    .oem-panel-action {
        padding-left: 0;
        padding-top: 20px;
        border-left: 0;
        border-top: 1px solid rgba(50,50,93,.10);
    }
}

@media (max-width: 600px) {
    .pricing-saas-grid .price-card { padding: 38px 22px 26px; }
    .price-card.recommended .popular-badge { font-size: 11px; }
    .oem-panel { padding: 26px 22px; }
    .oem-panel-copy h3 { font-size: 21px; }
}

/* =========================================================
   FREE TRIAL SECTION (NO IMAGE VERSION)
   - 画像を使わず、実際の操作フローをUIモックで可視化
========================================================= */
.sec-trial {
    background: linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 100%);
    overflow: hidden;
}
.trial-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-align: center;
}
.trial-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 780px;
    margin: -36px auto 56px;
}
.trial-summary-item {
    background: #fff;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(50,50,93,.06);
}
.trial-summary-value {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1.2;
}
.trial-summary-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}
.trial-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.trial-flow-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(50,50,93,.07);
}
.trial-flow-head {
    padding: 28px 28px 18px;
}
.trial-flow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    margin-bottom: 14px;
    padding: 5px 10px;
    background: rgba(99,91,255,.09);
    border-radius: 999px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}
.trial-flow-title {
    margin-bottom: 10px;
    color: var(--black);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -.03em;
}
.trial-flow-desc {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}
.trial-ui {
    flex: 1;
    margin: 4px 18px 18px;
    padding: 20px;
    background: #F6F9FC;
    border: 1px solid rgba(50,50,93,.06);
    border-radius: 14px;
}

/* STEP 1: login mock */
.trial-login-mock {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 260px;
    margin: 0 auto;
}
.trial-mini-logo {
    margin-bottom: 18px;
    color: var(--black);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -.04em;
}
.trial-mini-logo span { color: var(--blue); }
.trial-mini-label {
    display: block;
    margin-bottom: 6px;
    color: var(--black);
    font-size: 10px;
    font-weight: 800;
}
.trial-mini-input {
    height: 38px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid rgba(50,50,93,.12);
    border-radius: 7px;
}
.trial-mini-button {
    height: 40px;
    margin-top: 4px;
    background: var(--blue);
    border-radius: 7px;
}

/* STEP 2: analysis mock */
.trial-analysis-mock {
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 12px;
    height: 100%;
}
.trial-analysis-panel,
.trial-map-panel {
    background: #fff;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 10px;
    padding: 12px;
}
.trial-analysis-option {
    height: 26px;
    margin-bottom: 7px;
    background: #EEF2FF;
    border-radius: 6px;
}
.trial-analysis-option:first-child { background: var(--blue); }
.trial-analysis-address {
    height: 34px;
    margin-top: 14px;
    background: #F8FAFC;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 6px;
}
.trial-analysis-button {
    height: 34px;
    margin-top: 10px;
    background: var(--blue);
    border-radius: 6px;
}
.trial-map-panel {
    position: relative;
    overflow: hidden;
    background-color: #E7EDF3;
    background-image:
        linear-gradient(35deg, rgba(255,255,255,.85) 8%, transparent 8%, transparent 48%, rgba(255,255,255,.85) 48%, rgba(255,255,255,.85) 56%, transparent 56%),
        linear-gradient(-35deg, rgba(210,226,239,.85) 12%, transparent 12%, transparent 52%, rgba(210,226,239,.85) 52%, rgba(210,226,239,.85) 60%, transparent 60%);
    background-size: 60px 60px, 72px 72px;
}
.trial-map-pin {
    position: absolute;
    top: 48%;
    left: 52%;
    width: 20px;
    height: 20px;
    background: #EF4444;
    border: 4px solid #fff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 6px 14px rgba(239,68,68,.3);
    transform: rotate(-45deg);
}

/* STEP 3: result mock */
.trial-result-mock {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.trial-result-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.trial-result-metric {
    height: 58px;
    background: #fff;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 8px;
}
.trial-result-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    flex: 1;
    min-height: 130px;
    padding: 18px 14px 8px;
    background: #fff;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 10px;
}
.trial-result-chart span {
    flex: 1;
    min-width: 5px;
    background: linear-gradient(180deg, var(--blue), #A5B4FC);
    border-radius: 3px 3px 0 0;
}
.trial-result-chart span:nth-child(1) { height: 38%; }
.trial-result-chart span:nth-child(2) { height: 46%; }
.trial-result-chart span:nth-child(3) { height: 56%; }
.trial-result-chart span:nth-child(4) { height: 67%; }
.trial-result-chart span:nth-child(5) { height: 78%; }
.trial-result-chart span:nth-child(6) { height: 92%; }
.trial-result-note {
    margin-top: 10px;
    padding: 9px 11px;
    background: rgba(0,212,178,.09);
    border-radius: 7px;
    color: #087F6B;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
}

.trial-scope {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
    margin-top: 28px;
}
.trial-scope-box {
    padding: 24px 26px;
    background: #fff;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 16px;
}
.trial-scope-box.is-limited {
    background: #FAFBFD;
}
.trial-scope-title {
    margin-bottom: 14px;
    color: var(--black);
    font-size: 15px;
    font-weight: 900;
}
.trial-scope-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    list-style: none;
}
.trial-scope-box.is-limited .trial-scope-list {
    grid-template-columns: 1fr;
}
.trial-scope-list li {
    position: relative;
    padding-left: 22px;
    color: var(--black);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}
.trial-scope-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--blue);
    font-weight: 900;
}
.trial-scope-box.is-limited .trial-scope-list li {
    color: var(--muted);
}
.trial-scope-box.is-limited .trial-scope-list li::before {
    content: "—";
    color: #94A3B8;
}
.trial-cta-wrap {
    margin-top: 34px;
    text-align: center;
}
.trial-cta-main {
    min-width: 320px;
}
.trial-cta-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}
.trial-pro-note {
    max-width: 760px;
    margin: 24px auto 0;
    padding: 16px 20px;
    background: rgba(99,91,255,.06);
    border: 1px solid rgba(99,91,255,.14);
    border-radius: 12px;
    color: var(--black);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.7;
    text-align: center;
}
.trial-pro-note strong { color: var(--blue); }

@media (max-width: 900px) {
    .trial-flow { grid-template-columns: 1fr; }
    .trial-flow-card { min-height: auto; }
    .trial-ui { min-height: 250px; }
    .trial-scope { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .trial-summary {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: -24px;
        margin-bottom: 36px;
    }
    .trial-summary-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        text-align: left;
    }
    .trial-summary-value { margin-bottom: 0; font-size: 23px; }
    .trial-flow-head { padding: 24px 22px 14px; }
    .trial-ui { margin: 4px 12px 12px; padding: 14px; min-height: 220px; }
    .trial-analysis-mock { grid-template-columns: 1fr; }
    .trial-map-panel { min-height: 115px; }
    .trial-scope-list { grid-template-columns: 1fr; }
    .trial-cta-main { width: 100%; min-width: 0; }
}

/* ── USE CASE / DEVELOPMENT STORY UPDATE ── */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
    max-width: 1080px;
    margin: 24px auto 0;
}
.usecase-grid .testimonial-card {
    min-width: 0;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(50,50,93,.10);
}
.development-story {
    max-width: 980px;
    margin: 72px auto 0;
    padding: 48px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
    border: 1px solid rgba(99, 91, 255, 0.14);
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(50, 50, 93, 0.07);
    position: relative;
    overflow: hidden;
}
.development-story::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,91,255,.12) 0%, rgba(99,91,255,0) 70%);
    pointer-events: none;
}
.development-story-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.development-story-label::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 999px;
}
.development-story-title {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--black);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -.035em;
}
.development-story-text {
    max-width: 820px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}
.development-story-text strong {
    color: var(--black);
    font-weight: 800;
}
.development-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}
.development-fact {
    padding: 22px 20px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 14px;
}
.development-fact-value {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.02em;
}
.development-fact-label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .usecase-grid {
        max-width: 720px;
    }
    .development-story {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .usecase-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .development-story {
        margin-top: 48px;
        padding: 32px 24px;
        border-radius: 18px;
    }
    .development-story-title {
        font-size: 27px;
    }
    .development-story-text {
        font-size: 15px;
        line-height: 1.9;
    }
    .development-facts {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }
    .development-fact {
        padding: 18px;
    }
}

.usecase-grid .testimonial-card-body {
    padding: 38px 40px 40px;
}
.usecase-grid .testimonial-body {
    font-size: 16px;
    line-height: 1.95;
}
.usecase-grid .testimonial-author {
    margin-top: 28px;
    padding-top: 24px;
}
.usecase-grid .testimonial-role {
    font-size: 13px;
}
.usecase-grid .testimonial-name {
    font-size: 18px;
}

/* ── USE CASE STATIC VISUALS ── */
.usecase-visual {
    position: relative;
    height: 390px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(99,91,255,.11), transparent 33%),
        linear-gradient(145deg, #F8FAFF 0%, #EAF1FF 100%);
    border-bottom: 1px solid rgba(50,50,93,.07);
}

.usecase-browser {
    position: absolute;
    inset: 20px 22px;
    overflow: hidden;
    border: 1px solid rgba(50,50,93,.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 26px 60px rgba(50,50,93,.18);
}

.usecase-browser-bar {
    height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #F7F9FC;
    border-bottom: 1px solid rgba(50,50,93,.08);
}

.usecase-browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #CBD5E1;
}

.usecase-browser-url {
    width: 46%;
    height: 12px;
    margin-left: 10px;
    border-radius: 999px;
    background: #E5EAF2;
}

/* 営業提案：図面 → 地図 → 概算結果 */
.sales-static-flow {
    height: calc(100% - 40px);
    display: grid;
    grid-template-columns: 1fr 34px 1fr 34px 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 22px 18px 30px;
}

.sales-static-step {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #DCE5F0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(50,50,93,.07);
}

.sales-static-step-label {
    display: block;
    padding: 10px 9px;
    color: #fff;
    background: #0A2540;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sales-static-step-body {
    position: relative;
    flex: 1;
    min-height: 0;
    padding: 12px;
}

.sales-static-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #635BFF;
    font-size: 28px;
    font-weight: 900;
}

/* 1コマ目：住宅図面 */
.sales-static-plan {
    height: 100%;
    border-radius: 8px;
    background:
        linear-gradient(#D8E2EE 1px, transparent 1px),
        linear-gradient(90deg, #D8E2EE 1px, transparent 1px),
        #FBFDFF;
    background-size: 17px 17px;
}

.sales-static-plan::before {
    content: "";
    position: absolute;
    left: 20%;
    right: 16%;
    top: 23%;
    bottom: 22%;
    border: 5px solid #64748B;
    box-shadow:
        inset 38px 0 0 -35px #64748B,
        inset -40px 0 0 -37px #64748B,
        inset 0 35px 0 -32px #64748B;
}

.sales-static-plan::after {
    content: "図面未取得";
    position: absolute;
    right: 5px;
    bottom: 8px;
    padding: 5px 7px;
    border: 1px solid rgba(239,68,68,.45);
    border-radius: 5px;
    color: #DC2626;
    background: #FEF2F2;
    font-size: 9px;
    font-weight: 900;
    transform: rotate(-4deg);
}

/* 2コマ目：地図 */
.sales-static-map {
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    background:
        linear-gradient(24deg, transparent 45%, rgba(255,255,255,.95) 46%, rgba(255,255,255,.95) 54%, transparent 55%),
        linear-gradient(-16deg, transparent 46%, rgba(255,255,255,.9) 47%, rgba(255,255,255,.9) 54%, transparent 55%),
        #DCE8DA;
}

.sales-static-map::before {
    content: "";
    position: absolute;
    width: 42%;
    height: 145%;
    right: -15%;
    top: -24%;
    background: #C9E4FA;
    transform: rotate(14deg);
}

.sales-static-map-grid {
    position: absolute;
    inset: 12px 30px 13px 10px;
    background-image:
        linear-gradient(90deg, rgba(148,163,184,.48) 1px, transparent 1px),
        linear-gradient(rgba(148,163,184,.48) 1px, transparent 1px);
    background-size: 22px 20px;
    transform: rotate(-7deg);
}

.sales-static-pin {
    position: absolute;
    left: 52%;
    top: 40%;
    width: 23px;
    height: 23px;
    border-radius: 50% 50% 50% 0;
    background: #EF4444;
    transform: translate(-50%,-50%) rotate(-45deg);
    box-shadow: 0 8px 16px rgba(239,68,68,.30);
}

.sales-static-pin::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.sales-static-address {
    position: absolute;
    left: 7px;
    right: 7px;
    bottom: 7px;
    z-index: 2;
    padding: 7px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 5px 12px rgba(50,50,93,.12);
    color: #0A2540;
    font-size: 8px;
    font-weight: 850;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 3コマ目：概算結果 */
.sales-static-result {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 9px;
}

.sales-static-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.sales-static-metric {
    padding: 9px 7px;
    border: 1px solid #E3E9F2;
    border-radius: 7px;
    background: #fff;
}

.sales-static-metric small {
    display: block;
    margin-bottom: 5px;
    color: #64748B;
    font-size: 7px;
    font-weight: 800;
    line-height: 1.25;
}

.sales-static-metric strong {
    display: block;
    color: #635BFF;
    font-size: 19px;
    line-height: 1;
}

.sales-static-metric strong span {
    margin-left: 2px;
    color: #64748B;
    font-size: 7px;
}

.sales-static-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 12px 8px 6px;
    border: 1px solid #E3E9F2;
    border-radius: 7px;
    background: #fff;
}

.sales-static-chart i {
    flex: 1;
    display: block;
    min-width: 3px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, #635BFF 0%, #A5B4FC 100%);
}

/* OEM：LUMIQ仕様 → Leafull仕様 */
.oem-static-compare {
    height: calc(100% - 40px);
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    gap: 12px;
    padding: 20px 18px 30px;
}

.oem-static-site {
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid #DCE5F0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(50,50,93,.08);
}

.oem-static-site-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 45px;
    padding: 0 12px;
    border-bottom: 1px solid #E5EAF2;
}

.oem-static-brand {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.045em;
}

.oem-static-brand-lumiq {
    color: #0A2540;
}

.oem-static-brand-lumiq b {
    color: #635BFF;
}

.oem-static-brand-leafull {
    color: #2F6F43;
}

.oem-static-nav {
    display: flex;
    gap: 4px;
}

.oem-static-nav i {
    display: block;
    width: 17px;
    height: 4px;
    border-radius: 999px;
    background: #D5DDE9;
}

.oem-static-site-body {
    height: calc(100% - 45px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
}

.oem-static-site-lumiq .oem-static-site-body {
    background: linear-gradient(135deg, rgba(99,91,255,.12), rgba(99,91,255,.025));
}

.oem-static-site-leafull .oem-static-site-body {
    background: linear-gradient(135deg, rgba(74,142,81,.15), rgba(74,142,81,.025));
}

.oem-static-copy i {
    display: block;
    height: 7px;
    margin-bottom: 7px;
    border-radius: 999px;
    background: #C7D0DF;
}

.oem-static-copy i:first-child {
    width: 90%;
    height: 11px;
    background: #0A2540;
}

.oem-static-copy i:nth-child(2) {
    width: 66%;
}

.oem-static-copy i:nth-child(3) {
    width: 74%;
}

.oem-static-cta {
    display: inline-flex;
    margin-top: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 7px;
    font-weight: 900;
}

.oem-static-site-lumiq .oem-static-cta {
    background: #635BFF;
}

.oem-static-site-leafull .oem-static-cta {
    background: #4A8E51;
}

.oem-static-widget {
    padding: 9px;
    border: 1px solid rgba(50,50,93,.09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 16px rgba(50,50,93,.10);
}

.oem-static-widget span {
    display: block;
    height: 24px;
    margin-bottom: 8px;
    border: 1px solid #DDE5EF;
    border-radius: 6px;
    background: #F8FAFC;
}

.oem-static-widget b {
    display: block;
    height: 27px;
    border-radius: 6px;
}

.oem-static-site-lumiq .oem-static-widget b {
    background: #635BFF;
}

.oem-static-site-leafull .oem-static-widget b {
    background: #4A8E51;
}

.oem-static-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #635BFF;
    font-weight: 900;
}

.oem-static-arrow strong {
    font-size: 30px;
    line-height: 1;
}

.oem-static-arrow span {
    font-size: 8px;
    white-space: nowrap;
}

.usecase-static-caption {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    color: rgba(10,37,64,.62);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .04em;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .usecase-grid {
        max-width: 900px;
        gap: 26px;
    }
    .usecase-visual {
        height: 340px;
    }
    .usecase-browser {
        inset: 18px;
    }
    .sales-static-flow {
        grid-template-columns: 1fr 24px 1fr 24px 1fr;
        gap: 5px;
        padding: 18px 12px 27px;
    }
    .oem-static-compare {
        grid-template-columns: 1fr 32px 1fr;
        gap: 8px;
        padding: 17px 12px 27px;
    }
    .usecase-grid .testimonial-card-body {
        padding: 32px 30px 34px;
    }
}

@media (max-width: 768px) {
    .usecase-grid {
        max-width: 620px;
        gap: 28px;
    }
    .usecase-visual {
        height: 360px;
    }
    .usecase-browser {
        inset: 18px 20px;
    }
    .sales-static-flow {
        grid-template-columns: 1fr 26px 1fr 26px 1fr;
        gap: 6px;
        padding: 20px 14px 28px;
    }
    .sales-static-arrow {
        font-size: 22px;
    }
    .sales-static-step-label {
        font-size: 9px;
        padding: 8px 6px;
    }
    .oem-static-compare {
        grid-template-columns: 1fr 38px 1fr;
        gap: 9px;
        padding: 19px 14px 28px;
    }
    .oem-static-site-body {
        padding: 11px;
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .usecase-visual {
        height: 285px;
    }
    .usecase-browser {
        inset: 13px;
        border-radius: 14px;
    }
    .usecase-browser-bar {
        height: 32px;
        padding: 0 10px;
    }
    .usecase-browser-dot {
        width: 7px;
        height: 7px;
    }
    .sales-static-flow {
        height: calc(100% - 32px);
        grid-template-columns: 1fr 14px 1fr 14px 1fr;
        gap: 3px;
        padding: 13px 7px 22px;
    }
    .sales-static-step-label {
        font-size: 7px;
        padding: 6px 3px;
    }
    .sales-static-step-body {
        padding: 6px;
    }
    .sales-static-arrow {
        font-size: 14px;
    }
    .sales-static-metric strong {
        font-size: 13px;
    }
    .sales-static-metric small,
    .sales-static-metric strong span {
        font-size: 5px;
    }
    .oem-static-compare {
        height: calc(100% - 32px);
        grid-template-columns: 1fr 22px 1fr;
        gap: 4px;
        padding: 12px 7px 22px;
    }
    .oem-static-site-head {
        height: 34px;
        padding: 0 7px;
    }
    .oem-static-brand {
        font-size: 13px;
    }
    .oem-static-site-body {
        height: calc(100% - 34px);
        padding: 7px;
        gap: 4px;
    }
    .oem-static-nav i {
        width: 10px;
        height: 3px;
    }
    .oem-static-cta {
        padding: 5px 6px;
        font-size: 5px;
    }
    .oem-static-widget {
        padding: 5px;
    }
    .oem-static-widget span {
        height: 17px;
        margin-bottom: 5px;
    }
    .oem-static-widget b {
        height: 19px;
    }
    .oem-static-arrow strong {
        font-size: 18px;
    }
    .oem-static-arrow span {
        font-size: 5px;
    }
    .usecase-static-caption {
        bottom: 6px;
        font-size: 7px;
    }
    .usecase-grid .testimonial-card-body {
        padding: 28px 26px 30px;
    }
    .usecase-grid .testimonial-body {
        font-size: 15px;
    }
}

/* ── PRODUCT SCREEN SHOWCASE ── */
.sec-product-showcase {
    position: relative;
    overflow: hidden;
    padding: 118px 24px 128px;
    background:
        radial-gradient(circle at 15% 15%, rgba(99,91,255,.10), transparent 34%),
        radial-gradient(circle at 85% 85%, rgba(53,191,164,.09), transparent 34%),
        #F6F9FD;
}

.sec-product-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(10,37,64,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,37,64,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.product-showcase-in {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.product-showcase-head {
    max-width: 780px;
    margin: 0 auto 72px;
    text-align: center;
}

.product-showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #635BFF;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .17em;
}

.product-showcase-eyebrow::before,
.product-showcase-eyebrow::after {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.product-showcase-title {
    margin: 0;
    color: #0A2540;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: -.035em;
}

.product-showcase-sub {
    margin: 22px auto 0;
    max-width: 700px;
    color: #52657A;
    font-size: 17px;
    line-height: 1.95;
}

.product-screen-block {
    position: relative;
    margin-top: 78px;
}

.product-screen-block:first-of-type {
    margin-top: 0;
}

.product-screen-copy {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    width: min(930px, 100%);
    margin: 0 auto 30px;
}

.product-screen-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(99,91,255,.20);
    border-radius: 24px;
    color: #635BFF;
    background: rgba(255,255,255,.82);
    box-shadow: 0 14px 35px rgba(50,50,93,.10);
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.product-screen-kicker {
    display: block;
    margin-bottom: 8px;
    color: #635BFF;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.product-screen-heading {
    margin: 0;
    color: #0A2540;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -.025em;
}

.product-screen-description {
    margin: 12px 0 0;
    color: #52657A;
    font-size: 16px;
    line-height: 1.9;
}

.product-browser {
    position: relative;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(50,50,93,.12);
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    box-shadow:
        0 36px 90px rgba(30,55,90,.18),
        0 8px 22px rgba(30,55,90,.08);
}

.product-browser-top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 12px;
}

.product-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.product-browser-dot:nth-child(1) { background: #FF6B6B; }
.product-browser-dot:nth-child(2) { background: #FFD166; }
.product-browser-dot:nth-child(3) { background: #55C57A; }

.product-browser-address {
    width: min(420px, 50%);
    height: 12px;
    margin-left: 10px;
    border-radius: 999px;
    background: #E7ECF3;
}

.product-screen-image-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(50,50,93,.08);
    border-radius: 16px;
    background: #fff;
}

.product-screen-image {
    display: block;
    width: 100%;
    height: auto;
}

.product-screen-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    color: #fff;
    background: rgba(10,37,64,.88);
    box-shadow: 0 10px 25px rgba(10,37,64,.22);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.product-screen-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #62E6C8;
    box-shadow: 0 0 0 4px rgba(98,230,200,.16);
}

.product-screen-badge.badge-input {
    left: 4%;
    top: 12%;
}

.product-screen-badge.badge-map {
    right: 8%;
    top: 15%;
}

.product-screen-badge.badge-result {
    left: 5%;
    top: 12%;
}

.product-screen-badge.badge-slider {
    right: 4%;
    top: 22%;
}

.product-screen-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: min(980px, 100%);
    margin: 28px auto 0;
}

.product-screen-feature {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 20px 20px;
    border: 1px solid rgba(50,50,93,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 25px rgba(50,50,93,.055);
}

.product-screen-feature-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #635BFF;
    background: rgba(99,91,255,.10);
    font-size: 16px;
    font-weight: 900;
}

.product-screen-feature strong {
    display: block;
    margin-bottom: 5px;
    color: #0A2540;
    font-size: 14px;
    line-height: 1.45;
}

.product-screen-feature p {
    margin: 0;
    color: #6B7C8F;
    font-size: 12px;
    line-height: 1.7;
}

.product-screen-plan-note {
    width: min(920px, 100%);
    margin: 24px auto 0;
    padding: 15px 18px;
    border: 1px solid rgba(99,91,255,.16);
    border-radius: 12px;
    color: #596A7D;
    background: rgba(99,91,255,.055);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
}

.product-screen-plan-note strong {
    color: #0A2540;
}

@media (max-width: 900px) {
    .sec-product-showcase {
        padding: 92px 20px 102px;
    }

    .product-showcase-head {
        margin-bottom: 56px;
    }

    .product-screen-copy {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 20px;
    }

    .product-screen-number {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        font-size: 23px;
    }

    .product-browser {
        padding: 10px;
        border-radius: 20px;
    }

    .product-screen-features {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .sec-product-showcase {
        padding: 76px 16px 84px;
    }

    .product-showcase-title {
        font-size: 30px;
    }

    .product-showcase-sub {
        font-size: 15px;
        line-height: 1.85;
    }

    .product-screen-block {
        margin-top: 64px;
    }

    .product-screen-copy {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 22px;
    }

    .product-screen-number {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 19px;
    }

    .product-screen-heading {
        font-size: 24px;
    }

    .product-screen-description {
        font-size: 14px;
    }

    .product-browser {
        margin-left: -8px;
        width: calc(100% + 16px);
        padding: 7px;
        border-radius: 16px;
    }

    .product-browser-top {
        height: 30px;
        padding: 0 7px;
        gap: 5px;
    }

    .product-browser-dot {
        width: 7px;
        height: 7px;
    }

    .product-screen-image-wrap {
        border-radius: 10px;
    }

    .product-screen-badge {
        display: none;
    }

    .product-screen-feature {
        padding: 17px;
    }

    .product-screen-plan-note {
        font-size: 11px;
        text-align: left;
    }
}

/* ── LUMIQ BRAND PRONUNCIATION ── */
ruby.lumiq-ruby {
    ruby-position: over;
    ruby-align: center;
    white-space: nowrap;
}

ruby.lumiq-ruby rt {
    color: currentColor;
    font-family: "Noto Sans JP", sans-serif;
    font-size: .30em;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .14em;
    opacity: .62;
}

ruby.lumiq-ruby rp {
    display: none;
}

/* ヘッダー・フッターのブランドロゴ */
.sim-hd-logo ruby.lumiq-ruby rt,
.sim-ft-logo ruby.lumiq-ruby rt {
    font-size: 8px;
    letter-spacing: .18em;
    opacity: .52;
}

.sim-hd-logo ruby.lumiq-ruby {
    margin-top: 3px;
}

/* 大見出し内では読みを少し強く表示 */
.sec-title ruby.lumiq-ruby rt,
.product-showcase-title ruby.lumiq-ruby rt,
.development-story h3 ruby.lumiq-ruby rt,
.trial-title ruby.lumiq-ruby rt {
    font-size: .27em;
    letter-spacing: .17em;
    opacity: .58;
}

/* 暗背景上の表記 */
.sec-feature ruby.lumiq-ruby rt,
.sim-ft ruby.lumiq-ruby rt {
    opacity: .68;
}

/* ルビ追加による見出しの窮屈さを防止 */
.sec-title:has(ruby.lumiq-ruby),
.product-showcase-title:has(ruby.lumiq-ruby),
.development-story h3:has(ruby.lumiq-ruby),
.trial-title:has(ruby.lumiq-ruby) {
    padding-top: .28em;
}

@media (max-width: 640px) {
    ruby.lumiq-ruby rt {
        font-size: .32em;
    }

    .sim-hd-logo ruby.lumiq-ruby rt,
    .sim-ft-logo ruby.lumiq-ruby rt {
        font-size: 7px;
    }
}


/* Rendering performance */
.sec-product-showcase::before {
    display: none;
}

/* =========================================================
   FAQ
   ========================================================= */
/* ── FAQ SECTION ── */
.sec-faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(50,50,93,0.08); padding: 32px 0; }
.faq-item:first-child { border-top: 1px solid rgba(50,50,93,0.08); }
.faq-q { display: flex; align-items: flex-start; gap: 16px; cursor: pointer; }
.faq-q-icon { width: 28px; height: 28px; min-width: 28px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 900; margin-top: 2px; }
.faq-q-text { font-size: 17px; font-weight: 700; color: var(--black); line-height: 1.5; flex: 1; }
.faq-a { display: flex; align-items: flex-start; gap: 16px; margin-top: 16px; padding-left: 0; }
.faq-a-icon { width: 28px; height: 28px; min-width: 28px; background: rgba(99,91,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 13px; font-weight: 900; margin-top: 2px; }
.faq-a-text { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 500; flex: 1; }

/* =========================================================
   Contact form
   ========================================================= */
/* ── CONTACT SECTION ── */
.biz-contact-section { background: #0A2540; padding: 160px 24px; position: relative; overflow: hidden; }
.biz-contact-section::before { content: ""; position: absolute; bottom: -20%; right: -10%; width: 440px; height: 440px; opacity: .55; background: radial-gradient(circle, rgba(99, 91, 255, 0.2) 0%, transparent 60%); z-index: 0; }
.biz-contact-in { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.biz-contact-label { font-size: 13px; font-weight: 800; letter-spacing: .15em; color: var(--accent); margin-bottom: 16px; display: block; text-align: center; }
.biz-contact-title { font-size: clamp(32px, 4.5vw, 44px); font-weight: 900; color: var(--white); line-height: 1.3; letter-spacing: -.03em; margin-bottom: 16px; text-align: center; }
.biz-contact-sub { font-size: 16px; color: #adbdcc; line-height: 1.65; margin-bottom: 56px; text-align: center; font-weight: 500; }
.biz-contact-box { background: #15314F; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 48px; box-shadow: 0 30px 60px rgba(0,0,0,0.2); }
.biz-form-group { margin-bottom: 24px; }
.biz-form-label { display: block; font-size: 14px; font-weight: 700; color: rgba(255, 255, 255, 0.95); margin-bottom: 8px; }
.biz-form-label span.req { background: rgba(99, 91, 255, 0.3); color: #E6EBFC; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 800; }
.biz-form-label span.opt { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-left: 8px; font-weight: 700; }
.biz-plan-campaign { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 8px; letter-spacing: 0.01em; background: rgba(0,212,178,0.08); border: 1px solid rgba(0,212,178,0.25); border-radius: 8px; padding: 8px 16px; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.biz-plan-campaign s { color: rgba(255,255,255,0.35); font-weight: 400; text-decoration-color: rgba(255,255,255,0.5); }
.biz-form-control { width: 100%; padding: 14px 16px; font-size: 15px; background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #ffffff !important; transition: all 0.25s ease; font-family: inherit; -webkit-text-fill-color: #ffffff !important; }
.biz-form-control::placeholder { color: rgba(255,255,255,0.3) !important; -webkit-text-fill-color: rgba(255,255,255,0.3) !important; }
.biz-form-control:-webkit-autofill,
.biz-form-control:-webkit-autofill:hover,
.biz-form-control:-webkit-autofill:focus,
.biz-form-control:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #0d2847 inset !important;
    box-shadow: 0 0 0px 1000px #0d2847 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.15) !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
.biz-form-control:focus { outline: none; background: rgba(255,255,255,0.1) !important; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(99,91,255,0.3); -webkit-text-fill-color: #ffffff !important; }
textarea.biz-form-control { min-height: 120px; resize: vertical; }
select.biz-form-control { appearance: none; cursor: pointer; }
select.biz-form-control option { background: #0A2540; color: #fff; }
.biz-form-submit { width: 100%; background: var(--blue); color: var(--white); border: none; border-radius: 8px; padding: 16px; font-size: 16px; font-weight: 800; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3); margin-top: 12px; font-family: inherit; }
.biz-form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4); }
.biz-form-note { font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-top: 16px; text-align: center; }
.biz-form-note a { color: rgba(255, 255, 255, 0.6); text-decoration: underline; }
.biz-form-error { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); border-radius: 8px; padding: 14px 16px; font-size: 14px; color: #FCA5A5; margin-bottom: 24px; font-weight: 600; }
.biz-form-success { text-align: center; padding: 32px 0; }
.biz-form-success-icon { width: 56px; height: 56px; background: rgba(0, 212, 178, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.biz-form-success-icon svg { width: 24px; height: 24px; color: var(--accent); }
.biz-form-success-title { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.biz-form-success-body { font-size: 15px; color: #adbdcc; line-height: 1.7; }
.biz-form-success-title { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.biz-form-success-links { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.biz-form-success-links-title { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; letter-spacing: 0.08em; text-transform: uppercase; }
.biz-form-success-cards { display: flex; gap: 12px; }
.biz-form-success-card { flex: 1; display: flex; flex-direction: column; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; text-decoration: none; transition: .25s; }
.biz-form-success-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.biz-form-success-card-icon { font-size: 24px; margin-bottom: 4px; }
.biz-form-success-card-title { font-size: 14px; font-weight: 800; color: var(--white); }
.biz-form-success-card-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; flex: 1; }
.biz-form-success-card-arrow { font-size: 13px; color: var(--accent); font-weight: 700; margin-top: 8px; }
@media (max-width: 600px) { .biz-form-success-cards { flex-direction: column; } }

/* =========================================================
   Footer
   ========================================================= */

.sim-ft {
    padding: 80px 0 40px;
    border-top: 0;
    background: #0A1930;
}

.sim-ft-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.sim-ft-simple {
    margin-bottom: 60px;
    text-align: center;
}

.sim-ft-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 12px;
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.sim-ft-logo .dot {
    color: #3B82F6;
}

.sim-ft-desc {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .50);
    font-size: 14px;
    font-weight: 400;
    line-height: 2.2;
    text-align: center;
}

.sim-ft-desc strong {
    color: var(--white);
    font-weight: 700;
}

.sim-ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.sim-ft-copy {
    color: rgba(255, 255, 255, .30);
    font-size: 12px;
    letter-spacing: .06em;
}

.sim-ft-legal a {
    margin-left: 28px;
    color: rgba(255, 255, 255, .50);
    font-size: 12px;
}

.sim-ft-legal a:hover {
    color: var(--white);
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9800;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    color: #fff;
    background: #0A2540;
    box-shadow:
        0 14px 34px rgba(10,37,64,.20),
        0 4px 12px rgba(10,37,64,.10);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease,
        background-color .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #4F46E5;
    transform: translateY(-2px);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(99,91,255,.28);
    outline-offset: 4px;
}

.back-to-top-arrow {
    position: relative;
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
}

.back-to-top-arrow::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg);
}

.back-to-top-label {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .12em;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }

    .back-to-top-label {
        font-size: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .sim-hd-in {
        padding-inline: 18px;
        gap: 12px;
    }

    .section-jump-link {
        padding-inline: 8px;
        font-size: 10px;
    }

    .sim-hd-cta {
        padding-inline: 14px;
    }

    .b2b-hero {
        min-height: auto;
        padding-top: 112px;
    }

    .b2b-hero-in {
        flex-direction: column;
        gap: 52px;
        text-align: center;
    }

    .b2b-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 650px;
    }

    .b2b-microcopy,
    .hero-trust-row {
        justify-content: center;
    }

    .b2b-hero-visual {
        width: min(760px, 100%);
        max-width: 760px;
    }

    .hero-product-browser {
        transform: none;
    }

    .sec-feature-in {
        flex-direction: column;
        gap: 48px;
    }

    .feature-visual {
        width: 100%;
    }

    .feature-list .sec-title {
        text-align: center !important;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    html {
        scroll-padding-top: 82px;
    }

    .sim-hd-in {
        padding-inline: 14px;
        gap: 9px;
    }

    .sim-hd-logo {
        font-size: 20px;
    }

    .sim-hd-product-name {
        display: none;
    }

    .header-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .sim-hd-cta {
        padding: 9px 12px;
        font-size: 10px;
    }

    .section-jump-nav {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        padding: 8px 10px 10px;
        border-top: 1px solid rgba(10, 37, 64, .07);
        border-bottom: 1px solid rgba(10, 37, 64, .10);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 14px 28px rgba(30, 55, 90, .10);
    }

    .section-jump-nav.is-open {
        display: block;
    }

    .section-jump-nav-in {
        justify-content: flex-start;
        padding: 0;
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .section-jump-nav-in::-webkit-scrollbar {
        display: none;
    }

    .section-jump-link {
        padding: 10px 12px;
        font-size: 11px;
    }

    #product-screen,
    #flow,
    #solutions,
    #trial,
    #pricing,
    #faq,
    #contact {
        scroll-margin-top: 82px;
    }
}

@media (max-width: 768px) {
    .pc-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .section {
        padding: 80px 20px;
    }

    .sec-title {
        margin-bottom: 12px;
        font-size: clamp(24px, 6vw, 32px);
    }

    .sec-sub {
        margin-bottom: 48px;
        font-size: 15px;
    }

    .b2b-hero {
        min-height: auto;
        padding: 92px 18px 66px;
    }

    .b2b-hero-bg::after {
        height: 70px;
    }

    .b2b-hero-in {
        gap: 36px;
    }

    .b2b-hero-label {
        margin-bottom: 18px;
    }

    .b2b-title {
        margin-bottom: 22px;
        font-size: clamp(29px, 8vw, 40px);
        line-height: 1.42;
    }

    .b2b-sub {
        margin-bottom: 26px;
        font-size: 15px;
        line-height: 1.85;
    }

    .b2b-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
        text-align: center;
    }

    .b2b-hero-visual {
        display: block;
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .hero-product-stage {
        padding: 10px 0 34px;
    }

    .hero-product-browser {
        border-radius: 14px;
    }

    .hero-product-browser-top {
        height: 31px;
        padding: 0 10px;
        gap: 5px;
    }

    .hero-product-browser-top i {
        width: 7px;
        height: 7px;
    }

    .hero-product-live {
        top: -2px;
        right: 4px;
        padding: 7px 10px;
        font-size: 9px;
    }

    .hero-result-preview {
        right: 4px;
        width: 47%;
        border-radius: 12px;
    }

    .hero-result-preview-label {
        padding: 7px 9px;
        font-size: 8px;
    }

    .hero-result-preview-label span {
        font-size: 7px;
    }

    .hero-result-preview-image {
        height: 86px;
    }

    .hero-product-chip {
        left: 3px;
        bottom: 12px;
        padding: 8px 10px;
        font-size: 9px;
    }

    .hero-product-chip strong {
        font-size: 14px;
    }

    .hero-trust-row {
        margin-top: 20px;
        font-size: 11px;
    }

    .sec-feature {
        padding: 80px 20px;
    }

    .pricing-saas-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        gap: 28px;
    }

    .price-card.recommended {
        order: -1;
        transform: none;
    }

    .price-card.recommended:hover {
        transform: translateY(-4px);
    }

    .biz-contact-section {
        padding: 100px 20px;
    }

    .biz-contact-box {
        padding: 32px 20px;
    }

    .biz-form-control {
        font-size: 16px;
    }

    .sim-ft-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sim-ft-legal a {
        margin: 0 12px;
    }
}

@media (max-width: 480px) {
    .sim-hd-logo {
        font-size: 19px;
    }

    .header-menu-toggle {
        width: 37px;
        height: 37px;
        font-size: 10px;
    }

    .sim-hd-cta {
        max-width: 115px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section {
        padding: 64px 16px;
    }

    .b2b-hero {
        padding: 82px 14px 54px;
    }

    .b2b-title {
        font-size: clamp(24px, 7vw, 30px);
    }

    .hero-result-preview {
        width: 50%;
    }

    .hero-product-live {
        display: none;
    }

    .hero-product-chip {
        max-width: 150px;
        text-align: left;
    }

    .sec-feature {
        padding: 64px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .back-to-top {
        transition: none;
    }
}
