:root {
    --navy: #0b2545;
    --blue: #0b63ce;
    --blue2: #2d8cff;
    --green: #18a56f;
    --teal: #00a6b2;
    --bg: #eef8ff;
    --soft: #f7fcff;
    --text: #1d2b3a;
    --muted: #5d7184;
    --border: #cfe4f4;
    --white: #fff;
    --danger: #c2412d;
    --shadow: 0 20px 55px rgba(11, 37, 69, .13);
    --radius: 28px;
    --container: 1180px;
    --header: 74px;
    --font: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Segoe UI', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header) + 24px)
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: linear-gradient(180deg, #f5fbff 0, #fff 22%, #eef8ff 100%);
    line-height: 1.8;
    letter-spacing: .02em;
    -webkit-font-smoothing: antialiased
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block
}

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

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

p,
h1,
h2,
h3 {
    margin: 0
}

h1 {
    font-size: clamp(2.9rem, 6vw, 5.8rem);
    line-height: 1.08;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: .04em
}

h2 {
    font-size: clamp(1.8rem, 3.4vw, 3.25rem);
    line-height: 1.25;
    font-weight: 900;
    color: var(--navy)
}

h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--navy)
}

p {
    color: var(--muted)
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 9999;
    transform: translateY(-160%)
}

.skip-link:focus {
    transform: translateY(0)
}

.site-header {
    position: sticky;
    top: 0;
    height: var(--header);
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(207, 228, 244, .9)
}

.site-header.is-scrolled {
    box-shadow: 0 14px 34px rgba(11, 37, 69, .08)
}

.header-inner {
    height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand img {
    width: 158px;
    object-fit: contain
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .92rem;
    font-weight: 800;
    color: var(--navy)
}

.global-nav a {
    padding: 8px 0
}

.nav-cta {
    padding: 10px 18px !important;
    border-radius: 999px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--blue), var(--green));
    box-shadow: 0 12px 26px rgba(13, 99, 206, .24)
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.nav-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: var(--navy);
    transition: .2s
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.section-board {
    padding: 86px 0;
    position: relative
}

.hero {
    padding: 58px 0 74px;
    overflow: hidden;
    background: radial-gradient(circle at 12% 10%, rgba(24, 165, 111, .16), transparent 30%), radial-gradient(circle at 88% 10%, rgba(13, 99, 206, .16), transparent 30%), linear-gradient(135deg, #fff, #eef8ff)
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
    gap: 42px;
    align-items: center
}

.hero-lead {
    margin-top: 22px;
    font-size: 1.15rem;
    font-weight: 650;
    color: #3e5367
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green)
}

.eyebrow:before {
    content: '';
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--green), var(--blue))
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    transition: .2s
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px)
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal) 50%, var(--green));
    box-shadow: 0 18px 36px rgba(13, 99, 206, .24)
}

.button-secondary {
    color: var(--navy);
    background: #fff;
    border: 1px solid rgba(13, 99, 206, .22);
    box-shadow: 0 12px 26px rgba(11, 37, 69, .08)
}

.hero-materials {
    margin-top: 28px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 36px rgba(11, 37, 69, .07)
}

.hero-materials span {
    font-weight: 900;
    color: var(--navy)
}

.hero-materials ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none
}

.hero-materials li {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf7ff;
    color: #0a4d8f;
    font-size: .84rem;
    font-weight: 800
}

.note,
.notice {
    margin-top: 16px;
    font-size: .85rem;
    color: #66798b
}

.hero-visual-card {
    position: relative
}

.hero-visual-card img {
    border-radius: 34px;
    filter: drop-shadow(0 30px 60px rgba(11, 37, 69, .18))
}

.quick-proof {
    padding: 0 0 36px;
    margin-top: -20px;
    position: relative;
    z-index: 2
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.proof-grid article {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(11, 37, 69, .08)
}

.proof-grid strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem
}

.proof-grid span {
    display: block;
    color: var(--muted);
    font-size: .88rem
}

.section-title {
    margin-bottom: 34px
}

.section-title.center {
    text-align: center;
    max-width: 850px;
    margin-inline: auto
}

.section-title p:not(.eyebrow) {
    margin-top: 16px
}

.split-title {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 38px;
    align-items: end
}

.rich-figure {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow)
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px
}

.benefit-grid article,
.model-cards article,
.vehicle-grid article {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(11, 37, 69, .07)
}

.benefit-grid img {
    width: 52px;
    margin-bottom: 14px
}

.models {
    background: linear-gradient(180deg, #fff, #eef8ff)
}

.model-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.model-cards article {
    position: relative;
    overflow: hidden
}

.model-cards article:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--green))
}

.model-cards .featured {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(11, 37, 69, .15)
}

.model-cards span {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eaf7ff;
    color: var(--blue);
    font-size: .8rem;
    font-weight: 900
}

.model-cards h3 {
    font-size: 2rem;
    margin-top: 10px
}

.model-cards a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px
}

.two-column-rich {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 34px;
    align-items: center
}

.two-column-rich .button {
    margin-top: 24px
}

.lineup {
    background: #f7fcff
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.vehicle-grid article {
    padding: 14px
}

.vehicle-grid h3 {
    font-size: 1.05rem;
    margin-top: 10px
}

.vehicle-grid p {
    font-size: .86rem
}

.material-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 54px;
    align-items: center
}

.material-grid img {
    filter: drop-shadow(0 28px 45px rgba(11, 37, 69, .16))
}

.check-list {
    list-style: none;
    margin: 24px 0;
    padding: 0
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
    color: var(--text);
    font-weight: 750
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900
}

.check-list.light li {
    color: #fff
}

.form-section {
    background: linear-gradient(135deg, rgba(11, 37, 69, .98), rgba(13, 99, 206, .9));
    color: #fff
}

.form-section h2,
.form-section .eyebrow {
    color: #fff
}

.form-section .eyebrow:before {
    background: #fff
}

.form-section p {
    color: rgba(255, 255, 255, .82)
}

.form-grid {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 48px;
    align-items: start
}

.form-copy {
    position: sticky;
    top: 100px
}

.contact-form {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .24)
}

.hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px)
}

.form-row+.form-row,
.form-consent,
.form-submit,
.form-message {
    margin-top: 16px
}

.form-row label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
    font-size: .92rem;
    color: var(--navy);
    font-weight: 900
}

.form-row label span {
    padding: 1px 8px;
    border-radius: 999px;
    background: #ffe9e6;
    color: var(--danger);
    font-size: .72rem
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #b8d2e8;
    border-radius: 12px;
    background: #fff;
    outline: 0
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(13, 99, 206, .12)
}

[aria-invalid=true] {
    border-color: var(--danger) !important;
    background: #fff8f6 !important
}

.form-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: .9rem
}

.form-consent input {
    margin-top: 6px;
    accent-color: var(--blue)
}

.form-submit {
    width: 100%
}

.form-message {
    min-height: 24px;
    color: var(--danger);
    font-weight: 900
}

.faq {
    background: #eef8ff
}

.faq-list {
    max-width: 920px;
    margin: auto;
    display: grid;
    gap: 12px
}

.faq-list details {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(11, 37, 69, .06);
    overflow: hidden
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 56px 18px 22px;
    position: relative;
    font-weight: 900;
    color: var(--navy)
}

.faq-list summary:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eaf7ff;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center
}

.faq-list details[open] summary:after {
    content: '−';
    background: #eaf9f2;
    color: var(--green)
}

.faq-list p {
    padding: 0 22px 20px
}

.site-footer {
    padding: 56px 0 30px;
    background: var(--navy);
    color: rgba(255, 255, 255, .8)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .9fr .8fr;
    gap: 32px
}

.site-footer img {
    width: 150px;
    background: #fff;
    border-radius: 12px;
    padding: 6px
}

.site-footer h2 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .78);
    margin-top: 8px
}

.site-footer p {
    margin-top: 16px;
    color: rgba(255, 255, 255, .75)
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .62)
}

.mobile-fixed-cta {
    display: none
}

:focus-visible {
    outline: 3px solid rgba(24, 165, 111, .45);
    outline-offset: 3px
}

