@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: 研究試薬コンパス — 研究に、最適な一択を。
Template: cocoon-master
Version: 2.0.0
*/

/* ==========================================================================
   0. CSS Variables (v2 Design System)
   ========================================================================== */
:root {
  --navy: #0E2A5C;
  --navy-deep: #091e4a;
  --navy-soft: #1B3A7A;
  --yellow: #F5B533;
  --yellow-dark: #D89A14;
  --bg: #F4F6FA;
  --bg-soft: #EDF1F8;
  --line: #E2E7F0;
  --line-strong: #CBD3E1;
  --ink: #0E1929;
  --ink-2: #3C475C;
  --ink-3: #6B7689;
  --white: #ffffff;
  --chip-bg: #F1F5FB;
  --chip-border: #D6DEEA;
}

/* ==========================================================================
   1. Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--navy); }
img { display: block; max-width: 100%; height: auto; }

/* ==========================================================================
   2. Layout Containers
   ========================================================================== */
.lc-page {
  width: 100%;
  margin: 0;
  background: var(--white);
}

.lc-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .lc-container { padding: 0 20px; }
}

/* ==========================================================================
   3. Header (v2)
   ========================================================================== */
.lc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.lc-header-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lc-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lc-logo-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

.lc-logo-text b {
  display: block;
  font-size: 18px; font-weight: 800;
  letter-spacing: .04em;
  color: var(--ink);
  line-height: 1.2;
}

.lc-logo-text span {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .06em;
  font-weight: 500;
}

.lc-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.lc-nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 8px 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.lc-nav a.active { color: var(--navy); border-bottom-color: var(--navy); }
.lc-nav a:hover { color: var(--navy); }

.lc-header-icons {
  display: flex; gap: 12px;
}

.lc-header-icons .ic {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.lc-header-icons .ic:hover { background: var(--navy); color: #fff; }

/* ==========================================================================
   4. Hero Section (v2)
   ========================================================================== */
.lc-hero {
  position: relative;
  background: linear-gradient(180deg, #EDF2F9 0%, #E2EAF5 100%);
  overflow: hidden;
}

.lc-hero-photo {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    linear-gradient(90deg, rgba(237,242,249,1) 0%, rgba(237,242,249,0) 25%),
    repeating-linear-gradient(135deg, #cfdbe9 0 16px, #dbe5f0 16px 32px);
}


.lc-hero-body {
  position: relative; z-index: 3;
  padding: 70px 0 80px;
  width: 58%;
}

.lc-hero-eyebrow {
  display: inline-block;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em;
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--navy);
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.lc-hero-title {
  font-size: 44px;
  line-height: 1.4;
  font-weight: 800;
  margin: 0 0 24px;
  color: var(--ink);
  letter-spacing: .01em;
}

.lc-hero-title em {
  font-style: normal;
  color: var(--navy);
  background: linear-gradient(transparent 70%, #FCE9B8 70%);
  padding: 0 4px;
}

.lc-hero-sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.9;
  margin: 0;
  font-weight: 500;
  max-width: 540px;
}

/* ==========================================================================
   5. Matrix Search Panel (v2)
   ========================================================================== */
.lc-matrix-wrap {
  position: relative; z-index: 6;
  padding: 40px 0 50px;
  background: #fff;
}

.lc-matrix {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 36px 44px 40px;
  box-shadow: 0 24px 60px rgba(11,36,86,.28);
}

.lc-matrix-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  margin-bottom: 24px;
  gap: 20px;
}

.lc-matrix-header h2 {
  font-size: 24px; font-weight: 800; margin: 0;
  letter-spacing: .02em; line-height: 1.4;
}

.lc-matrix-header h2 .x { display: inline-block; margin: 0 8px; opacity: .6; font-weight: 300; }
.lc-matrix-header h2 .small { font-size: 14px; font-weight: 500; opacity: .85; display: block; margin-top: 5px; }

.lc-matrix-header .step-hint {
  font-size: 12px; color: #a8b6d3;
  font-family: "Inter", monospace;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  flex-shrink: 0;
}

.lc-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0 18px;
  align-items: start;
  margin-bottom: 24px;
}

.lc-matrix-col .step {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}

.lc-matrix-col .step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--yellow); color: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif; font-weight: 800; font-size: 13px;
}

