/* Style block 2 */
:root {
    --mse-dark-navy: #0D1B3E;
    --mse-dark-navy-light: #111B38;
    --mse-dark-navy-deep: #070F24;
    --mse-dark-text-muted: #A0AEC0;
    --mse-dark-card-bg: rgba(255, 255, 255, 0.05);
    --mse-dark-border: rgba(255, 255, 255, 0.1);
    --mse-gradient-primary: linear-gradient(135deg, #2B7FE0, #7C5CFC);
    --mse-gradient-subtle: linear-gradient(135deg, #2B7FE0 0%, #7C5CFC 50%, #2389CA 100%);
    --mse-gradient-glow: radial-gradient(circle, rgba(43, 127, 224, 0.12), transparent 70%);
    --mse-blue: #2B7FE0;
    --mse-blue-base: #2389CA;
    --mse-purple: #7C5CFC;
    --mse-light-bg: #F5F8FC;
    --mse-light-bg-2: #EEF3FA;
    --mse-text-dark: #1A1A2E;
    --mse-text-body: #484849;
    --mse-text-sub: #6B7280;
    --mse-border-light: rgba(0, 0, 0, 0.08);
    --mse-card-shadow: 0 4px 24px rgba(43, 127, 224, 0.08);
    --mse-card-shadow-hover: 0 12px 40px rgba(43, 127, 224, 0.15);
    --mse-btn-shadow: 0 8px 24px rgba(43, 127, 224, 0.3);
    --mse-container-max-width: 1180px;
    --mse-radius-card: 12px;
    --mse-radius-glass: 16px;
    --mse-radius-btn: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--mse-text-body);
    line-height: 1.8;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

h1,
h2,
h3,
h4 {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--mse-text-dark);
    letter-spacing: 0.01em;
}

.num {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

button {
    font-family: inherit;
}

.container {
    max-width: var(--mse-container-max-width);
    margin: 0 auto;
    width: 1200px;
}

section {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    .container {
        padding: 0 20px;
    }
}

#agency-fee #gnav-sub-links ul li a {
    color: #fff;
}

.agency-fee {
    margin: 0 auto;
}

.agency-fee section {
    margin: 0 auto;
}

/* ???????????  HERO  ??????????? */
.hero {
    background:
        radial-gradient(ellipse at 80% 10%, rgba(124, 92, 252, 0.25), transparent 50%),
        radial-gradient(ellipse at 10% 80%, rgba(43, 127, 224, 0.2), transparent 50%),
        linear-gradient(180deg, var(--mse-dark-navy-deep) 0%, var(--mse-dark-navy) 100%);
    color: #fff;
    padding: 160px 0 120px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: #C7D2E4;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 8px #4ADE80;
}

.hero .hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}

.hero .hero-title .em {
    background: var(--mse-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    font-size: 17px;
    line-height: 2.0;
    color: #C7D2E4;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 34px;
    }
}

.agency-fee .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 40px;
    border-radius: var(--mse-radius-btn);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-primary {
    background: var(--mse-gradient-primary);
    color: #fff;
    box-shadow: var(--mse-btn-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(43, 127, 224, 0.45);
}

.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    background: transparent;
    color: var(--mse-blue);
    border: 2px solid var(--mse-blue);
}

.btn-outline:hover {
    background: rgba(43, 127, 224, 0.06);
}

.btn .arrow {
    transition: transform .2s;
}

.btn:hover .arrow {
    transform: translateX(3px);
}

.hero-trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust .item .v {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.hero-trust .item .l {
    font-size: 12px;
    color: #8FA0BC;
    margin-top: 2px;
}

/* Hero visualization */
.hero-viz {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    min-width: 0;
}

.hero-viz-console {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(43, 127, 224, 0.15);
}

.hvc-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hvc-bar .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.hvc-bar .d1 {
    background: #ff5f56;
}

.hvc-bar .d2 {
    background: #ffbd2e;
}

.hvc-bar .d3 {
    background: #27c93f;
}

.hvc-bar .title {
    margin-left: 12px;
    font-size: 11px;
    color: #8FA0BC;
    font-family: 'JetBrains Mono';
}

.hvc-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    min-height: 260px;
}

