/* ==========================================================================
   Lead pages (resources / trial / consultation)
   トップLP（index.html）のトーンに合わせた広告流入用ページ共通スタイル
   ========================================================================== */

:root {
    --lead-ink: #1a202c;
    --lead-navy: #1a365d;
    --lead-navy-2: #2c5282;
    --lead-blue: #3182ce;
    --lead-teal: #087f74;
    --lead-muted: #4a5568;
    --lead-faint: #718096;
    --lead-line: #e2e8f0;
    --lead-soft: #f8fafc;
    --lead-soft-2: #edf2f7;
    --lead-white: #ffffff;
    --lead-grad: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

body.lead-page {
    margin: 0;
    color: var(--lead-ink);
    background: var(--lead-white);
    letter-spacing: 0 !important;
}

.lead-page *,
.lead-page *::before,
.lead-page *::after {
    box-sizing: border-box;
    letter-spacing: 0 !important;
}

.lead-page .header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(26, 32, 44, 0.08) !important;
    box-shadow: none !important;
}

.lead-page .header-inner {
    min-height: 44px;
}

.lead-page .nav-list {
    gap: 24px;
}

/* --------------------------------------------------------------------------
   ボタン（トップLPのグラデーションボタンに合わせる）
   -------------------------------------------------------------------------- */

.lead-page .btn {
    border-radius: 8px !important;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.4;
}

.lead-page .btn-primary {
    color: #fff !important;
    background: var(--lead-grad) !important;
    border: 1px solid transparent !important;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25) !important;
}

.lead-page .btn-primary:hover {
    background: linear-gradient(135deg, #234876 0%, #35619b 100%) !important;
    box-shadow: 0 6px 16px rgba(26, 54, 93, 0.3) !important;
}

.lead-page .btn-secondary-dark {
    color: var(--lead-navy) !important;
    background: #fff !important;
    border: 1px solid #b8c6d9 !important;
}

.lead-page .btn-secondary-dark:hover {
    color: #fff !important;
    background: var(--lead-navy) !important;
    border-color: var(--lead-navy) !important;
}

/* --------------------------------------------------------------------------
   ヒーロー（明るい背景＋実際の製品ビジュアル）
   -------------------------------------------------------------------------- */

.lead-hero {
    padding: 136px 0 60px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--lead-line);
}

.lead-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.lead-hero-eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 14px;
    color: var(--lead-navy-2);
    background: #ebf4ff;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.lead-hero h1 {
    margin: 0;
    color: var(--lead-ink);
    font-size: 2.85rem;
    line-height: 1.28;
    font-weight: 800;
}

.lead-hero h1 .accent {
    color: var(--lead-blue);
}

.lead-hero-copy {
    margin: 20px 0 0;
    color: var(--lead-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

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

.lead-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: var(--lead-ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.lead-proof-line li::before {
    content: "✓";
    color: var(--lead-blue);
    font-weight: 700;
    margin-right: 7px;
}

.lead-hero-award {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    text-decoration: none;
}

.lead-hero-award img {
    width: auto;
    height: 52px;
    display: block;
    flex-shrink: 0;
}

.lead-hero-award span {
    color: var(--lead-muted);
    font-size: 0.78rem;
    line-height: 1.6;
    text-align: left;
}

.lead-hero-award strong {
    color: var(--lead-ink);
}

/* 製品画面フレーム（ブラウザ風） */

.lead-frame {
    background: #fff;
    border: 1px solid #d7e0ea;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(15, 30, 55, 0.14);
    overflow: hidden;
}

.lead-frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--lead-line);
}

.lead-frame-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e0;
}

.lead-frame img,
.lead-frame video {
    display: block;
    width: 100%;
    height: auto;
}

.lead-frame-caption {
    margin: 10px 2px 0;
    color: var(--lead-faint);
    font-size: 0.8rem;
    text-align: center;
}

/* ヒーロー動画（main.js の読み込み表示と連動） */

.lead-hero .demo-container {
    position: relative;
}

.lead-hero .hero-video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lead-soft-2);
    color: var(--lead-faint);
    font-size: 0.85rem;
    z-index: 1;
    transition: opacity 0.4s;
}

.lead-hero .hero-video-placeholder.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   資料の表紙（実在の画面キャプチャ＋ブランドカラーで構成）
   -------------------------------------------------------------------------- */

.resource-cover {
    display: flex;
    flex-direction: column;
    aspect-ratio: 3 / 4;
    background: var(--lead-grad);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 30, 55, 0.18);
}

.resource-cover-head {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    min-height: 0;
}

.resource-cover-type {
    padding: 4px 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
}

.resource-cover-title {
    margin: auto 0 12px;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 800;
}

.resource-cover-brand {
    display: block;
}

