@charset "utf-8";

:root {
    --navy: #132238;
    --navy-mid: #1E3A5F;
    --blue: #2563EB;
    --blue-light: #EFF6FF;
    --teal: #0D9488;
    --teal-light: #F0FDFA;
    --amber: #F59E0B;
    --amber-light: #FFFBEB;
    --slate: #64748B;
    --line: #E2E8F0;
    --paper: #F8FAFC;
    --white: #FFFFFF;
    --ink: #0F172A;
    --ink-soft: #475569;
    --red: #EF4444;
    --green: #10B981;
    --font: "Noto Sans JP", sans-serif;
    --mono: "Roboto Mono", monospace;
    --r: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4 {
    line-height: 1.3;
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--blue);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.h2 {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--navy);
    font-weight: 900;
    margin-bottom: 14px;
}

.h2 em {
    font-style: normal;
    color: var(--blue);
}

.h2 em.teal {
    color: var(--teal);
}

.sub {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 600px;
    line-height: 1.85;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .15s;
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 6px 18px rgba(37, 99, 235, .3);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .4);
}

.hero-cta .btn-outline{
	background: #fff;
}

.btn-outline {
    color: var(--navy);
    border: 1.5px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--amber);
    background: var(--amber);
	color: var(--paper);
}

.btn-navy {
    background: var(--navy);
    color: #fff;
}

.btn-navy:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* Topbar */
.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    padding: 9px 0;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-pip {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
}

.topbar-tel {
    font-family: var(--mono);
    color: rgba(255, 255, 255, .8);
    font-size: 14px;
}

/* Hero – bright white layout */
.hero {
    background: var(--white);
    padding: 64px 0 72px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-light);
    border: 1px solid rgba(37, 99, 235, .25);
    color: var(--blue);
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 20px;
}

.hero h1 .line2 {
    display: block;
    color: var(--blue);
    font-size: .85em;
}

.hero-lead {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin-bottom: 30px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-proof {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-soft);
}

.proof-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-icon svg {
    width: 18px;
    height: 18px;
}

/* Hero right: problem cards */
.prob-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prob-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.prob-card .pc-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prob-card .pc-icon svg {
    width: 20px;
    height: 20px;
}

.prob-card.red .pc-icon {
    background: #FEF2F2;
    color: var(--red);
}

.prob-card.orange .pc-icon {
    background: #FFF7ED;
    color: var(--amber);
}

.prob-card.yellow .pc-icon {
    background: var(--amber-light);
    color: #92400E;
}

.prob-card h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.prob-card p {
    font-size: 12.5px;
    color: var(--ink-soft);
}

.prob-card .pc-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    display: inline-block;
    margin-top: 6px;
}

.prob-card.red .pc-tag {
    background: #FEE2E2;
    color: #991B1B;
}

.prob-card.orange .pc-tag {
    background: #FFEDD5;
    color: #9A3412;
}

.prob-card.yellow .pc-tag {
    background: var(--amber-light);
    color: #92400E;
}

/* Intro stat bar */
.stat-bar {
    background: var(--navy);
    color: #fff;
    padding: 28px 0;
}

.stat-bar-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sbar-item {
    text-align: center;
}

.sbar-num {
    font-family: var(--mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--amber);
}

.sbar-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

/* Demo section */
.demo-section {
    background: var(--paper);
}

.demo-intro {
    text-align: center;
    margin-bottom: 44px;
}

.demo-intro .sub {
    margin: 0 auto;
}

/* Browser chrome */
.browser {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .10);
}

.browser-bar {
    background: #F1F5F9;
    border-bottom: 1px solid var(--line);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #FF5F57;
}

.browser-dots span:nth-child(2) {
    background: #FEBC2E;
}

.browser-dots span:nth-child(3) {
    background: #28C840;
}

.browser-url {
    flex: 1;
    max-width: 340px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-soft);
}

.browser-badge {
    margin-left: auto;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
}

/* App shell */
.app-shell {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 560px;
}

.app-nav {
    background: #0F172A;
}

.app-nav-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.app-nav-brand {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.app-nav-brand span {
    color: var(--teal);
}

.app-nav-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px;
}

.nav-items {
    padding: 10px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .15s;
    border-left: 3px solid transparent;
}

.nav-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-item:hover {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .85);
}

.nav-item.active {
    background: rgba(37, 99, 235, .18);
    color: #fff;
    border-left-color: var(--blue);
}

.nav-item .nav-badge {
    margin-left: auto;
    font-size: 10.5px;
    background: var(--blue);
    color: #fff;
    padding: 1px 7px;
    border-radius: 99px;
    font-weight: 700;
}

.app-main {
    background: #fff;
    overflow: hidden;
}

.demo-panel {
    display: none;
    height: 100%;
    flex-direction: column;
}

