:root {
  /* ロゴ由来のブランド色（紺×マゼンタ）を軸に、量産型AIの発光配色から離れる */
  --navy: #1C287D;
  --navy-deep: #10163F;
  --navy-mid: #EFEEF8;
  --magenta: #9A308D;
  --magenta-bright: #B23AA3;
  --cyan: #00838F;
  --paper: #F7F4EC;
  --paper-line: rgba(28, 40, 125, 0.14);
  --ink: #1C2030;
  --ink-soft: #5C5F70;
  --max-width: 1080px;
  --font-display: "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", "Times New Roman", serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Hiragino Sans", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  background-image:
    linear-gradient(var(--paper-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--paper-line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  line-height: 1.75;
}

a { color: var(--navy); }
a:hover { color: var(--magenta-bright); }
img { max-width: 100%; display: block; }
p, li, h1, h2, h3, h4 { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.01em; }

.site-header, .hero, section, footer { position: relative; z-index: 1; }

/* 回路トレース背景（印刷配線図の見立て）。控えめなインク色+ブランド色のパルスのみ */
#bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 40, 125, 0.18);
}

.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-header .logo img { height: 26px; }

.site-nav { display: flex; gap: 30px; }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.site-nav a:hover { color: var(--cyan); }

.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 3px;
  background: var(--navy);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--navy);
}
.nav-cta:hover { background: var(--magenta); border-color: var(--magenta); }

/* Hero */
.hero {
  position: relative;
  padding: 108px 0 116px;
  overflow: hidden;
  background: var(--navy-deep);
}

/* 印刷仕様書のトンボ（見当合わせマーク）— DTP事業と地続きの構造装飾 */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.22);
  z-index: 0;
  pointer-events: none;
}
.hero::before { top: 28px; left: 28px; border-right: none; border-bottom: none; }
.hero::after { bottom: 28px; right: 28px; border-left: none; border-top: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px;
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.78);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  margin-bottom: 26px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #B23AA3;
}

.ai-glow {
  color: #B96BB0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
}

#hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* ∞（無限大）の一筆書きサイン。ロゴの∞と社名「FOREVER」から直接引いた署名的モーション。 */
.hero-infinity {
  position: absolute;
  top: 8px; left: 50%;
  width: 300px;
  max-width: 70vw;
  transform: translateX(-50%);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.hero-infinity path {
  fill: none;
  stroke: url(#infinityStroke);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 540;
  stroke-dashoffset: 540;
  animation: infinityDraw 2.6s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}
@keyframes infinityDraw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-infinity path { animation: none; stroke-dashoffset: 0; }
}

.hero .wrap { text-align: center; position: relative; z-index: 1; }

.hero-chat {
  max-width: 300px;
  margin: 44px auto 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 16px 18px 18px;
  text-align: left;
  box-shadow: 0 20px 50px rgba(10,14,50,0.3);
}
.hero-chat-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.85);
  margin: 0 0 14px; letter-spacing: 0.02em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.hero-chat-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3DDC84; box-shadow: 0 0 6px #3DDC84;
  display: inline-block; flex-shrink: 0;
}
.hero-chat-bubble {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 10px;
  opacity: 0;
  transform: translateY(6px);
  animation: chatIn 0.4s ease forwards;
}
.hero-chat-bubble:last-child { margin-bottom: 0; }
.hero-chat .bubble-user {
  background: rgba(255,255,255,0.16);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
  animation-delay: 0.2s;
}
.hero-chat .bubble-ai {
  background: var(--magenta-bright);
  color: #fff;
  border-bottom-left-radius: 4px;
  min-height: 18px;
  display: flex; align-items: center;
  animation-delay: 0.5s;
}
@keyframes chatIn { to { opacity: 1; transform: none; } }

.hero-chat .typing { display: inline-flex; gap: 4px; }
.hero-chat .typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  animation: typingBounce 1.1s infinite ease-in-out;
}
.hero-chat .typing span:nth-child(2) { animation-delay: 0.15s; }
.hero-chat .typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.hero-chat .bubble-ai .answer { display: none; }
.hero-chat .bubble-ai.is-answered .typing { display: none; }
.hero-chat .bubble-ai.is-answered .answer { display: inline; }

