@charset "euc-jp";

/* makeshop Design System Variables */
:root {
    /* Brand */
    --ms-primary: #2389CA;
    --ms-secondary: #1568a6;
    --ms-tertiary: #084d84;
    --ms-primary-light: #E9EFF4;

    /* Text */
    --ms-text-primary: #1A1A1C;
    --ms-text-secondary: #C1C0C6;
    --ms-text-link: #2389CA;
    --ms-text-white: #FFFFFF;

    /* Admin */
    --ms-admin: #4558C4;
    --ms-admin-light: #E6EAF0;

    /* Accent */
    --ms-attention: #FFCC17;
    --ms-warning: #F05A25;

    /* Components */
    --ms-border: #D5D5D9;
    --ms-table-bg: #F5F5F5;
    --ms-heading-bg: #E9EFF4;

    /* Buttons */
    --ms-btn-free: #F05A25;
    --ms-btn-usually: #1A1A1C;

    /* Blue scale */
    --ms-blue-100: #2389CA;
    --ms-blue-80: #4FA1D5;
    --ms-blue-50: #91C4E4;
    --ms-blue-30: #BDDCEF;
    --ms-blue-10: #E9F3FA;
    --ms-blue-5: #F4F9FC;

    /* Grey scale */
    --ms-grey-100: #1A1A1C;
    --ms-grey-80: #484849;
    --ms-grey-50: #8C8C8D;
    --ms-grey-30: #BABABB;
    --ms-grey-10: #E8E8E8;
    --ms-grey-5: #F4F4F4;

    /* Auto/garage accent ? dark industrial */
    --garage-dark: #0E1115;
    --garage-mid: #1A2029;
    --garage-line: #2A3341;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.pc-br {
    display: block;
}

.sp-br {
    display: none;
}

/* ===== FV表示中のgnav-sub-links文字色を白に ===== */
#gnav-sub-links.is-fv a,
#gnav-sub-links.is-fv .sub-btn {
    color: #fff !important;
    border-color: #fff !important;
}


/* ========= BUTTONS ========= */
.car-bike .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
    white-space: nowrap;
}

.car-bike .btn-primary {
    background: var(--ms-btn-free);
    color: #fff;
    box-shadow: 0 4px 0 #c34619;
    height: 50px;
    border-radius: 30px;
}

.car-bike .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #c34619;
}

.car-bike .btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c34619;
}

.car-bike .btn-secondary {
    background: var(--ms-btn-usually);
    color: #fff;
    box-shadow: 0 4px 0 #000;
    border: 1px solid;
    height: 50px;
    border-radius: 30px;
}

.car-bike .btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 0 #000;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.car-bike .btn-secondary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000;
}

.car-bike .btn-outline {
    border: 2px solid var(--ms-primary);
    color: var(--ms-primary);
    background: #fff;
    padding: 12px 22px;
}

.car-bike .btn-outline:hover {
    background: var(--ms-primary-light);
}

.car-bike .btn-sm {
    padding: 9px 16px;
    font-size: 16px;
    box-shadow: 0 3px 0 #c34619;
}

.car-bike .btn .arrow {
    transition: transform 0.15s;
}

.car-bike .btn:hover .arrow {
    transform: translateX(3px);
}

article {
    overflow: hidden;
    margin: 0 auto !important;
}

section {
    margin: 0 auto !important;
}

/* ========= HERO ========= */
.hero {
    position: relative;
    background: var(--garage-dark);
    color: #fff;
    overflow: hidden;
    padding: 140px 32px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/fv.png);
    background-size: cover;
    background-position: center;
}

.hero-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -310px;
    right: -230px;
    filter: blur(50px);
    pointer-events: none;
    background: radial-gradient(circle, #ffffff, transparent 60%);
}

.hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 72px;
    min-height: 620px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(79, 161, 213, 0.4);
    background: rgba(35, 137, 202, 0.1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--ms-blue-50);
    margin-bottom: 24px;
}

.hero-kicker .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ms-warning);
    box-shadow: 0 0 0 3px rgba(240, 90, 37, 0.2);
}

.hero h1 {
    font-size: 44px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    white-space: nowrap;
    color: #ffffff;
}

@media (max-width: 860px) {
    .hero h1 {
        font-size: 34px;
        white-space: normal;
    }
}