.hvc-side {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hvc-side .nav {
    font-size: 11px;
    color: #8FA0BC;
    padding: 8px 10px;
    border-radius: 6px;
}

.hvc-side .nav.active {
    background: rgba(43, 127, 224, 0.2);
    color: #fff;
    border-left: 2px solid var(--mse-blue);
}

.hvc-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hvc-kpi {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.hvc-kpi .cell {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 10px;
}

.hvc-kpi .cell .l {
    font-size: 9px;
    color: #8FA0BC;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hvc-kpi .cell .v {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit';
    margin-top: 2px;
}

.hvc-kpi .cell .d {
    font-size: 9px;
    color: #4ADE80;
}

.hvc-chart {
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.hvc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    font-size: 10px;
    color: #C7D2E4;
}

.hvc-row .badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
    margin-left: auto;
}

.hero-viz-nodes {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hvn-center {
    display: none;
}

.hvn-node {
    aspect-ratio: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #C7D2E4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-size: 10px;
    text-align: center;
    padding: 8px;
}

.hvn-node svg {
    width: 22px;
    height: 22px;
}

.hvn-node .lbl {
    font-size: 9px;
    color: #8FA0BC;
    letter-spacing: 0.04em;
}

/* ???????????  LOGO MARQUEE  ??????????? */
.logobar {
    background: var(--mse-dark-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
    overflow: hidden;
}

.logobar-label {
    text-align: center;
    font-size: 12px;
    color: #8FA0BC;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Outfit';
}

.logobar-track {
    display: flex;
    gap: 56px;
    animation: scroll 40s linear infinite;
    width: max-content;
    padding: 0 32px;
}

.logobar-track .lg {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    letter-spacing: 0.04em;
    font-family: 'Outfit';
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* ???????????  PROBLEM SECTION (dark)  ??????????? */
.sec-problem {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(43, 127, 224, 0.1), transparent 50%),
        linear-gradient(180deg, var(--mse-dark-navy) 0%, var(--mse-dark-navy-light) 100%);
    color: #fff;
}

.sec-header {
    text-align: center;
    margin-bottom: 72px;
}

.sec-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mse-blue);
    margin-bottom: 16px;
    font-family: 'Outfit';
}

.sec-problem .sec-eyebrow {
    color: #7C5CFC;
}

.sec-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sec-problem .sec-title {
    color: #fff;
}

.sec-lead {
    font-size: 16px;
    line-height: 2.0;
    color: var(--mse-text-sub);
    max-width: 680px;
    margin: 0 auto;
}

.sec-problem .sec-lead {
    color: #A0AEC0;
}

@media (max-width: 768px) {
    .sec-title {
        font-size: 26px;
    }
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    backdrop-filter: blur(8px);
    transition: transform .3s ease, border-color .3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 92, 252, 0.3);
}

.problem-card .pc-num {
    font-family: 'Outfit';
    font-size: 13px;
    font-weight: 500;
    color: #7C5CFC;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.problem-card .pc-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--mse-blue);
}

.problem-card h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 14px;
}

.problem-card p {
    color: #A0AEC0;
    font-size: 14px;
    line-height: 1.9;
}

.problem-card .pc-metric {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.problem-card .pc-metric .v {
    font-family: 'Outfit';
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.problem-card .pc-metric .u {
    font-size: 12px;
    color: #8FA0BC;
}

.problem-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
}

.problem-stats .item {
    text-align: center;
}

.problem-stats .item .v {
    font-family: 'Outfit';
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.problem-stats .item .l {
    font-size: 13px;
    color: #8FA0BC;
    margin-top: 4px;
}

/* ???????????  TRANSITION BAND  ??????????? */
.transition-band {
    background: var(--mse-gradient-subtle);
    color: #fff;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.transition-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1' fill='white' opacity='0.15'/></svg>");
}

.tb-inner {
    position: relative;
    text-align: center;
}

.tb-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.85;
}

.tb-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.tb-title .thin {
    font-weight: 400;
    opacity: 0.85;
}

.tb-sub {
    font-size: 17px;
    line-height: 1.9;
    margin-top: 24px;
    opacity: 0.9;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .tb-title {
        font-size: 30px;
    }
}

/* ???????????  SOLUTION OVERVIEW  ??????????? */
.sec-solution {
    background: #fff;
}

.solution-diagram {
    margin-top: 72px;
    background: linear-gradient(180deg, var(--mse-light-bg) 0%, #fff 100%);
    border: 1px solid var(--mse-border-light);
    border-radius: 24px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}

.solution-diagram::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--mse-gradient-glow);
    top: -300px;
    right: -200px;
}

