@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho:wght@500;600;700&display=swap');

:root {
    --green: #14a05a;
    --green-deep: #0a2b1a;
    --green-soft: #eaf7f0;
    --ink: #0a0b0d;
    --gray: #5b6168;
    --line: #e4e6e4;
    --bg: #ffffff;
    --offwhite: #f7f8f7;
    --nebula-1: #14a05a;
    --nebula-2: #4fd88a;
    --nebula-3: #0a2b1a;
    --serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    --sans: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Header */
header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--green);
}

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

/* Global Nav */
.global-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 1.8rem;
}

.global-nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.global-nav a:hover {
    color: var(--green);
}

.global-nav a.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

/* Main Container */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    margin: 0;
    padding: 5.5rem 0;
    background: transparent;
    border-bottom: 1px solid var(--line);
}

.container > section:last-child {
    border-bottom: none;
}

section h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    line-height: 1.4;
    position: relative;
    padding-top: 1.4rem;
    margin-bottom: 2.5rem;
}

section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 3px;
    background: var(--green);
}

.section-lead {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* ================= Intro / entrance sequence ================= */
#liora-intro {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #050906;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.7s ease;
}

#liora-intro.liora-intro-hide {
    opacity: 0;
    pointer-events: none;
}

#liora-intro-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.liora-intro-mark {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    font-family: var(--sans);
    opacity: 0;
    animation: liora-intro-mark-in 1.4s ease 0.3s forwards;
}

.liora-intro-mark .li-word {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    padding-left: 0.5em;
}

.liora-intro-mark .li-sub {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--nebula-2);
}

@keyframes liora-intro-mark-in {
    0% { opacity: 0; letter-spacing: 0.2em; filter: blur(6px); }
    60% { opacity: 1; filter: blur(0); }
    100% { opacity: 1; }
}

.liora-intro-skip {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
}

@media (max-width: 700px) {
    .liora-intro-mark .li-word {
        font-size: 1.5rem;
        letter-spacing: 0.35em;
    }
}

/* Hero (home) */
.hero {
    background: linear-gradient(180deg, #ffffff 0%, var(--offwhite) 100%);
    color: var(--ink);
    padding: 10rem 2rem;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.starfield {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 0;
}

/* Cosmos — a clean data/network particle motif in green, on white. */
.cosmos {
    --px: 0;
    --py: 0;
}

.hero > *:not(.starfield),
.page-lead > *:not(.starfield) {
    position: relative;
    z-index: 2;
}

@keyframes liora-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow {
    animation: liora-rise 0.9s ease both;
}

.hero h2 {
    animation: liora-rise 1s ease 0.15s both;
}

.hero p {
    animation: liora-rise 1s ease 0.32s both;
}

@media (prefers-reduced-motion: reduce) {
    .hero .eyebrow,
    .hero h2,
    .hero p { animation: none; }
}

.hero .eyebrow {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero h2 {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin-bottom: 1.6rem;
    color: var(--ink);
}

.hero p {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 2;
}

/* Page lead (subpage intro) */
.page-lead {
    background: linear-gradient(180deg, #ffffff 0%, var(--offwhite) 100%);
    color: var(--ink);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.page-lead h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--ink);
}

.page-lead p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.9;
}

/* Nav cards (home) */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0;
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.nav-card {
    display: block;
    background: var(--bg);
    padding: 2.4rem 2rem;
    text-decoration: none;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease;
}

.nav-card:hover {
    background: var(--green-soft);
}

.nav-card .nav-card-en {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 1rem;
}

.nav-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.nav-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
}

/* News teaser (home) */
.news-teaser {
    border-top: 1px solid var(--line);
    margin-top: 1.5rem;
}

.news-teaser-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
}

.news-teaser-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.04em;
}

/* CTA banners (home) */
.cta-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cta-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 3rem 2.2rem;
    text-decoration: none;
    color: #fff;
    background:
        radial-gradient(circle at 25% 20%, rgba(20, 160, 90, 0.35), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(79, 216, 138, 0.18), transparent 55%),
        linear-gradient(160deg, #0a0b0d 0%, #14100a 100%);
    min-height: 220px;
    transition: transform 0.3s ease;
}

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

.cta-card .cta-en {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.cta-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.cta-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.cta-card .cta-arrow {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--nebula-2);
}

@media (max-width: 700px) {
    .cta-banner {
        grid-template-columns: 1fr;
    }
}
/* MVV epic narrative sections */
.mvv-narrative {
    max-width: 760px;
    margin: 0 auto;
}

.mvv-narrative .mvv-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 1.6rem;
    text-align: center;
}

