@charset "UTF-8";

/* ==========================================
   Design Tokens
   Reference: seedsconnect.jp
========================================== */
:root {
    --navy-950: #0b1a38;
    --navy-900: #1a2a4c;
    --navy-800: #25365a;
    --navy-700: #33456b;
    --primary: #2E7D9A;
    --primary-dark: #246076;
    --accent: #E08A2B;
    --accent-dark: #C7741A;
    --accent-light: #F2B350;
    --gold: #D4A64A;
    --secondary: #4CAF50;
    --cyan-glow: #3FD6E8;

    --text-dark: #1b2a3d;
    --text-body: #2C3E50;
    --text-muted: #6C757D;

    --bg-white: #ffffff;
    --bg-light: #F8F9FA;
    --bg-navy: var(--navy-900);

    --border: #E9ECEF;
    --border-strong: #d7dee5;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 18px;

    --shadow-xs: 0 1px 2px rgba(0, 33, 77, .06);
    --shadow-sm: 0 2px 6px rgba(0, 33, 77, .08);
    --shadow: 0 8px 24px rgba(0, 33, 77, .08);
    --shadow-lg: 0 16px 40px rgba(0, 33, 77, .12);

    --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;

    --container: 1160px;
    --container-narrow: 820px;

    --easing: cubic-bezier(.2, .7, .2, 1);
}

/* ==========================================
   Base Reset
========================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
    margin: 0;
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    word-break: auto-phrase;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--easing); }
a:hover { color: var(--primary); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-dark);
    margin: 0 0 1rem;
    letter-spacing: .01em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p { margin: 0 0 1rem; }

ul { list-style: none; padding: 0; margin: 0; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.pc-only { display: inline; }
.sp-only { display: none; }

@media (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: inline; }
}

/* ==========================================
   Utility
========================================== */
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* ==========================================
   Buttons
========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .9em 1.8em;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: 999px;
    transition: transform .25s var(--easing), box-shadow .25s var(--easing), background .25s var(--easing), color .25s var(--easing);
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.btn-lg { padding: 1.05em 2.2em; font-size: 1.05rem; }
.btn-xl { padding: 1.2em 2.4em; font-size: 1.1rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 53, .28);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 107, 53, .36);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--navy-900);
    border: 2px solid var(--navy-900);
}
.btn-ghost:hover {
    background: var(--navy-900);
    color: #fff;
    transform: translateY(-2px);
}

.btn i { font-size: .95em; }

/* ==========================================
   Header
========================================== */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    box-shadow: var(--shadow-xs);
    z-index: 1000;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.logo img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity .25s var(--easing);
}
.logo:hover img { opacity: .8; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: .95rem;
    font-weight: 500;
    color: var(--text-body);
}
.nav-link:hover { color: var(--primary); }
.nav-cta {
    display: inline-block;
    padding: .6em 1.4em;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 107, 53, .25);
    transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.nav-cta:hover {
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 8px 16px rgba(255, 107, 53, .35);
}
.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: transform .3s var(--easing), opacity .3s var(--easing);
}

/* ==========================================
   Section base
========================================== */
.section {
    padding: clamp(64px, 8vw, 120px) 0;
    position: relative;
}
.section--white { background: var(--bg-white); }
.section--light { background: var(--bg-light); }
.section--navy {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--primary-dark) 100%);
    color: #fff;
    overflow: hidden;
}
.section--navy::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}
.section--cta {
    background: linear-gradient(135deg, #f6f9fc 0%, #fff 100%);
    padding: clamp(64px, 8vw, 120px) 0 clamp(80px, 9vw, 140px);
}

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head--light { color: #fff; }
.section-head--light .section-title,
.section-head--light .section-lead { color: #fff; }

.section-eyebrow {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .3em;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 18px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}
.section-eyebrow::before { right: 100%; }
.section-eyebrow::after { left: 100%; }
.section-eyebrow--light { color: #ffb299; }

.section-title {
    font-size: clamp(1.55rem, 3.4vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    letter-spacing: .02em;
}
.section-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
}
.section-head--light .section-lead { color: rgba(255, 255, 255, .85); }

/* ==========================================
   Hero (full-width image background + navy overlay)
========================================== */
.hero {
    position: relative;
    padding: clamp(150px, 16vw, 220px) 0 clamp(90px, 11vw, 140px);
    overflow: hidden;
    isolation: isolate;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.02);
    filter: saturate(1.05);
}
.hero-bg__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(11, 26, 56, .92) 0%,
            rgba(11, 26, 56, .82) 35%,
            rgba(26, 42, 76, .55) 65%,
            rgba(26, 42, 76, .35) 100%),
        radial-gradient(1200px 700px at 0% 40%, rgba(11, 26, 56, .55), transparent 70%);
}
.hero-bg__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .6;
    pointer-events: none;
}