.sd-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

@media (max-width: 900px) {
    .sd-grid {
        grid-template-columns: 1fr;
    }
}

.sd-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sd-column .sd-head {
    font-size: 13px;
    font-weight: 600;
    color: var(--mse-text-sub);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: 'Outfit';
}

.sd-node {
    background: #fff;
    border: 1px solid var(--mse-border-light);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mse-text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sd-node .i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--mse-light-bg);
    display: grid;
    place-items: center;
    color: var(--mse-blue);
}

.sd-node .i svg {
    width: 14px;
    height: 14px;
}

.sd-center {
    background: var(--mse-gradient-primary);
    border-radius: 20px;
    padding: 36px 28px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(43, 127, 224, 0.35);
    position: relative;
}

.sd-center h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sd-center .sub {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sd-center .caps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.sd-center .cap {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
}

/* ???????????  FEATURES (MAIN)  ??????????? */
.sec-features {
    background: var(--mse-light-bg);
    position: relative;
    overflow: hidden;
}

.sec-features::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: var(--mse-gradient-glow);
    top: -400px;
    left: -300px;
    pointer-events: none;
}

.feat-tabs {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    margin-top: 56px;
    background: #fff;
    border: 1px solid var(--mse-border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(43, 127, 224, 0.08);
}

@media (max-width: 960px) {
    .feat-tabs {
        grid-template-columns: 1fr;
    }
}

.feat-tab-list {
    background: linear-gradient(180deg, #FAFCFF, var(--mse-light-bg));
    border-right: 1px solid var(--mse-border-light);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 960px) {
    .feat-tab-list {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--mse-border-light);
        padding: 16px;
    }
}

.feat-tab {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 10px;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    text-align: left;
    transition: all .2s ease;
    color: var(--mse-text-body);
    font-family: inherit;
    width: 100%;
}

.feat-tab:hover {
    background: rgba(43, 127, 224, 0.05);
}

.feat-tab.active {
    background: #fff;
    border-color: rgba(43, 127, 224, 0.2);
    box-shadow: 0 4px 16px rgba(43, 127, 224, 0.08);
}

.feat-tab .ft-num {
    font-family: 'Outfit';
    font-size: 11px;
    font-weight: 500;
    color: var(--mse-text-sub);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    margin-top: 3px;
}

.feat-tab.active .ft-num {
    color: var(--mse-blue);
}

.feat-tab .ft-body {
    min-width: 0;
    flex: 1;
}

.feat-tab .ft-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--mse-text-dark);
    line-height: 1.5;
}

.feat-tab .ft-desc {
    font-size: 11.5px;
    color: var(--mse-text-sub);
    line-height: 1.6;
    margin-top: 2px;
}

.feat-tab.active .ft-title {
    color: var(--mse-blue);
}

@media (max-width: 960px) {
    .feat-tab {
        min-width: 220px;
    }
}

.feat-panel {
    padding: 48px 48px 48px 16px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    min-height: 520px;
}

@media (max-width: 960px) {
    .feat-panel {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
}

.fp-text .fp-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--mse-purple);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Outfit';
}

.fp-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--mse-text-dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.fp-text .fp-lead {
    font-size: 15px;
    line-height: 2.0;
    color: var(--mse-text-body);
    margin-bottom: 28px;
}

.fp-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.fp-bullet {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--mse-text-body);
    line-height: 1.7;
}

.fp-bullet .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--mse-gradient-primary);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

.fp-bullet b {
    color: var(--mse-text-dark);
    font-weight: 600;
}

