/* ===== Design Tokens ===== */
:root {
  --forest: #2C5F2D;
  --moss: #97BC62;
  --cream: #F7F5EE;
  --ink: #1C221C;
  --soft: #6B6E5F;
  --gold: #C9A227;
  --paper: #EFECE2;
  --border: #D8D1B8;
  --berry: #6D2E46;
  --orange: #D8852E;
  --blue: #1F4E8B;
  --white: #FFFFFF;
  --max-width: 1200px;
  --content-width: 1040px;
}

/* ===== Reset & Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Yu Gothic UI", "Hiragino Sans", "Helvetica Neue", -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  font-feature-settings: "palt";
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }

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

.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { display: inline-block; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 4px; margin-bottom: 12px; }
.section-head h2 { font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 16px; line-height: 1.4; }
.section-head .gold-line { width: 80px; height: 2px; background: var(--gold); margin: 0 auto 16px; }
.section-head p { color: var(--soft); font-size: 14px; max-width: 600px; margin: 0 auto; }

/* ===== Navigation ===== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--paper); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.brand { font-size: 14px; font-weight: 700; color: var(--forest); letter-spacing: 1px; }
.brand small { display: block; font-size: 9px; color: var(--soft); font-weight: 400; letter-spacing: 2px; margin-top: 2px; font-family: "Helvetica Neue", sans-serif; }
.nav-menu { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-menu a { font-size: 11px; letter-spacing: 1.5px; color: var(--ink); }
.nav-menu a.btn-line { background: var(--forest); color: var(--white); padding: 8px 16px; border-radius: 20px; font-size: 11px; }
.nav-menu a.btn-line:hover { background: var(--gold); color: var(--white); }
.nav-menu a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

/* ===== Hero ===== */
.hero { padding: 100px 24px 120px; text-align: center; background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); position: relative; }
.hero .label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 4px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 700; letter-spacing: 2px; margin-bottom: 24px; line-height: 1.4; }
.hero h1 .accent { color: var(--forest); }
.hero p { color: var(--soft); font-size: 15px; max-width: 620px; margin: 0 auto 36px; }
.hero .author { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--soft); }
.hero .author .photo { width: 72px; height: 72px; border-radius: 50%; background: var(--moss); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 18px; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.hero .author .photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
.hero .personal-note { color: var(--soft); font-size: 13px; font-style: italic; max-width: 560px; margin: 0 auto 32px; padding-top: 18px; border-top: 1px solid var(--border); line-height: 1.9; }
.hero .use-tags { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 0 auto 28px; max-width: 620px; }
.hero .use-tags .tag { display: inline-block; padding: 6px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--forest); font-weight: 700; letter-spacing: 0.5px; }