.lc-matrix-col .step-label { font-size: 15px; font-weight: 700; color: #fff; }
.lc-matrix-col .step-sub { font-size: 11px; color: #a8b6d3; margin-left: auto; font-weight: 500; }

.lc-matrix-input {
  background: #fff; border-radius: 6px;
  display: flex; align-items: center;
  padding: 0 16px; height: 54px;
  color: var(--ink);
}

.lc-matrix-input select,
.lc-matrix-input input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 14px; color: var(--ink); font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
}

.lc-matrix-input select { cursor: pointer; }
.lc-matrix-input input::placeholder,
.lc-matrix-input select option:first-child { color: #9aa3b6; font-weight: 400; }

.lc-x-mark {
  color: #fff; font-weight: 300; font-size: 32px;
  align-self: center; text-align: center;
  margin-top: 38px; opacity: .6;
}

.lc-quick { margin-top: 14px; }
.lc-quick-label {
  font-size: 12px; color: #cdd6e9; margin-bottom: 10px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.lc-quick-label::before { content: ""; width: 14px; height: 1px; background: #cdd6e9; }

.lc-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lc-chip {
  font-size: 13px; color: #fff; font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.22);
  padding: 7px 14px; border-radius: 6px;
  cursor: pointer; line-height: 1.4;
  transition: .15s;
}
.lc-chip:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }

.lc-matrix-cta-row {
  display: flex; align-items: center; gap: 16px;
  padding-top: 8px;
}

.lc-cta-btn {
  background: var(--yellow);
  color: var(--navy-deep);
  border: none; border-radius: 8px;
  padding: 18px 36px;
  font-size: 16px; font-weight: 800;
  font-family: inherit;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--yellow-dark);
  transition: .1s;
  flex: 1; justify-content: center;
}

.lc-cta-btn:hover { background: #FFC34A; transform: translateY(-1px); box-shadow: 0 6px 0 var(--yellow-dark); }
.lc-cta-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--yellow-dark); }