@media (prefers-reduced-motion: reduce) {
  .hero-chat-bubble { opacity: 1; transform: none; animation: none; }
  .hero-chat .typing span { animation: none; }
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.6;
  margin: 0 0 22px;
  font-weight: 600;
  color: #fff;
}

.hero p.sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.72);
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--magenta-bright);
  border-color: var(--magenta-bright);
  color: #fff !important;
}

.btn-primary {
  color: #fff !important;
  background: var(--magenta-bright);
  border-color: var(--magenta-bright);
}
.btn-primary:hover { background: #fff; border-color: #fff; color: var(--navy) !important; }

.btn-outline {
  color: #fff !important;
}

.btn-sm { padding: 10px 24px; font-size: 0.86rem; }

.btn-outline-navy {
  color: var(--cl-teal-ink) !important;
  border-color: rgba(0,131,143,0.45);
  padding: 11px 26px;
  font-size: 0.9rem;
}
.btn-outline-navy:hover { color: #fff !important; }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

/* Sections */
section { padding: 88px 0; }
.section-alt { background: var(--navy-mid); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--magenta);
  font-weight: 700;
  margin: 0 0 10px;
  font-family: var(--font-mono);
}
.section-head h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 0 0 14px; color: var(--navy); }
.section-head p { color: var(--ink-soft); margin: 0; }

/* Pillars / cards */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 780px) {
  .pillars { grid-template-columns: 1fr; }
  .site-nav { display: none; }
}

.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(28, 40, 125, 0.14);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 4px 26px rgba(20,26,46,0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { border-color: var(--magenta); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(20,26,46,0.12); }

/* ホバーで見当合わせマークがふっと現れる（回転する虹色ボーダーの代わり） */
.card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 16px; height: 16px;
  border-top: 1.5px solid var(--magenta);
  border-left: 1.5px solid var(--magenta);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

.card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,131,143,0.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.3rem;
  border: 1px solid rgba(0,131,143,0.3);
  color: var(--cyan);
}
.card .icon svg { width: 22px; height: 22px; }

.card h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--navy); }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.card .card-link { display: inline-block; margin-top: 16px; font-size: 0.88rem; font-weight: 700; text-decoration: none; color: var(--cyan); }