@media(max-width:1120px) {
    .global-nav {
        gap: 12px;
        font-size: .84rem
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-visual-card {
        max-width: 860px;
        margin: auto
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .vehicle-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .two-column-rich,
    .material-grid {
        grid-template-columns: 1fr
    }

    .material-grid img {
        max-width: 360px;
        margin: auto
    }

    .split-title {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:840px) {
    :root {
        --header: 68px
    }

    body.nav-open {
        overflow: hidden
    }

    .nav-toggle {
        display: flex
    }

    .global-nav {
        position: fixed;
        top: var(--header);
        left: 14px;
        right: 14px;
        display: grid;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s
    }

    .global-nav a {
        padding: 12px
    }

    .nav-cta {
        text-align: center
    }

    body.nav-open .global-nav {
        opacity: 1;
        visibility: visible;
        transform: none
    }

    .section-board {
        padding: 64px 0
    }

    .hero {
        padding-top: 42px
    }

    .hero-actions .button {
        width: 100%
    }

    .benefit-grid,
    .model-cards,
    .form-grid {
        grid-template-columns: 1fr
    }

    .model-cards .featured {
        transform: none
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .form-copy {
        position: static
    }
}

@media(max-width:600px) {
    body {
        padding-bottom: 74px
    }

    .container {
        width: min(calc(100% - 24px), var(--container))
    }

    h1 {
        font-size: 2.7rem
    }

    .hero-materials ul {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .proof-grid,
    .vehicle-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .benefit-grid article,
    .model-cards article,
    .contact-form {
        padding: 22px;
        border-radius: 20px
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
        font-size: 16px
    }

    .mobile-fixed-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .94);
        border-top: 1px solid var(--border);
        box-shadow: 0 -14px 36px rgba(11, 37, 69, .14);
        backdrop-filter: blur(14px)
    }

    .mobile-fixed-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 999px;
        font-weight: 900
    }

    .mobile-fixed-cta a:first-child {
        background: linear-gradient(135deg, var(--blue), var(--green));
        color: #fff
    }

    .mobile-fixed-cta a:last-child {
        background: #eaf7ff;
        color: var(--navy)
    }
}

@media(max-width:380px) {
    h1 {
        font-size: 2.25rem
    }

    .hero-materials ul {
        grid-template-columns: 1fr
    }

    .mobile-fixed-cta {
        grid-template-columns: 1fr
    }

    body {
        padding-bottom: 124px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        transition-duration: .001ms !important;
        animation-duration: .001ms !important
    }
}

.thanks-page {
    background: linear-gradient(135deg, #eef8ff, #fff)
}

.thanks-card {
    max-width: 760px;
    padding: 48px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center
}

.thanks-card img {
    margin: 0 auto 24px
}

.thanks-card h1 {
    font-size: clamp(2rem, 5vw, 3.5rem)
}

.thanks-card p:not(.eyebrow) {
    margin-top: 18px
}

.thanks-card .hero-actions {
    justify-content: center
}
/* =========================================================
   2026-06 Hero Overlay Revision
   - Hero visual is used as full background
   - Copy size, CTA color, and material chips adjusted
========================================================= */
.hero.hero-overlay {
    position: relative;
    min-height: 760px;
    padding: 0;
    overflow: hidden;
    background: #e9f3f8;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(246, 250, 252, .98) 0%,
            rgba(246, 250, 252, .94) 24%,
            rgba(246, 250, 252, .76) 40%,
            rgba(246, 250, 252, .34) 58%,
            rgba(246, 250, 252, .06) 76%,
            rgba(246, 250, 252, 0) 100%
        );
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 94px 0 92px;
}

.hero-overlay .hero-copy {
    max-width: 560px;
    padding: 14px 0;
}

.hero-overlay .hero-copy .eyebrow {
    margin-bottom: 15px;
    color: #0b8d66;
    text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

.hero-overlay .hero-copy h1 {
    font-size: clamp(3.05rem, 4.8vw, 4.85rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 900;
    margin: 0 0 22px;
    color: #0a1f42;
    text-shadow: 0 2px 14px rgba(255,255,255,.72);
}

.hero-overlay .hero-lead {
    max-width: 540px;
    margin-top: 0;
    font-size: clamp(.98rem, 1.15vw, 1.1rem);
    line-height: 1.95;
    font-weight: 650;
    color: #243a58;
    text-shadow: 0 1px 12px rgba(255,255,255,.65);
}

.hero-overlay .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-overlay .button {
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .96rem;
    letter-spacing: .01em;
    box-shadow: none;
}

.hero-overlay .button-primary {
    color: #fff;
    background: linear-gradient(135deg, #0b88c7 0%, #12a77a 100%);
    box-shadow: 0 16px 32px rgba(11, 136, 199, .22);
}

.hero-overlay .button-primary:hover,
.hero-overlay .button-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(11, 136, 199, .28);
}

.hero-overlay .button-secondary {
    color: #0a1f42;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(10,31,66,.13);
    box-shadow: 0 12px 30px rgba(10,31,66,.10);
    backdrop-filter: blur(14px);
}

.hero-overlay .button-secondary:hover,
.hero-overlay .button-secondary:focus-visible {
    background: rgba(255,255,255,.92);
    transform: translateY(-2px);
}

.hero-points {
    max-width: 560px;
    margin-top: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.56);
    border: 1px solid rgba(255,255,255,.58);
    box-shadow: 0 14px 36px rgba(10,31,66,.09);
    backdrop-filter: blur(16px);
}

.hero-points-label {
    flex: 0 0 auto;
    white-space: nowrap;
    padding-top: 5px;
    color: #0a1f42;
    font-size: .9rem;
    font-weight: 900;
}

.hero-points ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-points li {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(10,31,66,.08);
    color: #26425f;
    font-size: .82rem;
    font-weight: 850;
    line-height: 1.2;
}

.hero-overlay .note {
    max-width: 550px;
    margin-top: 13px;
    color: #536a80;
    font-size: .78rem;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(255,255,255,.66);
}

/* Old right-card hero elements are no longer used, but keep safe if cached HTML remains */
.hero.hero-overlay .hero-grid,
.hero.hero-overlay .hero-visual-card,
.hero.hero-overlay .hero-materials {
    display: none;
}

/* Adjust the proof cards so FV and next block connect naturally */
.quick-proof {
    padding: 0 0 44px;
    margin-top: -46px;
    position: relative;
    z-index: 3;
}

.proof-grid article {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(207,228,244,.9);
    backdrop-filter: blur(12px);
}

@media(max-width:1120px) {
    .hero.hero-overlay {
        min-height: 720px;
    }

    .hero.hero-overlay::after {
        background:
            linear-gradient(
                180deg,
                rgba(246,250,252,.98) 0%,
                rgba(246,250,252,.94) 38%,
                rgba(246,250,252,.62) 58%,
                rgba(246,250,252,.18) 80%,
                rgba(246,250,252,.02) 100%
            );
    }

    .hero-media img {
        object-position: 68% center;
    }

    .hero-inner {
        padding: 72px 0 330px;
    }

    .hero-overlay .hero-copy {
        max-width: 680px;
    }

    .hero-overlay .hero-copy h1 {
        font-size: clamp(2.9rem, 7vw, 4.4rem);
    }
}

@media(max-width:840px) {
    .hero.hero-overlay {
        min-height: auto;
    }

    .hero-media img {
        object-position: 70% center;
    }

    .hero-inner {
        padding: 56px 0 300px;
    }

    .hero-overlay .hero-copy h1 {
        font-size: clamp(2.55rem, 10vw, 3.75rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-overlay .hero-lead {
        font-size: .98rem;
        line-height: 1.85;
    }

    .hero-points {
        max-width: 100%;
    }
}

@media(max-width:600px) {
    .hero-media img {
        object-position: 72% center;
    }

    .hero-inner {
        padding: 46px 0 270px;
    }

    .hero-overlay .hero-copy h1 {
        font-size: clamp(2.25rem, 11vw, 3.1rem);
    }

    .hero-overlay .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-overlay .button {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
        font-size: .92rem;
    }

    .hero-points {
        display: block;
        padding: 13px;
        border-radius: 16px;
    }

    .hero-points-label {
        display: block;
        margin-bottom: 10px;
        padding-top: 0;
    }

    .hero-points ul {
        gap: 7px;
    }

    .hero-points li {
        font-size: .78rem;
        padding: 7px 9px;
    }

    .quick-proof {
        margin-top: -34px;
    }
}

/* =========================================================
   FINAL v6 layout override
   - Header width expanded: logo left, menu right
   - Hero copy returns to original visual reference alignment
   - Hero headline locked to exactly two lines
========================================================= */
@media (min-width: 1121px) {
    :root {
        --header: 74px;
    }

    .site-header .container.header-inner {
        width: min(calc(100% - 96px), 1580px) !important;
        max-width: 1580px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 !important;
        gap: 42px !important;
    }

    .brand {
        flex: 0 0 auto !important;
    }

    .brand img {
        width: 170px !important;
        height: auto !important;
    }

    .global-nav {
        margin-left: auto !important;
        gap: 30px !important;
        font-size: .94rem !important;
        letter-spacing: .035em !important;
    }

    .global-nav a {
        white-space: nowrap !important;
    }

    .global-nav .nav-cta {
        padding: 11px 24px !important;
        min-width: 98px !important;
    }

    .hero.hero-overlay {
        min-height: 760px !important;
    }

    .hero-media img {
        object-position: center center !important;
    }

    .hero.hero-overlay::after {
        background:
            linear-gradient(
                90deg,
                rgba(246, 250, 252, .99) 0%,
                rgba(246, 250, 252, .97) 21%,
                rgba(246, 250, 252, .84) 34%,
                rgba(246, 250, 252, .48) 48%,
                rgba(246, 250, 252, .14) 64%,
                rgba(246, 250, 252, 0) 80%
            ) !important;
    }

    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        width: min(calc(100% - 96px), 1580px) !important;
        max-width: 1580px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 68px 0 96px !important;
        display: block !important;
    }

    .hero-overlay .hero-copy {
        width: min(780px, 48vw) !important;
        max-width: 780px !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .hero-overlay .hero-copy .eyebrow {
        margin-bottom: 16px !important;
        font-size: .83rem !important;
        letter-spacing: .13em !important;
    }

    .hero-overlay .hero-title,
    .hero-overlay .hero-copy h1 {
        width: max-content !important;
        max-width: none !important;
        margin: 0 0 20px !important;
        font-size: clamp(3.15rem, 3.55vw, 4rem) !important;
        line-height: 1.14 !important;
        letter-spacing: .015em !important;
        text-align: left !important;
    }

    .hero-title-line {
        display: block !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .hero-overlay .hero-lead {
        width: 560px !important;
        max-width: 560px !important;
        margin: 0 !important;
        font-size: 1.02rem !important;
        line-height: 1.9 !important;
        font-weight: 650 !important;
    }

    .hero-overlay .hero-actions {
        margin-top: 26px !important;
        gap: 16px !important;
        justify-content: flex-start !important;
    }

    .hero-overlay .button {
        min-height: 52px !important;
        padding: 0 24px !important;
        font-size: .94rem !important;
    }

    .hero-points {
        width: 580px !important;
        max-width: 580px !important;
        margin-top: 22px !important;
        padding: 13px 16px !important;
        justify-content: flex-start !important;
    }

    .hero-overlay .note {
        max-width: 590px !important;
        font-size: .76rem !important;
        margin-top: 12px !important;
    }

    .quick-proof {
        margin-top: -36px !important;
    }
}

@media (min-width: 1121px) and (max-width: 1440px) {
    .site-header .container.header-inner,
    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        width: min(calc(100% - 72px), 1360px) !important;
    }

    .global-nav {
        gap: 22px !important;
    }

    .hero-overlay .hero-title,
    .hero-overlay .hero-copy h1 {
        font-size: clamp(3rem, 3.35vw, 3.7rem) !important;
    }

    .hero-overlay .hero-copy {
        width: 720px !important;
    }
}

@media (max-width: 1120px) {
    .hero-title-line {
        display: block !important;
        white-space: normal !important;
    }
}

/* FINAL v6.1 polish: logo height and hero lead line control */
@media (min-width: 1121px) {
    .site-header .brand img {
        width: 170px !important;
        height: 42px !important;
        object-fit: contain !important;
    }

    .hero-overlay .hero-lead {
        width: 660px !important;
        max-width: 660px !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }
}


/* =========================================================
   v7 Rich PNG infographic placement
   - Replaces duplicated visible HTML copy with final image assets
   - Keeps accessibility headings visually hidden
   - Enables horizontal scroll on small screens so embedded text remains legible
========================================================= */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.wide-container {
    width: min(calc(100% - 48px), 1680px);
    max-width: 1680px;
}

.infographic-section {
    padding: 58px 0;
    background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

.infographic-section.models {
    background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.figure-scroll {
    width: 100%;
    overflow-x: visible;
}

.rich-infographic {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(11, 37, 69, .10);
}

.problem .rich-infographic {
    border-radius: 24px;
}

@media (max-width: 840px) {
    .wide-container {
        width: calc(100% - 24px);
    }

    .infographic-section {
        padding: 46px 0;
    }

    .figure-scroll {
        margin-inline: -12px;
        padding: 0 12px 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .rich-infographic {
        min-width: 980px;
        border-radius: 20px;
    }

    .models .rich-infographic {
        min-width: 920px;
    }
}

@media (max-width: 600px) {
    .rich-infographic {
        min-width: 900px;
    }

    .models .rich-infographic {
        min-width: 860px;
    }
}

/* =========================
   v7.3 第4稿準拠 追加セクション
========================= */
.market,
.investment,
.compare,
.concerns,
.case-study,
.roadmap,
.final-cta {
    background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.market-grid,
.logic-grid,
.concern-grid,
.case-grid,
.cta-choice-grid {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-stat,
.logic-grid article,
.concern-grid article,
.case-grid article,
.cta-choice-grid article {
    position: relative;
    padding: 26px;
    border: 1px solid rgba(155, 202, 234, .72);
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 46px rgba(11, 37, 69, .08);
    overflow: hidden;
}

.market-stat:after,
.logic-grid article:after,
.concern-grid article:after,
.case-grid article:after,
.cta-choice-grid article:after {
    content: "";
    position: absolute;
    inset: auto -40px -58px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 165, 111, .12), transparent 68%);
    pointer-events: none;
}

.stat-label,
.logic-number,
.concern-grid span,
.roadmap-line span,
.cta-choice-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24, 165, 111, .12), rgba(11, 99, 206, .12));
    color: var(--teal);
    font-weight: 900;
    font-size: .84rem;
    letter-spacing: .08em;
}

.market-stat strong {
    display: block;
    margin: 16px 0 10px;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 1;
    color: var(--navy);
    letter-spacing: -.04em;
}

.market-message,
.roi-panel {
    margin-top: 24px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(155, 202, 234, .72);
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(234,248,255,.92));
    box-shadow: 0 18px 46px rgba(11, 37, 69, .07);
}

.market-message h3,
.roi-copy h3 {
    margin-bottom: 10px;
}

.source-note {
    margin-top: 14px;
    font-size: .78rem;
    color: #60758b;
}

.source-note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.logic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logic-grid h3,
.concern-grid h3,
.case-grid strong,
.cta-choice-grid h3 {
    display: block;
    margin-top: 14px;
    margin-bottom: 10px;
}

.roi-panel {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 24px;
    align-items: stretch;
}

.asset-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    padding: 28px;
    border: 1px dashed rgba(11, 99, 206, .42);
    border-radius: 24px;
    background: repeating-linear-gradient(135deg, rgba(11,99,206,.04) 0, rgba(11,99,206,.04) 10px, rgba(24,165,111,.04) 10px, rgba(24,165,111,.04) 20px), #fff;
}

.asset-placeholder span {
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(24, 165, 111, .12);
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
}

.asset-placeholder strong {
    font-size: 1.35rem;
    color: var(--navy);
}

.wide-placeholder {
    margin-top: 22px;
    min-height: 150px;
}

.comparison-table-wrap {
    margin-top: 32px;
    overflow-x: auto;
    border: 1px solid rgba(155, 202, 234, .72);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(11, 37, 69, .08);
}

.comparison-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(207, 228, 244, .9);
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    background: #eaf6ff;
    color: var(--navy);
    font-weight: 900;
    text-align: center;
}

.comparison-table tbody th {
    width: 150px;
    color: var(--teal);
    font-weight: 900;
    white-space: nowrap;
}

.comparison-table tbody td:nth-child(2) {
    background: rgba(24, 165, 111, .07);
    color: #173a2d;
    font-weight: 750;
}

.concern-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concern-grid span {
    min-width: 38px;
    width: 38px;
    padding: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-grid strong {
    color: var(--navy);
    font-size: 1.25rem;
}

.roadmap-line {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(155, 202, 234, .72);
    background: #fff;
    box-shadow: 0 18px 46px rgba(11, 37, 69, .08);
}

.roadmap-line article {
    padding: 30px;
    position: relative;
}

.roadmap-line article + article {
    border-left: 1px solid rgba(207, 228, 244, .9);
}

.roadmap-line h3 {
    margin-top: 16px;
    margin-bottom: 10px;
}

.cta-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-choice-grid article {
    display: flex;
    flex-direction: column;
    min-height: 330px;
}

.cta-choice-grid .button {
    margin-top: auto;
    width: 100%;
}

.final-cta {
    background: radial-gradient(circle at 20% 10%, rgba(24, 165, 111, .12), transparent 30%), linear-gradient(180deg, #f7fcff 0%, #eaf8ff 100%);
}

@media (max-width: 1100px) {
    .market-grid,
    .logic-grid,
    .concern-grid,
    .case-grid,
    .cta-choice-grid,
    .roadmap-line {
        grid-template-columns: 1fr 1fr;
    }

    .roi-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .market-grid,
    .logic-grid,
    .concern-grid,
    .case-grid,
    .cta-choice-grid,
    .roadmap-line {
        grid-template-columns: 1fr;
    }

    .roadmap-line article + article {
        border-left: 0;
        border-top: 1px solid rgba(207, 228, 244, .9);
    }

    .market-stat,
    .logic-grid article,
    .concern-grid article,
    .case-grid article,
    .cta-choice-grid article,
    .market-message,
    .roi-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .cta-choice-grid article {
        min-height: auto;
    }
}


/* =========================================================
   v7.4 Polished asset integration
   - Image-only sections unified
   - Real mobility photos applied to lineup
========================================================= */
.image-section-title {
    margin-bottom: 18px;
}

.image-section-title .eyebrow {
    margin-bottom: 0;
}

.vehicle-grid-real {
    align-items: stretch;
}

.vehicle-grid-real article {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 26px;
}

.vehicle-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f9ff 100%);
    box-shadow: inset 0 0 0 1px rgba(207, 228, 244, .9);
}

.vehicle-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-grid-real h3 {
    margin-top: 16px;
    margin-bottom: 10px;
    min-height: 2.7em;
}

.vehicle-grid-real p {
    margin-top: auto;
}

#lineup .notice {
    margin-top: 22px;
}

#solution .figure-scroll,
#models .figure-scroll,
#investment .figure-scroll,
#roi .figure-scroll,
#concerns .figure-scroll,
#case-study .figure-scroll,
#roadmap .figure-scroll {
    margin-top: 0;
}

