/* =========================================
   GRAVITY LP（統合版）：GRAVITY_LP デザインシステム準拠
   青系・シンプル・信頼感・高可読性
   ========================================= */
:root {
    /* Colors */
    --b-primary: #0f172a;     /* Deep Navy */
    --b-secondary: #334155;   /* Slate Gray */
    --b-accent: #2563eb;      /* Vivid Blue */
    --b-accent-hover: #1d4ed8;
    --b-bg: #f8fafc;          /* Ice Gray Background */
    --b-white: #ffffff;
    --b-border: #e2e8f0;
    --b-text: #1e293b;
    --b-text-light: #64748b;
    --b-danger: #ef4444;      /* Red for alerts/losses */
    --b-danger-light: #fef2f2;

    /* Typography */
    --b-font: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Effects */
    --b-radius: 12px;
    --b-radius-lg: 20px;
    --b-shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --b-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --b-shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.08), 0 10px 15px -5px rgba(0, 0, 0, 0.03);
    --b-shadow-blue: 0 12px 30px -10px rgba(37, 99, 235, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--b-font);
    color: var(--b-text);
    background: var(--b-bg);
    font-size: 16px;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; }
.text-center { text-align: center; }

/* ========== Header ========== */
.b-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.b-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.b-brand {
    font-weight: 800;
    font-size: 22px;
    color: var(--b-primary);
    letter-spacing: -0.03em;
}
.b-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.b-nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--b-secondary);
    position: relative;
    padding: 8px 0;
}
.b-nav-link:hover { color: var(--b-accent); }
.b-nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--b-accent); transition: 0.3s ease;
}
.b-nav-link:hover::after { width: 100%; }

.b-header .b-btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--b-accent);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}
.b-header .b-btn:hover {
    background: var(--b-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* ========== Hero ========== */
.b-hero {
    padding: 120px 0 140px;
    background:
        radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, var(--b-bg) 100%);
    position: relative;
    overflow: hidden;
}
.b-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--b-border) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
    pointer-events: none;
}
.b-hero-inner {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.b-hero h1 {
    font-size: 42px;
    line-height: 1.4;
    color: var(--b-primary);
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    font-feature-settings: "palt";
    text-wrap: balance;
}
.b-hero h1 .b-hero-highlight {
    font-weight: 900;
    display: block;
    margin-top: 0.1em;
    background: linear-gradient(135deg, var(--b-primary) 0%, var(--b-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.b-hero-lead {
    font-size: 18px;
    color: var(--b-text);
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 2.1;
}
.b-hero-lead strong {
    background: linear-gradient(transparent 65%, rgba(37, 99, 235, 0.15) 65%);
    color: var(--b-primary);
}
.b-hero .b-cta-single {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 56px;
    background: var(--b-accent);
    color: white;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: var(--b-shadow-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.b-hero .b-cta-single:hover {
    background: var(--b-accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.5);
}

/* ========== Section 共通 ========== */
.b-section { padding: 120px 0; }
.b-section:nth-child(even) { background: var(--b-white); }
.b-section-label {
    display: table;
    margin: 0 auto 20px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--b-accent);
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
}
.b-section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--b-primary);
    max-width: 20em;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    line-height: 1.4;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

/* ========== Problem ========== */
.b-problem-copy {
    font-size: 18px;
    line-height: 2.1;
    color: var(--b-text);
    margin-bottom: 56px;
    font-weight: 500;
}
.b-problem-copy strong {
    color: var(--b-accent);
    background: linear-gradient(transparent 70%, rgba(37, 99, 235, 0.1) 70%);
}

.b-quant-box {
    background: var(--b-white);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--b-radius-lg);
    padding: 48px;
    margin-top: 56px;
    box-shadow: var(--b-shadow-lg);
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.b-quant-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%;
    background: var(--b-danger); z-index: 1;
}
.b-quant-box::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--b-danger-light) 0%, transparent 100%);
    opacity: 0.6; z-index: 0;
}
.b-quant-box > * { position: relative; z-index: 2; }

.b-quant-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 16px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(239, 68, 68, 0.25);
}
.b-quant-row:last-of-type { border-bottom: none; }
.b-quant-row strong {
    color: var(--b-primary);
    min-width: 200px;
    font-weight: 800;
}
.b-quant-row span {
    color: var(--b-danger);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.7;
}