/* Demo section */
.demo-box {
  display: flex; gap: 40px; align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 131, 143, 0.22);
  border-radius: 4px; padding: 40px;
  box-shadow: 0 4px 30px rgba(154,48,141,0.06);
}
.demo-box img.qr { width: 160px; height: 160px; border-radius: 4px; border: 1px solid rgba(0,131,143,0.3); background: #fff; padding: 8px; }
.demo-box .line-id {
  display: inline-block; margin-top: 10px; font-weight: 700;
  color: #fff; background: var(--cyan);
  padding: 4px 12px; border-radius: 999px; font-size: 0.9rem;
}
@media (max-width: 640px) {
  .demo-box { flex-direction: column; text-align: center; padding: 28px 24px; gap: 16px; }
}
@media (max-width: 480px) {
  .cl-guide-step .demo-box { padding: 22px 18px; gap: 14px; }
}

.contact-line-qr { display: flex; align-items: center; gap: 16px; margin-top: 16px; }
.contact-line-qr img.qr { width: 84px; height: 84px; border-radius: 8px; border: 1px solid rgba(0,131,143,0.3); background: #fff; padding: 5px; flex-shrink: 0; }
.contact-line-qr .line-id {
  display: inline-block; font-weight: 700;
  color: #fff; background: var(--cyan);
  padding: 4px 12px; border-radius: 999px; font-size: 0.85rem;
}
.contact-line-qr .card-link { display: block; margin-top: 8px; }

/* Other business — banner style */
.other-biz { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .other-biz { grid-template-columns: 1fr; } }

.biz-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(28,40,125,0.16);
  border-radius: 4px;
  padding: 26px 26px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.biz-banner:hover {
  border-color: var(--magenta);
  transform: translateY(-2px);
}
.biz-banner-icon {
  flex: 0 0 auto;
  width: 50px; height: 50px;
  border-radius: 10px;
  background: rgba(0,131,143,0.08);
  border: 1px solid rgba(0,131,143,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--cyan);
  transition: box-shadow 0.3s, transform 0.3s;
}
.biz-banner-icon svg { width: 26px; height: 26px; }

.h1-icon {
  display: inline-flex;
  vertical-align: -0.15em;
  margin-right: 0.35em;
  color: var(--navy);
}
.h1-icon svg { width: 0.85em; height: 0.85em; }
.biz-banner:hover .biz-banner-icon {
  box-shadow: 0 0 0 4px rgba(154,48,141,0.18);
  transform: scale(1.06);
}
.biz-banner-body { flex: 1 1 auto; min-width: 0; }
.biz-banner-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 6px;
}
.biz-banner-body h3 { margin: 0 0 6px; font-size: 1.02rem; color: var(--navy); }
.biz-banner-body p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
.biz-banner-arrow {
  flex: 0 0 auto;
  font-size: 1.3rem;
  color: var(--cyan);
  transition: transform 0.2s, color 0.2s;
}
.biz-banner:hover .biz-banner-arrow { transform: translateX(4px); color: var(--magenta-bright); }
@media (max-width: 480px) { .biz-banner { flex-wrap: wrap; } }

/* Other Business banners: tint each card toward its destination site's brand palette */
.biz-banner-antique {
  background: linear-gradient(120deg, rgba(11,11,12,0.05), rgba(198,161,91,0.14));
  border-color: rgba(198,161,91,0.4);
}
.biz-banner-antique:hover {
  border-color: rgba(198,161,91,0.75);
  background: linear-gradient(120deg, rgba(11,11,12,0.08), rgba(198,161,91,0.22));
}
.biz-banner-antique .biz-banner-icon { background: rgba(198,161,91,0.16); border-color: rgba(198,161,91,0.5); color: #8A6D2E; }
.biz-banner-antique .biz-banner-tag { color: #8A6D2E; }
.biz-banner-antique .biz-banner-arrow { color: #8A6D2E; }
.biz-banner-antique:hover .biz-banner-arrow { color: #5B4620; }
.biz-banner-antique:hover .biz-banner-icon { box-shadow: 0 0 0 5px rgba(198,161,91,0.25); }

.biz-banner-global {
  background: linear-gradient(120deg, rgba(28,40,125,0.06), rgba(184,150,62,0.12));
  border-color: rgba(28,40,125,0.32);
}
.biz-banner-global:hover {
  border-color: rgba(28,40,125,0.6);
  background: linear-gradient(120deg, rgba(28,40,125,0.1), rgba(184,150,62,0.18));
}
.biz-banner-global .biz-banner-icon { background: rgba(28,40,125,0.1); border-color: rgba(28,40,125,0.4); color: var(--navy); }
.biz-banner-global .biz-banner-tag { color: var(--navy); }
.biz-banner-global .biz-banner-arrow { color: #6B5423; }
.biz-banner-global:hover .biz-banner-arrow { color: #4A3A18; }
.biz-banner-global:hover .biz-banner-icon { box-shadow: 0 0 0 5px rgba(28,40,125,0.18); }

/* Company info table */
.info-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(154, 48, 141, 0.18);
  box-shadow: 0 2px 20px rgba(20,26,46,0.06);
}
.info-table th, .info-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid rgba(154,48,141,0.12); font-size: 0.95rem; }
.info-table th { width: 160px; color: var(--ink-soft); font-weight: 600; background: rgba(0,131,143,0.05); }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table td a { color: var(--cyan); }

/* CTA band */
.cta-band {
  background: var(--navy-deep);
  color: #fff; text-align: center; padding: 72px 0;
}
.cta-band h2 { margin: 0 0 14px; font-size: 1.6rem; color: #fff; }
.cta-band p { margin: 0 0 28px; color: rgba(255,255,255,0.72); }

/* Footer */
.site-footer { background: var(--navy-mid); color: var(--ink-soft); padding: 48px 0 28px; font-size: 0.88rem; border-top: 2px solid var(--magenta); }
.site-footer .foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 28px; }
.site-footer h4 { color: var(--navy); font-size: 0.85rem; margin: 0 0 12px; letter-spacing: 0.06em; font-family: var(--font-mono); text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--magenta-bright); }
.site-footer .other-biz-note { border-top: 1px solid rgba(154,48,141,0.15); padding-top: 20px; font-size: 0.82rem; color: var(--ink-soft); opacity: 0.8; }
.site-footer .copyright { margin-top: 20px; font-size: 0.78rem; color: var(--ink-soft); }
.site-footer .copyright-text { opacity: 0.7; }
.site-footer .copyright a { text-decoration: underline; }
.site-footer .tel-muted { opacity: 0.6; font-size: 0.92em; }

/* Page hero (non-top pages) */
.page-hero {
  background: var(--navy-mid);
  color: var(--navy); padding: 68px 0 76px; text-align: center;
  border-bottom: 1px solid rgba(28,40,125,0.15);
}
.page-hero h1 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); }
.page-hero p { margin: 0; color: var(--ink-soft); }

.service-detail { display: grid; gap: 28px; margin-bottom: 28px; }
.service-detail .card { display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start; }
.service-detail .card .icon { margin-bottom: 0; }

/* Contact form */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 780px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form {
  display: flex; flex-direction: column; gap: 20px;
  background: #fff;
  border: 1px solid rgba(0,131,143,0.16);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 26px rgba(20,26,46,0.08);
}
@media (max-width: 560px) { .contact-form { padding: 24px 20px; } }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.contact-form label { display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; color: var(--ink-soft); }
.contact-form .req { color: var(--magenta-bright); font-size: 0.72rem; font-weight: 700; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(154,48,141,0.25);
  background: #fff;
  color: var(--ink);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(91,97,120,0.45); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,131,143,0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { align-self: flex-start; border: none; cursor: pointer; }
.contact-form button:disabled { opacity: 0.6; cursor: default; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { min-height: 1.4em; font-size: 0.9rem; }
.form-status.is-ok { color: var(--cyan); }
.form-status.is-error { color: var(--magenta-bright); }

/* Zoom scheduler embed */
.zoom-scheduler-wrap {
  margin: 0 auto;
  max-width: 750px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,131,143,0.1);
  background: #fff;
}
.zoom-scheduler-wrap iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}
@media (max-width: 560px) {
  .zoom-scheduler-wrap iframe { height: 720px; }
}

.contact-side-card { margin-bottom: 0; }
.contact-side-divider { border-top: 1px solid rgba(0,131,143,0.16); margin: 24px 0; }
.contact-side-info { margin: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-side-info dt { font-size: 0.78rem; color: var(--cyan); font-weight: 700; margin: 0 0 4px; }
.contact-side-info dd { margin: 0; font-size: 0.92rem; color: var(--ink); }

/* AI chat widget */
.ai-chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--magenta-bright);
  box-shadow: 0 8px 26px rgba(154, 48, 141, 0.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
}
.ai-chat-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(194, 41, 158, 0.4);
  animation: fabPulse 2.2s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
.ai-chat-fab svg { width: 26px; height: 26px; fill: #fff; }
.ai-chat-fab .ai-chat-fab-close { display: none; color: #fff; font-size: 1.4rem; line-height: 1; }
.ai-chat-fab.is-open .ai-chat-fab-icon { display: none; }
.ai-chat-fab.is-open .ai-chat-fab-close { display: block; }
.ai-chat-fab.is-open::before { display: none; }

.ai-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 460px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 14, 50, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 199;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ai-chat-panel.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.ai-chat-panel-head {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700;
  flex-shrink: 0;
}
.ai-chat-panel-head .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3DDC84; box-shadow: 0 0 6px #3DDC84;
  flex-shrink: 0;
}
.ai-chat-panel-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--navy-mid);
}
.ai-chat-msg {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.55;
  white-space: pre-wrap;
}
.ai-chat-msg.from-user {
  align-self: flex-end;
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ai-chat-msg.from-ai {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(154,48,141,0.14);
  border-bottom-left-radius: 4px;
}
.ai-chat-msg.is-typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
.ai-chat-msg.is-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-soft);
  animation: aiTypingBounce 1.1s infinite ease-in-out;
}
.ai-chat-msg.is-typing span:nth-child(2) { animation-delay: 0.15s; }
.ai-chat-msg.is-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes aiTypingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.ai-chat-panel-foot {
  flex-shrink: 0;
  display: flex; gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--navy-mid);
  background: #fff;
}
.ai-chat-panel-foot input {
  flex: 1 1 auto;
  font: inherit;
  font-size: 0.86rem;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(154,48,141,0.25);
  color: var(--ink);
}
.ai-chat-panel-foot input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,131,143,0.15);
}
.ai-chat-panel-foot button {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--magenta-bright);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.ai-chat-panel-foot button:disabled { opacity: 0.5; cursor: default; }
.ai-chat-panel-note {
  font-size: 0.68rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 0 12px 10px;
  background: #fff;
}
.ai-chat-cta-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}
.ai-chat-cta-btn:hover { filter: brightness(1.08); }

