/* ==========================================================================
   pullcass サービス紹介資料（A4 横 / 印刷用）

   - 用紙: A4 横（297mm × 210mm）
   - 配色・フォントは www/assets/css/lp.css のトンマナに準拠
   - 最背面は白（インクコスト削減）。紫はアクセントとして必要最小限に使う
   - フォントは Mac 標準（ヒラギノ）のみ。オフラインでも崩れない
   - 家庭用プリンタの物理余白を考慮し、内容は端から 12mm 内側に配置

   仕様の詳細は同フォルダの README.md を参照。
   ========================================================================== */

:root {
    /* ブランド紫（lp.css と統一） */
    --pc-primary: #7c3aed;
    --pc-primary-dark: #5b21b6;
    --pc-primary-light: #a78bfa;
    --pc-accent: #de54f8;

    /* 背景 */
    --pc-bg: #ffffff;
    --pc-bg-alt: #f5f5f7;

    /* テキスト */
    --pc-text: #1d1d1f;
    --pc-text-sub: #6e6e73;
    --pc-text-inv: #ffffff;

    /* 罫線 */
    --pc-border: rgba(0, 0, 0, 0.10);
    --pc-border-strong: rgba(0, 0, 0, 0.16);

    --pc-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
        -apple-system, BlinkMacSystemFont, sans-serif;

    /* 印刷時の安全余白（プリンタが刷れない外周を避ける） */
    --safe: 12mm;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--pc-font);
    background: var(--pc-bg);
    color: var(--pc-text);
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

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

/* ============================ ページ枠 ============================ */

@page {
    size: A4 landscape;
    margin: 0;
}

.page {
    position: relative;
    width: 297mm;
    height: 210mm;
    overflow: hidden;
    background: var(--pc-bg);
    break-after: page;
    page-break-after: always;
    /* 紫のアクセントを印刷でも保持する */
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
}

.page:last-of-type {
    break-after: auto;
    page-break-after: auto;
}

/* 内容を配置する安全領域 */
.page__safe {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: var(--safe);
    display: flex;
    flex-direction: column;
}

/* 画面プレビュー時のみ、用紙らしく見せる */
@media screen {
    body {
        background: #e6e6ec;
        padding: 24px 0;
    }

    .page {
        margin: 0 auto 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
    }
}

@media print {
    body {
        background: none;
        padding: 0;
    }

    .page {
        margin: 0;
        box-shadow: none;
    }
}

/* ============================ 共通ロゴ ============================ */

.brand {
    display: flex;
    align-items: center;
    gap: 3.4mm;
}

.brand__icon {
    width: 11mm;
    height: 11mm;
    border-radius: 2.6mm;
    object-fit: cover;
    flex-shrink: 0;
}

.brand__wordmark {
    width: 45mm;
}

/* ============================ 表紙 ============================ */

/* 右上と左下に、ごく淡い紫のにじみだけ置く（ベタ塗りにしないのでインク消費は小さい） */
.cover::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -55mm;
    right: -45mm;
    width: 165mm;
    height: 165mm;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, rgba(124, 58, 237, 0) 70%);
}

/* --- ヘッダー（ロゴ＋サービス説明） --- */

.cover__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12mm;
    padding-bottom: 5mm;
    border-bottom: 0.3mm solid var(--pc-border);
}

.cover__tagline {
    font-size: 9.5pt;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--pc-text-sub);
    white-space: nowrap;
}

/* --- 本体（左：コピー / 右：図） --- */

.cover__body {
    flex: 1;
    display: grid;
    grid-template-columns: 1.18fr 1fr;
    gap: 14mm;
    align-items: center;
    padding: 6mm 0 4mm;
}

.cover__badge {
    display: inline-flex;
    align-items: center;
    gap: 2.4mm;
    padding: 2.2mm 5mm;
    border: 0.35mm solid rgba(124, 58, 237, 0.30);
    border-radius: 980px;
    background: rgba(124, 58, 237, 0.07);
    font-size: 9pt;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--pc-primary-dark);
}

.cover__badge-dot {
    width: 2mm;
    height: 2mm;
    border-radius: 50%;
    background: var(--pc-accent);
}