@media (max-width: 1120px) {
    .vehicle-visual {
        height: 210px;
    }
}

@media (max-width: 840px) {
    .image-section-title {
        margin-bottom: 14px;
    }

    .vehicle-grid-real article {
        padding: 14px;
    }

    .vehicle-visual {
        height: 200px;
        border-radius: 18px;
    }
}

@media (max-width: 600px) {
    .vehicle-visual {
        height: 220px;
    }

    .vehicle-grid-real h3 {
        min-height: auto;
    }
}


/* =========================================================
   v7.5 Mobility lineup typography and model labels
========================================================= */
.lineup-container {
    width: min(calc(100% - 48px), 1320px);
    max-width: 1320px;
}

.lineup-heading {
    max-width: 1080px;
    margin-bottom: 38px;
}

.lineup-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(2.5rem, 3.55vw, 3.65rem);
    line-height: 1.18;
    letter-spacing: .015em;
    text-wrap: balance;
}

.lineup-title span {
    display: block;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

.lineup-heading > p:not(.eyebrow) {
    max-width: 900px;
    margin: 20px auto 0;
}

.vehicle-visual {
    position: relative;
    padding-top: 52px;
}

.vehicle-model-name {
    position: absolute;
    top: 15px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: block;
    color: #0b3f91;
    font-size: .84rem;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: .06em;
    text-align: center;
    white-space: normal;
}

.vehicle-model-name::before {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin: 0 auto 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

.vehicle-model-name small {
    display: block;
    margin-top: 2px;
    color: #547086;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.vehicle-grid-real h3 {
    min-height: 3.1em;
    font-size: 1.06rem;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (max-width: 1120px) {
    .lineup-container {
        width: min(calc(100% - 40px), 1180px);
    }

    .lineup-title {
        font-size: clamp(2.35rem, 5vw, 3.2rem);
    }
}

@media (max-width: 840px) {
    .lineup-heading {
        margin-bottom: 30px;
    }

    .lineup-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .vehicle-model-name {
        font-size: .8rem;
    }
}

@media (max-width: 600px) {
    .lineup-container {
        width: min(calc(100% - 24px), 1180px);
    }

    .lineup-title {
        font-size: clamp(1.65rem, 8.3vw, 2.15rem);
        line-height: 1.24;
    }

    .lineup-title span {
        white-space: nowrap;
    }

    .lineup-heading > p:not(.eyebrow) {
        margin-top: 16px;
        font-size: .94rem;
    }

    .vehicle-grid-real h3 {
        min-height: auto;
    }
}

/* =========================================================
   v7.6 Design polish
   - Refined B2B button system
   - Hero guide/proof cards
   - Unified section-title widths
   - Next Action cards
   - Header logo and responsive image presentation
========================================================= */
:root {
    --cta-blue: #0876b9;
    --cta-teal: #079b91;
    --cta-green: #13a66f;
    --cta-navy: #092b55;
    --line-soft: rgba(139, 190, 225, .52);
}

/* Section title rhythm */
.section-title.center {
    width: 100%;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.section-title.center h2 {
    max-width: 1000px;
    margin-inline: auto;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
}

.section-title.center > p:not(.eyebrow) {
    max-width: 900px;
    margin: 18px auto 0;
    text-wrap: pretty;
}

.problem-intro {
    max-width: 1080px;
    margin: 0 auto 30px;
}

.image-section-title {
    max-width: 1040px !important;
    margin-bottom: 18px !important;
}

/* Header and logo */
.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: rgba(180, 211, 233, .7);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 54px;
    padding: 4px 0;
    border-radius: 12px;
    transition: transform .2s ease, opacity .2s ease;
}

.brand:hover,
.brand:focus-visible {
    transform: translateY(-1px);
    opacity: .82;
}

.brand img,
.site-header .brand img {
    width: 190px !important;
    height: auto !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

.global-nav a:not(.nav-cta) {
    position: relative;
}

.global-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 3px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--cta-blue), var(--cta-green));
    transition: left .2s ease, right .2s ease;
}

.global-nav a:not(.nav-cta):hover::after,
.global-nav a:not(.nav-cta):focus-visible::after {
    left: 0;
    right: 0;
}

.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px 0 20px !important;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--cta-blue), var(--cta-teal) 52%, var(--cta-green)) !important;
    box-shadow: 0 12px 28px rgba(8, 118, 185, .23) !important;
}