.lc-cta-secondary {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 8px;
  padding: 18px 24px;
  font-size: 14px; font-weight: 600;
  font-family: inherit; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.lc-cta-secondary:hover { border-color: #fff; background: rgba(255,255,255,.06); color: #fff; }

/* ==========================================================================
   6. Trust Pills (v2)
   ========================================================================== */
.lc-trust-pills {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  padding-top: 8px;
}

.lc-pill {
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 16px;
}

.lc-pill .ic {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--bg-soft); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lc-pill b { font-size: 15px; font-weight: 800; color: var(--ink); display: block; margin-bottom: 2px; }
.lc-pill span { font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ==========================================================================
   7. Section Common (v2)
   ========================================================================== */
.lc-section { padding: 80px 0; }

.lc-section-head {
  text-align: center;
  margin-bottom: 44px;
}

.lc-section-eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lc-section-head h2 {
  font-size: 32px; font-weight: 800; margin: 0 0 12px;
  color: var(--ink); letter-spacing: .02em; line-height: 1.4;
}

.lc-section-head .lead {
  font-size: 15px; color: var(--ink-2); margin: 0 auto;
  max-width: 660px; line-height: 1.9;
}

/* ==========================================================================
   8. Explainer Section (v2)
   ========================================================================== */
.lc-explainer { background: var(--bg); padding: 80px 0; }

.lc-explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.lc-explainer h2 {
  font-size: 32px; font-weight: 800; margin: 12px 0 18px;
  color: var(--ink); line-height: 1.45; letter-spacing: .01em;
}

.lc-explainer .lead { font-size: 15px; color: var(--ink-2); line-height: 1.9; margin: 0 0 24px; }

.lc-pain-box {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 24px 28px;
}

.lc-pain-box b {
  font-size: 14px; display: block; margin-bottom: 12px; color: var(--ink); font-weight: 800;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}

.lc-pain-box ul { margin: 0; padding: 0; list-style: none; }
.lc-pain-box li {
  font-size: 14px; color: var(--ink);
  padding: 9px 0 9px 30px;
  position: relative; line-height: 1.7; font-weight: 500;
}

.lc-pain-box li::before {
  content: "";
  position: absolute; left: 4px; top: 16px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--navy);
  border-bottom: 2.5px solid var(--navy);
  transform: rotate(-45deg);
}

.lc-matrix-diagram {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1.5px solid var(--line);
}

/* ==========================================================================
   9. Browse Grid (v2)
   ========================================================================== */
.lc-browse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.lc-browse-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 28px 32px 24px;
  transition: .18s;
  display: flex; flex-direction: column;
}

.lc-browse-card:hover {
  border-color: var(--navy);
  box-shadow: 0 12px 30px rgba(11,36,86,.08);
  transform: translateY(-2px);
}

.bc-head {
  display: flex; align-items: flex-start; gap: 16px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}

.bc-num {
  font-family: "Inter", sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: .12em;
  margin-bottom: 4px; display: block;
}

.bc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.bc-title { flex: 1; }
.bc-title b { font-size: 20px; font-weight: 800; color: var(--ink); display: block; line-height: 1.3; }
.bc-title span { font-size: 12px; color: var(--ink-3); display: block; margin-top: 3px; font-weight: 500; }

.bc-count-wrap { text-align: center; flex-shrink: 0; }
.bc-count {
  font-family: "Inter", sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--navy); line-height: 1; display: block;
}
.bc-count-label { font-size: 10px; color: var(--ink-3); font-weight: 600; letter-spacing: .1em; margin-top: 2px; display: block; }

.bc-list {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin: 0; padding: 0;
}

.bc-list li {
  list-style: none;
  font-size: 13px; color: var(--ink); font-weight: 600;
  background: var(--chip-bg);
  border: 1.5px solid var(--chip-border);
  padding: 7px 12px; border-radius: 6px;
  line-height: 1.4;
}

.bc-list li:hover { background: var(--bg-soft); border-color: var(--navy); color: var(--navy); cursor: pointer; }

.bc-foot {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px; color: var(--navy); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.bc-foot::after { content: "\2192"; font-size: 16px; transition: .15s; }
.lc-browse-card:hover .bc-foot::after { transform: translateX(4px); }

/* ==========================================================================
   10. Hub Cards (v2)
   ========================================================================== */
.lc-hub-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}

.lc-hub-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 32px 36px;
}

.lc-hub-card .head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.lc-hub-card .head .ic {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lc-hub-card .head b { font-size: 20px; font-weight: 800; color: var(--ink); display: block; line-height: 1.3; }
.lc-hub-card .head span { font-size: 12px; color: var(--ink-3); display: block; margin-top: 3px; font-weight: 500; }

.lc-hub-card p { font-size: 14px; color: var(--ink-2); line-height: 1.9; margin: 0 0 18px; }

.lc-hub-list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; border-top: 1.5px solid var(--line); }
.lc-hub-list li {
  border-bottom: 1.5px solid var(--line);
  padding: 14px 4px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink); font-weight: 600;
  cursor: pointer;
}
.lc-hub-list li:hover { color: var(--navy); }
.lc-hub-list li .arr { margin-left: auto; color: var(--ink-3); font-size: 20px; font-weight: 300; }
.lc-hub-list li:hover .arr { color: var(--navy); }

.lc-hub-tag {
  font-family: "Inter", sans-serif; font-size: 10px;
  color: var(--navy); font-weight: 700;
  letter-spacing: .06em;
  background: var(--bg-soft); padding: 3px 8px; border-radius: 4px;
  margin-left: auto;
}

/* ==========================================================================
   11. Trust Block (v2)
   ========================================================================== */