@media (prefers-reduced-motion: reduce) {
  .ai-chat-fab::before { animation: none; }
  .ai-chat-msg.is-typing span { animation: none; }
}

@media (max-width: 480px) {
  .ai-chat-panel { right: 16px; left: 16px; width: auto; bottom: 84px; }
  .ai-chat-fab { right: 16px; bottom: 16px; }
}

/* Service detail page illustration */
.service-illustration {
  display: block;
  width: 320px;
  max-width: 70%;
  margin: 0 auto 28px;
}

/* Cases grid */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 780px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,131,143,0.16);
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 4px 26px rgba(20,26,46,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(20,26,46,0.14); z-index: 20; }
.case-card img {
  width: 100%; aspect-ratio: 1024 / 740; object-fit: cover; display: block;
  border-radius: 4px 4px 0 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-radius 0.35s ease;
}
.case-card:hover img {
  transform: scale(1.8);
  box-shadow: 0 25px 60px rgba(20,26,46,0.4);
  border-radius: 12px;
  position: relative;
}
.case-card-body { padding: 20px 24px 24px; border-radius: 0 0 4px 4px; background: #fff; position: relative; }
.case-card-body h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--navy); }
.case-card-body p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) {
  .case-card img { transition: none; }
}

/* ============================================================
   クラスリンク（自治体向け多言語LINE生活支援）— 製品紹介ページ
   2026-07-28 追加。既存クラスに手を入れず .cl- 接頭辞で完結させる。
   ============================================================ */