.cover__title {
    margin-top: 6mm;
    font-size: 35pt;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: 0.005em;
    color: var(--pc-text);
}

.cover__title .grad {
    /* グラデーションが出ない環境でも読めるよう、先に単色を指定 */
    color: var(--pc-primary);
    background: linear-gradient(100deg, #7c3aed 0%, #de54f8 92%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cover__lead {
    margin-top: 7mm;
    max-width: 148mm;
    font-size: 11pt;
    line-height: 1.85;
    color: var(--pc-text-sub);
}

.cover__points {
    display: flex;
    flex-wrap: wrap;
    gap: 3mm;
    margin-top: 9mm;
    list-style: none;
}

.cover__points li {
    padding: 2.6mm 5mm;
    border: 0.3mm solid var(--pc-border-strong);
    border-radius: 980px;
    background: var(--pc-bg-alt);
    font-size: 9.5pt;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--pc-text);
}

/* --- 右側の図：ポータル → 自店サイトの自動取得フロー --- */

.flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4mm;
}

.flow__label {
    font-size: 8.5pt;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #9a9aa0;
}

.flow__sources {
    display: flex;
    flex-direction: column;
    gap: 2.6mm;
    width: 100%;
}

.flow__source {
    display: flex;
    align-items: center;
    gap: 4mm;
    padding: 4mm 6mm;
    border: 0.3mm solid var(--pc-border);
    border-radius: 4mm;
    background: var(--pc-bg-alt);
}

.flow__source-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 9mm;
    height: 9mm;
    border-radius: 2.6mm;
    background: #fff;
    border: 0.3mm solid var(--pc-border-strong);
    font-size: 10pt;
    font-weight: 700;
    color: var(--pc-text-sub);
}

.flow__source-name {
    font-size: 11pt;
    font-weight: 700;
    color: var(--pc-text);
}

.flow__source-meta {
    margin-left: auto;
    font-size: 8.5pt;
    font-weight: 600;
    color: var(--pc-text-sub);
    white-space: nowrap;
}

.flow__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4mm;
}

.flow__scrape-icon {
    position: relative;
    width: 14mm;
    height: 14mm;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #de54f8 100%);
    color: #fff;
    box-shadow: 0 2mm 5mm rgba(124, 58, 237, 0.28);
}

.flow__scrape-icon::before {
    content: "";
    position: absolute;
    inset: -1.6mm;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, #7c3aed 62%, transparent 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 0.8mm), #000 calc(100% - 0.6mm));
    mask: radial-gradient(farthest-side, transparent calc(100% - 0.8mm), #000 calc(100% - 0.6mm));
}

.flow__scrape-wand {
    position: relative;
    z-index: 1;
    display: block;
    width: 6.8mm;
    height: 6.8mm;
}

.flow__arrow-line {
    display: none;
}

.flow__arrow-text {
    font-size: 8.5pt;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--pc-primary-dark);
}

/* ここだけ紫のベタ塗り。資料の結論なので、あえて視線を集める */
.flow__result {
    width: 100%;
    padding: 7mm 6mm;
    border-radius: 5mm;
    /* 印刷レンダラーは大きなぼかし影を四角く描いてしまうため、影は使わない */
    background: linear-gradient(135deg, #7c3aed 0%, #de54f8 100%);
    text-align: center;
}

.flow__result-title {
    font-size: 14pt;
    font-weight: 700;
    color: var(--pc-text-inv);
    letter-spacing: 0.01em;
}

.flow__result-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2mm 3mm;
    margin-top: 4mm;
    list-style: none;
}

.flow__result-items li {
    padding: 1.6mm 3.6mm;
    border-radius: 980px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 8.5pt;
    font-weight: 700;
    color: var(--pc-text-inv);
}

.flow__note {
    margin-top: 1mm;
    font-size: 8.5pt;
    font-weight: 600;
    color: var(--pc-text-sub);
}

/* --- フッター（代理店名の差し替え欄＋URL） --- */

.cover__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10mm;
    padding-top: 5mm;
    border-top: 0.3mm solid var(--pc-border);
}