.fp-visual {
    background: linear-gradient(135deg, var(--mse-dark-navy-deep), var(--mse-dark-navy));
    border-radius: 16px;
    padding: 24px;
    min-height: 380px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(43, 127, 224, 0.2);
    box-shadow: 0 20px 60px rgba(13, 27, 62, 0.3);
}

.fp-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* feature-specific visuals */
.fv-content {
    position: relative;
    height: 100%;
}

/* F1: ����Ź�̲��� */
.fv-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fv-pricing .h {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 10px;
    font-size: 10px;
    color: #8FA0BC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-pricing .r {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 12px;
    color: #fff;
    align-items: center;
}

.fv-pricing .r .p {
    font-family: 'Outfit';
    font-weight: 600;
}

.fv-pricing .r .p.best {
    color: #4ADE80;
}

.fv-pricing .r .p.mid {
    color: #FBBF24;
}

.fv-pricing .tag {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
}

.fv-pricing .tag.gold {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
}

.fv-pricing .tag.silver {
    background: rgba(160, 174, 192, 0.18);
    color: #CBD5E1;
}

.fv-pricing .tag.bronze {
    background: rgba(251, 113, 133, 0.15);
    color: #FB7185;
}

/* F2: �߸�Ʊ�� */
.fv-sync {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 16px;
}

.fv-sync-hub {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.fv-sync-hub .core {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--mse-gradient-primary);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 0 40px rgba(43, 127, 224, 0.5);
    position: relative;
}

.fv-sync-hub .core::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    border: 1px solid rgba(43, 127, 224, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.fv-sync-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fv-sync-cell {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px;
    font-size: 11px;
    color: #fff;
}

.fv-sync-cell .name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 10px;
    color: #C7D2E4;
}