:root {
  /* 本文・リンクにも使える濃いティール（--cyan はコントラスト比が低くAA未達のため） */
  --cl-teal-ink: #006670;
}

/* --- ヒーロー --- */
.cl-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0B0F1E 0%, #123246 100%);
  color: #fff;
  padding: 76px 0 84px;
}
.cl-hero::before {
  content: "";
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(620px 340px at 15% 0%, rgba(0,178,196,0.18), transparent 62%),
    radial-gradient(620px 340px at 85% 100%, rgba(194,41,158,0.16), transparent 62%);
}
.cl-hero .wrap { position: relative; z-index: 1; }
.cl-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.cl-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.45;
  color: #fff;
}
.cl-hero .cl-sub { margin: 0 0 26px; color: rgba(255,255,255,0.80); font-size: 1rem; }
.cl-hero-visual { display: flex; justify-content: center; }
.cl-hero-visual img { width: 100%; max-width: 280px; height: auto; aspect-ratio: 1 / 1; border-radius: 15%; box-shadow: 0 18px 50px rgba(0,0,0,0.45); }
.cl-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .cl-hero-grid { grid-template-columns: 1fr; }
  .cl-hero-visual { order: -1; }
}

/* --- 対応言語セクション --- */
.cl-lang-band { text-align: center; max-width: 720px; margin: 0 auto; }
.cl-lang-band .cl-eyebrow {
  border-color: rgba(0,131,143,0.35);
  background: rgba(0,131,143,0.06);
  color: var(--cl-teal-ink);
}
.cl-lang-band .cl-eyebrow-dot { background: var(--cl-teal-ink); }
.cl-lang-band-lead { margin: 0; font-size: 1.05rem; color: var(--ink); }
.cl-chips-lg { justify-content: center; margin-top: 22px; gap: 10px; }
.cl-chips-lg li { padding: 8px 20px; font-size: 0.92rem; font-weight: 600; background: #fff; }

.cl-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(0,178,196,0.55);
  border-radius: 999px; padding: 6px 16px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  color: #7EE3EE; margin: 0 0 20px;
  background: rgba(0,178,196,0.10);
}
.cl-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: #00B2C4; }