.cover__agency-label {
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #9a9aa0;
}

.cover__agency-name {
    margin-top: 1.5mm;
    font-size: 12.5pt;
    font-weight: 700;
    color: var(--pc-text);
}

.cover__agency-contact {
    margin-top: 1mm;
    font-size: 9.5pt;
    font-weight: 600;
    color: var(--pc-text-sub);
}

.cover__site {
    text-align: right;
}

.cover__site-url {
    font-size: 13pt;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--pc-primary);
}

.cover__site-note {
    margin-top: 1mm;
    font-size: 8.5pt;
    font-weight: 600;
    color: var(--pc-text-sub);
}

/* ==========================================================================
   2ページ目以降（共通パーツ）
   ========================================================================== */

/* --- ページ見出し --- */

.head {
    padding-bottom: 4mm;
    border-bottom: 0.3mm solid var(--pc-border);
}

.head__eyebrow {
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--pc-primary);
    text-transform: uppercase;
}

.head__title {
    margin-top: 1.5mm;
    font-size: 20pt;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pc-text);
}

.head__sub {
    margin-top: 2mm;
    font-size: 9.5pt;
    line-height: 1.7;
    color: var(--pc-text-sub);
}

/* --- ページ本文（見出しとフッターの間を埋める） --- */

/* 見出しとフッターの残り高さをそのまま使う。
   中の画像は flex で伸縮させ、用紙からはみ出さないようにする。 */
.body {
    flex: 1;
    min-height: 0;
    padding: 6mm 0 4mm;
    display: flex;
    flex-direction: column;
}

/* --- ページフッター --- */

.foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8mm;
    padding-top: 3mm;
    border-top: 0.3mm solid var(--pc-border);
    font-size: 7.5pt;
    font-weight: 600;
    color: #9a9aa0;
}

.foot__brand {
    display: flex;
    align-items: center;
    gap: 2.4mm;
}

.foot__icon {
    width: 5mm;
    height: 5mm;
    border-radius: 1.2mm;
    object-fit: cover;
}

/* --- 3本柱（選ばれる理由） --- */

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6mm;
}

.pillar {
    padding: 8mm 7mm;
    border: 0.3mm solid var(--pc-border);
    border-radius: 5mm;
    background: var(--pc-bg-alt);
}

.pillar__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9mm;
    height: 9mm;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #de54f8 100%);
    font-size: 10pt;
    font-weight: 700;
    color: var(--pc-text-inv);
}

.pillar__title {
    margin-top: 5mm;
    font-size: 13pt;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pc-text);
}

.pillar__desc {
    margin-top: 3mm;
    font-size: 9pt;
    line-height: 1.8;
    color: var(--pc-text-sub);
}

.pillar-shots {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6mm;
    margin-top: 5mm;
    align-items: end;
}