.hero-inner {
    max-width: 720px;
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    padding: .5em 1.1em;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    border-radius: 999px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-light);
    box-shadow: 0 0 10px var(--accent-light);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 1.4rem;
    letter-spacing: .01em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.hero-accent {
    color: var(--accent-light);
    background: linear-gradient(transparent 62%, rgba(224, 138, 43, .35) 62%);
    padding: 0 .1em;
    position: relative;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.9vw, 1.3rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, .88);
    margin: 0 0 2.4rem;
    font-weight: 500;
}

/* Hero result highlight — enlarged emphasis on "1時間→10分" */
.hero-highlight {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-left: 3px solid var(--accent-light);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 2.5vw, 26px) clamp(22px, 3vw, 32px);
    margin: 0 0 2.6rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.hero-highlight__label {
    display: flex;
    flex-wrap: wrap;
    gap: .8em;
    align-items: center;
    margin-bottom: 1rem;
}
.hero-highlight__tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    color: var(--navy-950);
    background: var(--accent-light);
    padding: .35em .9em;
    border-radius: 4px;
}
.hero-highlight__desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .02em;
}
.hero-highlight__figures {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 28px);
    margin-bottom: 1rem;
}
.hero-highlight__from,
.hero-highlight__to {
    display: flex;
    align-items: baseline;
    font-weight: 700;
    line-height: 1;
    font-family: 'Georgia', 'Noto Sans JP', serif;
}
.hero-highlight__from {
    color: rgba(255, 255, 255, .55);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, .35);
    text-decoration-thickness: 2px;
}
.hero-highlight__from-num {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
}
.hero-highlight__from-unit {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    margin-left: .1em;
    font-weight: 500;
}
.hero-highlight__arrow {
    color: var(--accent-light);
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    display: flex;
    align-items: center;
}
.hero-highlight__to {
    color: #fff;
    position: relative;
}
.hero-highlight__to-num {
    font-size: clamp(3.4rem, 9vw, 5.8rem);
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 12px rgba(242, 179, 80, .35));
    letter-spacing: -.02em;
}
.hero-highlight__to-unit {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    margin-left: .15em;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
}
.hero-highlight__to-cut {
    display: inline-block;
    margin-left: .8em;
    padding: .3em .7em;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 4px;
    font-family: var(--font-jp);
    align-self: center;
    box-shadow: 0 4px 12px rgba(224, 138, 43, .4);
}
.hero-highlight__caption {
    font-size: .88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.4rem;
}
.hero-note {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}
.hero-note i { color: var(--accent-light); }

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 12px;
    pointer-events: none;
    opacity: .7;
}
.hero-scroll span {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: rgba(255, 255, 255, .9);
    border-radius: 2px;
    animation: scroll-dot 2s cubic-bezier(.2, .7, .2, 1) infinite;
}
@keyframes scroll-dot {
    0% { transform: translate(-50%, 0); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* Light variant ghost button for dark hero */
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .9);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================
   News Section (Nikkei evidence)
========================================== */
.news-section {
    padding: clamp(48px, 6vw, 80px) 0 clamp(24px, 3vw, 40px);
    background: var(--bg-white);
    position: relative;
}
.news-card {
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(32px, 4.5vw, 56px);
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -20px rgba(11, 26, 56, .4);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.news-card::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(242, 179, 80, .14), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}
.news-card__head {
    position: relative;
    margin-bottom: 1.8rem;
}
.news-card__badge {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: .45em 1em;
    background: var(--accent-light);
    color: var(--navy-950);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    box-shadow: 0 6px 18px rgba(242, 179, 80, .3);
}
.news-card__title {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    letter-spacing: .01em;
}
.news-card__emph {
    background: linear-gradient(transparent 62%, rgba(242, 179, 80, .32) 62%);
    color: var(--accent-light);
    padding: 0 .1em;
}
.news-card__quote {
    position: relative;
    padding: 1.4rem 1.8rem;
    margin: 0 0 1.6rem;
    background: rgba(255, 255, 255, .04);
    border-left: 3px solid var(--accent-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.news-card__quote-icon {
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-right: .6em;
    opacity: .8;
    vertical-align: baseline;
}
.news-card__quote p {
    font-size: clamp(.95rem, 1.5vw, 1.05rem);
    line-height: 1.95;
    color: rgba(255, 255, 255, .92);
    margin: 0 0 1rem;
    display: inline;
}
.news-card__quote strong {
    color: #fff;
    background: linear-gradient(transparent 62%, rgba(242, 179, 80, .25) 62%);
    font-weight: 700;
    padding: 0 .1em;
}
.news-card__quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .02em;
}
.news-card__foot {
    position: relative;
}
.news-card__conclusion {
    display: flex;
    align-items: flex-start;
    gap: .8em;
    font-size: clamp(.95rem, 1.5vw, 1.05rem);
    line-height: 1.95;
    color: rgba(255, 255, 255, .92);
    margin: 0;
    padding: 1.4rem 1.6rem;
    background: rgba(242, 179, 80, .08);
    border-radius: var(--radius);
    border: 1px solid rgba(242, 179, 80, .2);
}
.news-card__conclusion i {
    color: var(--accent-light);
    font-size: 1.2em;
    margin-top: .15em;
    flex-shrink: 0;
}
.news-card__conclusion strong {
    color: #fff;
    font-weight: 700;
}

/* ==========================================
   Pain Points
========================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
}
.pain-card {
    padding: 2rem 1.8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s var(--easing);
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(46, 125, 154, .3);
}
.pain-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-900), var(--primary));
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
}
.pain-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.55;
    margin: 0 0 .8rem;
    color: var(--navy-900);
}
.pain-card p {
    font-size: .92rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin: 0;
}
.pain-bridge {
    text-align: center;
    margin: 3.5rem 0 0;
    color: var(--primary);
    font-weight: 600;
}
.pain-bridge i {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
}
.pain-bridge span {
    display: inline-block;
    margin-top: .6rem;
    letter-spacing: .1em;
    color: var(--text-body);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ==========================================
   Case Study
========================================== */
.case-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}
.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 2rem;
}
.case-tag {
    display: inline-block;
    padding: .35em 1em;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    border-radius: 999px;
    letter-spacing: .05em;
    border: 1px solid rgba(255, 255, 255, .2);
}
.case-ba {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(16px, 3vw, 32px);
    align-items: stretch;
    margin-bottom: 2.4rem;
}
.case-ba__item {
    padding: 1.8rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
}
.case-ba__before { border-color: rgba(255, 255, 255, .18); }
.case-ba__after {
    background: linear-gradient(135deg, rgba(255, 107, 53, .15), rgba(255, 107, 53, .05));
    border-color: rgba(255, 107, 53, .5);
}
.case-ba__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .3em;
    margin-bottom: .8rem;
    color: rgba(255, 255, 255, .7);
}
.case-ba__after .case-ba__label { color: #ffb299; }
.case-ba__time {
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: #fff;
}
.case-ba__num {
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: -.02em;
}
.case-ba__after .case-ba__num { color: var(--accent); }
.case-ba__unit { font-size: 1.2rem; margin-left: .2em; font-weight: 500; }
.case-ba__desc {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .8);
    margin: 0;
}
.case-ba__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
}
/* Case KPI row */
.case-kpi {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 1.8rem 1.2rem;
    margin: 0 0 2rem;
    background: linear-gradient(135deg, rgba(242, 179, 80, .12), rgba(242, 179, 80, .04));
    border: 1px solid rgba(242, 179, 80, .25);
    border-radius: var(--radius);
}
.case-kpi__item { text-align: center; }
.case-kpi__num {
    font-size: clamp(2.2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent-light);
    letter-spacing: -.02em;
    font-family: 'Georgia', 'Noto Sans JP', serif;
    margin-bottom: .4rem;
}
.case-kpi__num span {
    font-size: .45em;
    font-weight: 500;
    margin-left: .15em;
    color: rgba(255, 255, 255, .85);
    font-family: var(--font-jp);
}
.case-kpi__label {
    font-size: .8rem;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
}
.case-kpi__sep {
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, .18);
    justify-self: center;
}