.nav-cta::after {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    font-size: .85rem;
    transition: transform .2s ease;
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after {
    transform: translateX(2px);
}

/* Unified button system */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 0 14px 0 24px;
    border-radius: 15px;
    border: 1px solid transparent;
    font-size: .96rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: .025em;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 14px 30px rgba(11, 37, 69, .12);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform .45s ease, opacity .2s ease;
}

.button::after {
    content: "→";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    font-size: 1rem;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
    opacity: 1;
    transform: translateX(100%);
}

.button:hover::after,
.button:focus-visible::after {
    transform: translateX(2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--cta-blue) 0%, var(--cta-teal) 52%, var(--cta-green) 100%);
    border-color: rgba(6, 116, 158, .16);
    box-shadow: 0 18px 38px rgba(8, 118, 185, .25);
}

.button-primary::after {
    color: #fff;
    background: rgba(255, 255, 255, .18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 22px 46px rgba(8, 118, 185, .3);
}

.button-secondary {
    color: var(--cta-navy);
    background: rgba(255, 255, 255, .94);
    border-color: rgba(95, 157, 200, .34);
    box-shadow: 0 14px 30px rgba(11, 37, 69, .1);
}

.button-secondary::after {
    color: var(--cta-blue);
    background: #e8f5fb;
    box-shadow: inset 0 0 0 1px rgba(90, 162, 204, .16);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #fff;
    border-color: rgba(8, 118, 185, .48);
    box-shadow: 0 20px 40px rgba(11, 37, 69, .14);
}

.hero-overlay .button {
    min-height: 58px !important;
    padding: 0 14px 0 23px !important;
    border-radius: 15px !important;
    font-size: .94rem !important;
}

.hero-overlay .button-primary {
    background: linear-gradient(135deg, var(--cta-blue), var(--cta-teal) 54%, var(--cta-green)) !important;
}

.hero-overlay .button-secondary {
    background: rgba(255,255,255,.89) !important;
    border-color: rgba(73, 137, 184, .3) !important;
    backdrop-filter: blur(14px);
}

.form-submit {
    min-height: 62px;
}

/* Hero guide box */
.hero-points {
    position: relative;
    width: 610px !important;
    max-width: 610px !important;
    display: grid !important;
    grid-template-columns: 154px 1fr;
    align-items: stretch !important;
    gap: 14px !important;
    padding: 14px !important;
    border: 1px solid rgba(128, 185, 220, .44) !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,249,253,.82)) !important;
    box-shadow: 0 16px 38px rgba(10,31,66,.1) !important;
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.hero-points::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, var(--cta-blue), var(--cta-green));
}

.hero-points-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    padding: 3px 14px 3px 8px;
    border-right: 1px solid rgba(124, 180, 216, .28);
}

.hero-points-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 9px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--cta-blue), var(--cta-green));
    font-size: .64rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
}

.hero-points-label {
    padding: 0 !important;
    color: var(--cta-navy) !important;
    font-size: .92rem !important;
    line-height: 1.45;
    font-weight: 900;
    white-space: normal !important;
}

.hero-points ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
    align-content: center;
}

.hero-points li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px 8px 31px !important;
    border: 1px solid rgba(126, 181, 215, .25) !important;
    border-radius: 11px !important;
    background: rgba(255,255,255,.82) !important;
    color: #294661 !important;
    font-size: .8rem !important;
    line-height: 1.35 !important;
    font-weight: 850 !important;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: #fff;
    background: var(--cta-green);
    font-size: .62rem;
    font-weight: 900;
}

/* Four feature cards beneath hero */
.proof-grid {
    gap: 16px;
}

.proof-grid .proof-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    padding: 17px 18px;
    border: 1px solid rgba(141, 194, 228, .45);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(239,248,253,.9));
    box-shadow: 0 16px 38px rgba(11, 37, 69, .09);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.proof-grid .proof-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    bottom: 17px;
    width: 3px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(180deg, var(--cta-blue), var(--cta-green));
}

.proof-grid .proof-card:hover {
    transform: translateY(-3px);
    border-color: rgba(58, 155, 201, .52);
    box-shadow: 0 22px 46px rgba(11, 37, 69, .12);
}

.proof-icon {
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 9px;
    border-radius: 16px;
    background: linear-gradient(145deg, #edf8ff, #e9f8f1);
    box-shadow: inset 0 0 0 1px rgba(111, 178, 215, .22);
}

.proof-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proof-copy {
    min-width: 0;
}

.proof-copy strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cta-navy);
    font-size: 1.02rem;
    line-height: 1.25;
}

.proof-copy > span {
    display: block;
    color: #64798b;
    font-size: .82rem;
    line-height: 1.55;
}

/* Next Action */
.cta-choice-grid {
    gap: 22px;
}

.cta-choice-grid .cta-card {
    padding: 28px;
    border-radius: 26px;
    border: 1px solid rgba(128, 184, 220, .45);
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 44px rgba(11,37,69,.09);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cta-choice-grid .cta-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cta-blue), var(--cta-green));
}

.cta-choice-grid .cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(11,37,69,.14);
    border-color: rgba(80, 160, 204, .55);
}

.cta-choice-grid .cta-card > span {
    min-width: 48px;
    height: 31px;
    color: #fff;
    background: linear-gradient(135deg, var(--cta-blue), var(--cta-green));
    box-shadow: 0 8px 18px rgba(8,118,185,.18);
}

.cta-choice-grid .cta-card h3 {
    margin-top: 19px;
    font-size: 1.35rem;
}

.cta-choice-grid .cta-card p {
    margin-bottom: 24px;
}

.cta-choice-grid .cta-action {
    min-height: 56px;
    border-radius: 14px;
}

.cta-card--port .cta-action {
    color: #076d71;
    background: #f5fffd;
    border-color: rgba(7, 155, 145, .35);
}

.cta-card--port .cta-action::after {
    color: #087f7e;
    background: #ddf6f1;
}