.lc-trust-block { background: var(--bg); padding: 70px 0; }

.lc-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.lc-trust-grid .item {
  background: #fff; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 26px 24px; text-align: center;
}

.lc-trust-grid .item .ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin: 0 auto 14px;
}

.lc-trust-grid .item b { font-size: 15px; display: block; color: var(--ink); font-weight: 800; margin-bottom: 6px; }
.lc-trust-grid .item span { font-size: 13px; color: var(--ink-2); line-height: 1.8; }

/* ==========================================================================
   12. CTA Bar (v2)
   ========================================================================== */
.lc-cta-bar {
  background: var(--navy-deep);
  color: #fff;
  padding: 32px 0;
}

.lc-cta-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

.lc-cta-bar-inner .msg {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; font-weight: 600;
}

.lc-cta-bar-inner .msg svg { flex-shrink: 0; color: var(--yellow); }

.lc-cta-bar-inner button {
  background: var(--yellow); color: var(--navy-deep);
  border: none; border-radius: 8px;
  padding: 16px 32px; font-size: 15px; font-weight: 800;
  font-family: inherit; cursor: pointer;
  box-shadow: 0 4px 0 var(--yellow-dark);
  white-space: nowrap;
}

.lc-cta-bar-inner button:hover { background: #FFC34A; }

/* ==========================================================================
   13. Footer (v2)
   ========================================================================== */
.lc-footer {
  background: #06173b;
  color: #aab4cc;
  padding: 50px 0 28px;
  font-size: 14px;
}

.lc-foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
  margin-bottom: 36px;
}

.lc-foot-grid h4 { color: #fff; font-size: 13px; margin: 0 0 14px; font-weight: 700; letter-spacing: .04em; }
.lc-foot-grid ul { margin: 0; padding: 0; list-style: none; }
.lc-foot-grid li { margin: 8px 0; line-height: 1.5; }
.lc-foot-grid li a:hover { color: #fff; }

.lc-foot-bottom {
  border-top: 1px solid #1a2c52; padding-top: 18px;
  display: flex; justify-content: space-between;
  color: #7a86a4;
  font-family: "Inter", sans-serif; font-size: 12px;
}

.lc-foot-logo b { color: #fff; font-size: 16px; display: block; letter-spacing: .04em; margin-bottom: 6px; font-weight: 800; }
.lc-foot-logo span { display: block; line-height: 1.7; }

/* ==========================================================================
   14. Article Single (v2 — 下層ページ共通)
   ========================================================================== */
.entry-content,
.article-main,
.main {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
}

.entry-content h2,
.article h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  border-left: 4px solid var(--navy);
  padding-left: 16px;
  margin: 48px 0 20px;
  line-height: 1.4;
}

.entry-content h3,
.article h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}

.entry-content h4,
.article h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}

.entry-content p,
.article p {
  margin: 0 0 20px;
  line-height: 1.9;
}

.entry-content a { color: var(--navy); text-decoration: underline; }
.entry-content a:hover { color: var(--navy-soft); }

/* Comparison Table */
.lc-comparison-table {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 10px;
  border: 1.5px solid var(--line);
}

.lc-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.lc-comparison-table th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  letter-spacing: .02em;
  white-space: nowrap;
}

.lc-comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.lc-comparison-table tr:nth-child(even) td {
  background: var(--bg);
}

.lc-comparison-table tr:hover td {
  background: var(--bg-soft);
}

/* FAQ */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin: 14px 0;
  overflow: hidden;
}

.faq-question {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
}

.faq-answer {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  color: var(--ink-2);
  line-height: 1.8;
}

.faq-badge {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.faq-badge-a { background: var(--yellow); color: var(--navy-deep); }

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-3);
  padding: 14px 0;
}

.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   15. Static Pages (固定ページ — v2)
   ========================================================================== */
.lc-static-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.lc-static-page h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--navy);
}

.lc-static-page h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 16px;
  border-left: 4px solid var(--navy);
  padding-left: 14px;
}