.case-insight {
    padding: 1.8rem 2rem;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, .04);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.case-insight__quote {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.85;
    color: #fff;
    margin: 0 0 .8rem;
}
.case-insight__quote i {
    color: var(--accent);
    margin-right: .4em;
    font-size: .9em;
}
.case-insight__quote strong {
    background: linear-gradient(transparent 62%, rgba(255, 107, 53, .4) 62%);
    color: #fff;
    font-weight: 700;
    padding: 0 .1em;
}
.case-insight__body {
    font-size: .92rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}

/* ==========================================
   Agenda
========================================== */
.agenda-list {
    counter-reset: agenda;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-width: 920px;
    margin: 0 auto;
}
.agenda-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: clamp(20px, 3vw, 36px);
    padding: 2rem clamp(24px, 3vw, 40px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    align-items: flex-start;
    transition: transform .3s var(--easing), box-shadow .3s var(--easing);
}
.agenda-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.agenda-num {
    font-size: 2.6rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    line-height: 1;
    background: linear-gradient(135deg, var(--navy-900), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -.02em;
}
.agenda-body { min-width: 0; }
.agenda-title {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 .8rem;
    line-height: 1.55;
}
.agenda-title strong { color: var(--accent-dark); }
.agenda-desc {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--text-body);
    margin: 0 0 1rem;
}
.agenda-desc strong {
    color: var(--navy-900);
    font-weight: 700;
    background: linear-gradient(transparent 62%, rgba(46, 125, 154, .2) 62%);
    padding: 0 .1em;
}
.agenda-keys {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border-strong);
}
.agenda-keys li {
    font-size: .88rem;
    color: var(--text-muted);
    padding-left: 1.4em;
    position: relative;
    line-height: 1.7;
}
.agenda-keys li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65em;
    width: 8px;
    height: 2px;
    background: var(--primary);
}