.cta-card--materials .cta-action {
    color: #fff;
    background: linear-gradient(135deg, #123d72, #0876b9);
    border-color: rgba(18,61,114,.2);
}

.cta-card--materials .cta-action::after {
    color: #fff;
    background: rgba(255,255,255,.16);
}

/* Mobile fixed actions */
.mobile-fixed-cta {
    gap: 9px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}

.mobile-fixed-cta a {
    min-height: 50px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(11,37,69,.1);
}

.mobile-fixed-cta a:first-child {
    background: linear-gradient(135deg, var(--cta-blue), var(--cta-green));
}

/* Infographic quality and scroll affordance */
.figure-scroll {
    border-radius: 28px;
}

.rich-infographic {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media (min-width: 1121px) {
    :root {
        --header: 80px;
    }

    .site-header,
    .header-inner {
        height: var(--header) !important;
    }

    .site-header .container.header-inner {
        gap: 46px !important;
    }

    .site-header .brand img {
        width: 190px !important;
        height: auto !important;
        max-height: 50px !important;
    }

    .global-nav {
        gap: 27px !important;
    }
}

@media (max-width: 1120px) {
    .site-header .brand,
    .brand {
        min-width: 165px;
    }

    .site-header .brand img,
    .brand img {
        width: 165px !important;
        height: auto !important;
        max-height: 44px !important;
    }

    .section-title.center {
        max-width: 920px;
    }

    .proof-grid .proof-card {
        min-height: 96px;
    }
}

@media (max-width: 900px) {
    .section-board {
        padding: 68px 0;
    }

    .section-title.center {
        max-width: 760px;
        margin-bottom: 32px;
    }

    .section-title.center h2 {
        font-size: clamp(1.85rem, 5.5vw, 2.75rem);
        line-height: 1.3;
    }

    .hero-overlay .hero-lead br {
        display: none;
    }

    .figure-scroll {
        position: relative;
        margin-inline: -12px;
        padding: 0 12px 14px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(48, 139, 190, .45) rgba(225, 240, 249, .72);
        touch-action: pan-x;
    }

    .figure-scroll::-webkit-scrollbar {
        height: 7px;
    }

    .figure-scroll::-webkit-scrollbar-track {
        background: rgba(225, 240, 249, .72);
        border-radius: 99px;
    }

    .figure-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, var(--cta-blue), var(--cta-green));
        border-radius: 99px;
    }

    .figure-scroll .rich-infographic {
        min-width: 960px;
        max-width: none !important;
        scroll-snap-align: start;
        border-radius: 20px;
        box-shadow: 0 16px 38px rgba(11,37,69,.1);
    }

    .problem-flow-figure .rich-infographic {
        min-width: 980px;
    }

    .hero-points {
        width: 100% !important;
        max-width: 680px !important;
    }

    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-choice-grid .cta-card {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    :root {
        --header: 68px;
    }

    .site-header,
    .header-inner {
        height: var(--header) !important;
    }

    .brand,
    .site-header .brand {
        min-width: 142px;
        min-height: 48px;
    }

    .brand img,
    .site-header .brand img {
        width: 142px !important;
        height: auto !important;
        max-height: 39px !important;
    }

    .header-inner {
        gap: 12px;
    }

    .section-board {
        padding: 54px 0;
    }

    .section-title.center {
        margin-bottom: 26px;
    }

    .section-title.center h2 {
        font-size: clamp(1.65rem, 8.2vw, 2.18rem);
        line-height: 1.34;
        letter-spacing: .01em;
    }

    .section-title.center > p:not(.eyebrow) {
        margin-top: 14px;
        font-size: .92rem;
        line-height: 1.8;
    }

    .image-section-title {
        margin-bottom: 12px !important;
    }

    .hero-overlay .hero-actions {
        gap: 10px !important;
    }

    .hero-overlay .button,
    .button {
        width: 100%;
        min-height: 55px !important;
        padding: 0 12px 0 18px !important;
        border-radius: 14px !important;
        font-size: .9rem !important;
    }

    .button::after {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .hero-points {
        display: block !important;
        width: 100% !important;
        padding: 13px !important;
    }

    .hero-points-head {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 9px;
        padding: 0 0 11px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(124, 180, 216, .25);
    }

    .hero-points-label {
        margin: 0 !important;
    }

    .hero-points ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 11px !important;
    }

    .hero-points li {
        font-size: .76rem !important;
        padding: 8px 8px 8px 29px !important;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .proof-grid .proof-card {
        min-height: 84px;
        padding: 13px 15px;
        border-radius: 17px;
    }

    .proof-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .proof-copy strong {
        font-size: .97rem;
    }

    .proof-copy > span {
        font-size: .79rem;
    }

    .figure-scroll .rich-infographic {
        min-width: 880px;
        border-radius: 16px;
    }

    .problem-flow-figure .rich-infographic {
        min-width: 900px;
    }

    .cta-choice-grid {
        gap: 14px;
    }

    .cta-choice-grid .cta-card {
        padding: 22px;
        border-radius: 22px;
    }

    .cta-choice-grid .cta-card h3 {
        font-size: 1.22rem;
    }

    .cta-choice-grid .cta-card p {
        margin-bottom: 18px;
    }

    .cta-choice-grid .cta-action {
        width: 100%;
    }

    .vehicle-grid-real article {
        border-radius: 22px;
    }
}

@media (max-width: 420px) {
    .hero-points ul {
        grid-template-columns: 1fr;
    }

    .figure-scroll .rich-infographic {
        min-width: 840px;
    }

    .problem-flow-figure .rich-infographic {
        min-width: 860px;
    }
}

/* =========================================================
   v7.6 Design polish
   - CTA system, hero information panels, proof cards
   - Header/logo behavior and section-title width
   - Tablet/mobile infographic presentation
========================================================= */
:root {
    --header: 82px;
    --button-radius: 16px;
    --section-title-width: 1080px;
}

/* ---------- Header ---------- */
.site-header {
    height: var(--header);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(170, 204, 228, .58);
    box-shadow: 0 8px 30px rgba(11, 37, 69, .045);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 14px 38px rgba(11, 37, 69, .10);
}

.header-inner {
    height: var(--header);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 192px;
    border-radius: 12px;
    transition: opacity .2s ease, transform .2s ease;
}

.brand:hover,
.brand:focus-visible {
    opacity: .82;
    transform: translateY(-1px);
}

.site-header .brand img {
    width: 192px !important;
    height: 52px !important;
    object-fit: contain !important;
}

.global-nav {
    gap: 26px !important;
}

.global-nav > a:not(.nav-cta) {
    position: relative;
    padding: 14px 0;
    transition: color .2s ease;
}

.global-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 7px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transition: left .2s ease, right .2s ease;
}

.global-nav > a:not(.nav-cta):hover::after,
.global-nav > a:not(.nav-cta):focus-visible::after {
    left: 0;
    right: 0;
}

.nav-cta {
    min-height: 46px;
    padding: 0 22px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .42);
    background: linear-gradient(135deg, #087dc0 0%, #0aa679 100%);
    box-shadow: 0 12px 28px rgba(8, 125, 192, .22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.nav-cta::after {
    content: "→";
    margin-left: 9px;
    font-size: 1rem;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(8, 125, 192, .28);
    filter: saturate(1.05);
}

/* ---------- Button system ---------- */
.button {
    position: relative;
    gap: 12px;
    min-height: 56px;
    padding: 0 22px 0 24px;
    border-radius: var(--button-radius);
    border: 1px solid transparent;
    font-size: .95rem;
    line-height: 1.35;
    letter-spacing: .01em;
    box-shadow: none;
    overflow: hidden;
    isolation: isolate;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.20) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.button::after {
    content: "→";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 4px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    transition: transform .22s ease;
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateX(120%);
}

.button:hover::after,
.button:focus-visible::after {
    transform: translateX(3px);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #087dc0 0%, #0697a7 48%, #0aa679 100%);
    border-color: rgba(255,255,255,.28);
    box-shadow: 0 16px 34px rgba(8, 125, 192, .24);
}

.button-primary::after {
    color: #086b85;
    background: rgba(255, 255, 255, .94);
}

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 22px 42px rgba(8, 125, 192, .30);
}

.button-secondary {
    color: #0b3158;
    background: rgba(255,255,255,.90);
    border-color: rgba(13, 99, 206, .20);
    box-shadow: 0 12px 28px rgba(11, 37, 69, .09);
    backdrop-filter: blur(12px);
}

.button-secondary::after {
    color: #fff;
    background: linear-gradient(135deg, #0b83c6, #11a474);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #fff;
    border-color: rgba(13, 99, 206, .34);
    box-shadow: 0 18px 34px rgba(11, 37, 69, .13);
}

.form-submit {
    min-height: 60px;
    border-radius: 16px;
}

/* ---------- Section title width ---------- */
.section-title.center {
    width: min(100%, var(--section-title-width));
    max-width: var(--section-title-width);
}

.section-title.center h2 {
    max-width: 1020px;
    margin-inline: auto;
    text-wrap: balance;
    word-break: keep-all;
    overflow-wrap: normal;
}

.section-title.center > p:not(.eyebrow) {
    max-width: 900px;
    margin-inline: auto;
    text-wrap: pretty;
}

.problem-intro {
    max-width: 1080px;
    margin: 0 auto 28px;
}

.problem-intro h2 {
    max-width: 920px;
    text-wrap: balance;
    word-break: keep-all;
}

/* ---------- Hero CTA and materials panel ---------- */
.hero-overlay .hero-actions {
    gap: 12px !important;
}

.hero-overlay .button {
    min-height: 56px !important;
    padding: 0 20px 0 22px !important;
    border-radius: 15px !important;
    font-size: .93rem !important;
}

.hero-overlay .button-primary {
    background: linear-gradient(135deg, #087dc0 0%, #0697a7 52%, #0aa679 100%) !important;
    border: 1px solid rgba(255,255,255,.34) !important;
    box-shadow: 0 17px 34px rgba(8,125,192,.25) !important;
}

.hero-overlay .button-secondary {
    background: rgba(255,255,255,.88) !important;
    border: 1px solid rgba(11,49,88,.14) !important;
    box-shadow: 0 14px 30px rgba(11,37,69,.11) !important;
}

.hero-points {
    width: 620px !important;
    max-width: 100% !important;
    display: block !important;
    margin-top: 22px !important;
    padding: 17px !important;
    border: 1px solid rgba(255,255,255,.76) !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(244,251,255,.72)) !important;
    box-shadow: 0 18px 42px rgba(11,37,69,.12) !important;
    backdrop-filter: blur(18px) saturate(1.08) !important;
}

.hero-points-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 0 2px 12px;
    border-bottom: 1px solid rgba(126, 173, 207, .28);
}

.hero-points-label {
    padding: 0 !important;
    color: #0a3158 !important;
    font-size: .92rem !important;
    letter-spacing: .04em;
}

.hero-points-head small {
    color: #5e7489;
    font-size: .72rem;
    font-weight: 700;
    text-align: right;
}

.hero-points ul {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px !important;
    margin-top: 12px !important;
}

.hero-points li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px !important;
    border: 1px solid rgba(126, 173, 207, .22) !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,.82) !important;
    color: #173b60 !important;
    font-size: .80rem !important;
    font-weight: 850 !important;
    box-shadow: 0 7px 18px rgba(11,37,69,.045);
}