.demo-panel.active {
    display: flex;
}

.panel-hd {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-hd-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--navy);
}

.panel-hd-meta {
    font-size: 12px;
    color: var(--ink-soft);
}

.panel-bd {
    padding: 20px;
    flex: 1;
    overflow: auto;
}

/* === PANEL 1: CUSTOMER CARD === */
.karte-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 16px;
    height: 100%;
}

.karte-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.karte-item {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: all .15s;
    background: #fff;
}

.karte-item:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(37, 99, 235, .12);
}

.karte-item.active {
    border-color: var(--blue);
    background: var(--blue-light);
}

.ki-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
}

.ki-meta {
    font-size: 11.5px;
    color: var(--ink-soft);
    margin-top: 3px;
}

.ki-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    margin-top: 5px;
}

.ki-tag.hot {
    background: #FEE2E2;
    color: #991B1B;
}

.ki-tag.warm {
    background: #FEF3C7;
    color: #92400E;
}

.ki-tag.follow {
    background: #DBEAFE;
    color: #1D4ED8;
}

.karte-detail {
    background: var(--paper);
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 18px;
    overflow: auto;
}

.kd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.kd-name {
    font-size: 17px;
    font-weight: 900;
    color: var(--navy);
}

.kd-company {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 3px;
}

.kd-score {
    text-align: right;
}

.kd-score .score-num {
    font-family: var(--mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--blue);
}

.kd-score .score-label {
    font-size: 11px;
    color: var(--ink-soft);
}

.kd-section {
    margin-bottom: 14px;
}

.kd-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.kd-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.kd-field {
    background: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
}

.kd-field .fl {
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 3px;
}

.kd-field .fv {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.kd-history {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hist-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.hist-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.hist-body {
    font-size: 12.5px;
}

.hist-date {
    font-size: 11px;
    color: var(--ink-soft);
}

/* === PANEL 2: UPSELL RANKING === */
.rank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.rank-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.rank-badge {
    font-size: 11px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 3px 10px;
    border-radius: 99px;
    font-weight: 700;
}

.rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all .15s;
}

.rank-card:hover {
    border-color: var(--blue);
    box-shadow: 0 2px 10px rgba(37, 99, 235, .1);
}

.rank-card.expanded {
    border-color: var(--blue);
}

.rank-num {
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 700;
    width: 28px;
    flex-shrink: 0;
}

.rank-num.r1 {
    color: var(--amber);
}

.rank-num.r2 {
    color: var(--slate);
}

.rank-num.r3 {
    color: #9CA3AF;
}

.rank-info {
    flex: 1;
}

.ri-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
}

.ri-reason {
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 3px;
}

.rank-score-bar {
    width: 80px;
    flex-shrink: 0;
}

.rsb-label {
    font-size: 10.5px;
    color: var(--ink-soft);
    margin-bottom: 4px;
    text-align: right;
}

.rsb-track {
    height: 6px;
    background: var(--line);
    border-radius: 99px;
    overflow: hidden;
}

.rsb-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    transition: width .6s cubic-bezier(.34, 1.56, .64, 1);
}

.rank-action {
    flex-shrink: 0;
}

.rank-expand {
    display: none;
    background: var(--blue-light);
    border-radius: 0 0 10px 10px;
    padding: 12px 16px;
    margin: -14px -16px;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--ink-soft);
}

.rank-expand.show {
    display: block;
}

.rank-expand strong {
    color: var(--blue);
}

.rank-ai-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.rank-ai-label svg {
    width: 13px;
    height: 13px;
}

/* === PANEL 3: TIMELINE === */
.timeline-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px;
}

.tl-clients {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tl-client {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 13px;
    transition: all .15s;
    background: #fff;
}

.tl-client.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.tl-client:hover:not(.active) {
    border-color: var(--blue);
}

.tl-client .tc-name {
    font-weight: 700;
}

.tl-client .tc-last {
    font-size: 11px;
    opacity: .65;
    margin-top: 2px;
}

.tl-body {
    background: var(--paper);
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 16px;
}

.tl-name {
    font-size: 15px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.tl-entries {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tl-entry {
    display: flex;
    gap: 14px;
    position: relative;
    padding-bottom: 16px;
}

.tl-entry::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: var(--line);
}

.tl-entry:last-child::before {
    display: none;
}

.tl-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--line);
}

.tl-dot svg {
    width: 16px;
    height: 16px;
}

.tl-dot.call {
    background: #DBEAFE;
    color: #1D4ED8;
}

.tl-dot.mail {
    background: #DCFCE7;
    color: #15803D;
}

.tl-dot.meet {
    background: #FEF3C7;
    color: #B45309;
}

.tl-dot.doc {
    background: #F3E8FF;
    color: #6B21A8;
}