.pillar-shots__item {
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pillar-shots__item img {
    max-width: 100%;
    max-height: 58mm;
    width: auto;
    height: auto;
    border-radius: 3mm;
    border: 0.3mm solid var(--pc-border);
}

/* --- 機能（1ページに2つ並べる） --- */

.feats {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10mm;
}

.feats--single {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.feat {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.feat__title {
    font-size: 14pt;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pc-text);
}

.feat__title .mark {
    color: var(--pc-primary);
}

.feat__desc {
    margin-top: 3mm;
    font-size: 9pt;
    line-height: 1.75;
    color: var(--pc-text-sub);
}

.feat__note {
    margin-top: 3mm;
    font-size: 7pt;
    line-height: 1.55;
    color: var(--pc-text-sub);
}

.feat__list {
    margin-top: 4mm;
    list-style: none;
}

.feat__list li {
    position: relative;
    padding-left: 6mm;
    margin-top: 1.8mm;
    font-size: 9pt;
    font-weight: 600;
    line-height: 1.55;
    color: var(--pc-text);
}

.feat__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 9pt;
    font-weight: 700;
    color: var(--pc-primary);
}

/* 管理画面デモのキャプチャ。LP の実表示をそのまま使う。
   残り高さいっぱいに収める（固定 mm にすると文章量ではみ出す） */
.feat__shot {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5mm;
}

.feat__shot img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* --- できること（全機能一覧） --- */

/* column-count だと収まらない分が横に溢れて用紙外へ出るため、
   カテゴリ数に合わせた grid で確実に 3列 × 3段（9カテゴリ）に収める */
.allfeat {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 4mm 6mm;
    align-content: stretch;
}

.cat {
    break-inside: avoid;
    page-break-inside: avoid;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.cat__title {
    flex-shrink: 0;
    padding-bottom: 1.5mm;
    border-bottom: 0.3mm solid var(--pc-primary-light);
    font-size: 10pt;
    font-weight: 700;
    color: var(--pc-primary-dark);
}

.cat__list {
    flex: 1;
    min-height: 0;
    margin-top: 2mm;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2mm;
    align-content: start;
}

.cat__list li {
    position: relative;
    padding-left: 4mm;
    margin-top: 0.5mm;
    font-size: 8.5pt;
    font-weight: 600;
    line-height: 1.35;
    color: var(--pc-text);
}

.cat__list li::before {
    content: "";
    position: absolute;
    left: 0.6mm;
    top: 1.8mm;
    width: 1.5mm;
    height: 1.5mm;
    border-radius: 50%;
    background: var(--pc-primary-light);
}

/* --- 料金プラン --- */

.split {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 11mm;
}

.plan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8mm 7mm;
    border: 0.4mm solid rgba(124, 58, 237, 0.22);
    border-radius: 5mm;
    background: rgba(124, 58, 237, 0.045);
}

.plan__label {
    font-size: 9.5pt;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--pc-primary-dark);
}

.plan__price {
    margin-top: 3mm;
    padding-bottom: 4mm;
    border-bottom: 0.3mm solid var(--pc-border);
    font-size: 19pt;
    font-weight: 700;
    color: var(--pc-primary);
}

.plan__note {
    margin-top: 4mm;
    font-size: 8.5pt;
    line-height: 1.7;
    color: var(--pc-text-sub);
}

.plan__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6mm 4mm;
    margin-top: 5mm;
    list-style: none;
}

.plan__list li {
    position: relative;
    padding-left: 5mm;
    font-size: 8.5pt;
    font-weight: 600;
    color: var(--pc-text);
}

.plan__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--pc-primary);
}

/* --- 導入の流れ --- */

.steps {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.step-connector {
    display: flex;
    justify-content: center;
    height: 5mm;
    margin-left: 4.25mm;
    color: var(--pc-primary);
    font-size: 11pt;
    font-weight: 700;
    line-height: 1;
}

.step-connector span {
    display: block;
    transform: translateY(-0.5mm);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 5mm;
    padding: 5mm 6mm;
    border: 0.3mm solid var(--pc-border);
    border-radius: 4mm;
    background: var(--pc-bg-alt);
}

.step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 8.5mm;
    height: 8.5mm;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #de54f8 100%);
    font-size: 9.5pt;
    font-weight: 700;
    color: var(--pc-text-inv);
}

.step__title {
    font-size: 11pt;
    font-weight: 700;
    line-height: 1.4;
    color: var(--pc-text);
}

.step__desc {
    margin-top: 1.2mm;
    font-size: 8.5pt;
    line-height: 1.65;
    color: var(--pc-text-sub);
}

/* --- お試しデモ --- */

.demo {
    padding: 8mm 8mm;
    border-radius: 5mm;
    background: linear-gradient(135deg, #7c3aed 0%, #de54f8 100%);
    color: var(--pc-text-inv);
}

.demo__eyebrow {
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.78);
}

.demo__title {
    margin-top: 2mm;
    font-size: 16pt;
    font-weight: 700;
    line-height: 1.35;
}