/* ==========================================
   Speaker
========================================== */
.speaker-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.speaker-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 33, 77, .15);
    border: 5px solid #fff;
    outline: 1px solid var(--border);
}
.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.speaker-company {
    font-size: .88rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .08em;
    margin: 0 0 .5rem;
}
.speaker-name {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 1.2rem;
    line-height: 1.3;
}
.speaker-name span {
    display: inline-block;
    margin-left: .8em;
    font-size: .6em;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .1em;
}
.speaker-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0 0 1rem;
}
.speaker-desc {
    font-size: .92rem;
    line-height: 1.95;
    color: var(--text-muted);
    margin: 0 0 1.4rem;
}
.speaker-message {
    padding: 1.2rem 1.4rem;
    background: var(--bg-light);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .92rem;
    line-height: 1.9;
    color: var(--text-body);
    margin: 0;
    font-style: normal;
}
.speaker-message i {
    color: var(--accent);
    margin-right: .5em;
}

/* ==========================================
   Benefit
========================================== */
.benefit-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    background: linear-gradient(135deg, #fff 0%, #f6f9fc 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    align-items: center;
}
.benefit-card::before {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(255, 107, 53, .12), transparent 70%);
    border-radius: 50%;
}
.benefit-badge {
    position: absolute;
    top: 24px; right: 24px;
    padding: .4em 1em;
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(255, 107, 53, .3);
    z-index: 1;
}
.benefit-visual {
    position: relative;
}
.benefit-sheet {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2deg);
}
.benefit-sheet__head {
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy-900);
    padding-bottom: .7rem;
    margin-bottom: .8rem;
    border-bottom: 2px solid var(--accent);
    letter-spacing: .02em;
}
.benefit-sheet__rows {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.benefit-sheet__rows li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    padding: .55rem .7rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}
.benefit-sheet__rows li span { color: var(--text-body); font-weight: 500; }
.benefit-sheet__rows li em {
    font-style: normal;
    color: var(--primary);
    font-weight: 600;
    font-size: .75rem;
    padding: .2em .7em;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
}
.benefit-title {
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 1rem;
    line-height: 1.45;
}
.benefit-desc {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--text-body);
    margin: 0 0 1.4rem;
}
.benefit-desc strong {
    color: var(--accent-dark);
    font-weight: 700;
}
.benefit-checks {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: 0 0 1.2rem;
}
.benefit-checks li {
    display: flex;
    align-items: center;
    gap: .6em;
    font-size: .95rem;
    color: var(--text-body);
    font-weight: 500;
}
.benefit-checks i {
    color: #fff;
    background: var(--primary);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}