.hero-point-number {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #0b83c6, #11a474);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .04em;
}

/* ---------- Hero proof cards ---------- */
.quick-proof {
    margin-top: -42px !important;
    padding-bottom: 48px !important;
}

.proof-grid {
    gap: 14px;
}

.proof-grid article {
    position: relative;
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 18px !important;
    border: 1px solid rgba(158, 202, 232, .68) !important;
    border-radius: 22px !important;
    background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,251,255,.88)) !important;
    box-shadow: 0 16px 38px rgba(11,37,69,.09) !important;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.proof-grid article::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -48px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24,165,111,.13), transparent 68%);
}

.proof-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(44, 153, 192, .44) !important;
    box-shadow: 0 24px 46px rgba(11,37,69,.13) !important;
}

.proof-icon {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 10px;
    border-radius: 17px;
    background: linear-gradient(145deg, #e8f7ff, #eaf9f2);
    box-shadow: inset 0 0 0 1px rgba(126,173,207,.20);
}

.proof-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proof-grid article > div {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.proof-grid strong {
    font-size: 1.02rem;
    letter-spacing: .03em;
}

.proof-grid span:not(.proof-icon) {
    margin-top: 4px;
    font-size: .78rem;
    line-height: 1.65;
}

/* ---------- Infographic presentation ---------- */
.wide-container {
    width: min(calc(100% - 56px), 1580px);
    max-width: 1580px;
}

.rich-infographic {
    max-width: 100%;
    margin-inline: auto;
    border: 1px solid rgba(170, 204, 228, .42);
    border-radius: 24px;
    box-shadow: 0 24px 58px rgba(11,37,69,.105);
    image-rendering: auto;
}

#case-study .rich-infographic {
    max-width: 1535px;
}

.figure-scroll {
    position: relative;
    scrollbar-color: rgba(11,99,206,.32) transparent;
    scrollbar-width: thin;
}

.figure-scroll::-webkit-scrollbar {
    height: 7px;
}

.figure-scroll::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(11,99,206,.40), rgba(24,165,111,.40));
}

/* ---------- Next Action ---------- */
.final-cta {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(24,165,111,.13), transparent 31%),
        radial-gradient(circle at 92% 18%, rgba(11,99,206,.13), transparent 34%),
        linear-gradient(180deg, #f8fcff 0%, #eaf7ff 100%);
}

.final-cta .section-title.center {
    max-width: 1040px;
}

.cta-choice-grid {
    max-width: 1200px;
    margin-inline: auto;
    gap: 20px;
}

.cta-choice-card {
    --cta-accent: #0b83c6;
    min-height: 354px !important;
    padding: 28px !important;
    border: 1px solid rgba(151, 197, 228, .72) !important;
    border-radius: 28px !important;
    background: rgba(255,255,255,.95) !important;
    box-shadow: 0 20px 48px rgba(11,37,69,.09) !important;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.cta-choice-card:nth-child(2) {
    --cta-accent: #0aa079;
}

.cta-choice-card:nth-child(3) {
    --cta-accent: #194d79;
}

.cta-choice-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: var(--cta-accent);
}

.cta-choice-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--cta-accent) 42%, white) !important;
    box-shadow: 0 28px 58px rgba(11,37,69,.14) !important;
}

.cta-choice-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cta-choice-head > span {
    min-width: 48px;
    height: 34px;
    padding: 0 12px;
    color: #fff;
    background: var(--cta-accent);
}

.cta-choice-head small {
    color: #6a7f92;
    font-size: .75rem;
    font-weight: 800;
    text-align: right;
}

.cta-choice-card h3 {
    margin-top: 24px;
    font-size: 1.36rem;
}

.cta-choice-card p {
    margin-bottom: 24px;
}

.button-next {
    width: 100%;
    margin-top: auto;
    color: #fff;
    background: var(--cta-accent);
    border-color: transparent;
    box-shadow: 0 14px 30px color-mix(in srgb, var(--cta-accent) 25%, transparent);
}

.button-next::after {
    color: var(--cta-accent);
    background: #fff;
}

.button-next:hover,
.button-next:focus-visible {
    box-shadow: 0 20px 38px color-mix(in srgb, var(--cta-accent) 31%, transparent);
}

/* ---------- Mobile fixed CTA ---------- */
.mobile-fixed-cta {
    gap: 9px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
}

.mobile-fixed-cta a {
    min-height: 50px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(11,37,69,.12);
}

.mobile-fixed-cta a:first-child {
    background: linear-gradient(135deg, #087dc0, #0aa679);
}

/* ---------- Tablet ---------- */
@media (max-width: 1040px) {
    :root {
        --header: 72px;
    }

    .site-header {
        height: var(--header);
    }

    .site-header .container.header-inner {
        width: min(calc(100% - 40px), 960px) !important;
        height: var(--header);
    }

    .site-header .brand img {
        width: 164px !important;
        height: 44px !important;
    }

    .brand {
        min-width: 164px;
    }

    .nav-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        box-shadow: 0 8px 22px rgba(11,37,69,.08);
    }

    .global-nav {
        position: fixed;
        top: calc(var(--header) + 10px);
        left: 18px;
        right: 18px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px !important;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255,255,255,.98);
        box-shadow: 0 24px 58px rgba(11,37,69,.17);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .22s ease;
    }

    .global-nav a {
        padding: 12px 14px !important;
        border-radius: 12px;
        background: #f7fbfe;
        text-align: center;
    }

    .global-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .global-nav .nav-cta {
        grid-column: 1 / -1;
        min-height: 50px;
        margin-top: 4px;
    }

    body.nav-open .global-nav {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .section-title.center {
        width: min(100%, 940px);
        max-width: 940px;
    }

    .section-title.center h2 {
        max-width: 900px;
    }

    .wide-container {
        width: min(calc(100% - 32px), 980px);
    }

    .figure-scroll {
        margin-inline: -4px;
        padding: 38px 4px 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .figure-scroll::before {
        content: "横にスワイプして全体をご覧ください  →";
        position: absolute;
        top: 0;
        left: 4px;
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 4px 10px;
        border-radius: 999px;
        color: #41627d;
        background: #edf7fd;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .02em;
    }

    .rich-infographic {
        width: auto;
        max-width: none;
        min-width: 1000px;
        border-radius: 20px;
        scroll-snap-align: start;
    }

    #problem .rich-infographic {
        min-width: 1080px;
    }

    #case-study .rich-infographic {
        min-width: 920px;
    }

    .hero-overlay .hero-actions {
        max-width: 650px;
    }

    .hero-points {
        width: min(100%, 650px) !important;
    }

    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-choice-card:last-child {
        grid-column: 1 / -1;
        min-height: 300px !important;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
    :root {
        --header: 68px;
    }

    .site-header .container.header-inner {
        width: calc(100% - 24px) !important;
    }

    .site-header .brand img {
        width: 142px !important;
        height: 38px !important;
    }

    .brand {
        min-width: 142px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .global-nav {
        left: 12px;
        right: 12px;
        grid-template-columns: 1fr;
        max-height: calc(100dvh - 92px);
        overflow-y: auto;
    }

    .global-nav .nav-cta {
        grid-column: auto;
    }

    .section-board {
        padding: 58px 0;
    }

    .section-title {
        margin-bottom: 28px;
    }

    .section-title.center h2 {
        max-width: 100%;
        font-size: clamp(1.72rem, 8.1vw, 2.25rem);
        line-height: 1.32;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .section-title.center > p:not(.eyebrow) {
        margin-top: 13px;
        font-size: .92rem;
        line-height: 1.85;
    }

    .problem-intro h2 {
        font-size: clamp(1.8rem, 8.4vw, 2.3rem);
        line-height: 1.3;
    }

    .hero-inner {
        padding: 44px 0 250px !important;
    }

    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        width: auto !important;
        max-width: 100% !important;
        font-size: clamp(1.95rem, 8.1vw, 2.35rem) !important;
        line-height: 1.15 !important;
        letter-spacing: -.015em !important;
    }

    .hero-title-line {
        white-space: nowrap !important;
    }

    .hero-overlay .hero-lead {
        width: auto !important;
        max-width: 100% !important;
        font-size: .92rem !important;
        line-height: 1.82 !important;
    }

    .hero-overlay .hero-lead br {
        display: none;
    }

    .hero-overlay .hero-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px !important;
        margin-top: 22px !important;
    }

    .hero-overlay .button {
        width: 100%;
        min-height: 54px !important;
        font-size: .88rem !important;
    }

    .hero-points {
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .hero-points-head {
        display: block;
        padding-bottom: 10px;
    }

    .hero-points-head small {
        display: block;
        margin-top: 4px;
        text-align: left;
    }

    .hero-points ul {
        grid-template-columns: 1fr !important;
        gap: 7px !important;
    }

    .hero-points li {
        min-height: 44px;
    }

    .quick-proof {
        margin-top: -28px !important;
        padding-bottom: 36px !important;
    }

    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .proof-grid article {
        min-height: 132px;
        display: block;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .proof-icon {
        width: 44px;
        height: 44px;
        padding: 8px;
        margin-bottom: 9px;
        border-radius: 14px;
    }

    .proof-grid strong {
        font-size: .92rem;
    }

    .proof-grid span:not(.proof-icon) {
        font-size: .70rem;
        line-height: 1.55;
    }

    .wide-container {
        width: calc(100% - 20px);
    }

    .infographic-section {
        padding: 48px 0;
    }

    .image-section-title {
        margin-bottom: 4px;
    }

    .figure-scroll {
        margin-inline: -2px;
        padding: 36px 2px 10px;
    }

    .rich-infographic,
    #case-study .rich-infographic {
        min-width: 900px;
        border-radius: 16px;
        box-shadow: 0 18px 42px rgba(11,37,69,.10);
    }

    #problem .rich-infographic {
        min-width: 980px;
    }

    .cta-choice-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cta-choice-card,
    .cta-choice-card:last-child {
        min-height: auto !important;
        grid-column: auto;
        padding: 23px !important;
        border-radius: 23px !important;
    }

    .cta-choice-card h3 {
        margin-top: 18px;
        font-size: 1.22rem;
    }

    .cta-choice-card p {
        margin-bottom: 20px;
        font-size: .90rem;
    }

    .button-next {
        min-height: 54px;
        font-size: .88rem;
    }

    .mobile-fixed-cta {
        display: grid;
    }
}