.hero h1 .accent {
    background: linear-gradient(120deg, var(--ms-blue-50), var(--ms-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 .under {
    position: relative;
    display: inline-block;
}

.hero h1 .under::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 6px;
    background: var(--ms-warning);
    opacity: 0.85;
    z-index: -1;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 12px;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-badge strong {
    color: var(--ms-blue-50);
    font-weight: 600;
}

.hero-badge svg {
    color: var(--ms-blue-50);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-phone {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-phone strong {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
}

/* Hero visual ? industrial dashboard */
.hero-visual {
    position: relative;
    height: 540px;
}

.dash-card {
    position: absolute;
    background: #fff;
    color: var(--ms-text-primary);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.dash-main {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 60px;
}

.dash-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--ms-grey-5);
    border-bottom: 1px solid var(--ms-border);
}

.dash-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ms-grey-30);
}

.dash-bar .dot:nth-child(1) {
    background: #FF5F57;
}

.dash-bar .dot:nth-child(2) {
    background: #FEBC2E;
}

.dash-bar .dot:nth-child(3) {
    background: #27C93F;
}

.dash-bar .url {
    margin-left: 12px;
    padding: 4px 10px;
    background: #fff;
    border-radius: 6px;
    font-size: 11px;
    color: var(--ms-grey-50);
    border: 1px solid var(--ms-border);
    font-family: "SF Mono", monospace;
}

.dash-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    height: calc(100% - 38px);
}

.dash-side {
    background: #F8FAFC;
    border-right: 1px solid var(--ms-border);
    padding: 16px 12px;
}

.dash-side-title {
    font-size: 10px;

    color: var(--ms-grey-50);
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 8px;
}

.dash-nav-item {
    padding: 8px 10px;
    font-size: 12px;
    color: var(--ms-grey-80);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-nav-item.active {
    background: var(--ms-primary-light);
    color: var(--ms-tertiary);
    font-weight: 600;
}

.dash-nav-item .icon {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: currentColor;
    opacity: 0.4;
}

.dash-main-body {
    padding: 18px;
    overflow: hidden;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dash-kpi {
    padding: 10px;
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    background: #fff;
}

.dash-kpi-label {
    font-size: 10px;
    color: var(--ms-grey-50);
    letter-spacing: 0.04em;
}

.dash-kpi-val {
    font-size: 18px;
    font-weight: 600;
    color: var(--ms-text-primary);
    margin-top: 2px;
}

.dash-kpi-delta {
    font-size: 10px;
    color: #18A957;
    font-weight: 600;
}

.dash-chart {
    height: 120px;
    background: linear-gradient(180deg, var(--ms-blue-5), #fff);
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dash-chart-title {
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 10px;
    color: var(--ms-grey-50);
    letter-spacing: 0.04em;
}

.dash-chart svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dash-rows {
    margin-top: 12px;
}

.dash-row {
    display: grid;
    grid-template-columns: 1fr 70px 60px 50px;
    padding: 7px 4px;
    font-size: 11px;
    border-bottom: 1px solid var(--ms-grey-10);
    align-items: center;
}

.dash-row:last-child {
    border: none;
}

.dash-row .name {
    font-weight: 600;
}

.dash-row .qty {
    color: var(--ms-grey-80);
}

.dash-row .price {
    color: var(--ms-text-primary);
    font-weight: 600;
}

.dash-row .tag {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--ms-primary-light);
    color: var(--ms-tertiary);
    text-align: center;
    font-weight: 600;
}

.dash-row .tag.wholesale {
    background: #FFF1E6;
    color: var(--ms-warning);
}

/* Phone mock overlay */
.phone-mock {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 180px;
    height: 360px;
    background: #0E1115;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid #2A3341;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.phone-hdr {
    height: 36px;
    background: var(--garage-dark);
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.phone-hdr-logo {
    color: #fff;
    font-size: 14px;
    font-weight: 600;

}

.phone-hero {
    background: linear-gradient(135deg, #1A2029, #0E1115);
    height: 90px;
    padding: 12px;
    color: #fff;
}

.phone-hero-tag {
    font-size: 7px;
    color: var(--ms-warning);
    font-weight: 600;

}

.phone-hero-title {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.phone-prods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
}

.phone-prod {
    aspect-ratio: 1;
    background: var(--ms-grey-5);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.phone-prod::before {
    content: "";
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4a5261, #15181d 70%);
}

.phone-prod .pb {
    position: absolute;
    bottom: 3px;
    left: 3px;
    right: 3px;
    font-size: 7px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 4px;
    border-radius: 3px;
    color: var(--ms-text-primary);
    font-weight: 600;
}

/* Floating chip decorations */
.float-chip {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ms-text-primary);
}

.float-chip .ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--ms-primary-light);
    color: var(--ms-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-chip.chip-1 {
    top: -10px;
    right: 30px;
    z-index: 3;
}

.float-chip.chip-2 {
    bottom: 100px;
    left: -30px;
    z-index: 3;
}

/* Scrolling brand strip */
.brand-strip {
    background: var(--garage-dark);
    border-top: 1px solid var(--garage-line);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
}

.brand-strip::before,
.brand-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.brand-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--garage-dark), transparent);
}

.brand-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--garage-dark), transparent);
}