.fv-sync-cell .stk {
    font-family: 'Outfit';
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.fv-sync-cell .stk .u {
    font-size: 10px;
    color: #8FA0BC;
    font-weight: 400;
}

.fv-sync-cell .sync {
    font-size: 9px;
    color: #4ADE80;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fv-sync-cell .sync::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #4ADE80;
}

/* F3: APIϢ�� */
.fv-api {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    height: 100%;
    padding: 20px 0;
}

.fv-api .side {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fv-api .blk {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 11px;
    color: #fff;
}

.fv-api .blk .n {
    font-weight: 600;
    margin-bottom: 2px;
}

.fv-api .blk .c {
    font-size: 10px;
    color: #8FA0BC;
    font-family: 'JetBrains Mono';
}

.fv-api .mid {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mse-gradient-primary);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    justify-self: center;
    box-shadow: 0 0 24px rgba(124, 92, 252, 0.4);
}

.fv-api-code {
    margin-top: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    font-family: 'JetBrains Mono';
    font-size: 10.5px;
    line-height: 1.7;
    color: #A0AEC0;
}

.fv-api-code .k {
    color: #7C5CFC;
}

.fv-api-code .s {
    color: #4ADE80;
}

.fv-api-code .v {
    color: #FBBF24;
}

/* F4: ��ǧ����ե��� */
.fv-wf {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 8px 0;
}

.fv-wf-step {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.fv-wf-step .n {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mse-gradient-primary);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    font-family: 'Outfit';
}

.fv-wf-step .body .t {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

.fv-wf-step .body .s {
    font-size: 10px;
    color: #8FA0BC;
    margin-top: 2px;
}

.fv-wf-step.pending .n {
    background: rgba(255, 255, 255, 0.1);
    color: #8FA0BC;
}

.fv-wf-step .st {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.fv-wf-step .st.done {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
}

.fv-wf-step .st.current {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
}

.fv-wf-step .st.wait {
    background: rgba(255, 255, 255, 0.06);
    color: #8FA0BC;
}

/* F5: �İ��������� */
.fv-auth {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
}

.fv-auth-lock {
    display: flex;
    justify-content: center;
}

.fv-auth-lock .ico {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--mse-gradient-primary);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 12px 40px rgba(43, 127, 224, 0.4);
}

.fv-auth-rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fv-auth-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
}

.fv-auth-row .l {
    font-size: 10px;
    color: #8FA0BC;
    margin-bottom: 4px;
}

.fv-auth-row .v {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fv-auth-row .v .chip {
    display: inline-flex;
    padding: 2px 6px;
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 500;
}

/* F6: �������� */
.fv-orders {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.fv-orders .hd {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr 0.8fr;
    gap: 10px;
    padding: 0 12px 8px;
    font-size: 9px;
    color: #8FA0BC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-orders .row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr 0.8fr;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 11px;
    color: #fff;
    align-items: center;
}

.fv-orders .row .id {
    font-family: 'JetBrains Mono';
    color: #C7D2E4;
    font-size: 10px;
}

.fv-orders .row .amt {
    font-family: 'Outfit';
    font-weight: 600;
    text-align: right;
}

.fv-orders .row .st {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    justify-self: start;
}

.fv-orders .row .st.s {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
}

.fv-orders .row .st.p {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
}

.fv-orders .row .st.r {
    background: rgba(43, 127, 224, 0.15);
    color: #60A5FA;
}

/* F7: ʬ�� */
.fv-chart {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
    height: 100%;
    padding: 8px 0;
}

.fv-chart-kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fv-chart-kpi .c {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
}

.fv-chart-kpi .c .l {
    font-size: 9px;
    color: #8FA0BC;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fv-chart-kpi .c .v {
    font-family: 'Outfit';
    font-weight: 700;
    color: #fff;
    font-size: 20px;
    margin-top: 4px;
}

.fv-chart-kpi .c .d {
    font-size: 10px;
    color: #4ADE80;
    margin-top: 2px;
}

.fv-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.fv-chart-bars .bar {
    flex: 1;
    background: linear-gradient(180deg, #7C5CFC, #2B7FE0);
    border-radius: 4px 4px 0 0;
    position: relative;
}

.fv-chart-bars .bar:nth-child(2) {
    opacity: 0.7;
}

.fv-chart-bars .bar:nth-child(3) {
    opacity: 0.8;
}

.fv-chart-legend {
    font-size: 10px;
    color: #8FA0BC;
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ???????????  COMPARISON  ??????????? */
.sec-compare {
    background: #fff;
}

.compare-table {
    margin-top: 56px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--mse-border-light);
    box-shadow: 0 10px 40px rgba(43, 127, 224, 0.06);
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.compare-table thead th {
    background: var(--mse-gradient-primary);
    color: #fff;
    padding: 20px 18px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.compare-table thead th:first-child {
    text-align: left;
    background: var(--mse-dark-navy);
}

.compare-table thead th.mse-col {
    position: relative;
}

.compare-table thead th.mse-col::before {
    content: 'Recommended';
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 500;
}

.compare-table tbody td {
    padding: 18px;
    font-size: 14px;
    color: var(--mse-text-body);
    text-align: center;
    border-bottom: 1px solid var(--mse-border-light);
}

.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--mse-text-dark);
    background: var(--mse-light-bg);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody td.check {
    color: var(--mse-blue);
    font-size: 20px;
}

.compare-table tbody td.cross {
    color: #CBD5E1;
    font-size: 18px;
}

.compare-table tbody td.mse-cell {
    background: rgba(43, 127, 224, 0.04);
    font-weight: 500;
    color: var(--mse-text-dark);
}

/* ???????????  MID CTA  ??????????? */
.mid-cta {
    background: var(--mse-gradient-subtle);
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mid-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
    top: -100px;
    right: -100px;
}

.midcta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 40px;
}

@media (max-width: 800px) {
    .midcta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.midcta-inner h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
}

.midcta-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.9;
}

.midcta-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .midcta-actions {
        justify-content: center;
    }
}

.btn-white {
    background: #fff;
    color: var(--mse-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* ???????????  TRUST  ??????????? */
.sec-trust {
    background: var(--mse-light-bg);
}

.trust-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 56px;
}

@media (max-width: 800px) {
    .trust-hero {
        grid-template-columns: 1fr;
    }
}

.trust-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--mse-border-light);
    box-shadow: var(--mse-card-shadow);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mse-gradient-primary);
}