/* --- 課題の箇条書き --- */
.cl-problem { max-width: 760px; margin: 0 auto; }
.cl-problem p { color: var(--ink-soft); }
.cl-problem-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.cl-problem-list li {
  position: relative;
  padding: 16px 20px 16px 52px;
  background: #fff;
  border: 1px solid rgba(154,48,141,0.16);
  border-left: 3px solid var(--magenta);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.95rem;
}
.cl-problem-list li::before {
  content: "!";
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(154,48,141,0.12); color: var(--magenta);
  font-weight: 700; font-size: 0.78rem;
  display: flex; align-items: center; justify-content: center;
}

/* --- 対応カテゴリのチップ --- */
.cl-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.cl-chips li {
  border: 1px solid rgba(0,131,143,0.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: var(--cl-teal-ink);
  background: rgba(0,131,143,0.06);
}

/* --- 図版 --- */
.cl-figure { margin: 48px auto 0; max-width: 900px; }
.cl-figure img { width: 100%; height: auto; aspect-ratio: 1800 / 854; border-radius: 16px; box-shadow: 0 14px 40px rgba(20,26,46,0.22); }
.cl-figure figcaption { margin-top: 14px; text-align: center; font-size: 0.85rem; color: var(--ink-soft); }

/* --- 導入メリット --- */
.cl-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; list-style: none; padding: 0; margin: 0; }
@media (max-width: 780px) { .cl-benefits { grid-template-columns: 1fr; } }
.cl-benefits li {
  background: #fff;
  border: 1px solid rgba(0,131,143,0.18);
  border-radius: 14px;
  padding: 24px 26px 24px 58px;
  position: relative;
  box-shadow: 0 4px 22px rgba(20,26,46,0.07);
}
.cl-benefits li::before {
  content: "";
  position: absolute; left: 24px; top: 27px;
  width: 18px; height: 10px;
  border-left: 3px solid var(--cl-teal-ink);
  border-bottom: 3px solid var(--cl-teal-ink);
  transform: rotate(-45deg);
}
.cl-benefits strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.cl-benefits span { color: var(--ink-soft); font-size: 0.92rem; }

/* --- 導入ステップ --- */
.cl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: clstep; }
@media (max-width: 900px) { .cl-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cl-steps { grid-template-columns: 1fr; } }
.cl-step {
  background: #fff;
  border: 1px solid rgba(154,48,141,0.16);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 4px 22px rgba(20,26,46,0.07);
}
.cl-step-no {
  display: inline-block; vertical-align: middle;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  color: #fff; background: linear-gradient(90deg, var(--magenta), var(--cyan));
  border-radius: 999px; padding: 3px 12px; margin-bottom: 14px;
}
.cl-step h3 { margin: 0 0 8px; font-size: 1rem; color: var(--navy); }
.cl-step p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* --- 免責（主表示と同等の視認性を確保する） --- */
.cl-disclaimer {
  border: 2px solid var(--magenta);
  border-radius: 16px;
  background: #fff;
  padding: 30px 32px;
  margin: 40px auto 0;
  max-width: 860px;
  box-shadow: 0 6px 28px rgba(154,48,141,0.12);
}
.cl-disclaimer h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--magenta);
  display: flex; align-items: center; gap: 10px;
}
.cl-disclaimer-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(154,48,141,0.12); border: 1px solid var(--magenta); color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
}
.cl-disclaimer-icon svg { width: 17px; height: 17px; }
.cl-disclaimer ul { margin: 0; padding-left: 1.2em; }
.cl-disclaimer li { margin-bottom: 10px; color: var(--ink); font-size: 0.95rem; }
.cl-disclaimer li:last-child { margin-bottom: 0; }
.cl-disclaimer .cl-disclaimer-foot { margin: 18px 0 0; font-size: 0.9rem; color: var(--ink-soft); }

/* --- 補足の注記 --- */
.cl-note {
  margin: 20px auto 0; max-width: 860px;
  font-size: 0.88rem; color: var(--ink-soft);
  border-left: 3px solid rgba(0,131,143,0.4);
  padding: 4px 0 4px 16px;
}