.brand-strip-inner {
    display: flex;
    gap: 56px;
    align-items: center;
    white-space: nowrap;
    animation: strip 40s linear infinite;
    width: max-content;
}

.brand-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 16px;
    border-right: 1px solid var(--garage-line);
}

.brand-item {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@keyframes strip {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========= COMMON SECTION ========= */
.section {
    padding: 112px 32px;
    max-width: 1240px;
    margin: 0 auto;
}

.section-tight {
    padding: 80px 32px;
}

.section-full {
    max-width: none;
    padding: 112px 0;
}

.section-full>.section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ms-primary);
    margin-bottom: 16px;
}

.section-label::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--ms-primary);
}

.section-h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 600;

    margin-bottom: 20px;
    color: var(--ms-text-primary);
}

.section-lead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ms-grey-80);
    max-width: 720px;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-label {
    justify-content: center;
}

.section-header.center .section-lead {
    margin: 0 auto;
}

</style><style>

/* ========= PROBLEM (section 2) ========= */
.problem {
    background: var(--ms-blue-5);
    position: relative;
}

.problem::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(35, 137, 202, 0.15) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.problem-card {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    padding: 28px 24px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--ms-primary);
    box-shadow: 0 12px 32px rgba(35, 137, 202, 0.12);
}

.problem-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ms-primary);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--ms-text-primary);
}

.problem-card p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--ms-grey-80);
}

.problem-card .tag {
    position: absolute;
    top: 28px;
    right: 20px;
    font-size: 16px;
    padding: 0px 8px;
    border-radius: 4px;
    background: var(--ms-blue-10);
    color: var(--ms-tertiary);
    font-weight: 600;
}

/* ========= AGITATION ========= */
.agitation {
    background: linear-gradient(45deg, #003f77, #2671ce);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.agitation-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(240, 90, 37, 0.15), transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(35, 137, 202, 0.15), transparent 50%);
    pointer-events: none;
}

.agitation .section-inner {
    position: relative;
}

.agitation .section-h2 {
    color: #fff;
}

.agitation .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

.agitation .section-label {
    color: var(--ms-warning);
}

.agitation .section-label::before {
    background: var(--ms-warning);
}

.cost-calc {
    background: linear-gradient(135deg, rgba(35, 137, 202, 0.12), rgba(79, 161, 213, 0.03));
    border: 1px solid rgba(79, 161, 213, 0.25);
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calc-label {
    font-size: 14px;
    color: var(--ms-warning);
    letter-spacing: 0.14em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.calc-head {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
}

.calc-head .hilite {
    color: var(--ms-warning);
}

.calc-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    margin-bottom: 24px;
}

.calc-input {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.calc-input label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.calc-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-slider-row input[type="range"] {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    outline: none;
}

.calc-slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ms-primary);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(35, 137, 202, 0.5);
    cursor: pointer;
}

.calc-slider-row input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ms-primary);
    border: 3px solid #fff;
    cursor: pointer;
}