.trust-card .v {
    font-family: 'Outfit';
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    background: var(--mse-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.trust-card .u {
    font-size: 15px;
    color: var(--mse-text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.trust-card .d {
    font-size: 13px;
    color: var(--mse-text-sub);
    line-height: 1.8;
}

.trust-industries {
    padding: 48px 40px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--mse-border-light);
}

.trust-industries h4 {
    font-size: 15px;
    color: var(--mse-text-sub);
    font-weight: 500;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.trust-industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .trust-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-chip {
    padding: 22px 12px;
    background: var(--mse-light-bg);
    border-radius: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--mse-text-dark);
    font-weight: 500;
    transition: all .25s ease;
    cursor: default;
    border: 1px solid transparent;
}

.industry-chip:hover {
    background: #fff;
    border-color: rgba(43, 127, 224, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(43, 127, 224, 0.12);
}

.industry-chip .ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--mse-gradient-primary);
    color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 6px 16px rgba(43, 127, 224, 0.25);
}

.industry-chip .ic svg {
    width: 22px;
    height: 22px;
}

.industry-chip:hover .ic {
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(43, 127, 224, 0.35);
}

/* ???????????  STEPS  ??????????? */
.sec-steps {
    background: #fff;
}

.steps-list {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .steps-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .steps-list {
        grid-template-columns: 1fr;
    }
}

.step-card {
    background: var(--mse-light-bg);
    border-radius: 14px;
    padding: 32px 24px;
    position: relative;
    transition: transform .3s;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-num {
    font-family: 'Outfit';
    font-size: 40px;
    font-weight: 700;
    background: var(--mse-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--mse-text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}

.step-card p {
    font-size: 13px;
    color: var(--mse-text-body);
    line-height: 1.9;
}

.step-card .dur {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 4px 10px;
    background: rgba(43, 127, 224, 0.08);
    color: var(--mse-blue);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Outfit';
}

/* ???????????  FAQ  ??????????? */
.sec-faq {
    background: var(--mse-light-bg);
}

.faq-list {
    max-width: 820px;
    margin: 56px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--mse-border-light);
    transition: border-color .2s;
}

.faq-item[open] {
    border-color: rgba(43, 127, 224, 0.3);
}

.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: var(--mse-text-dark);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .plus {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--mse-light-bg);
    display: grid;
    place-items: center;
    color: var(--mse-blue);
    font-size: 16px;
    transition: all .2s;
    flex-shrink: 0;
    margin-left: 20px;
    line-height: 24px;
}

.faq-item[open] summary .plus {
    background: var(--mse-gradient-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-item .a {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--mse-text-body);
    line-height: 2.0;
}

/* ???????????  FINAL CTA  ??????????? */
.final-cta {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(124, 92, 252, 0.3), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(43, 127, 224, 0.25), transparent 50%),
        linear-gradient(180deg, var(--mse-dark-navy) 0%, var(--mse-dark-navy-deep) 100%);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
}

.final-cta-inner {
    position: relative;
}

.final-cta h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.final-cta h2 .em {
    background: var(--mse-gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta p {
    color: #A0AEC0;
    font-size: 16px;
    line-height: 2.0;
    margin-bottom: 44px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.final-cta-micro {
    font-size: 13px;
    color: #8FA0BC;
}

.final-cta-micro .sep {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 28px;
    }
}

/* ???????????  FOOTER  ??????????? */
footer {
    background: var(--mse-dark-navy-deep);
    color: #8FA0BC;
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.foot-inner {
    max-width: var(--mse-container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Tweaks */
.tweaks-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px;
    color: #fff;
    font-size: 13px;
    min-width: 260px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: none;
}

.tweaks-panel.visible {
    display: block;
}

.tweaks-panel h5 {
    font-family: 'Outfit';
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8FA0BC;
    margin-bottom: 12px;
    font-weight: 500;
}

.tweaks-panel label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    color: #C7D2E4;
}

.tweaks-panel select,
.tweaks-panel input[type=range] {
    width: 100%;
    margin-top: 6px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
}

.tweaks-panel input[type=range] {
    padding: 0;
}

.fade-in {
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}