/* ========== Gap — 感情的トーン（経営者の徒労感に訴える） ========== */
.b-gap-section {
    background: linear-gradient(180deg, #f8f6f3 0%, #f1eeea 100%) !important;
}
.b-gap-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    margin: 40px auto 56px;
}
.b-gap-item {
    padding: 28px 32px;
    background: var(--b-white);
    border-radius: var(--b-radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--b-shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.b-gap-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: #d4c5b0;
}
.b-gap-item:hover {
    box-shadow: var(--b-shadow);
    border-color: rgba(180, 160, 130, 0.3);
}
.b-gap-item:hover::before {
    background: #a08b6e;
}
.b-gap-tried {
    font-size: 17px;
    font-weight: 700;
    color: var(--b-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.b-gap-tried::before {
    content: '──';
    color: #b8a58e;
    font-weight: 400;
    font-size: 14px;
}
.b-gap-but {
    font-size: 16px;
    color: #6b5c4c;
    font-weight: 500;
    line-height: 1.8;
    font-style: italic;
    padding-left: 32px;
}
.b-gap-conclusion {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px;
    background: var(--b-accent);
    color: white;
    border-radius: var(--b-radius-lg);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    box-shadow: var(--b-shadow-blue);
}

/* ========== Solution ========== */
.b-solution { background: var(--b-white) !important; }
.b-solution-copy {
    font-size: 18px;
    line-height: 2.1;
    color: var(--b-text);
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
}
.b-solution-copy p { margin-bottom: 2em; }
.b-solution-copy p:last-child { margin-bottom: 0; }
.b-solution-copy strong {
    color: var(--b-accent);
    background: linear-gradient(transparent 70%, rgba(37, 99, 235, 0.1) 70%);
}

/* ========== Promise ========== */
.b-promise-copy { font-size: 18px; line-height: 2.1; margin-bottom: 40px; }
.b-promise-copy p { margin-bottom: 1.5em; }
.b-promise-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 640px;
    margin: 0 auto 32px;
}
.b-promise-list li {
    padding: 24px 0;
    border-bottom: 1px solid var(--b-border);
    font-size: 17px;
    color: var(--b-primary);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.b-promise-list li:first-child { border-top: 1px solid var(--b-border); }
.b-promise-list li::before {
    content: '\eb7a';
    font-family: 'remixicon';
    font-size: 22px;
    color: var(--b-accent);
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(37, 99, 235, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ========== Plans (NEW: 2-plan cards) ========== */
.b-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}
.b-plan-card {
    padding: 48px 36px;
    background: var(--b-white);
    border-radius: var(--b-radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--b-shadow);
    position: relative;
    transition: all 0.4s ease;
}
.b-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--b-shadow-lg);
}
.b-plan-card.b-plan-recommended {
    border: 2px solid var(--b-accent);
    box-shadow: var(--b-shadow-lg);
    margin-top: -2px;
}
.b-plan-card.b-plan-recommended:hover {
    box-shadow: 0 24px 48px -12px rgba(37, 99, 235, 0.2);
}
.b-plan-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--b-primary);
    margin-bottom: 8px;
}
.b-plan-tagline {
    font-size: 15px;
    color: var(--b-text-light);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.7;
}
.b-plan-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--b-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.b-plan-recommended .b-plan-price { color: var(--b-accent); }
.b-plan-price-unit {
    font-size: 14px;
    color: var(--b-text-light);
    font-weight: 700;
    margin-bottom: 32px;
    display: block;
}
.b-plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.b-plan-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.7;
}
.b-plan-feature-num {
    font-size: 13px;
    font-weight: 900;
    color: var(--b-accent);
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50px;
    flex-shrink: 0;
    margin-top: 2px;
}
.b-plan-feature-name { font-weight: 700; color: var(--b-primary); }
.b-plan-feature-desc { color: var(--b-text-light); font-weight: 500; }
.b-plan-feature-note {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--b-text-light);
    line-height: 1.8;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--b-accent);
}

/* ========== Scope (NEW) ========== */
.b-scope-block {
    margin-bottom: 80px;
    padding: 48px;
    background: var(--b-white);
    border-radius: var(--b-radius-lg);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--b-shadow);
}
.b-scope-block h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    color: var(--b-primary);
}
.b-scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}
.b-scope-tag {
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--b-accent);
}
.b-scope-note {
    font-size: 14px;
    color: var(--b-text-light);
    text-align: center;
    line-height: 2;
    font-weight: 500;
}
.b-scope-philosophy {
    margin-top: 32px;
    padding: 32px;
    background: #f8fafc;
    border-radius: var(--b-radius);
    border: 1px solid var(--b-border);
}
.b-scope-philosophy h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--b-primary);
    margin-bottom: 16px;
    text-align: center;
}
.b-scope-philosophy p {
    font-size: 15px;
    color: var(--b-text);
    line-height: 2;
    margin-bottom: 12px;
}
.b-scope-philosophy p:last-child { margin-bottom: 0; }