.benefit-note {
    font-size: .84rem;
    color: var(--text-muted);
    margin: 0;
    padding-top: .8rem;
    border-top: 1px dashed var(--border-strong);
}

/* ==========================================
   Outline
========================================== */
.outline-table {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.outline-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--border);
}
.outline-row:last-child { border-bottom: none; }
.outline-row dt {
    display: flex;
    align-items: center;
    gap: .6em;
    padding: 1.3rem 1.6rem;
    background: var(--bg-light);
    font-weight: 600;
    color: var(--navy-900);
    font-size: .95rem;
    border-right: 1px solid var(--border);
}
.outline-row dt i {
    color: var(--primary);
    font-size: 1.05em;
    width: 18px;
    text-align: center;
}
.outline-row dd {
    padding: 1.3rem 1.6rem;
    margin: 0;
    color: var(--text-body);
    font-size: .95rem;
    line-height: 1.8;
}
.outline-row dd strong { color: var(--accent-dark); font-weight: 700; }
.outline-note {
    display: block;
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

/* ==========================================
   CTA / Form
========================================== */
.cta-head {
    max-width: 780px;
    margin: 0 auto clamp(32px, 4vw, 48px);
    text-align: center;
}
.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.5;
    margin: 0 0 1.2rem;
}
.cta-title .text-accent {
    background: linear-gradient(transparent 62%, rgba(255, 107, 53, .35) 62%);
    padding: 0 .1em;
}
.cta-lead {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-body);
    margin: 0 0 1.6rem;
}
.cta-lead strong { color: var(--accent-dark); font-weight: 700; }
/* CTA Limited offer block (5社限定) */
.cta-limited {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 32px);
    max-width: 640px;
    margin: 2.4rem auto;
    padding: 1.6rem clamp(20px, 3vw, 32px);
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px -16px rgba(11, 26, 56, .35);
    text-align: left;
    position: relative;
    overflow: hidden;
}
.cta-limited::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(242, 179, 80, .18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-limited__badge {
    flex-shrink: 0;
    width: clamp(80px, 14vw, 100px);
    height: clamp(80px, 14vw, 100px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--navy-950);
    box-shadow: 0 10px 24px rgba(242, 179, 80, .4);
    font-weight: 700;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.cta-limited__badge-num {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-family: 'Georgia', 'Noto Sans JP', serif;
    line-height: 1;
}
.cta-limited__badge-unit {
    font-size: .65rem;
    letter-spacing: .15em;
    margin-top: .3em;
}
.cta-limited__body { position: relative; z-index: 1; }
.cta-limited__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 .6rem;
    line-height: 1.5;
}
.cta-limited__title strong {
    color: var(--accent-light);
    font-weight: 700;
}
.cta-limited__desc {
    font-size: .88rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .82);
    margin: 0;
}
.cta-limited__desc strong {
    color: var(--accent-light);
    font-weight: 700;
}