/* ===== Page Hero (sub pages) ===== */
.page-hero { padding: 80px 24px 60px; text-align: center; background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.page-hero .label { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 4px; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
.page-hero p { color: var(--soft); font-size: 15px; max-width: 620px; margin: 0 auto; line-height: 1.9; }

/* ===== About ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
.about-quote { background: var(--paper); border-left: 4px solid var(--gold); padding: 32px 36px; border-radius: 0 12px 12px 0; }
.about-quote h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 16px; line-height: 1.5; }
.about-quote p { color: var(--soft); font-size: 15px; line-height: 1.9; }
.about-summary { background: var(--cream); border-radius: 12px; padding: 24px 32px; line-height: 1.9; color: var(--ink); font-size: 15px; }
.about-summary strong { color: var(--forest); font-weight: 700; }
.about-methods-lead { text-align: center; padding-top: 16px; }
.about-methods-lead h4 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.about-methods-lead p { font-size: 14px; color: var(--soft); }

.about-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 16px; }
.about-point { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.about-point:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(44, 95, 45, 0.10); }
.about-point .photo-wrap { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--paper); position: relative; }
.about-point .photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.92) contrast(1.04); transition: transform .4s ease; }
.about-point:hover .photo-wrap img { transform: scale(1.04); }
.about-point .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.about-point .num { font-size: 11px; letter-spacing: 3px; color: var(--gold); font-weight: 700; margin-bottom: 8px; font-family: "Helvetica Neue", sans-serif; }
.about-point h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.about-point p { color: var(--soft); font-size: 14px; line-height: 1.8; }

/* ===== Process ===== */
.process { padding: 100px 0; background: var(--cream); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.video-card { background: var(--ink); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.video-card.green { background: var(--forest); }
.video-wrapper { position: relative; padding-bottom: 56.25%; background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-caption { padding: 24px 28px 28px; color: var(--white); }
.video-caption .label { color: var(--moss); font-size: 10px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
.video-caption h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.video-caption p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; }
.process-footer { text-align: center; margin-top: 40px; color: var(--soft); font-size: 13px; }

/* ===== Voices ===== */
.voices { padding: 100px 0; background: var(--white); }
.voice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.voice-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.voice-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.voice-card.no-link { cursor: default; }
.voice-card.no-link:hover { transform: none; box-shadow: none; }
.voice-card .head { padding: 28px 24px; color: var(--white); position: relative; }
.voice-card .head .case { font-size: 9px; font-weight: 700; letter-spacing: 2px; opacity: 0.85; margin-bottom: 8px; }
.voice-card .head .tagline { font-size: 22px; font-weight: 700; line-height: 1.4; }
.voice-card .body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.voice-card .name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.voice-card .title { font-size: 13px; color: var(--soft); margin-bottom: 16px; }
.voice-card .quote { font-size: 14px; color: var(--ink); line-height: 1.8; flex: 1; border-top: 1px solid var(--paper); padding-top: 16px; }
.voice-card .cta { margin-top: 16px; font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.voice-card .head.forest { background: var(--forest); }
.voice-card .head.berry { background: var(--berry); }
.voice-card .head.orange { background: var(--orange); }
.voice-card .head.ink { background: var(--ink); }
.voice-card .head.blue { background: var(--blue); }
.voices-note { text-align: center; margin-top: 32px; font-size: 11px; color: var(--soft); }

/* ===== Client Voice ===== */
.client-voice { padding: 100px 0; background: var(--cream); }
.client-info { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px 28px; display: flex; align-items: center; gap: 16px; margin-top: 32px; margin-bottom: 32px; }
.client-info .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--berry); color: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.client-info .info { flex: 1; }
.client-info .info .name { font-size: 14px; font-weight: 700; }
.client-info .info .org { font-size: 12px; color: var(--soft); }
.client-info .badge { background: var(--paper); color: var(--berry); padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.ba-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.ba-card.after { border-color: var(--gold); border-width: 2px; }
.ba-card .head { padding: 12px 24px; background: var(--paper); font-size: 10px; font-weight: 700; color: var(--soft); letter-spacing: 2px; }
.ba-card.after .head { background: var(--gold); color: var(--ink); }
.ba-card .body { padding: 24px; }
.ba-card .body h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--paper); }
.ba-card .body p { font-size: 14px; color: var(--soft); line-height: 1.9; margin-bottom: 16px; }
.ba-card .body .punch { font-size: 13px; font-style: italic; color: var(--soft); }
.ba-card.after .body .punch { color: var(--forest); font-weight: 700; font-style: normal; }
.big-quote { background: var(--berry); color: var(--white); border-radius: 12px; padding: 28px 36px; margin-bottom: 32px; }
.big-quote .mark { font-size: 40px; color: rgba(255,255,255,0.4); font-family: Georgia, serif; line-height: 0.5; margin-bottom: 8px; }
.big-quote p { font-size: 17px; font-weight: 700; line-height: 1.6; margin-bottom: 8px; }
.big-quote .by { font-size: 11px; color: rgba(255,255,255,0.7); text-align: right; }
.use-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.use-case { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; }
.use-case h5 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.use-case p { font-size: 13px; color: var(--soft); }
.use-case.note { background: var(--paper); }

/* ===== Client Voice (Q&A 構成) ===== */
.cv-question-block { margin-bottom: 40px; }
.cv-question-block:last-of-type { margin-bottom: 24px; }
.cv-question { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.cv-question .q-num { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--gold); background: var(--white); border: 1.5px solid var(--gold); padding: 8px 14px; border-radius: 18px; flex-shrink: 0; line-height: 1; align-self: center; font-family: "Helvetica Neue", sans-serif; }
.cv-question h3 { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.7; margin: 0; flex: 1; padding-top: 4px; }
.cv-answers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cv-answer { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--berry); border-radius: 0 10px 10px 0; padding: 22px 26px 18px; position: relative; transition: transform .2s, box-shadow .2s; }
.cv-answer:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.cv-answer .cv-quote-mark { font-family: Georgia, serif; font-size: 44px; color: var(--gold); line-height: 0.5; margin-bottom: 4px; opacity: 0.55; }
.cv-answer p { font-size: 14px; color: var(--ink); line-height: 1.9; margin: -2px 0 0; }
.cv-note { text-align: center; font-size: 11px; color: var(--soft); margin-top: 20px; letter-spacing: 0.5px; }
@media (max-width: 768px) {
  .cv-answers { grid-template-columns: 1fr; }
  .cv-question { flex-direction: column; gap: 10px; }
  .cv-question .q-num { align-self: flex-start; }
  .cv-question h3 { font-size: 15px; padding-top: 0; }
}

/* ===== Service & Step Cards ===== */
.service { padding: 100px 0; background: var(--white); }
.service-intro { background: var(--paper); border-left: 4px solid var(--forest); padding: 24px 32px; border-radius: 0 12px 12px 0; margin-bottom: 40px; font-size: 15px; line-height: 1.9; color: var(--ink); }
.service-intro strong { color: var(--forest); font-weight: 700; }
.service-intro .use-tags-inline { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.service-intro .use-tags-inline .tag { display: inline-block; padding: 4px 12px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; font-size: 12px; color: var(--forest); font-weight: 700; }
.step-free { background: var(--forest); color: var(--white); border-radius: 18px; padding: 40px 48px; margin-bottom: 32px; position: relative; overflow: hidden; }
.step-free .free-badge { display: inline-block; background: var(--gold); color: var(--ink); padding: 8px 22px; border-radius: 20px; font-size: 16px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; }
.step-free .step-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--moss); margin-bottom: 16px; display: inline-block; margin-left: 16px; }
.step-free h3 { font-size: clamp(22px, 4vw, 28px); font-weight: 700; margin-bottom: 8px; }
.step-free .co { color: var(--moss); font-size: 14px; margin-bottom: 24px; }
.step-free ul { list-style: none; margin-bottom: 28px; }
.step-free ul li { position: relative; padding-left: 20px; font-size: 15px; margin-bottom: 10px; line-height: 1.7; }
.step-free ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.step-free .actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.step-free .note { font-size: 11px; color: var(--moss); font-style: italic; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 30px; font-size: 13px; font-weight: 700; letter-spacing: 1px; transition: transform .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }

.step-arrow { text-align: center; margin: 24px 0; position: relative; }
.step-arrow .line { width: 2px; height: 32px; background: linear-gradient(180deg, transparent 0%, var(--gold) 100%); margin: 0 auto 8px; }
.step-arrow span { font-size: 15px; font-weight: 700; display: inline-block; padding: 10px 24px; background: var(--gold); color: var(--ink); border-radius: 24px; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(201,162,39,0.25); position: relative; }
.step-arrow span::after { content: "↓"; display: inline-block; margin-left: 10px; font-weight: 700; }

.step-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 32px 36px; margin-bottom: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.step-card .step-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--soft); margin-bottom: 8px; }
.step-card .use-tag { display: inline-block; padding: 4px 12px; background: var(--cream); border: 1px solid var(--border); border-radius: 14px; font-size: 11px; color: var(--forest); font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px; }
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.step-card .lead { font-size: 14px; color: var(--soft); margin-bottom: 16px; }
.step-card .price { font-size: 32px; font-weight: 700; color: var(--ink); font-family: "Helvetica Neue", sans-serif; }
.step-card .price small { font-size: 12px; color: var(--soft); margin-left: 8px; font-weight: 400; }
.step-card ul { list-style: none; margin-bottom: 16px; }
.step-card ul li { position: relative; padding-left: 18px; font-size: 14px; margin-bottom: 8px; color: var(--ink); line-height: 1.7; }
.step-card ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.step-card .savings-note { background: rgba(109,46,70,0.06); border-left: 3px solid var(--berry); padding: 10px 14px; font-size: 12px; color: var(--ink); line-height: 1.7; margin-top: 8px; border-radius: 0 6px 6px 0; }
.step-card .savings-note strong { color: var(--berry); }