.calc-value {
    font-size: 20px;
    font-weight: 600;
    min-width: 110px;
    text-align: right;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.calc-result {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px 28px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.calc-result-row:last-child {
    border: none;
    padding-bottom: 0;
}

.calc-result-row:first-child {
    padding-top: 0;
}

.calc-result-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.calc-result-val {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.calc-result-val.strike {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 18px;
}

.calc-result-val.save {
    color: var(--ms-warning);
    font-size: 32px;
}

.calc-result-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 14px;
    line-height: 1.8;
}

/* ========= SOLUTION ========= */
.solution {
    background: #fff;
}

.solution-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.model-card {
    background: #fff;
    border: 2px solid var(--ms-border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

.model-card:hover {
    border-color: var(--ms-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(35, 137, 202, 0.15);
}

.model-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    /*background: var(--ms-primary);*/
}

/*.model-card:nth-child(2)::before {
    background: var(--ms-secondary);
}

.model-card:nth-child(3)::before {
    background: var(--ms-tertiary);
}*/

.model-num {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    color: var(--ms-primary);
    margin-bottom: 8px;
}

.model-card:nth-child(2) .model-num {
    color: var(--ms-secondary);
}

.model-card:nth-child(3) .model-num {
    color: var(--ms-tertiary);
}

.model-type {
    display: inline-block;
    font-size: 14px;
    padding: 0px 16px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    background: var(--ms-primary-light);
    color: var(--ms-tertiary);
}

.model-card h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.model-card p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--ms-grey-80);
    margin-bottom: 20px;
}

.model-example {
    padding: 14px;
    background: var(--ms-blue-5);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--ms-grey-80);
}

.model-example strong {
    display: block;
    color: var(--ms-tertiary);
    font-size: 11px;
    margin-bottom: 4px;
    font-weight: 600;
}

.model-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 16px 0 14px;
    padding: 14px;
    border: 1px dashed var(--ms-border);
    border-radius: 8px;
}

.model-node {
    background: #fff;
    border: 1.5px solid var(--ms-primary);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ms-primary);
    text-align: center;
    line-height: 1.2;
    min-width: 56px;
}

.model-node.filled {
    background: var(--ms-primary);
    color: #fff;
}

.model-arrow {
    color: var(--ms-primary);
    opacity: 0.6;
}

/* ========= FEATURES (section 5) ========= */
.features {
    background: var(--ms-blue-5);
}

.feature-tabs {
    display: flex;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.feature-tab {
    flex: 1;
    min-width: 140px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ms-grey-80);
    text-align: center;
    transition: all 0.15s;
}

.feature-tab:hover {
    background: var(--ms-blue-5);
    color: var(--ms-primary);
}

.feature-tab.active {
    background: var(--ms-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(35, 137, 202, 0.3);
}

.feature-tab-label {
    display: block;
    font-size: 16px;
    color: inherit;
    opacity: 0.7;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
    animation: fade 0.25s ease;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-item {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all 0.2s;
}

.feature-item:hover {
    border-color: var(--ms-primary);
    background: #fcfdff;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: var(--ms-primary-light);
    color: var(--ms-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
}

.feature-item-body h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ms-text-primary);
}

.feature-item-body p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--ms-grey-80);
}

.feature-item-body .free-tag {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    padding: 2px 6px;
    background: #E8F5EC;
    color: #18A957;
    border-radius: 4px;
    font-weight: 600;
}

/* ========= REASONS ========= */
.reasons {
    background: #fff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 0;
}

.reason-card {
    background: linear-gradient(180deg, #fff, var(--ms-blue-5));
    border: 1px solid var(--ms-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.reason-card .reason-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    color: var(--ms-blue-10);
    user-select: none;
}

.reason-visual {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--ms-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.reason-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.reason-card p {
    font-size: 14px;
    color: var(--ms-grey-80);
    position: relative;
    z-index: 1;
}

.reason-stat {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--ms-border);
    position: relative;
    z-index: 1;
}

.reason-stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--ms-primary);
    line-height: 1;
}

.reason-stat-lbl {
    font-size: 14px;
    color: var(--ms-grey-80);
}

sup {
    top: -0.5em;
    font-size: 100%;
}


.usecases {
    background: var(--ms-blue-5);
    position: relative;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.uc-card {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
}

.uc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--ms-primary);
}

.uc-visual {
    background: linear-gradient(135deg, var(--garage-dark), var(--garage-mid));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.uc-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background-image:
        linear-gradient(rgba(79, 161, 213, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 161, 213, 0.08) 1px, transparent 1px);*/
    background-size: 20px 20px;
}

.uc-visual svg {
    position: relative;
    z-index: 1;
    color: var(--ms-blue-50);
}

.uc-body {
    padding: 22px 22px 24px;
}

.uc-cat {
    font-size: 13px;
    font-weight: 500;
    color: var(--ms-primary);
    margin-bottom: 6px;
}