.lc-static-page p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0 0 18px;
}

.lc-static-page ul,
.lc-static-page ol {
  padding-left: 24px;
  margin: 0 0 18px;
}

.lc-static-page li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  margin: 6px 0;
}

/* Contact Form */
.lc-contact-form {
  max-width: 600px;
  margin: 24px auto;
}

.lc-contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.lc-contact-form input,
.lc-contact-form textarea,
.lc-contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}

.lc-contact-form input:focus,
.lc-contact-form textarea:focus {
  border-color: var(--navy);
  outline: none;
}

.lc-contact-form button[type="submit"] {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.lc-contact-form button[type="submit"]:hover { background: var(--navy-soft); }

/* ==========================================================================
   16. Category Archive (v2)
   ========================================================================== */
.lc-archive-header {
  background: var(--navy);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.lc-archive-header h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}

.lc-archive-header p {
  font-size: 14px;
  opacity: .8;
  margin: 0;
}

.lc-article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px 0;
}

.lc-article-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: .18s;
}

.lc-article-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(11,36,86,.08);
  transform: translateY(-2px);
}

.lc-article-card .thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.lc-article-card .card-body {
  padding: 20px 24px;
}

.lc-article-card .cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.lc-article-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.5;
}

.lc-article-card .excerpt {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   17. Cocoon Overrides
   ========================================================================== */
/* Hide Cocoon default elements */
#header-container,
.header-container,
.navi-in,
.footer,
#footer,
.go-to-top,
.sns-share,
.sns-follow,
.under-entry-content,
.breadcrumb-category,
.author-box,
.related-entries,
.pager-post-navi,
.comment-btn,
.sidebar {
  display: none !important;
}

/* Main content area */
#content-in,
.content-in {
  display: block;
}

#main,
.main {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}

.no-sidebar #main,
.no-sidebar .main {
  width: 100%;
}

/* Override Cocoon article wrapper */
.article {
  background: var(--white);
  padding: 0;
  border: none;
  box-shadow: none;
}

/* Override Cocoon entry title */
.entry-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 20px;
  padding: 40px 50px 0;
}

/* Override Cocoon date/meta */
.date-tags {
  padding: 0 50px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--ink-3);
}

/* Entry content padding */
.entry-content {
  padding: 0 50px 40px;
}

/* ==========================================================================
   18. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .lc-hero-body { width: 65%; }
  .lc-hero-title { font-size: 36px; }
  .lc-matrix-grid { grid-template-columns: 1fr; }
  .lc-x-mark { display: none; }
  .lc-browse-grid { grid-template-columns: 1fr; }
  .lc-hub-grid { grid-template-columns: 1fr; }
  .lc-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .lc-foot-grid { grid-template-columns: 1fr 1fr; }
  .lc-article-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lc-header-row { flex-wrap: wrap; gap: 12px; }
  .lc-nav { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .lc-nav a { font-size: 12px; }

  .lc-hero-body { width: 100%; padding: 40px 0 50px; }
  .lc-hero-photo { display: none; }
  .lc-hero-title { font-size: 28px; }
  .lc-hero-sub { font-size: 14px; }

  .lc-matrix { padding: 24px 20px 28px; }
  .lc-matrix-header h2 { font-size: 20px; }
  .lc-matrix-cta-row { flex-direction: column; }
  .lc-cta-btn { padding: 16px 24px; font-size: 15px; }

  .lc-trust-pills { grid-template-columns: 1fr; }
  .lc-trust-grid { grid-template-columns: 1fr; }
  .lc-foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .lc-foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .lc-section { padding: 50px 0; }
  .lc-section-head h2 { font-size: 24px; }
  .lc-explainer-grid { grid-template-columns: 1fr; }
  .lc-cta-bar-inner { flex-direction: column; text-align: center; gap: 16px; }

  .entry-title { font-size: 24px; padding: 24px 20px 0; }
  .entry-content { padding: 0 20px 30px; }
  .date-tags { padding: 0 20px; }
}