@media (max-width: 380px) {
    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        font-size: 1.82rem !important;
    }

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

    .proof-grid article {
        min-height: 126px;
    }
}

/* v7.6 responsive hero containment correction */
@media (max-width: 1040px) {
    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        width: min(calc(100% - 40px), 960px) !important;
        max-width: 960px !important;
        margin-inline: auto !important;
        padding: 60px 0 300px !important;
    }

    .hero-overlay .hero-copy {
        width: min(100%, 680px) !important;
        max-width: 680px !important;
        margin: 0 !important;
    }

    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        width: auto !important;
        max-width: 100% !important;
        font-size: clamp(2.75rem, 6.2vw, 3.35rem) !important;
        line-height: 1.12 !important;
    }

    .hero-overlay .hero-lead {
        width: min(100%, 620px) !important;
        max-width: 620px !important;
    }
}

@media (max-width: 640px) {
    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin-inline: auto !important;
        padding: 44px 0 250px !important;
    }

    .hero-overlay .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =========================================================
   v7.6.1 responsive verification fixes
   - Restore container gutters on tablet/mobile hero
   - Prevent headline/lead overflow
   - Keep the guide panel compact on phones
========================================================= */
@media (max-width: 1040px) {
    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        width: min(calc(100% - 40px), 960px) !important;
        max-width: 960px !important;
        margin-inline: auto !important;
    }

    .hero-overlay .hero-copy {
        width: 100% !important;
        max-width: 680px !important;
        margin: 0 !important;
    }

    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        max-width: 100% !important;
    }

    .hero-overlay .hero-lead {
        width: 100% !important;
        max-width: 640px !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }
}

@media (max-width: 640px) {
    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin-inline: auto !important;
    }

    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        font-size: clamp(1.72rem, 7.35vw, 2rem) !important;
        line-height: 1.17 !important;
        letter-spacing: -.018em !important;
    }

    .hero-title-line {
        max-width: 100% !important;
        white-space: nowrap !important;
    }

    .hero-overlay .hero-lead {
        font-size: .89rem !important;
        line-height: 1.82 !important;
    }

    .hero-points ul {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hero-points li {
        min-height: 46px;
        padding: 8px 9px !important;
    }

    .hero-point-number {
        width: 25px;
        height: 25px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .hero-points ul {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        font-size: clamp(1.85rem, 8vw, 2rem) !important;
        line-height: 1.18 !important;
    }
}

.section-board[id],
.hero[id] {
    scroll-margin-top: calc(var(--header) + 18px);
}

/* =========================================================
   v7.7 Mobile / Tablet full-image presentation
   - Remove horizontal swipe UI
   - Fit all infographic images inside the viewport
   - Show the mobile hero visual as a clean 16:9 panel
   - Keep only the numbered badges in the hero guide box
========================================================= */

/* Hero guide box: use numbered badges only */
.hero-points li::before {
    content: none !important;
    display: none !important;
}

/* Tablet and mobile: show complete infographics without horizontal scrolling */
@media (max-width: 1040px) {
    .figure-scroll {
        position: relative !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        overscroll-behavior: auto !important;
        scroll-snap-type: none !important;
        scrollbar-width: none !important;
        touch-action: auto !important;
    }

    .figure-scroll::before {
        content: none !important;
        display: none !important;
    }

    .figure-scroll::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .figure-scroll picture {
        display: block !important;
        width: 100% !important;
    }

    .figure-scroll .rich-infographic,
    .rich-infographic,
    #problem .rich-infographic,
    #case-study .rich-infographic,
    .problem-flow-figure .rich-infographic,
    .models .rich-infographic {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        scroll-snap-align: none !important;
        border-radius: 18px !important;
        box-shadow: 0 16px 38px rgba(11, 37, 69, .10) !important;
        image-rendering: auto !important;
    }

    .infographic-section {
        overflow: hidden;
    }
}

/* Mobile hero: use the hero image as a full-width background with a soft top gradient */
@media (max-width: 640px) {
    .hero.hero-overlay {
        position: relative !important;
        isolation: isolate !important;
        min-height: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #edf7fb !important;
    }

    /* The visual fills the entire hero width instead of appearing as a separate card. */
    .hero-media {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #dcecf4 !important;
        box-shadow: none !important;
    }

    .hero-media img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: 64% 62% !important;
        filter: saturate(1.03) contrast(1.02) !important;
        transform: none !important;
    }

    /* Pale gradient at the top keeps the copy legible while fading into the photo. */
    .hero.hero-overlay::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        background:
            linear-gradient(
                180deg,
                rgba(247, 252, 254, 1) 0%,
                rgba(247, 252, 254, .98) 20%,
                rgba(247, 252, 254, .91) 40%,
                rgba(247, 252, 254, .67) 57%,
                rgba(247, 252, 254, .24) 73%,
                rgba(247, 252, 254, 0) 88%
            ),
            linear-gradient(
                90deg,
                rgba(247, 252, 254, .86) 0%,
                rgba(247, 252, 254, .55) 48%,
                rgba(247, 252, 254, .08) 100%
            ) !important;
    }

    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        position: relative !important;
        z-index: 2 !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin-inline: auto !important;
        padding: 38px 0 clamp(300px, 84vw, 390px) !important;
    }

    .hero-overlay .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .hero-overlay .hero-copy .eyebrow {
        margin-bottom: 12px !important;
    }

    .hero-overlay .hero-copy h1,
    .hero-overlay .hero-title {
        max-width: 100% !important;
        margin-bottom: 16px !important;
    }

    .hero-overlay .hero-lead {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Keep the guide and note readable over the background photo. */
    .hero-points {
        background: rgba(255, 255, 255, .88) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        backdrop-filter: blur(12px) !important;
    }

    .hero-overlay .note {
        padding: 8px 10px !important;
        border-radius: 10px !important;
        background: rgba(242, 249, 252, .66) !important;
        -webkit-backdrop-filter: blur(6px) !important;
        backdrop-filter: blur(6px) !important;
    }

    .quick-proof {
        position: relative !important;
        z-index: 3 !important;
        margin-top: -18px !important;
        padding-top: 0 !important;
    }

    .figure-scroll .rich-infographic,
    .rich-infographic,
    #problem .rich-infographic,
    #case-study .rich-infographic,
    .problem-flow-figure .rich-infographic,
    .models .rich-infographic {
        border-radius: 14px !important;
        box-shadow: 0 12px 30px rgba(11, 37, 69, .09) !important;
    }
}