.uc-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.uc-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ms-grey-80);
    margin-bottom: 14px;
}

.uc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.uc-tag {
    font-size: 12px;
    padding: 0 12px;
    background: var(--ms-grey-5);
    color: var(--ms-grey-80);
    border-radius: 4px;
    border: 1px solid;
    line-height: 2.2;
}

/* ========= LOGOS / PROOF ========= */
.proof {
    background: #fff;
    padding: 64px 32px 80px;
}

.proof-title {
    text-align: center;
    font-size: 16px;
    color: var(--ms-grey-50);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 32px;
}

.logo-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--ms-border);
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    overflow: hidden;
}

.logo-cell {
    background: #fff;
    aspect-ratio: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--ms-grey-80);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 8px;
    transition: background 0.15s;
}

.logo-cell:hover {
    background: var(--ms-blue-5);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 48px auto 0;
}

.proof-stat {
    text-align: center;
    padding: 28px;
    background: var(--ms-blue-5);
    border-radius: 14px;
}

.proof-stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--ms-primary);
    line-height: 1;
}

.proof-stat-unit {
    font-size: 20px;
    font-weight: 600;
    color: var(--ms-primary);
}

.proof-stat-lbl {
    font-size: 16px;
    color: var(--ms-grey-80);
    margin-top: 10px;
    font-weight: 600;
}

.proof-stat-sub {
    font-size: 11px;
    color: var(--ms-grey-50);
    margin-top: 2px;
}

/* ========= PRICING ========= */
.pricing {
    background: var(--ms-blue-5);
    position: relative;
}

.pricing-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.plan-card {
    background: #fff;
    border: 2px solid var(--ms-border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
}

.plan-card.recommended {
    border-color: var(--ms-primary);
    box-shadow: 0 20px 48px rgba(35, 137, 202, 0.18);
}

.plan-flag {
    position: absolute;
    top: -14px;
    left: 36px;
    background: var(--ms-warning);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.plan-name {
    font-size: 16px;
    color: var(--ms-grey-80);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.plan-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.plan-price-val {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--ms-text-primary);
    line-height: 1;
}

.plan-price-unit {
    font-size: 14px;
    color: var(--ms-grey-80);
}

.plan-price-sub {
    font-size: 16px;
    color: var(--ms-grey-50);
    margin-bottom: 24px;
}

.plan-specs {
    padding: 20px 0;
    margin: 16px 0;
    border-top: 1px solid var(--ms-border);
    border-bottom: 1px solid var(--ms-border);
}

.plan-spec {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 16px;
}

.plan-spec-l {
    color: var(--ms-grey-80);
}

.plan-spec-v {
    font-weight: 600;
    color: var(--ms-text-primary);
}

.plan-spec-v.rate {
    color: var(--ms-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 6px 0;
    font-size: 16px;
    color: var(--ms-grey-80);
    line-height: 1.8;
}

.plan-features li::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--ms-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
    flex-shrink: 0;
    margin-top: 3px;
}

/* BtoB option table */
.btob-options {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    overflow: hidden;
}

.btob-title {
    padding: 20px 28px;
    background: var(--ms-heading-bg);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btob-title .tag {
    font-size: 10px;
    background: var(--ms-warning);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.btob-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 2fr;
    padding: 16px 28px;
    border-top: 1px solid var(--ms-border);
    align-items: center;
    font-size: 14px;
    gap: 16px;
}

.btob-row .opt-name {
    font-weight: 600;
}

.btob-row .opt-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--ms-primary);
}

.btob-row .opt-price.free {
    color: #18A957;
}

.btob-row .opt-desc {
    color: var(--ms-grey-80);
    font-size: 16px;
}

.pricing-note {
    font-size: 12px;
    color: var(--ms-grey-50);
    margin-top: 16px;
    line-height: 1.8;
}

/* ========= STEPS ========= */
.steps {
    background: #fff;
}

.steps-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
    margin-top: 40px;
}

.steps-track::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--ms-blue-30) 0 8px, transparent 8px 14px);
    z-index: 0;
}

.step {
    background: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--ms-primary);
    color: var(--ms-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step:first-child .step-circle {
    background: var(--ms-primary);
    color: #fff;
}

.step h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.5;
}

.step p {
    font-size: 11px;
    color: var(--ms-grey-80);
    line-height: 1.8;
}