.resource-cover-brand img {
    width: auto;
    height: 16px;
    display: block;
    opacity: 0.9;
}

.resource-cover > img {
    width: 100%;
    height: 34%;
    object-fit: cover;
    object-position: left top;
    border-top: 3px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* ヒーロー用：3冊の表紙を並べる */

.lead-cover-fan {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    padding: 10px 4px;
}

.lead-cover-fan .resource-cover {
    box-shadow: 0 12px 26px rgba(15, 30, 55, 0.16);
}

.lead-cover-fan .resource-cover:nth-child(1) {
    transform: rotate(-3deg) translateY(10px);
}

.lead-cover-fan .resource-cover:nth-child(3) {
    transform: rotate(3deg) translateY(10px);
}

.lead-cover-fan .resource-cover-title {
    font-size: 0.78rem;
    line-height: 1.5;
}

.lead-cover-fan .resource-cover-head {
    padding: 14px;
}

.lead-cover-fan .resource-cover-type {
    font-size: 0.6rem;
}

/* --------------------------------------------------------------------------
   企業ロゴ・実績・受賞
   -------------------------------------------------------------------------- */

.lead-logos {
    padding: 34px 0 38px;
    background: #fff;
    border-bottom: 1px solid var(--lead-line);
}

.lead-logos-title {
    margin: 0 0 22px;
    color: var(--lead-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.lead-logos-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px 44px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lead-logos-list img {
    width: auto;
    max-height: 30px;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.lead-logos-list img:hover {
    opacity: 1;
}

.lead-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.lead-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    background: var(--lead-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--lead-navy);
}

.lead-stat-label {
    display: block;
    margin-top: 6px;
    color: var(--lead-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.lead-stat-note {
    max-width: 860px;
    margin: 26px auto 0;
    color: var(--lead-faint);
    font-size: 0.75rem;
    line-height: 1.7;
}

.lead-award-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: fit-content;
    margin: 34px auto 0;
    padding: 16px 26px;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    text-decoration: none;
}

.lead-award-card img {
    width: auto;
    height: 56px;
    display: block;
    flex-shrink: 0;
}

.lead-award-card span {
    color: var(--lead-muted);
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: left;
}

.lead-award-card strong {
    color: var(--lead-ink);
}

/* --------------------------------------------------------------------------
   セクション共通
   -------------------------------------------------------------------------- */

.lead-section {
    padding: 84px 0;
}

.lead-section-soft {
    background: var(--lead-soft);
}

.lead-section-heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.lead-section-heading h2,
.lead-copy h2,
.lead-form-heading h2 {
    margin: 0;
    color: var(--lead-ink);
    font-size: 2.3rem;
    line-height: 1.4;
    font-weight: 800;
}

.lead-section-heading p,
.lead-copy > p,
.lead-form-heading p {
    color: var(--lead-muted);
    line-height: 1.85;
}

.lead-section-heading p {
    margin: 16px 0 0;
}

.lead-section-note {
    margin: 26px auto 0;
    max-width: 900px;
    color: var(--lead-faint);
    font-size: 0.75rem;
    line-height: 1.7;
    text-align: center;
}

.lead-section-cta {
    margin-top: 40px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   資料一覧（横型カード：表紙＋対象・課題・内容）
   -------------------------------------------------------------------------- */

.resource-list {
    display: grid;
    gap: 28px;
    max-width: 1040px;
    margin: 0 auto;
}

.resource-option {
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);
    gap: 0;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.resource-option.is-selected {
    border-color: var(--lead-blue);
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.18), 0 4px 14px rgba(15, 23, 42, 0.05);
}

.resource-option-cover {
    padding: 24px 0 24px 24px;
}

.resource-option-cover .resource-cover {
    max-width: 240px;
}

.resource-option-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 28px;
    min-width: 0;
}

.resource-type {
    margin: 0 0 10px;
    padding: 4px 12px;
    color: var(--lead-navy-2);
    background: #ebf4ff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.resource-option h3 {
    margin: 0;
    color: var(--lead-ink);
    font-size: 1.22rem;
    line-height: 1.55;
    font-weight: 800;
}

.resource-option-lead {
    margin: 10px 0 0;
    color: var(--lead-muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.resource-meta {
    display: grid;
    gap: 8px;
    width: 100%;
    margin: 16px 0 0;
    padding: 14px 16px;
    background: var(--lead-soft);
    border-radius: 10px;
}

.resource-meta > div {
    display: flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
}

.resource-meta dt {
    flex-shrink: 0;
    color: var(--lead-navy-2);
    font-size: 0.78rem;
    font-weight: 700;
}

.resource-meta dd {
    margin: 0;
    color: var(--lead-muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.resource-points {
    display: grid;
    gap: 6px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.resource-points li {
    position: relative;
    padding-left: 22px;
    color: var(--lead-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.resource-points li::before {
    content: "✓";
    position: absolute;
    left: 2px;
    color: var(--lead-blue);
    font-weight: 700;
}

.resource-option .btn {
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   機能・画面カード（トライアルの検証項目、相談で使う画面など）
   -------------------------------------------------------------------------- */

.lead-shots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.lead-shot-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.lead-shot-card figure {
    margin: 0;
    border-bottom: 1px solid var(--lead-line);
    background: var(--lead-soft-2);
}

.lead-shot-card figure img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: left top;
}

.lead-shot-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 22px 24px;
}

.lead-shot-body h3 {
    margin: 0;
    color: var(--lead-ink);
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 800;
}

.lead-shot-body p {
    margin: 8px 0 0;
    color: var(--lead-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   相談テーマ（consultation）
   -------------------------------------------------------------------------- */

.lead-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.lead-topic {
    padding: 26px 28px;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.lead-topic-tag {
    display: inline-block;
    margin: 0 0 12px;
    padding: 4px 12px;
    color: var(--lead-navy-2);
    background: #ebf4ff;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.lead-topic h3 {
    margin: 0;
    color: var(--lead-ink);
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 800;
}

.lead-topic p {
    margin: 8px 0 0;
    color: var(--lead-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   ステップ
   -------------------------------------------------------------------------- */

.lead-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    counter-reset: steps;
}

.lead-step {
    position: relative;
    padding: 26px 26px 28px;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    counter-increment: steps;
}

.lead-step::before {
    content: counter(steps);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: #fff;
    background: var(--lead-grad);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.lead-step h3 {
    margin: 0 0 8px;
    color: var(--lead-ink);
    font-size: 1.1rem;
    font-weight: 800;
}

.lead-step p {
    margin: 0;
    color: var(--lead-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.lead-step-sub {
    display: block;
    margin-top: 10px;
    color: var(--lead-navy-2);
    font-size: 0.8rem;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   導入事例カード
   -------------------------------------------------------------------------- */

.lead-cases {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.lead-case-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px 28px;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.lead-case-metric {
    margin-bottom: 14px;
}

.lead-case-metric-label {
    display: block;
    color: var(--lead-navy-2);
    font-size: 0.78rem;
    font-weight: 700;
}

.lead-case-metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    background: var(--lead-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--lead-navy);
}

.lead-case-company {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--lead-soft);
    border-radius: 10px;
}

.lead-case-company img {
    width: auto;
    max-height: 22px;
    flex-shrink: 0;
}

.lead-case-company strong {
    display: block;
    color: var(--lead-ink);
    font-size: 0.9rem;
    line-height: 1.4;
}

.lead-case-company small {
    display: block;
    color: var(--lead-faint);
    font-size: 0.72rem;
    line-height: 1.4;
}

.lead-case-card blockquote {
    flex: 1;
    margin: 16px 0 18px;
    padding-left: 14px;
    border-left: 3px solid var(--lead-line);
    color: var(--lead-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.lead-case-link {
    color: var(--lead-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.lead-case-link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   2カラム（コピー＋フォーム）
   -------------------------------------------------------------------------- */

.lead-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 60px;
    align-items: start;
}

.lead-copy {
    padding-top: 10px;
}

.lead-feature-list {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--lead-line);
}

.lead-feature-list li {
    position: relative;
    padding: 16px 0 16px 32px;
    border-bottom: 1px solid var(--lead-line);
    color: var(--lead-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.lead-feature-list li::before {
    content: "✓";
    position: absolute;
    top: 16px;
    left: 2px;
    color: var(--lead-blue);
    font-weight: 800;
}

.lead-feature-list strong {
    display: block;
    color: var(--lead-ink);
}

.lead-copy .lead-frame {
    margin-top: 30px;
    box-shadow: 0 10px 26px rgba(15, 30, 55, 0.1);
}

.lead-form-panel {
    padding: 34px;
    background: #fff;
    border: 1px solid #cfd9e5;
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(18, 41, 68, 0.08);
}

.lead-form-heading {
    margin-bottom: 26px;
}

.lead-form-heading p {
    margin: 10px 0 0;
    font-size: 0.92rem;
}

.lead-form-panel .contact-form {
    gap: 18px;
}

.lead-form-panel .form-label {
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-form-panel .form-input,
.lead-form-panel .form-select,
.lead-form-panel .form-textarea {
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
}

.lead-form-panel .form-textarea {
    min-height: 108px;
}

.lead-form-panel .form-submit .btn {
    width: 100%;
}

.lead-form-note {
    margin: 14px 0 0;
    color: var(--lead-muted);
    font-size: 0.78rem;
    line-height: 1.6;
    text-align: center;
}

.lead-form-note a {
    color: var(--lead-blue);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.lead-faq {
    max-width: 900px;
    margin: 0 auto;
}

.lead-faq details {
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid var(--lead-line);
    border-radius: 12px;
    overflow: hidden;
}

.lead-faq summary {
    position: relative;
    padding: 20px 48px 20px 24px;
    color: var(--lead-ink);
    font-size: 1.02rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.lead-faq summary::-webkit-details-marker {
    display: none;
}

.lead-faq summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lead-blue);
    font-size: 1.4rem;
    font-weight: 400;
}

.lead-faq details[open] summary::after {
    content: "−";
}

.lead-faq details p {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--lead-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.lead-faq details p a {
    color: var(--lead-blue);
}

/* --------------------------------------------------------------------------
   フッター・モバイル固定CTA
   -------------------------------------------------------------------------- */

.lead-page .footer {
    margin-bottom: 0;
}

.lead-mobile-cta {
    display: none;
}

.lead-mobile-cta.is-hidden {
    display: none !important;
}

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .lead-hero .container {
        gap: 36px;
    }

    .lead-hero h1 {
        font-size: 2.4rem;
    }

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

@media (max-width: 900px) {
    .lead-hero .container {
        grid-template-columns: 1fr;
    }

    .lead-hero-visual {
        width: min(640px, 100%);
        margin: 0 auto;
    }

    .lead-steps,
    .lead-topics,
    .lead-cases {
        grid-template-columns: 1fr;
    }

    .lead-two-column {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .lead-form-panel {
        width: min(680px, 100%);
        margin: 0 auto;
    }

    .resource-option {
        grid-template-columns: 1fr;
    }

    .resource-option-cover {
        display: flex;
        justify-content: center;
        padding: 24px 24px 0;
        background: var(--lead-soft);
    }

    .resource-option-cover .resource-cover {
        width: min(230px, 70%);
        margin-bottom: -34px;
    }

    .resource-option-body {
        padding-top: 54px;
    }
}

@media (max-width: 768px) {
    .lead-page {
        padding-bottom: 74px;
    }

    .lead-page .header {
        padding: 10px 0;
    }

    .lead-page .nav {
        top: 64px;
    }

    .lead-hero {
        padding: 108px 0 44px;
    }

    .lead-hero h1 {
        font-size: 2.05rem;
    }

    .lead-hero-copy {
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .lead-hero-actions {
        flex-direction: column;
    }

    .lead-hero-actions .btn {
        width: 100%;
    }

    .lead-proof-line {
        gap: 8px 18px;
        font-size: 0.85rem;
    }

    .lead-section {
        padding: 60px 0;
    }

    .lead-section-heading {
        margin-bottom: 32px;
    }

    .lead-logos {
        padding: 26px 0 30px;
    }

    .lead-logos-list {
        gap: 16px 28px;
    }

    .lead-logos-list img {
        max-height: 24px;
    }

    .lead-stats {
        gap: 12px;
    }

    .lead-stat-number {
        font-size: 2.1rem;
    }

    .lead-stat-label {
        font-size: 0.78rem;
    }

    .lead-award-card {
        flex-direction: row;
        padding: 14px 18px;
        gap: 12px;
    }

    .lead-award-card img {
        height: 44px;
    }

    .lead-shots {
        grid-template-columns: 1fr;
    }

    .lead-shot-card figure img {
        height: 170px;
    }

    .lead-form-panel {
        padding: 24px 18px;
    }

    .lead-form-panel .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .lead-mobile-cta {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid var(--lead-line);
    }

    .lead-mobile-cta .btn {
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 420px) {
    .lead-page .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .lead-hero h1 {
        font-size: 1.78rem;
    }

    .lead-section-heading h2,
    .lead-copy h2,
    .lead-form-heading h2 {
        font-size: 1.62rem;
    }

    .lead-cover-fan {
        gap: 12px;
    }

    .lead-hero-award img {
        height: 44px;
    }

    .resource-option-body {
        padding-right: 20px;
        padding-left: 20px;
    }

    .lead-case-metric-value {
        font-size: 1.7rem;
    }
}

@media (max-width: 374px) {
    .lead-form-panel .g-recaptcha {
        width: 244px;
        height: 63px;
        transform: scale(0.8);
        transform-origin: left top;
    }
}

@media (max-width: 360px) {
    .lead-hero h1 {
        font-size: 1.56rem;
    }

    .lead-hero-actions .btn {
        padding-right: 14px !important;
        padding-left: 14px !important;
        font-size: 0.96rem !important;
    }

    .lead-stat-number {
        font-size: 1.7rem;
    }
}