/* --- ウェルカムバナー --- */
.cl-welcome {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  max-width: 760px; margin: 0 auto 44px;
  background: rgba(0,131,143,0.05);
  border: 1px solid rgba(0,131,143,0.22);
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: 0 4px 22px rgba(20,26,46,0.06);
}
.cl-welcome-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.cl-welcome-icon svg { width: 28px; height: 28px; }
.cl-welcome-lead { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.cl-welcome p { margin: 0 0 10px; color: var(--ink-soft); }
.cl-welcome p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .cl-welcome { grid-template-columns: 1fr; padding: 24px 20px; }
  .cl-welcome-icon { display: none; }
}

/* --- 使い方ガイド --- */
.cl-guide { max-width: 800px; margin: 0 auto; display: grid; gap: 24px; position: relative; counter-reset: guide-step; scroll-margin-top: 84px; }
.cl-guide::before {
  content: "";
  position: absolute; left: 58px; top: 56px; bottom: 56px; width: 2px;
  background: linear-gradient(var(--magenta), var(--cyan));
  z-index: 0;
}
.cl-guide-step {
  background: #fff;
  border: 1px solid rgba(0,131,143,0.18);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 4px 22px rgba(20,26,46,0.07);
  position: relative; z-index: 1; overflow: hidden;
  display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
  counter-increment: guide-step;
  scroll-margin-top: 84px;
}
.cl-guide-step::after {
  content: counter(guide-step);
  position: absolute; right: 18px; top: -0.15em;
  font-size: 6rem; font-weight: 800; line-height: 1;
  color: rgba(0,131,143,0.07);
  z-index: -1; pointer-events: none;
}
.cl-guide-step .icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,131,143,0.10);
  border: 1px solid rgba(0,131,143,0.3);
  color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cl-guide-step .icon svg { width: 26px; height: 26px; }
.cl-guide-step:nth-child(even) .icon {
  background: rgba(154,48,141,0.10);
  border-color: rgba(154,48,141,0.3);
  color: var(--magenta);
}
.cl-guide-step:first-child { border: 1.5px solid var(--cyan); }
.cl-guide-step h3 { margin: 0 0 12px; font-size: 1.05rem; color: var(--navy); }
.cl-guide-step p { margin: 0 0 10px; color: var(--ink-soft); font-size: 0.95rem; }
.cl-guide-step p:last-child { margin-bottom: 0; }
.cl-guide-step ul { margin: 10px 0 0; padding-left: 1.2em; color: var(--ink-soft); font-size: 0.93rem; }
.cl-guide-step li { margin-bottom: 6px; }

/* STEP3（AIチャット）を最重要ステップとして強調 */
.cl-guide-step:nth-child(3) {
  border: 2px solid var(--magenta);
  grid-template-columns: 64px 1fr;
}
.cl-guide-step:nth-child(3) .icon { width: 64px; height: 64px; }
.cl-guide-step:nth-child(3) .icon svg { width: 30px; height: 30px; }
.cl-step-important {
  display: inline-block; vertical-align: middle;
  margin-left: 8px; margin-bottom: 14px;
  padding: 3px 12px; border-radius: 999px;
  background: var(--magenta); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
}

/* STEP4・5は付加機能として軽量表示 */
.cl-guide-step--sub { padding: 20px 24px; }
.cl-guide-step--sub .icon { width: 44px; height: 44px; }
.cl-guide-step--sub .icon svg { width: 20px; height: 20px; }
.cl-guide-step--sub h3 { font-size: 0.95rem; margin-bottom: 8px; }
.cl-guide-step--sub::after { font-size: 4.2rem; }
.cl-guide-step p.cl-guide-sub-eyebrow {
  margin: 0 0 10px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--ink-soft); text-transform: uppercase;
}

/* STEPナビ（アンカー目次） */
.cl-guide-nav {
  max-width: 800px; margin: 0 auto 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cl-guide-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(0,131,143,0.3);
  background: #fff; color: var(--navy);
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
}
.cl-guide-nav a:hover { border-color: var(--cyan); color: var(--cyan); }
.cl-guide-nav .cl-guide-nav-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(90deg, var(--magenta), var(--cyan));
  color: #fff; font-size: 0.68rem; font-weight: 700;
}
@media (max-width: 640px) {
  .cl-guide::before { display: none; }
  .cl-guide-step, .cl-guide-step:nth-child(3) { grid-template-columns: 1fr; }
  .cl-guide-step .icon { display: none; }
}
@media (max-width: 480px) {
  .cl-guide-step { gap: 14px; padding: 24px 20px; }
  .cl-guide-step::after { font-size: 4.2rem; }
  .cl-guide-nav { gap: 6px; }
  .cl-guide-nav a { padding: 5px 11px; font-size: 0.78rem; }
}

