:root {
  --ink: #15231e;
  --muted: #68766f;
  --line: #dfe7e2;
  --paper: #f5f7f4;
  --card: #ffffff;
  --green: #0d6a4c;
  --green-dark: #084c37;
  --green-soft: #e5f3ed;
  --lime: #b8dd7e;
  --amber: #b66b13;
  --amber-soft: #fff2dc;
  --blue: #245f8d;
  --blue-soft: #e8f1f8;
  --shadow: 0 16px 44px rgba(24, 50, 39, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Yu Gothic UI", "Hiragino Sans", Meiryo, sans-serif; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: var(--green); }

.app-shell { min-height: 100vh; display: grid; grid-template-columns: 236px minmax(0, 1fr); }
.sidebar { position: sticky; top: 0; height: 100vh; padding: 30px 18px 22px; display: flex; flex-direction: column; background: #10261f; color: #f5fff9; }
.brand { display: flex; gap: 11px; align-items: center; padding: 0 10px 28px; color: inherit; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--lime); color: #183a2d; font-weight: 800; font-size: 19px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 16px; letter-spacing: .04em; }
.brand small { margin-top: 3px; color: #9db4aa; font-size: 9px; letter-spacing: .18em; }
.nav { display: grid; gap: 7px; }
.nav-item { width: 100%; border: 0; border-radius: 12px; padding: 12px 13px; display: flex; align-items: center; gap: 12px; background: transparent; color: #a9bdb4; text-align: left; cursor: pointer; transition: .18s ease; }
.nav-item span { width: 22px; text-align: center; font-size: 18px; }
.nav-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav-item.is-active { color: #fff; background: rgba(184,221,126,.14); box-shadow: inset 3px 0 0 var(--lime); }
.sidebar-bottom { margin-top: auto; display: grid; gap: 12px; }
.trial-card { display: flex; align-items: center; gap: 10px; padding: 13px; border: 1px solid rgba(184,221,126,.25); border-radius: 13px; background: rgba(184,221,126,.07); }
.trial-card small, .trial-card strong { display: block; }
.trial-card small { color: #a9bdb4; font-size: 11px; }
.trial-card strong { margin-top: 3px; font-size: 13px; color: var(--lime); }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(184,221,126,.1); }
.profile-button { border: 0; border-top: 1px solid rgba(255,255,255,.1); padding: 16px 5px 0; display: grid; grid-template-columns: 35px 1fr auto; gap: 9px; align-items: center; background: transparent; color: #fff; text-align: left; cursor: pointer; }
.profile-button strong, .profile-button small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 125px; }
.profile-button strong { font-size: 12px; }.profile-button small { margin-top: 3px; color: #8fa69c; font-size: 10px; }
.avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #315648; font-size: 12px; }.chevron { color: #789086; font-size: 21px; }

.main { min-width: 0; padding: 33px clamp(22px, 3.2vw, 52px) 28px; }
.topbar { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.eyebrow { margin: 0 0 7px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(29px, 3vw, 42px); letter-spacing: -.04em; }
h2 { margin-bottom: 5px; font-size: 19px; letter-spacing: -.02em; }
.top-actions { display: flex; gap: 9px; align-items: center; }
.trial-badge { min-height: 30px; padding: 0 10px; display: inline-flex; align-items: center; border: 1px solid #b9d7c8; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 9px; font-weight: 800; white-space: nowrap; }
.search { height: 40px; min-width: 250px; padding: 0 12px; display: flex; gap: 8px; align-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--card); color: var(--muted); }
.search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.button { min-height: 40px; border: 1px solid transparent; border-radius: 10px; padding: 0 15px; display: inline-flex; gap: 7px; align-items: center; justify-content: center; cursor: pointer; font-weight: 700; font-size: 12px; transition: .18s ease; }
.button:hover { transform: translateY(-1px); }.button.primary { background: var(--green); color: #fff; }.button.primary:hover { background: var(--green-dark); }.button.secondary { border-color: var(--line); background: var(--card); }.button.secondary:hover { border-color: #bfcfc7; }
.notice { margin: 23px 0 17px; min-height: 44px; padding: 11px 15px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid #cfe0d7; border-radius: 11px; background: #eef6f1; color: #436056; font-size: 11px; }
.notice div { display: flex; gap: 9px; align-items: center; }.notice strong { color: var(--green-dark); }.notice > span { white-space: nowrap; color: #70827b; }

.metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.metric-card { min-height: 103px; padding: 18px; display: flex; align-items: center; gap: 13px; border: 1px solid var(--line); border-radius: 15px; background: var(--card); box-shadow: 0 8px 24px rgba(24,50,39,.035); }
.metric-card.accent { color: #fff; border-color: var(--green); background: var(--green); }.metric-card.accent small, .metric-card.accent span { color: #cce8db; }
.metric-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; background: var(--green-soft); color: var(--green); font-weight: 800; }.accent .metric-icon { background: rgba(255,255,255,.13); color: var(--lime); }
.metric-card small, .metric-card strong, .metric-card div > span { display: block; }.metric-card small { color: var(--muted); font-size: 10px; font-weight: 700; }.metric-card strong { margin: 3px 0 1px; font-size: 24px; letter-spacing: -.04em; }.metric-card div > span { color: #93a099; font-size: 9px; }

.workspace { margin-top: 16px; display: grid; grid-template-columns: minmax(460px, 1.45fr) minmax(330px, .9fr); gap: 14px; align-items: start; }
.list-panel, .detail-panel { border: 1px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: var(--shadow); }
.list-panel { overflow: hidden; }.section-head { padding: 18px 20px 13px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); }.section-head p { margin-bottom: 0; color: var(--muted); font-size: 10px; }
.filters { display: flex; padding: 3px; border-radius: 9px; background: var(--paper); }.filter { border: 0; border-radius: 7px; padding: 6px 9px; background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; }.filter.is-active { background: #fff; color: var(--green); box-shadow: 0 2px 7px rgba(20,50,38,.08); font-weight: 800; }
.opportunity-list { display: grid; }.opportunity { position: relative; padding: 17px 19px; display: grid; grid-template-columns: 48px minmax(0,1fr) auto; gap: 13px; align-items: center; border: 0; border-bottom: 1px solid #edf1ee; background: #fff; text-align: left; cursor: pointer; }.opportunity:last-child { border-bottom: 0; }.opportunity:hover { background: #f9fbf9; }.opportunity.is-selected { background: #f1f7f4; box-shadow: inset 3px 0 0 var(--green); }
.score-ring { --score: 80; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--green) calc(var(--score) * 1%), #e7eee9 0); }.score-ring::before { content: ""; grid-area: 1/1; width: 36px; height: 36px; border-radius: 50%; background: #fff; }.score-ring strong { position: relative; grid-area: 1/1; font-size: 12px; }.score-ring small { font-size: 7px; color: var(--muted); }
.opportunity-main { min-width: 0; }.opportunity-tags { margin-bottom: 5px; display: flex; gap: 5px; flex-wrap: wrap; }.tag { padding: 3px 7px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 8px; font-weight: 800; }.tag.bid { background: var(--blue-soft); color: var(--blue); }.tag.urgent { background: var(--amber-soft); color: var(--amber); }.tag.subsidy { background: #eeeafd; color: #604ca0; }.tag.live { background: #dcf5ea; color: #08724f; }.tag.sample { background: #f0f1ef; color: #737d77; }
.opportunity h3 { margin: 0 0 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }.opportunity-meta { display: flex; gap: 10px; color: var(--muted); font-size: 9px; }.opportunity-value { min-width: 80px; text-align: right; }.opportunity-value small, .opportunity-value strong, .opportunity-value span { display: block; }.opportunity-value small { color: var(--muted); font-size: 8px; }.opportunity-value strong { margin: 3px 0; font-size: 14px; }.opportunity-value span { color: var(--amber); font-size: 8px; font-weight: 700; }
.empty-state { padding: 55px 20px; text-align: center; color: var(--muted); }.empty-state span { display: block; font-size: 28px; }.empty-state strong { display: block; margin: 8px 0 3px; color: var(--ink); font-size: 13px; }.empty-state p { font-size: 10px; }

.detail-panel { position: sticky; top: 20px; overflow: hidden; }.detail-hero { padding: 21px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg,#f5faf7,#fff); }.detail-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }.fit-pill { padding: 6px 9px; border-radius: 8px; background: var(--green); color: #fff; font-size: 10px; font-weight: 800; }.save-button { border: 1px solid var(--line); border-radius: 8px; padding: 5px 9px; background: #fff; cursor: pointer; font-size: 10px; }.save-button.is-saved { border-color: #b7d7c9; background: var(--green-soft); color: var(--green); }
.detail-hero h2 { margin: 15px 0 8px; font-size: 17px; line-height: 1.45; }.detail-org { margin: 0; color: var(--muted); font-size: 10px; }.detail-stats { margin-top: 16px; display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }.detail-stat { padding: 10px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }.detail-stat small, .detail-stat strong { display: block; }.detail-stat small { color: var(--muted); font-size: 8px; }.detail-stat strong { margin-top: 4px; font-size: 11px; }.requirement-grid { margin-top: 8px; display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }.requirement-item { padding: 9px 10px; border-radius: 9px; background: #edf5f1; }.requirement-item small, .requirement-item strong { display: block; }.requirement-item small { margin-bottom: 3px; color: var(--muted); font-size: 8px; }.requirement-item strong { color: var(--green-dark); font-size: 10px; line-height: 1.45; }
.detail-body { padding: 19px 21px 21px; }.detail-section { margin-bottom: 19px; }.detail-section h3 { margin-bottom: 9px; font-size: 11px; }.detail-section p { margin: 0; color: #4f6058; font-size: 10px; line-height: 1.7; }.reason-list { display: grid; gap: 7px; }.reason { padding: 8px 10px; display: flex; align-items: center; gap: 8px; border-radius: 8px; background: var(--paper); font-size: 9px; }.reason::before { content: "✓"; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-weight: 900; }.risk { color: #855419 !important; padding: 9px 10px; border-left: 3px solid #e8a64f; background: var(--amber-soft); }.detail-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }.detail-actions .primary { min-height: 44px; }.source-link { display: inline-flex; margin-top: 9px; color: var(--green); font-size: 9px; }
.score-breakdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }.score-part { min-width: 0; padding: 8px; border: 1px solid var(--line); border-radius: 9px; background: #fbfcfb; }.score-part small, .score-part strong, .score-part span { display: block; }.score-part small { color: var(--muted); font-size: 7px; }.score-part strong { margin: 3px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 9px; }.score-part span { color: var(--green); font-size: 8px; font-weight: 800; }.score-part span.minus { color: #b34b3f; }
.detail-placeholder { min-height: 520px; padding: 40px 28px; display: grid; place-items: center; text-align: center; color: var(--muted); }.detail-placeholder span { display: block; font-size: 34px; }.detail-placeholder strong { display: block; margin: 9px 0 4px; color: var(--ink); }.detail-placeholder p { font-size: 10px; line-height: 1.6; }
.footer { padding: 22px 2px 0; display: flex; justify-content: space-between; gap: 18px; color: #849089; font-size: 9px; }.footer p { margin: 0; }.footer-copy { display: grid; gap: 5px; }.footer-links { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }.footer-links button, .footer-links a, .legal-inline-links button { border: 0; padding: 0; background: transparent; color: var(--green); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; font-size: inherit; }

.dialog { width: min(660px, calc(100vw - 28px)); max-height: calc(100vh - 40px); overflow-y: auto; border: 0; border-radius: 18px; padding: 0; color: var(--ink); box-shadow: 0 28px 90px rgba(8,35,25,.25); }.dialog::backdrop { background: rgba(9,28,21,.55); backdrop-filter: blur(4px); }.dialog form { padding: 25px; }.dialog-head { padding: 25px 25px 0; display: flex; justify-content: space-between; gap: 20px; }.dialog form .dialog-head { padding: 0; }.dialog-head h2 { font-size: 23px; }.dialog-head p:last-child { color: var(--muted); font-size: 11px; }.icon-button { width: 33px; height: 33px; border: 1px solid var(--line); border-radius: 9px; background: #fff; cursor: pointer; font-size: 20px; }
.profile-assurance { margin-top: 17px; padding: 11px 13px; display: grid; gap: 3px; border: 1px solid #cfe0d7; border-radius: 10px; background: #eef6f1; }
.profile-assurance strong { color: var(--green-dark); font-size: 10px; }
.profile-assurance span { color: var(--muted); font-size: 9px; line-height: 1.5; }
.onboarding-dialog { width: min(760px, calc(100vw - 24px)); }
.onboarding-dialog form { padding: 29px; }
.onboarding-hero { display: grid; grid-template-columns: 58px 1fr; gap: 17px; align-items: start; }
.onboarding-mark { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: var(--lime); color: #183a2d; font-size: 25px; font-weight: 900; }
.onboarding-hero h2 { margin-bottom: 8px; font-size: clamp(22px, 3vw, 30px); line-height: 1.35; }
.onboarding-hero p:last-child { margin-bottom: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.onboarding-points { margin-top: 21px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.onboarding-points div { padding: 11px 12px; border: 1px solid #d5e5dd; border-radius: 11px; background: #f4f9f6; }
.onboarding-points strong, .onboarding-points span { display: block; }
.onboarding-points strong { color: var(--green-dark); font-size: 10px; }
.onboarding-points span { margin-top: 3px; color: var(--muted); font-size: 8px; }
.onboarding-fields { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.onboarding-note { margin: 15px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.onboarding-actions { padding-top: 15px; }
.onboarding-actions .button { min-width: 220px; min-height: 46px; }
.form-grid { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.field { display: grid; gap: 7px; }.field.wide { grid-column: 1 / -1; }.field span { font-size: 10px; font-weight: 800; }.field input, .field select, .field textarea { min-height: 42px; width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 0 11px; outline: 0; background: #fff; }.field textarea { padding: 10px 11px; resize: vertical; line-height: 1.6; }.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }.dialog-actions { padding-top: 21px; display: flex; justify-content: flex-end; align-items: center; gap: 9px; }.draft-dialog { width: min(800px, calc(100vw - 28px)); }.draft-dialog textarea { width: calc(100% - 50px); min-height: 410px; margin: 20px 25px 0; resize: vertical; border: 1px solid var(--line); border-radius: 12px; padding: 18px; outline: 0; font-family: "Yu Gothic", Meiryo, sans-serif; font-size: 12px; line-height: 1.8; }.draft-dialog textarea:focus { border-color: var(--green); }.draft-dialog .dialog-actions { padding: 13px 25px 24px; }.copy-status { margin-right: auto; color: var(--green); font-size: 10px; }
.upgrade-dialog { width: min(610px, calc(100vw - 28px)); }.upgrade-summary { margin: 22px 25px 0; padding: 20px; display: grid; grid-template-columns: 170px 1fr; gap: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--green-soft); }.upgrade-price { display: grid; align-content: center; gap: 4px; border-right: 1px solid var(--line); }.upgrade-price strong { color: var(--green); font-size: 27px; }.upgrade-price span, .upgrade-note, .checkout-pending { color: var(--muted); font-size: 11px; }.upgrade-summary ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; font-size: 12px; }.upgrade-note { margin: 14px 25px 0; line-height: 1.7; }.legal-inline-links { margin: 9px 25px 0; display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 9px; }.upgrade-dialog .dialog-actions { padding: 18px 25px 24px; }.checkout-pending { padding: 11px 13px; border-radius: 9px; background: #f3f4f1; font-weight: 700; }
.legal-dialog { width: min(760px, calc(100vw - 28px)); }.legal-body { padding: 20px 25px 27px; }.legal-body section { padding: 15px 0; border-top: 1px solid var(--line); }.legal-body section:first-child { padding-top: 0; border-top: 0; }.legal-body h3 { margin-bottom: 7px; color: var(--green-dark); font-size: 12px; }.legal-body p { margin-bottom: 0; color: #506159; font-size: 10px; line-height: 1.85; }.legal-table { margin: 0; display: grid; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }.legal-table > div { display: grid; grid-template-columns: 180px 1fr; border-top: 1px solid var(--line); }.legal-table > div:first-child { border-top: 0; }.legal-table dt, .legal-table dd { margin: 0; padding: 13px 15px; font-size: 10px; line-height: 1.7; }.legal-table dt { background: #f0f5f2; color: var(--green-dark); font-weight: 800; }.legal-table dd { background: #fff; color: #506159; }.support-mail { display: inline-flex; padding: 10px 12px; border-radius: 9px; background: var(--green-soft); font-size: 12px; font-weight: 800; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 50; max-width: 330px; padding: 12px 15px; border-radius: 10px; background: #10261f; color: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; font-size: 11px; transition: .22s ease; }.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) { .metrics { grid-template-columns: repeat(2,1fr); }.workspace { grid-template-columns: 1fr; }.detail-panel { position: static; }.search { min-width: 190px; } }
@media (max-width: 760px) { .app-shell { display: block; }.sidebar { position: static; width: 100%; height: auto; padding: 16px; }.brand { padding-bottom: 13px; }.nav { display: flex; overflow-x: auto; }.nav-item { width: auto; min-width: max-content; }.sidebar-bottom { margin-top: 12px; grid-template-columns: 1fr 1fr; }.main { padding: 22px 14px; }.topbar { align-items: flex-start; flex-direction: column; }.top-actions { width: 100%; flex-wrap: wrap; }.search { flex: 1 1 100%; }.metrics { grid-template-columns: 1fr 1fr; }.workspace { display: block; }.detail-panel { margin-top: 14px; }.section-head { flex-direction: column; }.filters { width: 100%; }.filter { flex: 1; }.opportunity { grid-template-columns: 43px minmax(0,1fr); }.opportunity-value { grid-column: 2; display: flex; align-items: center; gap: 6px; text-align: left; }.opportunity-value small, .opportunity-value strong, .opportunity-value span { display: inline; margin: 0; }.footer { flex-direction: column; }.footer-links { justify-content: flex-start; }.form-grid { grid-template-columns: 1fr; }.field.wide { grid-column: auto; }.onboarding-dialog form { padding: 21px; }.onboarding-hero { grid-template-columns: 46px 1fr; gap: 12px; }.onboarding-mark { width: 46px; height: 46px; border-radius: 13px; font-size: 20px; }.onboarding-points { grid-template-columns: 1fr; }.onboarding-actions .button { width: 100%; }.legal-table > div { grid-template-columns: 1fr; }.legal-table dt, .legal-table dd { padding: 11px 13px; }.legal-table dd { border-top: 1px solid var(--line); } }
@media (max-width: 460px) { .metrics { grid-template-columns: 1fr; }.sidebar-bottom { grid-template-columns: 1fr; }.notice { align-items: flex-start; flex-direction: column; }.detail-stats, .requirement-grid { grid-template-columns: 1fr; }.score-breakdown { grid-template-columns: 1fr 1fr; }.upgrade-summary { grid-template-columns: 1fr; }.upgrade-price { padding-bottom: 14px; border-right: 0; border-bottom: 1px solid var(--line); }.upgrade-dialog .dialog-actions { align-items: stretch; flex-direction: column; } }

.guide-page { min-height: 100vh; background: #f5f7f4; }
.guide-header, .guide-main, .guide-footer { width: min(1040px, calc(100% - 32px)); margin-inline: auto; }
.guide-header { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.guide-header .brand { padding: 0; color: var(--ink); }
.guide-header .brand small { color: var(--muted); }
.guide-hero { padding: clamp(45px, 8vw, 92px) 0; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 7vw, 82px); align-items: center; }
.guide-hero h1 { max-width: 750px; font-size: clamp(34px, 5.5vw, 66px); line-height: 1.16; }
.guide-lead { max-width: 690px; color: #506159; font-size: clamp(14px, 1.7vw, 18px); line-height: 1.9; }
.guide-actions { margin-top: 25px; display: flex; gap: 10px; flex-wrap: wrap; }
.guide-visual { aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(184,221,126,.65) 0 4%, transparent 4.5% 24%, rgba(184,221,126,.28) 24.5% 25%, transparent 25.5% 47%, rgba(13,106,76,.22) 47.5% 48%, transparent 48.5%), #e8f3ed; color: var(--green-dark); font-size: clamp(30px, 6vw, 68px); font-weight: 900; }
.guide-section { padding: 58px 0; border-top: 1px solid var(--line); }
.guide-section > h2 { max-width: 720px; margin-bottom: 24px; font-size: clamp(25px, 3.5vw, 40px); }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.guide-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.guide-card strong { display: block; margin-bottom: 10px; color: var(--green-dark); font-size: 15px; }
.guide-card p, .guide-section li, .guide-faq p { margin-bottom: 0; color: #506159; font-size: 13px; line-height: 1.85; }
.guide-flow { counter-reset: guide-step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; list-style: none; }
.guide-flow li { counter-increment: guide-step; padding: 22px; border-left: 4px solid var(--lime); background: #fff; border-radius: 12px; }
.guide-flow li::before { content: "0" counter(guide-step); display: block; margin-bottom: 8px; color: var(--green); font-weight: 900; }
.guide-faq { display: grid; gap: 10px; }
.guide-faq details { padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.guide-faq summary { cursor: pointer; color: var(--green-dark); font-weight: 800; }
.guide-faq p { margin-top: 10px; }
.guide-cta { margin: 46px 0 70px; padding: clamp(28px, 5vw, 54px); display: flex; justify-content: space-between; align-items: center; gap: 25px; border-radius: 22px; background: #10261f; color: #fff; }
.guide-cta h2 { margin-bottom: 8px; font-size: clamp(24px, 3vw, 36px); }
.guide-cta p { margin-bottom: 0; color: #b9cec5; line-height: 1.7; }
.guide-footer { padding: 25px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
@media (max-width: 760px) { .guide-hero { grid-template-columns: 1fr; }.guide-visual { width: min(360px, 80vw); justify-self: center; }.guide-grid, .guide-flow { grid-template-columns: 1fr; }.guide-cta { align-items: flex-start; flex-direction: column; } }