.cta-assure {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.6rem;
    margin: 0;
}
.cta-assure li {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-size: .88rem;
    color: var(--text-body);
    font-weight: 500;
}
.cta-assure i {
    color: var(--secondary);
}

.cta-form {
    max-width: 680px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 44px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.form-row {
    margin-bottom: 1.3rem;
}
.form-row--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}
.form-row label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: .5rem;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: .9em 1em;
    font: inherit;
    font-size: .95rem;
    color: var(--text-body);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color .2s var(--easing), background .2s var(--easing), box-shadow .2s var(--easing);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(46, 125, 154, .12);
}
.form-row textarea { resize: vertical; line-height: 1.7; }
.required {
    display: inline-block;
    margin-left: .4em;
    padding: .1em .55em;
    background: var(--accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: .05em;
    vertical-align: 2px;
}
.optional {
    display: inline-block;
    margin-left: .4em;
    padding: .1em .55em;
    background: var(--border);
    color: var(--text-muted);
    font-size: .68rem;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: .05em;
    vertical-align: 2px;
}
.form-row--check { margin-bottom: .8rem; }
.check-wrap {
    display: flex !important;
    align-items: flex-start;
    gap: .6em;
    font-weight: 500 !important;
    color: var(--text-body) !important;
    font-size: .9rem !important;
    cursor: pointer;
    line-height: 1.6;
}
.check-wrap input { margin-top: .25em; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--primary); }
.check-wrap a { color: var(--primary); text-decoration: underline; }
.form-note {
    font-size: .8rem;
    color: var(--text-muted);
    text-align: center;
    margin: 1rem 0 0;
}

.form-row--turnstile {
    display: flex;
    justify-content: center;
    margin: .8rem 0 1.2rem;
}

.form-status {
    min-height: 1.2em;
    margin: .8rem 0;
    padding: 0;
    font-size: .9rem;
    text-align: center;
    line-height: 1.5;
}
.form-status:empty {
    display: none;
}
.form-status--info {
    color: var(--text-muted);
}
.form-status--success {
    color: #0a7d3e;
    background: #e8f7ee;
    border: 1px solid #bfe5cd;
    border-radius: 8px;
    padding: .8rem 1rem;
}
.form-status--error {
    color: #b00020;
    background: #fdecef;
    border: 1px solid #f5c2ca;
    border-radius: 8px;
    padding: .8rem 1rem;
}

/* ==========================================
   FAQ
========================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s var(--easing), box-shadow .25s var(--easing);
}
.faq-item[open] {
    border-color: rgba(46, 125, 154, .4);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    padding: 1.2rem 3rem 1.2rem 1.4rem;
    font-weight: 600;
    color: var(--navy-900);
    cursor: pointer;
    position: relative;
    font-size: .98rem;
    line-height: 1.6;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: "Q.";
    color: var(--primary);
    font-family: 'Georgia', serif;
    font-weight: 700;
    margin-right: .5em;
}
.faq-item summary::after {
    content: "＋";
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 400;
    transition: transform .25s var(--easing);
}
.faq-item[open] summary::after { content: "−"; }
.faq-body {
    padding: 0 1.4rem 1.3rem;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.9;
    border-top: 1px dashed var(--border);
    margin-top: -.2rem;
    padding-top: 1rem;
}
.faq-body p { margin: 0; }

/* ==========================================
   Footer
========================================== */
.footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .75);
    padding: clamp(48px, 6vw, 72px) 0 clamp(24px, 3vw, 40px);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 48px);
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-logo {
    display: inline-block;
    margin: 0 0 1.2rem;
    line-height: 1;
}
.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity .25s var(--easing);
}
.footer-logo:hover img { opacity: .85; }
.footer-tag {
    font-size: .88rem;
    line-height: 1.8;
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, .8);
}
.footer-addr {
    font-size: .82rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, .55);
}
.footer-head {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: #fff;
    margin: 0 0 1rem;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.footer-col ul li,
.footer-col ul li a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-col ul li i { width: 18px; margin-right: .4em; color: rgba(255, 255, 255, .5); }
.footer-copy {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    text-align: center;
    margin: 0;
    letter-spacing: .05em;
}

/* ==========================================
   Sticky CTA (mobile)
========================================== */
.sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: none;
    padding: .9em 1.4em;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(255, 107, 53, .4);
    z-index: 999;
    align-items: center;
    gap: .5em;
    transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}
