:root {
  --ink: #16221c;
  --muted: #607068;
  --primary: #12372a;
  --primary-2: #1f5a44;
  --accent: #d7a34a;
  --paper: #fffdf8;
  --soft: #f3f6f2;
  --line: #dce4dd;
  --white: #ffffff;
  --danger: #a84032;
  --shadow-sm: 0 8px 24px rgba(25, 50, 38, .08);
  --shadow-lg: 0 24px 70px rgba(18, 55, 42, .16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
code { padding: .12em .4em; border-radius: 6px; background: rgba(255,255,255,.12); font-size: .92em; }

.skip-link { position: fixed; left: 12px; top: -60px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 880px; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.centered { text-align: center; max-width: 760px; margin-inline: auto; }

.independent-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  background: #0b241a;
  color: #e8f3ec;
  font-size: 13px;
  letter-spacing: .02em;
}
.independent-bar strong { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(220, 228, 221, .8);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--primary); color: #fff; }
.brand-mark svg { width: 28px; height: 28px; stroke-width: 2; }
.brand b, .brand small { display: block; }
.brand b { font-size: 17px; letter-spacing: .04em; }
.brand small { margin-top: 1px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #35463d; font-size: 14px; font-weight: 600; }
.desktop-nav a:hover { color: var(--primary-2); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.button-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(18, 55, 42, .18); }
.button-primary:hover { background: var(--primary-2); box-shadow: 0 14px 30px rgba(18, 55, 42, .24); }
.button-ghost { background: transparent; color: var(--primary); border-color: #bccbbf; }
.button-ghost:hover { background: #fff; }
.button-lg { min-height: 54px; padding-inline: 28px; }
.button-sm { min-height: 40px; padding-inline: 18px; font-size: 14px; }
.button-full { width: 100%; }
.text-button { border: 0; background: transparent; color: var(--primary-2); cursor: pointer; font-weight: 700; }

.hero { position: relative; overflow: hidden; padding-top: 84px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 22%, rgba(215, 163, 74, .16), transparent 24%),
    radial-gradient(circle at 10% 72%, rgba(31, 90, 68, .08), transparent 28%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-block; margin-bottom: 14px; color: var(--primary-2); font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.light { color: #cce0d4; }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(44px, 6vw, 76px); line-height: 1.16; letter-spacing: -.045em; }
.hero h1 span { color: var(--primary-2); }
.hero-lead { max-width: 720px; margin: 26px 0 0; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-disclaimer { max-width: 740px; margin-top: 22px; padding-left: 16px; border-left: 3px solid var(--accent); color: #66736c; font-size: 13px; }
.hero-panel { padding: 30px; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius-lg); background: rgba(255,255,255,.82); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.panel-title { display: flex; align-items: center; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #2e9b64; box-shadow: 0 0 0 6px rgba(46,155,100,.12); }
.hero-steps { display: grid; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.hero-steps li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 14px; border-radius: 16px; background: #f7f9f6; }
.hero-steps > li > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 800; }
.hero-steps b, .hero-steps small { display: block; }
.hero-steps small { margin-top: 2px; color: var(--muted); }
.panel-note { display: flex; gap: 10px; align-items: flex-start; padding: 14px; border-radius: 14px; background: #fff8e9; color: #6f571f; font-size: 13px; }
.panel-note svg { flex: 0 0 auto; margin-top: 2px; }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 126px; padding: 18px; text-align: center; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid b { color: var(--primary); font-size: 34px; line-height: 1; }
.trust-grid span { margin-top: 8px; color: var(--muted); font-size: 13px; }

.section-heading { margin-bottom: 42px; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.25; letter-spacing: -.035em; }
.section-heading p { color: var(--muted); font-size: 16px; }
.section-heading.split { display: grid; grid-template-columns: 1fr .78fr; gap: 60px; align-items: end; }
.section-heading.split p { margin: 0 0 5px; }

.identity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.identity-card { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: left; cursor: pointer; transition: .2s ease; }
.identity-card:hover, .identity-card.active { transform: translateY(-4px); border-color: var(--primary-2); box-shadow: var(--shadow-sm); }
.identity-card.active::after { content: "已選擇"; position: absolute; top: 14px; right: 14px; color: var(--primary-2); font-size: 11px; font-weight: 800; }
.identity-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 18px; border-radius: 15px; background: #eaf1ec; color: var(--primary); font-weight: 800; }
.identity-card b, .identity-card small { display: block; }
.identity-card small { margin-top: 5px; color: var(--muted); line-height: 1.5; }

.category-toolbar { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.search-field { display: flex; align-items: center; flex: 1; max-width: 620px; min-height: 52px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.search-field svg { flex: 0 0 auto; color: var(--muted); }
.search-field input { width: 100%; padding: 0 12px; border: 0; outline: 0; background: transparent; color: var(--ink); }
.active-filter { display: inline-flex; gap: 6px; margin-bottom: 18px; padding: 8px 13px; border-radius: 999px; background: #e2eee7; color: var(--primary); font-size: 13px; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.category-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.category-card[hidden] { display: none; }
.category-head { width: 100%; display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center; padding: 22px; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.category-number { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: var(--primary); color: #fff; font-size: 13px; font-weight: 800; }
.category-title b { display: block; font-size: 18px; }
.category-title small { display: block; margin-top: 4px; color: var(--muted); }
.category-toggle { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--soft); font-size: 22px; transition: transform .2s ease; }
.category-card.open .category-toggle { transform: rotate(45deg); }
.category-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.category-card.open .category-body { max-height: 380px; }
.category-body-inner { padding: 0 22px 22px 94px; }
.category-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.category-tags span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: #435149; background: #fafcf9; font-size: 13px; }
.category-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.label { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.label-consult { background: #e2eee7; color: #15583d; }
.label-guide { background: #fff3d8; color: #7b5a17; }
.label-mixed { background: #e8edf5; color: #3f526f; }
.category-link { border: 0; background: transparent; color: var(--primary-2); font-size: 13px; font-weight: 800; cursor: pointer; }
.empty-state { padding: 40px; border: 1px dashed #b9c8bc; border-radius: var(--radius); text-align: center; color: var(--muted); }

.assessment-shell { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; padding: 0; border-radius: var(--radius-lg); background: var(--primary); box-shadow: var(--shadow-lg); }
.assessment-intro { padding: 54px; color: #fff; }
.assessment-intro h2 { margin: 0; font-size: 40px; line-height: 1.25; }
.assessment-intro p { color: #d9e6de; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #f1c36d; font-weight: 800; }
.assessment-card, .result-card { min-height: 520px; padding: 42px; background: #fff; }
.progress-row { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.progress-track { height: 7px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: #edf1ed; }
.progress-track span { display: block; height: 100%; width: 16.666%; border-radius: inherit; background: var(--accent); transition: width .25s ease; }
.question-block { padding: 38px 0 24px; }
.question-block h3 { margin: 0; font-size: 27px; line-height: 1.35; }
.question-block > p { margin: 8px 0 24px; color: var(--muted); }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option-button { min-height: 58px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); text-align: left; cursor: pointer; font-weight: 600; transition: .15s ease; }
.option-button:hover { border-color: #9eb2a4; background: #f8faf8; }
.option-button.selected { border-color: var(--primary); background: #e8f1eb; color: var(--primary); box-shadow: inset 0 0 0 1px var(--primary); }
.assessment-controls { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }
.result-card { display: flex; flex-direction: column; justify-content: center; }
.result-badge { align-self: flex-start; padding: 7px 12px; border-radius: 999px; background: #e3f0e8; color: var(--primary-2); font-size: 12px; font-weight: 800; }
.result-card h3 { margin: 16px 0 18px; font-size: 30px; }
.recommendations { display: grid; gap: 10px; }
.recommendation { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.recommendation strong { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--primary); color: #fff; font-size: 12px; }
.recommendation b, .recommendation small { display: block; }
.recommendation small { color: var(--muted); }
.result-notice { padding: 13px 15px; border-left: 3px solid var(--accent); background: #fff9ed; color: #655a42; font-size: 13px; }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-card > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 800; }
.service-card h3 { margin: 20px 0 8px; font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
.service-split > div { padding: 28px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.service-split h3 { margin: 12px 0 6px; }
.service-split p { margin: 0; color: var(--muted); }

.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.process-list li { position: relative; padding: 8px 26px 8px 0; }
.process-list li:not(:last-child)::after { content: ""; position: absolute; top: 28px; left: 54px; right: 12px; height: 1px; background: #b9c7bc; }
.process-list > li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; }
.process-list h3 { margin: 18px 0 6px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-question { display: grid; grid-template-columns: 1fr auto; gap: 16px; width: 100%; padding: 20px; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; font-weight: 700; }
.faq-question span:last-child { font-size: 22px; transition: transform .2s; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.contact-section { background: #183c2f; color: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-grid h2 { margin: 0; font-size: 42px; }
.contact-grid p { color: #d7e4dc; }
.company-info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.14); }
.company-info > div { padding: 20px; background: #1d4637; }
.company-info dt { color: #a9c1b4; font-size: 12px; }
.company-info dd { margin: 5px 0 0; font-weight: 700; }
.company-info a { text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 68px 0 0; background: #0b241a; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.8fr .6fr .6fr; gap: 60px; }
.brand-footer .brand-mark { background: #fff; color: var(--primary); }
.brand-footer small { color: #a7bcb0; }
.footer-disclaimer { max-width: 760px; margin: 24px 0 0; color: #a9beb2; font-size: 13px; }
.footer-links h3 { margin-top: 0; font-size: 15px; }
.footer-links a, .footer-links button { display: block; margin: 10px 0; padding: 0; border: 0; background: transparent; color: #b6c8be; text-align: left; cursor: pointer; font-size: 13px; }
.footer-links a:hover, .footer-links button:hover { color: #fff; }
.copyright { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); color: #82988c; font-size: 12px; }

.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 10px 14px max(10px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255,255,255,.95); backdrop-filter: blur(12px); }
.mobile-cta .button { width: 100%; }

.modal { width: min(calc(100% - 28px), 680px); padding: 0; border: 0; border-radius: 24px; background: transparent; color: var(--ink); }
.modal::backdrop { background: rgba(4, 18, 12, .68); backdrop-filter: blur(5px); }
.modal-card { position: relative; max-height: min(88vh, 820px); overflow: auto; padding: 34px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--soft); cursor: pointer; font-size: 24px; line-height: 1; }
.lead-form h2, .policy-card h2 { margin: 0; font-size: 30px; }
.lead-form > p { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0 16px; }
.form-grid label span { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: #fff; color: var(--ink); }
.form-grid input, .form-grid select { height: 48px; padding: 0 13px; }
.form-grid textarea { padding: 12px 13px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--primary-2); box-shadow: 0 0 0 3px rgba(31,90,68,.1); }
.full-field { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 20px; color: var(--muted); font-size: 12px; }
.consent input { flex: 0 0 auto; margin-top: 4px; }
.form-help { display: block; margin-top: 10px; color: var(--muted); text-align: center; }
.policy-card h3 { margin: 24px 0 6px; font-size: 17px; }
.policy-card p { color: var(--muted); }

.toast { position: fixed; left: 50%; bottom: 30px; z-index: 999; transform: translate(-50%, 30px); min-width: 260px; max-width: calc(100% - 30px); padding: 13px 18px; border-radius: 12px; background: #102d22; color: #fff; text-align: center; opacity: 0; pointer-events: none; transition: .25s ease; box-shadow: var(--shadow-lg); }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-grid, .assessment-shell, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .identity-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading.split { grid-template-columns: 1fr; gap: 12px; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .process-list li:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .independent-bar { display: block; padding: 8px 12px; text-align: center; font-size: 11px; }
  .independent-bar strong { display: block; }
  .header-inner { min-height: 66px; }
  .header-inner > .button { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-panel { padding: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading h2 { font-size: 34px; }
  .identity-grid, .category-grid, .service-grid, .service-split, .process-list, .company-info, .form-grid { grid-template-columns: 1fr; }
  .category-head { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 18px; }
  .category-number { width: 48px; height: 48px; }
  .category-body-inner { padding: 0 18px 18px; }
  .category-meta { align-items: flex-start; flex-direction: column; }
  .assessment-intro { padding: 34px 24px; }
  .assessment-intro h2 { font-size: 32px; }
  .assessment-card, .result-card { min-height: 560px; padding: 28px 20px; }
  .option-grid { grid-template-columns: 1fr; }
  .question-block h3 { font-size: 24px; }
  .recommendation { grid-template-columns: 42px 1fr; }
  .recommendation .label { grid-column: 2; justify-self: start; }
  .process-list li:not(:last-child)::after { display: none; }
  .contact-grid h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .mobile-cta { display: block; }
  .modal-card { padding: 28px 20px; }
  .full-field { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v1.1：個人 LINE 諮詢流程 */
.line-button { background: #12372a; }
.line-contact-card > p { color: var(--muted); }
.summary-field { display: block; margin-top: 22px; }
.summary-field > span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.summary-field textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  background: #f8faf8;
  color: var(--ink);
  resize: vertical;
  line-height: 1.65;
}
.summary-field textarea:focus { border-color: var(--primary-2); box-shadow: 0 0 0 3px rgba(31,90,68,.1); }
.line-identity {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.line-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #06c755;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
}
.line-identity small, .line-identity strong { display: block; }
.line-identity small { color: var(--muted); }
.line-identity strong { margin-top: 2px; }
.line-qr { width: 92px; height: 92px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; object-fit: contain; background: #fff; }
.line-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.button.disabled, .button[aria-disabled="true"] { opacity: .48; pointer-events: none; }
.company-info [data-line-link] { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .line-actions { grid-template-columns: 1fr; }
  .line-identity { grid-template-columns: 54px 1fr; }
  .line-qr { grid-column: 1 / -1; justify-self: center; width: 150px; height: 150px; }
}