.step-card.tenmin-detail { border-color: var(--orange); border-width: 2px; background: linear-gradient(180deg, #FFFCF7 0%, var(--white) 100%); box-shadow: 0 4px 16px rgba(216,133,46,0.10); }
.step-card.tenmin-detail h3 { color: var(--orange); }
.step-card.tenmin-detail .step-label { color: var(--orange); }
.step-card.tenmin-detail .use-tag { background: rgba(216,133,46,0.10); border-color: var(--orange); color: var(--orange); }

.step-card.archive-detail { border-radius: 0 0 14px 14px; border-top: none; border-color: var(--berry); border-width: 1.5px; margin-top: 0; margin-bottom: 16px; box-shadow: 0 4px 14px rgba(109,46,70,0.08); }
.step-card.archive-detail .step-label { color: var(--berry); }
.step-card.archive-detail h3 { color: var(--berry); }
.archive-meta { display: inline-block; margin-top: 4px; font-size: 12px; color: var(--soft); background: var(--paper); padding: 6px 12px; border-radius: 6px; line-height: 1.5; }
.archive-meta strong { color: var(--berry); font-weight: 700; }

.options-note { font-size: 13px; color: var(--soft); background: var(--paper); padding: 24px; border-radius: 8px; margin-top: 24px; line-height: 1.9; }
.options-note strong { color: var(--ink); }

/* ===== Countdown Banner ===== */
.countdown-banner { background: linear-gradient(135deg, var(--berry) 0%, #8B3A56 100%); color: var(--white); border-radius: 14px 14px 0 0; padding: 28px 32px; margin-top: 24px; margin-bottom: 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; position: relative; overflow: hidden; box-shadow: 0 6px 20px rgba(109,46,70,0.18); }
.countdown-banner.standalone { border-radius: 14px; margin-bottom: 16px; }
.countdown-banner::before { content: "LIMITED"; position: absolute; top: 12px; right: 16px; font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--gold); opacity: 0.85; }
.countdown-banner .cd-message { font-size: 14px; line-height: 1.8; }
.countdown-banner .cd-headline { font-size: 17px; font-weight: 700; margin-bottom: 10px; display: block; }
.countdown-banner .cd-headline .price-old { text-decoration: line-through; opacity: 0.6; font-size: 14px; margin: 0 6px; font-weight: 400; }
.countdown-banner .cd-headline .price-now { color: var(--gold); font-size: 19px; }
.countdown-banner .cd-sub { font-size: 13px; opacity: 0.9; display: block; line-height: 1.7; }
.countdown-banner .cd-timer { text-align: center; background: rgba(255,255,255,0.08); padding: 16px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.15); min-width: 200px; }
.countdown-banner .cd-timer .cd-label { font-size: 10px; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.countdown-banner .cd-timer .cd-numbers { display: flex; justify-content: center; gap: 8px; align-items: baseline; }
.countdown-banner .cd-timer .cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.countdown-banner .cd-timer .cd-num { font-size: 28px; font-weight: 700; font-family: "Helvetica Neue", sans-serif; line-height: 1; color: var(--white); }
.countdown-banner .cd-timer .cd-suffix { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ===== Comparison Table ===== */
.comparison { padding: 100px 0; background: var(--white); }
.compare-wrap { margin-top: 32px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; font-size: 14px; background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.compare-table th, .compare-table td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--paper); vertical-align: middle; line-height: 1.6; }
.compare-table thead th { background: var(--paper); color: var(--ink); font-weight: 700; font-size: 13px; letter-spacing: 1px; padding: 16px 12px; border-bottom: 2px solid var(--border); }
.compare-table thead th .col-sub { display: block; font-size: 11px; font-weight: 400; color: var(--soft); margin-top: 4px; letter-spacing: 0; }
.compare-table tbody th { font-weight: 700; color: var(--ink); background: var(--cream); width: 220px; font-size: 13px; text-align: left; line-height: 1.5; }
.compare-table tbody th .row-sub { display: block; font-size: 11px; font-weight: 400; color: var(--soft); margin-top: 3px; }
.compare-table td { font-size: 14px; color: var(--ink); }
.compare-table td .mark { display: inline-block; font-size: 22px; font-weight: 700; line-height: 1; }
.compare-table td .mark.o { color: var(--forest); }
.compare-table td .mark.t { color: var(--orange); }
.compare-table td .mark.x { color: var(--soft); opacity: 0.55; }
.compare-table td .note { display: block; font-size: 11px; color: var(--soft); margin-top: 4px; font-weight: 400; line-height: 1.5; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-legend { margin-top: 16px; text-align: center; font-size: 12px; color: var(--soft); letter-spacing: 0.5px; }
.compare-legend span { display: inline-block; margin: 0 10px; }
.compare-legend .mark { font-weight: 700; font-size: 14px; margin-right: 4px; }
.compare-legend .mark.o { color: var(--forest); }
.compare-legend .mark.t { color: var(--orange); }
.compare-legend .mark.x { color: var(--soft); }
.compare-conclusion { margin-top: 32px; padding: 28px 32px; background: var(--paper); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0; font-size: 15px; line-height: 1.9; color: var(--ink); }
.compare-conclusion strong { color: var(--forest); font-weight: 700; }

/* ===== Pricing summary table ===== */
.pricing-summary { padding: 80px 0; background: var(--cream); }
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-top: 32px; font-size: 14px; }
.price-table thead th { background: var(--forest); color: var(--white); padding: 18px 16px; font-weight: 700; letter-spacing: 1px; text-align: left; font-size: 13px; }
.price-table tbody td { padding: 18px 16px; border-bottom: 1px solid var(--paper); vertical-align: middle; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .product-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.price-table .product-tag { display: inline-block; padding: 3px 10px; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; font-size: 11px; color: var(--forest); font-weight: 700; margin-left: 8px; }
.price-table .product-desc { display: block; font-size: 12px; color: var(--soft); margin-top: 4px; line-height: 1.6; }
.price-table .price-cell { font-size: 16px; font-weight: 700; color: var(--ink); white-space: nowrap; font-family: "Helvetica Neue", sans-serif; }
.price-table .price-cell .old { text-decoration: line-through; color: var(--soft); font-size: 12px; font-weight: 400; margin-right: 6px; }
.price-table .price-cell .now { color: var(--berry); }
.price-table .price-cell small { display: block; font-size: 10px; color: var(--soft); font-weight: 400; margin-top: 2px; }
.price-table .row-tenmin { background: rgba(216,133,46,0.04); }
.price-table .row-archive { background: rgba(109,46,70,0.04); }

/* ===== Cross-page CTA ===== */
.page-link-cta { background: var(--cream); padding: 60px 24px; text-align: center; border-top: 1px solid var(--paper); }
.page-link-cta h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.page-link-cta p { color: var(--soft); font-size: 14px; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.9; }
.page-link-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Final CTA ===== */
.final-cta { background: var(--ink); color: var(--white); padding: 80px 24px; text-align: center; }
.final-cta h2 { font-size: clamp(22px, 4vw, 28px); margin-bottom: 16px; }
.final-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 32px; }

/* ===== Footer ===== */
footer { background: #11160F; color: var(--moss); padding: 40px 24px; text-align: center; font-size: 11px; letter-spacing: 2px; }
footer .links { margin-bottom: 16px; display: flex; justify-content: center; gap: 24px; }
footer .links a:hover { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open { display: flex; flex-direction: column; gap: 16px; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; border-bottom: 1px solid var(--paper); }
  .nav-menu.open a.btn-line { width: 100%; text-align: center; }
  .video-grid { grid-template-columns: 1fr; gap: 24px; }
  .before-after { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 1fr; padding: 24px; }
  .countdown-banner { grid-template-columns: 1fr; padding: 24px 22px; gap: 18px; }
  .countdown-banner .cd-timer { min-width: 0; }
  .hero { padding: 60px 24px 80px; }
  .about, .process, .voices, .client-voice, .service { padding: 64px 0; }
  .step-free { padding: 28px; }
  .step-free .actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn { width: 100%; text-align: center; }
  .price-table { font-size: 13px; }
  .price-table thead { display: none; }
  .price-table tbody tr { display: block; padding: 16px; border-bottom: 1px solid var(--paper); }
  .price-table tbody td { display: block; padding: 4px 0; border: none; }
  .compare-wrap { margin-left: -24px; margin-right: -24px; padding: 0 24px; }
}

/* ===== Samples Section (service.html) ===== */
@media (max-width: 768px) {
  .samples-section .samples-grid { grid-template-columns: 1fr !important; }
  .samples-section { padding: 24px 18px !important; }
}