/* ========= FAQ ========= */
.faq {
    background: var(--ms-blue-5);
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item.open {
    border-color: var(--ms-primary);
}

.faq-q {
    padding: 22px 24px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.faq-q .qmark {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ms-primary);
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--ms-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    margin-top: -2px;
}

.faq-item.open .faq-toggle {
    background: var(--ms-primary);
    border-color: var(--ms-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px 0 64px;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 22px;
}

.faq-a p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--ms-grey-80);
}

/* ========= FINAL CTA ========= */
.final {
    background: linear-gradient(180deg, #1a6fa8, #0d4d7e);
    color: #fff;
    padding: 96px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(35, 137, 202, 0.25), transparent 60%);
}

.final-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 161, 213, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 161, 213, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.final-inner {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.final h2 {
    font-size: 44px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.final p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.9;
}

.final-ctas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 880px;
    margin: 0 auto 32px;
}

/* Simple CTA row (v2) */
.final-simple-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 16px 0 40px;
}

.btn-lg {
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 999px;
    min-width: 260px;
    justify-content: center;
}

.car-bike .btn-outline-w {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s;
    height: 50px;
    border-radius: 30px;
}

.car-bike .btn-outline-w:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.final-phone-line {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-top: 24px;
}

.final-phone-line strong {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-left: 8px;
    letter-spacing: 0.02em;
}

.cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.2s;
    cursor: pointer;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--ms-primary);
    transform: translateY(-3px);
}

.cta-card.primary {
    background: var(--ms-warning);
    border-color: var(--ms-warning);
}

.cta-card.primary:hover {
    background: #e64d1a;
    border-color: #e64d1a;
}

.cta-card .cta-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--ms-blue-50);
}

.cta-card.primary .cta-icon {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.cta-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.cta-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.8;
}

.cta-card.primary h4 {
    color: #fff;
}

.cta-card.primary p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-card .arrow-w {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ms-blue-50);
}

.cta-card.primary .arrow-w {
    color: #fff;
}

.final-phones {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.final-phone {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.final-phone strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 4px;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 48px;
        min-height: auto;
    }

    .hero-visual {
        height: 220px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-h2 {
        font-size: 28px;
    }

    .problem-grid,
    .solution-models,
    .reasons-grid,
    .usecases-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .steps-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-track::before {
        display: none;
    }

    .cost-calc {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }

    .final-ctas {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .calc-result-row {
        flex-direction: column;
    }
}

/* ========= RISK REVERSAL BAR (below hero CTAs) ========= */
.risk-bar {
    display: flex;
    gap: 0 10px;
    flex-wrap: wrap;
    padding: 10px;
    background: rgba(255, 204, 23, 0.08);
    border: 1px solid rgba(255, 204, 23, 0.25);
    border-radius: 10px;
    font-size: 11px;
    margin-top: 18px;
    max-width: 490px;
    justify-content: center;
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
}

.risk-item svg {
    color: var(--ms-attention);
    flex-shrink: 0;
}

.risk-item strong {
    color: var(--ms-attention);
    font-weight: 600;
}

/* ========= VS COMPARISON TABLE ========= */
.vs-compare {
    background: #fff;
    padding: 112px 32px;
}

.vs-compare .section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.vs-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--ms-border);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.vs-table thead th {
    padding: 20px 18px;
    text-align: center;
    background: var(--ms-heading-bg);
    font-size: 14px;
    font-weight: 600;
    color: var(--ms-grey-80);
    border-bottom: 2px solid var(--ms-border);
    line-height: 140%;
}

.vs-table thead th:first-child {
    text-align: left;
    background: #fff;
    color: var(--ms-grey-50);
    font-size: 14px;

    text-transform: uppercase;
}

.vs-table thead th.is-ms {
    background: var(--ms-primary);
    color: #fff;
    position: relative;
    font-size: 24px;
    font-weight: 500;
}

.vs-table thead th.is-ms::before {
    content: none;
}

.vs-table tbody td {
    padding: 18px;
    border-bottom: 1px solid var(--ms-grey-10);
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    color: var(--ms-grey-80);
    line-height: 120%;
}

.vs-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ms-text-primary);
}

.vs-table tbody td.is-ms {
    background: var(--ms-blue-5);
    font-weight: 600;
    color: var(--ms-tertiary);
}

.vs-table tr:last-child td {
    border-bottom: none;
}