.mvv-narrative h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.9;
    text-align: center;
    letter-spacing: 0.03em;
    margin-bottom: 2.2rem;
}

.mvv-narrative p {
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--gray);
    margin-bottom: 1.6rem;
}

.mvv-narrative p:last-child {
    margin-bottom: 0;
}

.mvv-narrative strong {
    color: var(--ink);
    font-weight: 700;
}

.mvv-divider {
    width: 1px;
    height: 60px;
    background: var(--line);
    margin: 0 auto;
}

/* MVV hero-scale cards */
.mvv-grid.mvv-grand {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    border-top: 1px solid var(--line);
}

.mvv-grand .mvv-card {
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 4.5rem 2rem;
    background: transparent;
}

.mvv-grand .mvv-card:last-child {
    border-bottom: none;
}

.mvv-grand .mvv-label {
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
}

.mvv-grand .mvv-text {
    font-size: 2.1rem;
    line-height: 1.7;
}

.mvv-grand .mvv-text span {
    font-size: 2.1rem;
    margin-top: 0.8rem;
    font-weight: 600;
    color: var(--ink);
}

@media (max-width: 700px) {
    .mvv-narrative h3 {
        font-size: 1.35rem;
    }

    .mvv-grand .mvv-text {
        font-size: 1.5rem;
    }

    .mvv-grand .mvv-card {
        padding: 3rem 1.4rem;
    }
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.mvv-card {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 3rem 1.8rem;
    text-align: center;
}

.mvv-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.mvv-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.8;
}

.mvv-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Business List Section */
.biz-item {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 140px;
}

.biz-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.biz-head {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.biz-num {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.05em;
}

.biz-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.biz-body p {
    font-size: 1.02rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 1.2rem;
}

.biz-body p:last-child {
    margin-bottom: 0;
}

.biz-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.biz-figure {
    margin: 0;
}

.biz-figure img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--line);
}

.biz-figure figcaption {
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--gray);
    font-weight: 500;
    text-align: center;
}

.img-slot {
    background:
        repeating-linear-gradient(45deg, #f3f3f1 0, #f3f3f1 12px, #ececea 12px, #ececea 24px);
    border: 1px dashed #c7ccc8;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.img-slot .img-tag {
    font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
    font-size: 0.78rem;
    color: var(--green);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.6rem;
}

.img-slot .img-desc {
    font-size: 0.92rem;
    color: var(--gray);
    font-weight: 500;
}

.biz-tbd {
    background: var(--offwhite);
    border: 1px solid var(--line);
    padding: 2rem;
    text-align: center;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.98rem;
    letter-spacing: 0.05em;
}

/* Sub-heading inside a business block */
.biz-subhead {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin: 2.4rem 0 1rem;
    padding-left: 0.9rem;
    border-left: 3px solid var(--green);
}

/* Why-it-matters callout */
.biz-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.biz-point {
    background: var(--offwhite);
    border: 1px solid var(--line);
    padding: 1.6rem 1.5rem;
}

.biz-point .pt-num {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    display: block;
    margin-bottom: 0.7rem;
}

.biz-point h4 {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.biz-point p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Spec list (key features as label/value rows) */
.spec-list {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-top: 1.5rem;
}

.spec-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.spec-list .spec-key {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.95rem;
    min-width: 12rem;
}

.spec-list .spec-val {
    color: var(--gray);
    font-size: 0.95rem;
    flex: 1 1 50%;
    line-height: 1.7;
}

/* Demo link button */
.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    color: #fff;
    background: var(--green);
    text-decoration: none;
    padding: 0.95rem 2.2rem;
    transition: background 0.2s ease;
}

.demo-link:hover {
    background: var(--green-deep);
}

.demo-link .arrow {
    font-size: 1.1em;
    line-height: 1;
}

.demo-note {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Stat row */
.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
}

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

.stat-item .stat-num {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.03em;
}

/* Payout emphasis (100% back) */
.payout-stat {
    position: relative;
}

.payout-stat::before {
    content: '';
    position: absolute;
    inset: -14px -10px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 174, 122, 0.22), transparent 70%);
    animation: payout-pulse-ring 2.2s ease-in-out infinite;
    z-index: -1;
}

.payout-glow {
    color: var(--green);
    text-shadow: 0 0 18px rgba(47, 174, 122, 0.55);
    animation: payout-text-pulse 2.2s ease-in-out infinite;
    display: inline-block;
}

@keyframes payout-pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.12); opacity: 1; }
}

@keyframes payout-text-pulse {
    0%, 100% { text-shadow: 0 0 10px rgba(47, 174, 122, 0.35); transform: scale(1); }
    50% { text-shadow: 0 0 26px rgba(47, 174, 122, 0.75), 0 0 46px rgba(79, 216, 138, 0.4); transform: scale(1.045); }
}