.sticky-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 107, 53, .5);
}

/* ==========================================
   Animations on scroll
========================================== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--easing), transform .6s var(--easing);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ==========================================
   Responsive
========================================== */
@media (max-width: 960px) {
    .speaker-card { grid-template-columns: 200px 1fr; }
    .benefit-card { grid-template-columns: 1fr; }
    .benefit-visual { max-width: 380px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 64px; }

    .nav-menu {
        position: fixed;
        top: 64px; left: 0;
        width: 100%;
        flex-direction: column;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        gap: 1.2rem;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform .3s var(--easing), opacity .3s var(--easing);
    }
    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-toggle { display: flex; }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .hero {
        padding: 120px 0 72px;
        min-height: auto;
    }
    .hero-bg__img {
        object-position: 75% center;
    }
    .hero-bg__overlay {
        background:
            linear-gradient(180deg,
                rgba(11, 26, 56, .92) 0%,
                rgba(11, 26, 56, .88) 60%,
                rgba(26, 42, 76, .82) 100%);
    }
    .hero-cta .btn { width: 100%; }
    .hero-highlight__figures {
        gap: 12px;
        flex-wrap: wrap;
    }
    .hero-highlight__to-cut {
        margin-left: 0;
        margin-top: .4em;
        flex-basis: 100%;
        align-self: flex-start;
        width: fit-content;
    }
    .hero-scroll { display: none; }

    .news-card {
        padding: 28px 22px;
    }
    .news-card__quote {
        padding: 1.1rem 1.2rem;
    }
    .news-card__conclusion {
        padding: 1.1rem 1.2rem;
        font-size: .92rem;
    }

    .case-ba {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .case-ba__arrow {
        transform: rotate(90deg);
        padding: .4rem 0;
    }
    .case-kpi {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.4rem;
    }
    .case-kpi__sep {
        width: 60%;
        height: 1px;
        justify-self: center;
    }

    .cta-limited {
        flex-direction: column;
        text-align: center;
        padding: 1.8rem 1.4rem;
    }
    .cta-limited__body { text-align: center; }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 1.8rem 1.4rem;
    }
    .agenda-num { font-size: 2rem; }

    .speaker-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.6rem;
        text-align: center;
    }
    .speaker-photo { max-width: 180px; margin: 0 auto; }
    .speaker-message { text-align: left; }

    .outline-row {
        grid-template-columns: 1fr;
    }
    .outline-row dt {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: .9rem 1.2rem;
    }
    .outline-row dd { padding: 1rem 1.2rem 1.2rem; }

    .form-row--grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col ul li { justify-content: center; display: flex; }

    .sticky-cta { display: inline-flex; }

    .cta-assure { flex-direction: column; align-items: flex-start; }
    .cta-head { text-align: center; }
    .cta-assure {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-eyebrow::before,
    .section-eyebrow::after { display: none; }
    .nav-menu { gap: 1rem; }
    .hero-eyebrow { font-size: .72rem; padding: .5em 1em; }
}

/* ==========================================
   Print
========================================== */
@media print {
    .header, .sticky-cta, .nav-toggle { display: none; }
    .section { padding: 24px 0; page-break-inside: avoid; }
    body { color: #000; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