.vs-mark {
    font-size: 22px;
    font-family: 'Outfit', sans-serif;
}

.vs-mark.circle {
    color: var(--ms-primary);
    font-size: 26px;
}

.vs-mark.cross {
    color: var(--ms-grey-30);
    font-size: 40px;
    font-weight: 100;
}

.vs-mark.tri {
    color: #C9A227;
}

.vs-foot {
    font-size: 11px;
    color: var(--ms-grey-50);
    margin-top: 14px;
    line-height: 1.8;
}

/* ========= VOICE (Customer testimonials) ========= */
.voice {
    background: linear-gradient(180deg, var(--ms-blue-5), #fff);
    padding: 112px 32px;
    position: relative;
}

.voice .section-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.voice-card {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 16px;
    padding: 28px 26px;
    position: relative;
    transition: all 0.2s;
}

.voice-card:hover {
    border-color: var(--ms-primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(35, 137, 202, 0.12);
}

.voice-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Outfit', serif;
    font-size: 56px;
    line-height: 0.7;
    color: var(--ms-blue-10);
    font-weight: 600;
    user-select: none;
}

.voice-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--ms-attention);
}

.voice-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--ms-text-primary);
}

.voice-body {
    font-size: 16px;
    line-height: 1.95;
    color: var(--ms-grey-80);
    margin-bottom: 20px;
}

.voice-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    background: var(--ms-blue-5);
    border-radius: 8px;
    margin-bottom: 18px;
}

.voice-kpi-l {
    font-size: 10px;
    color: var(--ms-grey-50);
    letter-spacing: 0.04em;
}

.voice-kpi-v {
    font-size: 18px;
    font-weight: 600;
    color: var(--ms-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.voice-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--ms-grey-10);
}

.voice-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--ms-blue-50), var(--ms-primary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.02em;
}

.voice-avatar.v2 {
    background: linear-gradient(135deg, #f7a372, var(--ms-warning));
}

.voice-avatar.v3 {
    background: linear-gradient(135deg, #6a78d6, var(--ms-admin));
}

.voice-avatar.v4 {
    background: linear-gradient(135deg, #5dcc8e, #18A957);
}

.voice-avatar.v5 {
    background: linear-gradient(135deg, var(--ms-tertiary), #062c4a);
}

.voice-person-body {
    flex: 1;
    line-height: 1.5;
}

.voice-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--ms-text-primary);
}

.voice-role {
    font-size: 11px;
    color: var(--ms-grey-80);
    margin-top: 2px;
}

.voice-tag {
    display: inline-block;
    font-size: 10px;
    padding: 2px 8px;
    background: var(--ms-blue-10);
    color: var(--ms-tertiary);
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

/* Video testimonial feature row */
.voice-video {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--garage-dark);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 24px;
    border: 1px solid var(--garage-line);
}

.voice-video-player {
    background: linear-gradient(135deg, #1a2029, #0e1115);
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.voice-video-player::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 161, 213, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 161, 213, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.voice-video-player::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(14, 17, 21, 0.6) 70%);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ms-primary);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.play-btn:hover {
    transform: scale(1.08);
}

.play-btn::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.2;
    }
}

.video-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
}

.video-caption-tag {
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--ms-warning);
    font-weight: 600;
    margin-bottom: 4px;
}

.video-caption-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.voice-video-body {
    padding: 36px 32px;
    color: #fff;
}

.voice-video-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.voice-video-body p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 20px;
}

.voice-video-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-video-person .voice-name {
    color: #fff;
}

.voice-video-person .voice-role {
    color: rgba(255, 255, 255, 0.6);
}

/* SNS quotes strip */
.sns-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.sns-card {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 12px;
    line-height: 1.8;
    color: var(--ms-grey-80);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sns-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sns-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sns-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ms-grey-10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--ms-grey-80);
}

.sns-user-name {
    font-weight: 600;
    color: var(--ms-text-primary);
    font-size: 12px;
}

.sns-user-handle {
    font-size: 11px;
    color: var(--ms-grey-50);
}

.sns-logo {
    color: var(--ms-grey-50);
}

/* ========= GUARANTEE BAND ========= */
.guarantee {
    padding: 64px 32px;
    background: linear-gradient(135deg, var(--ms-tertiary), var(--ms-primary));
    color: #fff;
}