/* ========== Time ROI Callout ========== */
.b-time-roi {
    max-width: 760px;
    margin: 0 auto 80px;
    padding: 40px 48px;
    background: var(--b-white);
    border-radius: var(--b-radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: var(--b-shadow);
    position: relative;
    overflow: hidden;
}
.b-time-roi::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--b-accent);
}
.b-time-roi h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--b-primary);
    margin-bottom: 20px;
}
.b-time-roi-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}
.b-time-roi-before,
.b-time-roi-after {
    padding: 20px 24px;
    border-radius: var(--b-radius);
    font-size: 15px;
    line-height: 1.8;
}
.b-time-roi-before {
    background: #fef2f2;
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--b-text);
}
.b-time-roi-after {
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--b-text);
}
.b-time-roi-arrow {
    font-size: 24px;
    color: var(--b-accent);
    font-weight: 700;
    align-self: center;
}
.b-time-roi-conclusion {
    font-size: 16px;
    font-weight: 700;
    color: var(--b-accent);
    text-align: center;
    margin: 0;
}

/* ========== Checkbox Form ========== */
.b-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.b-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 14px 20px;
    background: #f8fafc;
    border: 2px solid var(--b-border);
    border-radius: var(--b-radius);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--b-text);
    transition: all 0.2s ease;
    line-height: 1.5;
}
.b-checkbox-group label:hover {
    border-color: var(--b-accent);
    background: #eff6ff;
}
.b-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin: 0;
    margin-right: 16px;
    padding: 0;
    flex-shrink: 0;
    accent-color: var(--b-accent);
    vertical-align: middle;
    cursor: pointer;
}
.b-checkbox-group input[type="checkbox"]:checked + span {
    color: var(--b-primary);
    font-weight: 700;
}