@media (max-width: 420px) {
    .hero-media img {
        object-position: 65% 64% !important;
    }

    .container.hero-inner,
    .hero-overlay .container.hero-inner {
        padding-bottom: clamp(285px, 88vw, 350px) !important;
    }
}
/* フッターのロゴ背景を消し、白ロゴとして表示 */
.site-footer .footer-grid > div:first-child img {
  width: 170px;
  height: auto;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  /* 白背景を視覚的に消し、ロゴ文字を白にする */
  filter: grayscale(1) invert(1) brightness(2);
  mix-blend-mode: screen;
}
/* =========================================================
   v7.8.2 Mobile hero true edge-to-edge fix
   - Force the hero section, photo, and gradient to viewport width
   - Preserve inner content gutters
   - Prevent horizontal scrolling
========================================================= */
@media (max-width: 640px) {
    html,
    body,
    main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        overflow-x: clip !important;
    }

    /* The hero itself is detached from any parent/container width. */
    #top-hero.hero.hero-overlay {
        position: relative !important;
        left: 50% !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        min-width: 100vw !important;
        min-width: 100dvw !important;
        max-width: none !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        transform: translateX(-50%) !important;
        border: 0 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    /* Full-bleed background photo. */
    #top-hero.hero.hero-overlay > .hero-media {
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 50% !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        min-width: 100vw !important;
        min-width: 100dvw !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateX(-50%) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: hidden !important;
    }

    #top-hero.hero.hero-overlay > .hero-media > img {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 !important;
        object-fit: cover !important;
        object-position: 64% 62% !important;
        border: 0 !important;
        border-radius: 0 !important;
    }

    /* Gradient spans the same full viewport width as the photo. */
    #top-hero.hero.hero-overlay::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 50% !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        min-width: 100vw !important;
        min-width: 100dvw !important;
        max-width: none !important;
        transform: translateX(-50%) !important;
        border: 0 !important;
        border-radius: 0 !important;
        pointer-events: none !important;
        background:
            linear-gradient(
                180deg,
                rgba(247, 252, 254, 1) 0%,
                rgba(247, 252, 254, .99) 18%,
                rgba(247, 252, 254, .92) 38%,
                rgba(247, 252, 254, .68) 57%,
                rgba(247, 252, 254, .25) 73%,
                rgba(247, 252, 254, 0) 88%
            ),
            linear-gradient(
                90deg,
                rgba(247, 252, 254, .84) 0%,
                rgba(247, 252, 254, .50) 48%,
                rgba(247, 252, 254, .06) 100%
            ) !important;
    }

    /* Only the copy retains the normal mobile side gutters. */
    #top-hero.hero.hero-overlay > .container.hero-inner {
        position: relative !important;
        z-index: 2 !important;
        left: auto !important;
        right: auto !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        transform: none !important;
    }

    .quick-proof {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 420px) {
    #top-hero.hero.hero-overlay > .hero-media > img {
        object-position: 65% 64% !important;
    }
}
/* フォーム：プライバシーポリシー同意欄 */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 5px 0 0;
  accent-color: var(--blue);
}

.form-consent label {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.form-consent a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-consent a:hover,
.form-consent a:focus-visible {
  color: var(--green);
}
.site-footer .footer-bottom {
  display: block;
  text-align: center;
}

/* =========================================================
   Hero copy refinement: kana sizing + green DX emphasis
   - Main copy follows the provided reference visual
   - Hiragana in 「観光客が溢れる今、」 is one step smaller
   - 「観光×DX」 and 「収益機会」 are highlighted in green
========================================================= */
.hero-audience-ribbon {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin: 0 0 24px;
    padding: 9px 34px 9px 22px;
    color: #fff;
    background: linear-gradient(100deg, #0b78be 0%, #079c91 52%, #21a64a 100%);
    box-shadow: 0 12px 28px rgba(8, 118, 185, .22);
    font-size: clamp(.78rem, 1.1vw, .94rem);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .06em;
    text-shadow: 0 1px 4px rgba(0,0,0,.12);
    transform: skewX(-8deg);
}

.hero-audience-ribbon::before,
.hero-audience-ribbon::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    background: rgba(255,255,255,.9);
    opacity: .68;
}

.hero-audience-ribbon::before {
    left: -10px;
    transform: skewX(-18deg);
}

.hero-audience-ribbon::after {
    right: -8px;
    background: rgba(255,255,255,.45);
    transform: skewX(18deg);
}

.hero-audience-ribbon > span,
.hero-audience-ribbon {
    transform-origin: center;
}

.hero-overlay .hero-copy .hero-audience-ribbon + .hero-title,
.hero-overlay .hero-title-revenue {
    margin-top: 0 !important;
}

.hero-overlay .hero-copy h1.hero-title-revenue,
.hero-overlay .hero-title-revenue {
    font-size: clamp(3.05rem, 5.25vw, 5.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    color: #091e43 !important;
    text-shadow: 0 2px 18px rgba(255,255,255,.82) !important;
}

.hero-title-revenue .hero-title-line {
    display: block;
    width: fit-content;
    max-width: 100%;
    white-space: nowrap;
}

.hero-small-kana {
    display: inline-block;
    font-size: .84em;
    line-height: 1;
    letter-spacing: -.02em;
    vertical-align: .04em;
}

.hero-green {
    color: #149a42;
    font-weight: 950;
    text-shadow: 0 2px 16px rgba(255,255,255,.86), 0 10px 26px rgba(20,154,66,.12);
}

.hero-overlay .hero-lead.hero-lead-revenue {
    max-width: 640px !important;
    margin-top: 24px !important;
    color: #0d2548 !important;
    font-size: clamp(.98rem, 1.18vw, 1.1rem) !important;
    line-height: 1.92 !important;
    font-weight: 800 !important;
    text-shadow: 0 1px 14px rgba(255,255,255,.78) !important;
}

.hero-lead-revenue .hero-green {
    font-weight: 950;
}

@media (max-width: 1040px) {
    .hero-overlay .hero-copy h1.hero-title-revenue,
    .hero-overlay .hero-title-revenue {
        font-size: clamp(2.7rem, 7vw, 4.2rem) !important;
        line-height: 1.12 !important;
    }

    .hero-audience-ribbon {
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .hero-audience-ribbon {
        margin-bottom: 16px !important;
        padding: 7px 22px 7px 15px;
        font-size: .74rem;
        letter-spacing: .035em;
    }

    .hero-overlay .hero-copy h1.hero-title-revenue,
    .hero-overlay .hero-title-revenue {
        font-size: clamp(2.05rem, 10.3vw, 3.05rem) !important;
        line-height: 1.15 !important;
        letter-spacing: -.045em !important;
        margin-bottom: 15px !important;
    }

    .hero-title-revenue .hero-title-line {
        width: 100%;
        white-space: normal;
        text-wrap: balance;
    }

    .hero-small-kana {
        font-size: .84em;
        vertical-align: .03em;
    }

    .hero-overlay .hero-lead.hero-lead-revenue {
        margin-top: 18px !important;
        font-size: .88rem !important;
        line-height: 1.82 !important;
        font-weight: 780 !important;
    }
}

@media (max-width: 390px) {
    .hero-overlay .hero-copy h1.hero-title-revenue,
    .hero-overlay .hero-title-revenue {
        font-size: clamp(1.9rem, 10vw, 2.56rem) !important;
        line-height: 1.17 !important;
    }

    .hero-audience-ribbon {
        font-size: .69rem;
        padding-right: 18px;
    }
}


/* =========================================================
   v7.10 Mobile hero background restore
   - Keep the updated hero copy/kana/DX styling
   - Restore the mobile full-bleed hero photo behavior
   - Photo is screen-width, anchored to the lower hero area
   - Only the top of the photo fades with a white/blue gradient
   - Prevent the photo from stretching behind the entire long hero content
========================================================= */
@media (max-width: 640px) {
    html,
    body,
    main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        overflow-x: clip !important;
    }

    #top-hero.hero.hero-overlay {
        --mobile-hero-visual-height: clamp(430px, 118vw, 560px);

        position: relative !important;
        isolation: isolate !important;
        left: 50% !important;
        right: auto !important;
        width: 100vw !important;
        width: 100dvw !important;
        min-width: 100vw !important;
        min-width: 100dvw !important;
        max-width: none !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateX(-50%) !important;
        overflow: hidden !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #f7fcfe !important;
    }

    #top-hero.hero.hero-overlay > .hero-media {
        position: absolute !important;
        z-index: 0 !important;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: none !important;
        height: var(--mobile-hero-visual-height) !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        overflow: hidden !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: #dcecf4 !important;
        box-shadow: none !important;
    }

    #top-hero.hero.hero-overlay > .hero-media > img {
        display: block !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        margin: 0 !important;
        transform: none !important;
        object-fit: cover !important;
        object-position: 64% 58% !important;
        border: 0 !important;
        border-radius: 0 !important;
        filter: saturate(1.03) contrast(1.02) !important;
    }

    #top-hero.hero.hero-overlay::after {
        content: "" !important;
        display: block !important;
        position: absolute !important;
        z-index: 1 !important;
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: var(--mobile-hero-visual-height) !important;
        transform: none !important;
        pointer-events: none !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: linear-gradient(
            180deg,
            #f7fcfe 0%,
            rgba(247, 252, 254, .98) 10%,
            rgba(247, 252, 254, .88) 21%,
            rgba(247, 252, 254, .58) 34%,
            rgba(247, 252, 254, .24) 46%,
            rgba(247, 252, 254, .06) 57%,
            rgba(247, 252, 254, 0) 68%
        ) !important;
    }

    #top-hero.hero.hero-overlay > .container.hero-inner {
        position: relative !important;
        z-index: 2 !important;
        left: auto !important;
        right: auto !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        margin: 0 auto !important;
        padding: 38px 0 calc(var(--mobile-hero-visual-height) - 105px) !important;
        transform: none !important;
    }

    #top-hero .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    #top-hero .hero-points {
        background: rgba(255, 255, 255, .90) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        backdrop-filter: blur(12px) !important;
    }

    #top-hero .note {
        padding: 9px 10px !important;
        border-radius: 10px !important;
        background: rgba(247, 252, 254, .74) !important;
        -webkit-backdrop-filter: blur(7px) !important;
        backdrop-filter: blur(7px) !important;
    }

    .quick-proof {
        position: relative !important;
        z-index: 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: -18px !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 420px) {
    #top-hero.hero.hero-overlay {
        --mobile-hero-visual-height: clamp(410px, 122vw, 510px);
    }

    #top-hero.hero.hero-overlay > .hero-media > img {
        object-position: 65% 60% !important;
    }

    #top-hero.hero.hero-overlay > .container.hero-inner {
        padding-bottom: calc(var(--mobile-hero-visual-height) - 100px) !important;
    }
}