.cl-step5-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
@media (max-width: 480px) { .cl-step5-grid { grid-template-columns: 1fr; } }
.cl-step5-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(0,131,143,0.06); border: 1px solid rgba(0,131,143,0.18);
  font-size: 0.88rem; color: var(--ink);
}
.cl-step5-chip svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--cyan); }
.cl-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 10px 0 0; padding: 0; }
.cl-menu-grid li {
  list-style: none; padding: 10px 14px; border-radius: 10px;
  background: rgba(0,131,143,0.06); border: 1px solid rgba(0,131,143,0.18);
  font-size: 0.88rem; color: var(--ink);
}
@media (max-width: 480px) { .cl-menu-grid { grid-template-columns: 1fr; } }
.cl-langs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 12px 0 0; }
.cl-langs li {
  border: 1px solid rgba(0,131,143,0.35); border-radius: 999px;
  padding: 5px 15px; font-size: 0.88rem; color: var(--navy); background: #fff;
}
.cl-caution {
  margin-top: 16px; padding: 16px 18px;
  background: rgba(154,48,141,0.06);
  border-left: 3px solid var(--magenta);
  border-radius: 12px;
  font-size: 0.9rem; color: var(--ink);
}
.cl-caution strong { color: var(--magenta); display: inline-flex; align-items: center; gap: 7px; }
.cl-caution strong svg { width: 17px; height: 17px; }

/* --- FAQ --- */
.cl-faq { max-width: 800px; margin: 0 auto; display: grid; gap: 16px; }
.cl-faq details {
  background: #fff;
  border: 1px solid rgba(154,48,141,0.16);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(20,26,46,0.06);
}
.cl-faq summary {
  cursor: pointer; font-weight: 700; color: var(--navy);
  font-size: 0.98rem; list-style: none;
  display: flex; align-items: center; gap: 12px;
}
.cl-faq summary::-webkit-details-marker { display: none; }
.cl-faq summary::before {
  content: "Q"; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,131,143,0.12); color: var(--cl-teal-ink);
  font-size: 0.78rem; display: flex; align-items: center; justify-content: center;
}
.cl-faq details[open] summary { margin-bottom: 14px; }
.cl-faq-chevron { margin-left: auto; flex-shrink: 0; color: var(--cl-teal-ink); transition: transform 0.2s ease; }
.cl-faq-chevron svg { width: 18px; height: 18px; display: block; }
.cl-faq details[open] .cl-faq-chevron { transform: rotate(180deg); }
.cl-faq .cl-faq-body { color: var(--ink-soft); font-size: 0.94rem; padding-left: 36px; }
.cl-faq .cl-faq-body p { margin: 0 0 8px; }
.cl-faq .cl-faq-body p:last-child { margin-bottom: 0; }

/* --- 他ページからの導線バナー --- */
.cl-promo {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: center;
  background: var(--navy-deep);
  border-radius: 4px; padding: 34px 38px;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(178,58,163,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cl-promo:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(20,26,46,0.28); border-color: rgba(178,58,163,0.8); color: #fff; }
.cl-promo-visual { display: flex; justify-content: center; }
.cl-promo img { width: 100%; max-width: 200px; height: auto; aspect-ratio: 1 / 1; border-radius: 15%; box-shadow: 0 14px 36px rgba(0,0,0,0.4); }
.cl-promo-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: #E9A8DA; border: 1px solid rgba(178,58,163,0.5); border-radius: 999px;
  padding: 4px 13px; margin-bottom: 14px;
}
.cl-promo h3 { margin: 0 0 10px; font-size: 1.2rem; color: #fff; line-height: 1.5; font-family: var(--font-display); }
.cl-promo p { margin: 0 0 14px; color: rgba(255,255,255,0.74); font-size: 0.92rem; }
.cl-promo-link { font-weight: 700; color: #E9A8DA; font-size: 0.9rem; }
@media (max-width: 780px) {
  .cl-promo { grid-template-columns: 1fr; padding: 28px 24px; }
  .cl-promo-visual { order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .cl-promo { transition: none; }
}