/* ========== Deliverables Pipeline — 成果物パイプライン ========== */
.b-deliverables {
    margin-top: 56px;
    padding: 40px;
    background: var(--b-white);
    border-radius: var(--b-radius-lg);
    border: 1px solid var(--b-border);
}
.b-deliverables h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--b-primary);
    text-align: center;
    margin-bottom: 8px;
}
.b-deliverables-lead {
    text-align: center;
    color: var(--b-text-light);
    font-size: 14px;
    margin-bottom: 32px;
}
.b-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.b-deliverable-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 16px;
    background: var(--b-bg);
    border-radius: var(--b-radius);
    border: 1px solid var(--b-border);
    text-align: center;
}
.b-deliverable-timing {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--b-accent);
    text-transform: uppercase;
}
.b-deliverable-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--b-primary);
    line-height: 1.4;
}
.b-deliverable-desc {
    font-size: 13px;
    color: var(--b-text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .b-deliverables {
        padding: 24px 16px;
    }
    .b-deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .b-deliverables-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Compare Table — 合理的トーン（機能と価格の比較） ========== */
.b-compare-header {
    text-align: center;
    margin-bottom: 32px;
}
.b-compare-label {
    display: table;
    margin: 0 auto 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--b-accent);
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.06);
    padding: 6px 16px;
    border-radius: 50px;
}
.b-compare-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--b-primary);
    letter-spacing: -0.02em;
}
.b-compare-table {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background: var(--b-white);
    border-radius: var(--b-radius-lg);
    box-shadow: var(--b-shadow);
    border: 1px solid rgba(0,0,0,0.06);
}
.b-compare-table th,
.b-compare-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--b-border);
    text-align: left;
    line-height: 1.7;
}
.b-compare-table th:nth-child(2),
.b-compare-table td:nth-child(2) {
    white-space: nowrap;
}
.b-compare-table th {
    background: #f8fafc;
    font-weight: 800;
    color: var(--b-secondary);
    border-bottom: 2px solid var(--b-border);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.b-compare-table th:first-child { border-top-left-radius: var(--b-radius-lg); }
.b-compare-table th:last-child { border-top-right-radius: var(--b-radius-lg); }
.b-compare-table tr:last-child td:first-child { border-bottom-left-radius: var(--b-radius-lg); }
.b-compare-table tr:last-child td:last-child { border-bottom-right-radius: var(--b-radius-lg); }
.b-compare-table tr.b-compare-highlight td {
    background: #eff6ff;
    font-weight: 700;
    color: var(--b-primary);
}
.b-compare-table tr.b-compare-highlight td:first-child {
    border-left: 4px solid var(--b-accent);
    color: var(--b-accent);
}

/* ========== ROI Badge (reused for plan) ========== */
.b-roi-badge {
    position: absolute;
    top: -16px;
    left: 36px;
    background: var(--b-accent);
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 2;
}

/* ========== Profile ========== */
.b-cred {
    display: flex;
    gap: 48px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
}
.b-cred-left {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.b-cred-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    margin: 0 auto;
    background: var(--b-border);
    background-size: cover;
    background-position: top center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 6px solid var(--b-white);
}
.b-cred-right {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.b-cred h2 { font-size: 32px; margin-bottom: 8px; letter-spacing: -0.02em; }
.b-cred .b-name {
    font-size: 16px;
    color: var(--b-accent);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    display: inline-block;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--b-border);
}
.b-cred .b-bio {
    color: var(--b-text);
    line-height: 2.1;
    font-size: 16px;
}
.b-cred .b-bio p { margin-bottom: 1.5em; }
.b-cred .b-bio p:last-child { margin-bottom: 0; }
.b-cred-career {
    padding: 32px;
    background: #f8fafc;
    border-radius: var(--b-radius);
    border: 1px solid var(--b-border);
}
.b-cred-career ul { list-style: none; }
.b-cred-career li {
    font-size: 14px;
    color: var(--b-secondary);
    margin-bottom: 14px;
    padding-left: 1.5em;
    text-indent: -1.5em;
    line-height: 1.7;
    font-weight: 500;
}
.b-cred-career li:last-child { margin-bottom: 0; }
.b-cred-career li::before { content: '•'; margin-right: 8px; color: var(--b-accent); font-weight: bold; font-size: 18px; }

/* ========== Trial CTA ========== */
.b-trial-section {
    background: var(--b-white) !important;
    padding-top: 80px;
}
.b-trial-copy { font-size: 18px; line-height: 2.1; margin-bottom: 56px; }
.b-trial-copy p { margin-bottom: 1.5em; }
.b-trial-copy strong {
    color: var(--b-accent);
    background: linear-gradient(transparent 70%, rgba(37, 99, 235, 0.1) 70%);
}

.b-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
    justify-content: center;
}
.b-steps .b-step {
    background: var(--b-white);
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.06);
    font-size: 15px;
    font-weight: 700;
    color: var(--b-primary);
    box-shadow: var(--b-shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.b-steps .b-step::before {
    content: '\eb7a'; font-family: 'remixicon'; color: var(--b-accent); font-size: 20px; font-weight: normal;
}

.b-form-card {
    background: var(--b-white);
    border-radius: 24px;
    box-shadow: var(--b-shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 56px;
    max-width: 680px;
    margin: 0 auto;
}
.b-form-card h2 { font-size: 26px; color: var(--b-primary); margin-bottom: 20px; text-align: center; letter-spacing: -0.02em; }
.b-form-group { margin-bottom: 32px; }
.b-form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--b-primary);
}
.b-form-group input,
.b-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--b-border);
    border-radius: var(--b-radius);
    font-size: 16px;
    font-family: var(--b-font);
    background: #f8fafc;
    transition: all 0.3s ease;
    color: var(--b-primary);
}
.b-form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.b-form-group input:focus,
.b-form-group textarea:focus {
    outline: none;
    border-color: var(--b-accent);
    background: var(--b-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.b-form-card .b-btn-submit {
    width: 100%;
    padding: 22px;
    background: var(--b-accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--b-shadow-blue);
}
.b-form-card .b-btn-submit:hover {
    background: var(--b-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

/* ========== FAQ ========== */
.b-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.b-faq-item {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--b-radius-lg);
    overflow: hidden;
    background: var(--b-white);
    transition: all 0.3s ease;
    box-shadow: var(--b-shadow-sm);
}
.b-faq-item:hover { border-color: rgba(37, 99, 235, 0.3); box-shadow: var(--b-shadow); }
.b-faq-item summary {
    padding: 28px 32px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--b-primary);
    font-size: 17px;
}
.b-faq-item summary::-webkit-details-marker { display: none; }
.b-faq-item summary::after {
    content: '+'; font-size: 24px; color: var(--b-accent); font-weight: 400; transition: transform 0.4s ease;
}
.b-faq-item[open] summary::after { transform: rotate(45deg); }
.b-faq-item[open] summary { background: #f8fafc; color: var(--b-accent); border-bottom: 1px solid var(--b-border); }
.b-faq-item .b-answer {
    padding: 32px;
    font-size: 16px;
    color: var(--b-text);
    line-height: 2;
    background: var(--b-white);
}

/* ========== CTA Final ========== */
.b-cta {
    background: var(--b-primary);
    color: white;
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.b-cta::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
}
.b-cta > * { position: relative; z-index: 1; }

.b-cta h2 { font-size: 40px; margin-bottom: 24px; letter-spacing: -0.02em; font-weight: 900; }
.b-cta p { opacity: 0.9; font-size: 18px; margin-bottom: 56px; line-height: 2; }
.b-cta-btns .b-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 56px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.b-cta-btns .b-btn-primary {
    background: white;
    color: var(--b-primary);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.b-cta-btns .b-btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

/* ========== Footer ========== */
.b-footer {
    background: #020617;
    color: #94a3b8;
    padding: 48px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.b-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.b-footer-links { display: flex; gap: 32px; }
.b-footer-links a:hover { color: white; transition: 0.3s; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .b-header-inner { height: auto; padding: 16px 0; gap: 16px; flex-wrap: wrap; }
    .b-header-nav { width: 100%; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .b-header .b-btn { width: 100%; text-align: center; }
    .b-hero h1 { font-size: 34px; }
    .b-hero-lead { font-size: 17px; line-height: 2; }

    .b-plans { grid-template-columns: 1fr; gap: 48px; margin-top: 16px; }
    .b-plan-card { padding: 36px 28px; }
    .b-roi-badge { left: 28px; }

    .b-cred { flex-direction: column; align-items: center; text-align: center; gap: 40px; }
    .b-cred-left { width: 100%; align-items: center; }
    .b-cred-img { margin-bottom: 0; }
    .b-cred-career { text-align: left; width: 100%; }

    .b-footer-inner { flex-direction: column; gap: 24px; }

    .b-compare-table { font-size: 14px; display: block; overflow-x: auto; white-space: nowrap; }
    .b-compare-table th, .b-compare-table td { padding: 16px 20px; }

    .b-gap-item { padding: 20px 24px; }
    .b-gap-but { padding-left: 24px; }
    .b-gap-conclusion { font-size: 18px; padding: 32px; }

    .b-scope-block { padding: 32px 24px; }
    .b-scope-tags { gap: 6px; }
    .b-scope-tag { padding: 5px 10px; font-size: 12px; }

    .b-time-roi { padding: 32px 24px; }
    .b-time-roi-compare { grid-template-columns: 1fr; gap: 16px; }
    .b-time-roi-arrow { text-align: center; }
}
@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .b-section { padding: 80px 0; }
    .b-hero { padding: 80px 0 100px; }
    .b-hero h1 { font-size: 28px; line-height: 1.4; }
    .b-hero-lead { font-size: 16px; line-height: 1.9; margin-bottom: 40px; }

    .b-section-title { font-size: 26px; }
    .b-problem-copy, .b-solution-copy, .b-promise-copy, .b-trial-copy { font-size: 16px; line-height: 1.9; }
    .b-faq-item .b-answer { font-size: 15px; }

    .b-steps { flex-direction: column; align-items: stretch; gap: 12px; }
    .b-steps .b-step { justify-content: center; padding: 14px 20px; }

    .b-cta-btns { flex-direction: column; width: 100%; }
    .b-cta-btns .b-btn { width: 100%; justify-content: center; padding: 20px; font-size: 16px; }
    .b-hero .b-cta-single { width: 100%; justify-content: center; padding: 18px 24px; font-size: 16px; }

    .b-form-card { padding: 32px 24px; border-radius: 20px; }
    .b-form-card h2 { font-size: 22px; }

    .b-quant-box { padding: 32px 24px; }
    .b-quant-row { flex-direction: column; gap: 8px; align-items: flex-start; }
    .b-quant-row strong { min-width: auto; }

    .b-plan-card { padding: 32px 24px; }
    .b-plan-price { font-size: 28px; }
    .b-roi-badge { left: 24px; }

    .b-gap-conclusion { font-size: 17px; padding: 24px; }

    .b-promise-list li { font-size: 15px; }

    .b-cta h2 { font-size: 28px; }
}