.tl-dot.alert {
    background: #FEE2E2;
    color: #B91C1C;
}

.tl-content {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--line);
    padding: 12px 14px;
}

.tl-content .tc-meta {
    font-size: 11px;
    color: var(--ink-soft);
    margin-bottom: 5px;
}

.tl-content .tc-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.tl-content .tc-body {
    font-size: 12.5px;
    color: var(--ink-soft);
}

.tl-alert-banner {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #991B1B;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

/* Demo caption */
.demo-caption {
    background: var(--navy);
    border-radius: 14px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.dc-text p {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.dc-text span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .6);
}

/* Features grid */
.features {
    background: var(--paper);
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feat-icon svg {
    width: 24px;
    height: 24px;
}

.feat-icon.blue {
    background: var(--blue-light);
    color: var(--blue);
}

.feat-icon.teal {
    background: var(--teal-light);
    color: var(--teal);
}

.feat-icon.amber {
    background: var(--amber-light);
    color: var(--amber);
}

.feat-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feat-card p {
    font-size: 13.5px;
    color: var(--ink-soft);
}

/* Comparison */
.compare {
    background: #fff;
}

.cmp-scroll {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

table.cmp {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

table.cmp th, table.cmp td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
}

table.cmp thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

table.cmp thead th:first-child {
    text-align: left;
}

table.cmp td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--navy);
    background: var(--paper);
}

table.cmp .col-z {
    background: var(--blue-light);
}

table.cmp thead th.col-z {
    background: var(--blue);
}

table.cmp tbody tr:last-child td {
    border-bottom: none;
}

.ok {
    color: var(--green);
    font-weight: 700;
}

.ng {
    color: var(--red);
    font-weight: 700;
}

.mid {
    color: var(--amber);
    font-weight: 700;
}

/* Testimonials */
.voices {
    background: var(--paper);
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.voice-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    position: relative;
}

.voice-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.voice-star {
    color: var(--amber);
    font-size: 16px;
}

.voice-body {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.85;
    margin-bottom: 18px;
}

.voice-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.va {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.vn {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
}

.vr {
    font-size: 12px;
    color: var(--ink-soft);
}

/* Provider */
.provider {
    background: #fff;
}

.prov-box {
    background: var(--paper);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 40px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
}

.prov-name {
    font-size: 16px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.prov-cert {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--blue);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
}

.prov-addr {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.prov-pts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prov-pt {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.prov-pt .n {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.prov-pt p {
    font-size: 13.5px;
    color: var(--ink);
}

.prov-pt strong {
    color: var(--navy);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
}

.cta-inner {
    text-align: center;
}

.cta-inner .eyebrow {
    color: var(--amber);
    justify-content: center;
    display: flex;
}

.cta-inner h2 {
    font-size: clamp(24px, 3.5vw, 34px);
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.cta-inner h2 span {
    color: var(--amber);
}

.cta-inner p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 28px;
}

.cta-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 34px;
}

.cta-checks li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
}

.cta-checks li::before {
    content: "✓";
    color: var(--amber);
    font-weight: 700;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-btns .btn {
    width: 100%;
    max-width: 440px;
}

.cta-note {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
}

/* Footer */
footer {
    background: #060F1C;
    color: rgba(255, 255, 255, .38);
    padding: 28px 0;
    font-size: 12px;
}

footer .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* Sticky mobile */
.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
    padding: 10px 16px;
    gap: 10px;
    z-index: 50;
}

.sticky .btn {
    flex: 1;
    padding: 13px;
    font-size: 13.5px;
}

/* Toast */
#demo-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 13.5px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    white-space: nowrap;
    max-width: 90vw;
    text-align: center;
    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media(max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero::after {
        display: none;
    }

    .prob-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .prov-box {
        grid-template-columns: 1fr;
    }

    .app-shell {
        grid-template-columns: 180px 1fr;
    }

    .karte-layout {
        grid-template-columns: 1fr;
    }

    .karte-detail {
        display: none;
    }

    .timeline-layout {
        grid-template-columns: 1fr;
    }

    .tl-clients {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .tl-body {
        margin-top: 8px;
    }
}


/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 600px) {
    /*/////////////PC用のCSSをここに作成してください。/////////////*/


}


/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 599px) {

    /*/////////////SP用のCSSをここに作成してください。/////////////*/
    section {
        padding: 52px 0;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .prob-stack {
        grid-template-columns: 1fr;
    }

    .app-shell {
        grid-template-columns: 48px 1fr;
    }

    .app-nav-header, .nav-item span, .nav-item .nav-badge {
        display: none;
    }

    .nav-item {
        justify-content: center;
    }

    .stat-bar-inner {
        gap: 30px;
    }

    .sticky {
        display: flex;
    }

    body {
        padding-bottom: 64px;
    }

}