.guarantee-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guar-item {
    text-align: center;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.guar-item:last-child {
    border-right: none;
}

.guar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.guar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.guar-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ========= PLAN COMPARISON TABLE (added) ========= */
.plan-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 14px;
    margin-top: 32px;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.plan-table thead th {
    padding: 18px 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: var(--ms-heading-bg);
    border-bottom: 2px solid var(--ms-border);
}

.plan-table thead th:first-child {
    text-align: left;
    font-size: 11px;
    color: var(--ms-grey-50);

    background: #fff;
}

.plan-table thead th.best {
    background: var(--ms-primary);
    color: #fff;
    position: relative;
}

.plan-table thead th.best::before {
    content: "BtoB??";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ms-warning);
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.plan-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--ms-grey-10);
    font-size: 16px;
    text-align: center;
    color: var(--ms-grey-80);
}

.plan-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ms-text-primary);
}

.plan-table tbody td.best {
    background: var(--ms-blue-5);
    color: var(--ms-tertiary);
    font-weight: 600;
}

.plan-table tr:last-child td {
    border-bottom: none;
}

/* ========= INLINE FORM ========= */
.inline-form {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    max-width: 680px;
    margin: 32px auto 0;
    text-align: left;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    color: var(--ms-text-primary);
}

.inline-form h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.inline-form p {
    font-size: 16px;
    color: var(--ms-grey-80);
    margin-bottom: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ms-grey-80);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-field label .req {
    font-size: 10px;
    padding: 2px 6px;
    background: var(--ms-warning);
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ms-text-primary);
    background: #fff;
    transition: border 0.15s, box-shadow 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--ms-primary);
    box-shadow: 0 0 0 3px rgba(35, 137, 202, 0.15);
}

.form-field textarea {
    resize: vertical;
    min-height: 84px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--ms-grey-80);
    line-height: 1.8;
    margin-bottom: 16px;
}

.form-consent a {
    color: var(--ms-primary);
    text-decoration: underline;
}

.form-submit {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.form-meta {
    font-size: 11px;
    color: var(--ms-grey-50);
}

.form-success {
    display: none;
    background: #E8F5EC;
    color: #0F8046;
    padding: 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 16px;
    border: 1px solid #b9e3c9;
}

.inline-form.submitted .form-success {
    display: block;
}

.inline-form.submitted .form-body {
    display: none;
}

/* ========= COMPANY INFO ========= */
.company {
    background: #fff;
    padding: 72px 32px;
}

.company-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

.company h3 {
    font-size: 16px;
    color: var(--ms-primary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.company h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
}

.company p.lead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ms-grey-80);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.company-table tr {
    border-bottom: 1px solid var(--ms-grey-10);
}

.company-table th,
.company-table td {
    padding: 14px 6px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    font-weight: 600;
    color: var(--ms-grey-80);
    width: 160px;
}

.company-table td {
    color: var(--ms-grey-80);
    line-height: 1.8;
}

.company-table td a {
    color: var(--ms-primary);
    text-decoration: underline;
}

/* ========= IMAGE SHOWCASE ========= */
.showcase {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    height: 320px;
}

.showcase-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--garage-mid);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(79, 161, 213, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 161, 213, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
}

.showcase-card.sc-1 {
    grid-row: span 2;
    background: linear-gradient(135deg, #1a2029, #0e1115);
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8));
}

.sc-svg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(79, 161, 213, 0.5);
}

.showcase-label {
    position: relative;
    z-index: 2;
    color: #fff;
}

.showcase-label .tag {
    font-size: 10px;
    color: var(--ms-warning);
    letter-spacing: 0.14em;
    font-weight: 600;
}

.showcase-label h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 960px) {

    /* Utility line breaks */
    .pc-br {
        display: none;
    }

    .sp-br {
        display: block;
    }

    .vs-compare,
    .voice,
    .company {
        padding: 72px 20px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .voice-video {
        grid-template-columns: 1fr;
    }

    .voice-video-player {
        min-height: 220px;
    }

    .sns-strip {
        grid-template-columns: 1fr;
    }

    .guarantee-inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .guar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 24px;
    }

    .guar-item:last-child {
        border-bottom: none;
    }

    .company-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .showcase-card {
        min-height: 180px;
    }

    .showcase-card.sc-1 {
        grid-row: auto;
        grid-column: span 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .risk-bar {
        font-size: 11px;
    }

    .inline-form {
        padding: 24px;
    }
}