.demo__lead {
    margin-top: 3mm;
    font-size: 9.5pt;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.demo__url {
    display: inline-block;
    margin-top: 5mm;
    padding: 2.6mm 6mm;
    border-radius: 980px;
    background: #fff;
    font-size: 10.5pt;
    font-weight: 700;
    color: var(--pc-primary-dark);
}

.demo__note {
    margin-top: 3mm;
    font-size: 8.5pt;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* --- お試しデモ（QR案内・独立ページ） --- */

.demo-sheet {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10mm;
    align-items: center;
}

.demo-sheet__panel {
    padding: 9mm 8mm;
    border: 0.3mm solid var(--pc-border);
    border-radius: 5mm;
    background: var(--pc-bg-alt);
}

.demo-sheet__lead {
    font-size: 10pt;
    line-height: 1.75;
    color: var(--pc-text-sub);
}

.demo-sheet__steps {
    margin-top: 5mm;
    padding-left: 5mm;
    font-size: 9.5pt;
    font-weight: 600;
    line-height: 1.65;
    color: var(--pc-text);
}

.demo-sheet__steps li {
    margin-top: 1.8mm;
}

.demo-sheet__url {
    margin-top: 6mm;
    font-size: 13pt;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--pc-primary);
}

.demo-sheet__note {
    margin-top: 3mm;
    font-size: 8.5pt;
    line-height: 1.6;
    color: var(--pc-text-sub);
}

.demo-sheet__qr {
    padding: 8mm 6mm;
    border: 0.35mm solid rgba(124, 58, 237, 0.22);
    border-radius: 5mm;
    background: #fff;
    text-align: center;
}

.demo-sheet__qr img {
    width: 52mm;
    height: 52mm;
    margin: 0 auto;
    object-fit: contain;
}

.demo-sheet__qr-label {
    margin-top: 4mm;
    font-size: 9pt;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--pc-primary-dark);
}

.demo-sheet__qr-url {
    margin-top: 2mm;
    font-size: 11pt;
    font-weight: 700;
    color: var(--pc-primary);
}

/* --- よくある質問 --- */

.page--faq::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: var(--safe);
    right: var(--safe);
    height: 1.2mm;
    border-radius: 0 0 2mm 2mm;
    background: linear-gradient(90deg, #7c3aed 0%, #de54f8 100%);
}

.page--faq .head {
    padding-top: 2mm;
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5mm 7mm;
    align-content: start;
}

.faq__item {
    position: relative;
    padding: 6mm 7mm 6mm 14mm;
    border: 0.3mm solid rgba(124, 58, 237, 0.16);
    border-radius: 4mm;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.045) 0%, #ffffff 58%);
    box-shadow: 0 1.2mm 4mm rgba(124, 58, 237, 0.06);
}

.faq__num {
    position: absolute;
    top: 5mm;
    left: 5mm;
    font-size: 11pt;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--pc-primary);
}

.faq__q {
    position: relative;
    padding-left: 0;
    font-size: 10.5pt;
    font-weight: 700;
    line-height: 1.5;
    color: var(--pc-text);
}

.faq__q::before {
    content: none;
}

.faq__a {
    position: relative;
    padding-left: 7mm;
    margin-top: 2.8mm;
    font-size: 9.5pt;
    line-height: 1.75;
    color: var(--pc-text-sub);
}

.faq__a::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 10.5pt;
    font-weight: 700;
    color: #9a9aa0;
}

/* --- 最終CTA --- */

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10mm;
    border-radius: 6mm;
    background: var(--pc-bg-alt);
    text-align: center;
}

.cta__title {
    font-size: 22pt;
    font-weight: 700;
    line-height: 1.35;
    color: var(--pc-text);
}

.cta__lead {
    margin-top: 4mm;
    font-size: 10.5pt;
    line-height: 1.75;
    color: var(--pc-text-sub);
}

.cta__contact {
    margin-top: 8mm;
    padding: 7mm 12mm;
    border-radius: 5mm;
    background: #fff;
    border: 0.3mm solid var(--pc-border);
}

.cta__contact-label {
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #9a9aa0;
}

.cta__contact-name {
    margin-top: 2mm;
    font-size: 15pt;
    font-weight: 700;
    color: var(--pc-text);
}

.cta__contact-detail {
    margin-top: 1.5mm;
    font-size: 10pt;
    font-weight: 600;
    color: var(--pc-text-sub);
}

.cta__site {
    margin-top: 6mm;
    font-size: 11pt;
    font-weight: 700;
    color: var(--pc-primary);
}