.plan-card-head .plan-price.payout-glow {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    animation: payout-text-pulse-light 2.2s ease-in-out infinite;
}

@keyframes payout-text-pulse-light {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.35); transform: scale(1); }
    50% { text-shadow: 0 0 30px rgba(79, 216, 138, 0.9), 0 0 50px rgba(20, 160, 90, 0.6); transform: scale(1.045); }
}

@media (prefers-reduced-motion: reduce) {
    .payout-stat::before,
    .payout-glow,
    .plan-card-head .plan-price.payout-glow {
        animation: none !important;
    }
}

/* Reason cards (5 reasons etc) */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.reason-grid.reason-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

.reason-card {
    border: 1px solid var(--line);
    padding: 1.8rem 1.6rem;
}

.reason-card .reason-num {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 0.8rem;
}

.reason-card h4 {
    font-size: 1.02rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.reason-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Flow steps */
.flow-steps {
    counter-reset: flow;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

/* CTA buttons (row) */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-row.cta-row-final {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 2.2rem;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-btn-primary {
    background: var(--green);
    color: #fff;
}

.cta-btn-primary:hover {
    background: var(--green-deep);
}

.cta-btn-outline {
    border: 1px solid var(--green);
    color: var(--green);
    background: #fff;
}

.cta-btn-outline:hover {
    background: var(--green-soft);
}

/* FAQ */
.faq-list {
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
}

.faq-item .faq-q {
    display: flex;
    gap: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
}

.faq-item .faq-q span {
    color: var(--green);
    font-family: var(--serif);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item .faq-a {
    display: flex;
    gap: 0.9rem;
    margin-top: 0.7rem;
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.85;
}

.faq-item .faq-a span {
    color: var(--gray);
    font-weight: 700;
    flex-shrink: 0;
}

/* Sticky mobile apply bar */
.sticky-apply-bar {
    display: none;
}

@media (max-width: 700px) {
    .sticky-apply-bar {
        display: flex;
        gap: 0.7rem;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        padding: 0.7rem 1rem;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
    }

    .sticky-apply-bar .cta-btn {
        flex: 1;
        padding: 0.85rem 1rem;
        font-size: 0.86rem;
    }

    body.has-sticky-apply .container {
        padding-bottom: 5.5rem;
    }

    .reason-grid.reason-grid-4 {
        grid-template-columns: 1fr;
    }
}

.flow-step {
    counter-increment: flow;
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.2rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
}

.flow-step::before {
    content: counter(flow, decimal-leading-zero);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green);
}

.flow-step h4 {
    font-size: 1.02rem;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.flow-step p {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Plan card */
.plan-card {
    border: 1px solid var(--green);
    margin-top: 1.5rem;
}

.plan-card-head {
    background: var(--green);
    color: #fff;
    padding: 1.8rem 2rem;
    text-align: center;
}

.plan-card-head .plan-name {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.6rem;
}

.plan-card-head .plan-price {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.plan-card-head .plan-price small {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.3rem;
}

/* Include list (checkmark features) */
.include-list {
    list-style: none;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.include-list li {
    font-size: 0.98rem;
    color: var(--gray);
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.8;
}

.include-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 700;
}

.include-list li strong {
    color: var(--ink);
}

/* Service list */
.service-list {
    background: var(--offwhite);
    border: 1px solid var(--line);
    padding: 2.2rem;
    margin-top: 1.8rem;
}

.service-list h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.service-list ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.9rem;
}

.service-list li {
    font-size: 1rem;
    color: var(--gray);
    padding-left: 1.6rem;
    position: relative;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    background: var(--green);
}

/* Strengths Section */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.strength-card {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 2.2rem;
    transition: border-color 0.25s ease;
}

.strength-card:hover {
    border-color: var(--green);
}

.strength-card h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.strength-card p {
    font-size: 0.96rem;
    color: var(--gray);
    line-height: 1.85;
}

/* Results / placeholder */
.results-placeholder {
    background: var(--offwhite);
    border: 1px solid var(--line);
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 1rem;
}

.results-placeholder h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.results-placeholder p {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* News list */
.news-list {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-top: 1rem;
}

.news-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
}

.news-date {
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
    min-width: 6.5rem;
}

.news-tag {
    font-size: 0.74rem;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 0.18rem 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.news-title {
    font-size: 1rem;
    color: var(--ink);
    flex: 1 1 60%;
}

/* Company info table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--line);
    margin-top: 1rem;
}

.info-table th,
.info-table td {
    text-align: left;
    padding: 1.3rem 1.2rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    font-size: 1rem;
    line-height: 1.7;
}

.info-table th {
    width: 28%;
    color: var(--ink);
    font-weight: 700;
    white-space: nowrap;
}

.info-table td {
    color: var(--gray);
}

.info-table td a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.info-table td a:hover {
    text-decoration: underline;
}

/* Message */
.message-body {
    font-size: 1.04rem;
    line-height: 2.15;
    color: var(--gray);
}

.message-body p {
    margin-bottom: 1.4rem;
}

.message-sign {
    margin-top: 1.8rem;
    text-align: right;
    color: var(--ink);
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.message-sign .role {
    display: block;
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 0.4rem;
}

/* Recruit */
.recruit-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.recruit-value {
    background: var(--bg);
    border: 1px solid var(--line);
    padding: 2rem 1.8rem;
}

.recruit-value h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: 0.03em;
}

.recruit-value p {
    font-size: 0.94rem;
    color: var(--gray);
    line-height: 1.85;
}

/* Job postings */
.job-card {
    border: 1px solid var(--line);
    margin-top: 1rem;
}

.job-card + .job-card {
    margin-top: 2rem;
}

.job-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.2rem;
    padding: 1.6rem 2rem;
    background: var(--green);
    color: #fff;
}

.job-head .job-cat {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.job-head h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: 100%;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-badge {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
}

.job-table {
    width: 100%;
    border-collapse: collapse;
}

.job-table th,
.job-table td {
    text-align: left;
    padding: 1.1rem 2rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
    font-size: 0.98rem;
    line-height: 1.8;
}

.job-table tr:last-child th,
.job-table tr:last-child td {
    border-bottom: none;
}

.job-table th {
    width: 26%;
    color: var(--ink);
    font-weight: 700;
    white-space: nowrap;
    background: var(--offwhite);
}

.job-table td {
    color: var(--gray);
}

.job-table td .accent {
    color: var(--green);
    font-weight: 700;
    font-size: 1.05rem;
}

.choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.6rem;
}

.choice-chip {
    border: 1px solid var(--green);
    color: var(--green);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 0.4rem 1.1rem;
}

/* Contact */
.contact-form {
    margin-top: 1rem;
    display: grid;
    gap: 1.4rem;
    max-width: 680px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row label {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.92rem;
    letter-spacing: 0.03em;
}

.form-row input,
.form-row textarea {
    font: inherit;
    color: var(--ink);
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--bg);
    width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--green);
}

.form-row textarea {
    min-height: 160px;
    resize: vertical;
}

.btn-submit {
    justify-self: start;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--green);
    border: none;
    border-radius: 0;
    padding: 1rem 3rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: var(--green-deep);
}

.contact-direct {
    margin-top: 2.5rem;
    background: var(--offwhite);
    border: 1px solid var(--line);
    padding: 2rem;
    font-size: 1rem;
    color: var(--gray);
    line-height: 2;
}

.contact-direct a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--green-deep);
    padding: 3.5rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

footer a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.2s ease;
}

footer a:hover {
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1.1rem 1.3rem;
    }

    header h1 {
        font-size: 1.3rem;
    }

    .global-nav {
        width: 100%;
        gap: 0.3rem 1.2rem;
    }

    .global-nav a {
        font-size: 0.84rem;
    }

    .container {
        padding: 0 1.4rem;
    }

    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 5rem 1.5rem;
    }

    .hero h2 {
        font-size: 1.9rem;
        line-height: 1.7;
    }

    .page-lead {
        padding: 3.5rem 1.5rem;
    }

    .page-lead h2 {
        font-size: 1.7rem;
    }

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

    .biz-images {
        grid-template-columns: 1fr;
    }

    .biz-title {
        font-size: 1.3rem;
    }

    .biz-item {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 0.4rem 0;
    }

    .info-table th {
        padding-top: 1.2rem;
    }

    .info-table tr {
        display: block;
        border-bottom: 1px solid var(--line);
        padding-bottom: 1rem;
    }

    .job-head {
        padding: 1.3rem 1.4rem;
    }

    .job-table th,
    .job-table td {
        display: block;
        width: 100%;
        padding: 0.5rem 1.4rem;
        border-bottom: none;
    }

    .job-table th {
        padding-top: 1rem;
        background: transparent;
    }

    .job-table tr {
        display: block;
        border-bottom: 1px solid var(--line);
        padding-bottom: 0.8rem;
    }

    .job-table tr:last-child {
        border-bottom: none;
    }

    .spec-list .spec-key {
        min-width: 100%;
    }

    .flow-step {
        grid-template-columns: 2.4rem 1fr;
    }

    .plan-card-head .plan-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.6rem;
    }

    .mvv-text {
        font-size: 1.25rem;
    }
}
