/* ═══════════════════════════════════════════════
   SoilMend — Unified Stylesheet
   Covers: index.html + lawn-diagnostic.html
   ═══════════════════════════════════════════════ */

:root {
  --green:       #6b8e23;
  --green-dark:  #556b1c;
  --green-light: #9bb300;
  --brown:       #8b5e3c;
  --brown-light: #c49a6c;
  --bg:          #f5f0e1;
  --card:        #f9f9f9;
  --teal:        #2e7d72;
  --amber:       #e07b28;
  --text:        #333;
  --text-dark:   #333;
  --text-light:  #555;
  --muted:       #666;
  --border:      #ddd5c0;
}

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, .section-title { font-family: 'Nunito', sans-serif; }

a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }

/* ── TOPBAR ── */
.topbar {
  background: #1f3d12;
  color: #c8e89a;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  padding: 8px 20px;
}
.topbar a { color: #9bb300; margin: 0 12px; }
.leaf-sep {
  width: 10px; height: 10px;
  vertical-align: middle;
  display: inline-block;
  margin: 0 4px;
  opacity: .9;
}

/* ── HEADER ── */
header {
  background: linear-gradient(160deg, #4a6e10 0%, #6b8e23 55%, #7da83a 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px,
    transparent 1px, transparent 20px
  );
  pointer-events: none;
}
header h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 740px;
  margin: 0 auto 18px;
  color: white;
}
header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.85);
}

/* ── BRAND / LOGO ── */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.brand-sub {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: -4px;
}

/* ── HEADER PILLS ── */
.header-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

/* ── CTA BUTTON (index.html style) ── */
.cta {
  display: inline-block;
  background: white;
  color: var(--green);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.cta:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ── SECTIONS ── */
section {
  max-width: 1000px;
  margin: auto;
  padding: 70px 20px;
  text-align: center;
}
h2 { font-size: 2rem; margin-bottom: 20px; }
p { color: var(--text-light); }

/* Diagnostic-page section wrapper */
.section { max-width: 1040px; margin: 0 auto; padding: 64px 24px; }
.section-label {
  display: inline-block;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); border: 2px solid var(--green);
  padding: 4px 12px; border-radius: 4px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--text); margin-bottom: 8px; font-weight: 900;
}
.section-sub { color: var(--muted); max-width: 600px; font-size: .97rem; margin-bottom: 40px; }

/* ── SOIL DIVIDER ── */
.soil-divider {
  height: 24px;
  background: linear-gradient(180deg, #7da83a 0%, #8b5e3c 100%);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

/* ── GRID LAYOUT ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ── CARDS ── */
.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.card h3 { color: var(--green); margin-top: 0; }

/* Flow arrows between cards */
.flow { position: relative; }
.flow::after {
  content: "→";
  position: absolute; right: -35px; top: 45%;
  transform: translateY(-50%);
  font-size: 4rem; color: var(--green);
  font-weight: bold; z-index: 1; font-family: monospace;
}
.flow:last-child::after { content: ""; }

/* ── DEMO SECTION ── */
.demo-section { background: white; border-radius: 20px; }
.demo-input-group { margin-bottom: 20px; }
#demo img { max-width: 300px; max-height: 300px; border-radius: 12px; }
#demo-result { margin-top: 20px; font-weight: 700; color: var(--green); display: none; }
.demo-result { display: none; margin-top: 30px; }

/* Canvas comparison */
.canvas-comparison {
  display: flex; gap: 20px; margin-top: 20px;
  flex-wrap: wrap; justify-content: center;
}
.canvas-wrapper { text-align: center; }
.canvas-display {
  display: none; border-radius: 12px;
  border: 2px solid #ddd; max-width: 100%;
}

/* ── PREVIEW GRID ── */
#lawnPreview img { display: none; }
.preview-grid { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.preview-grid img, .grass-card img { height: 200px; }

/* ── LOCATION & SLOPE ── */
.location-details { margin-top: 20px; }
.location-details summary { cursor: pointer; font-weight: 600; }
.location-input-wrapper { margin-top: 12px; }
.location-input-wrapper input { margin-left: 8px; width: 120px; }
.slope-input-wrapper { margin-top: 10px; }
.slope-input-wrapper select { margin-left: 8px; }

/* ── GRASS IDENTIFICATION ── */
.grass-id-section { display: none; }
.grass-layout { display: flex; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
.user-grass-container { flex: 1; min-width: 260px; }
.user-grass-note { font-size: .9em; opacity: .7; margin-top: 8px; }
.grass-comparison-container { flex: 2; min-width: 300px; }
.grass-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.grass-rules-panel { margin-top: 30px; }
.grass-card {
  padding: 10px; cursor: pointer; background: var(--card);
  border-radius: 10px; transition: transform .15s, box-shadow .15s;
}
.grass-card:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,.08); }
.grass-card ul, .grass-card ul li { padding-left: 0; margin: 0; list-style: none; }
.grass-rules-card { border: 1px solid #dcdcdc; border-radius: 10px; padding: 16px; background: #fdfdf8; }

/* ── SEGMENTATION BAR ── */
.segmentation-bar {
  display: flex; width: 100%; height: 40px;
  border-radius: 8px; overflow: hidden;
  font-weight: bold; margin-bottom: 25px;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.segmentation-bar div {
  display: flex; align-items: center; justify-content: center;
  color: white; position: relative; font-size: 12px; transition: all 0.3s ease;
}
.segmentation-bar div span {
  position: absolute; top: 2px; left: 50%;
  transform: translateX(-50%); font-size: 12px; white-space: nowrap;
}

/* ── DEMO RESULT ── */
#demo-result h3, #demo-result h4 { margin-bottom: 12px; color: #2c3e50; }
#demo-result p { margin-bottom: 25px; }

/* ── PLAN CARDS ── */
.plan-week {
  background: var(--card); border-radius: 10px;
  padding: 15px 20px; margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-week:hover { transform: translateY(-3px); box-shadow: 0 5px 10px rgba(0,0,0,.15); }
.plan-week strong { display: block; font-size: 1.1em; margin-bottom: 8px; color: #27ae60; }
.plan-week ul { padding-left: 20px; margin: 0; }
.plan-week ul li { margin-bottom: 6px; list-style-type: none; }

/* ── PROGRESS BAR ── */
.progress-container { width: 100%; max-width: 600px; margin: 20px auto; display: none; }
.progress-bar {
  width: 100%; height: 30px; background: #e0e0e0;
  border-radius: 15px; overflow: hidden; position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,.1);
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  width: 0%; transition: width 0.3s ease;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: bold; font-size: 14px;
}
.progress-text { text-align: center; margin-top: 8px; color: var(--text-light); font-size: 14px; }

/* ── SOIL UPLOAD PROMPT ── */
.soil-prompt {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
  border: 2px solid #ff9800; border-radius: 16px;
  padding: 25px; margin-top: 30px;
  box-shadow: 0 4px 12px rgba(255,152,0,.2);
  animation: slideIn 0.3s ease-out;
}
.soil-prompt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.soil-prompt-header h3 { margin: 0; color: #e65100; }
.collapse-btn {
  background: #ff9800; color: white; border: none;
  padding: 8px 16px; border-radius: 8px;
  cursor: pointer; font-weight: 600; transition: background 0.2s;
}
.collapse-btn:hover { background: #f57c00; }
.soil-prompt-content p { margin: 10px 0; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TOOLTIPS ── */
.tooltip-trigger {
  color: var(--green); text-decoration: underline;
  text-decoration-style: dotted; cursor: help;
  position: relative; font-weight: 600;
}
.tooltip-trigger:hover { color: var(--green-dark); }
.tooltip-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 1000;
  padding: 20px; overflow-y: auto;
}
.tooltip-modal.active { display: flex; align-items: center; justify-content: center; }
.tooltip-content {
  background: white; border-radius: 16px; padding: 30px;
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.3); position: relative;
}
.tooltip-close {
  position: absolute; top: 15px; right: 15px;
  background: var(--green); color: white; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 20px; line-height: 1; transition: background 0.2s;
}
.tooltip-close:hover { background: var(--green-dark); }
.tooltip-content h3 { color: var(--green); margin-top: 0; margin-bottom: 15px; font-size: 1.5rem; }
.tooltip-content h4 { color: var(--green-dark); margin-top: 20px; margin-bottom: 10px; }
.tooltip-content ul { padding-left: 25px; margin: 10px 0; }
.tooltip-content ul li { margin-bottom: 8px; line-height: 1.6; }
.tooltip-content table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.tooltip-content table th,
.tooltip-content table td { padding: 10px; text-align: left; border-bottom: 1px solid #ddd; }
.tooltip-content table th { background: var(--bg); color: var(--text); font-weight: 700; }
.location-badge {
  display: inline-block; background: var(--green); color: white;
  padding: 6px 12px; border-radius: 20px; font-size: .9em; margin: 10px 0; font-weight: 600;
}

/* ── BADGES ── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; white-space: nowrap;
}
.badge-drought { background: #fff3cd; color: #7a5500; }
.badge-fungal  { background: #fce4ec; color: #880e3a; }
.badge-moss    { background: #e3f2e0; color: #2e6b1c; }
.badge-grub    { background: #fce9d9; color: #7a3000; }

/* ── DIAGNOSTIC MATRIX ── */
.matrix-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.matrix-table thead { background: #2c4a0e; color: #c8e89a; }
.matrix-table thead th {
  padding: 14px 20px; font-size: .82rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  text-align: left; border-bottom: none;
}
.matrix-table tbody tr { background: var(--card); transition: background .15s; }
.matrix-table tbody tr:hover { background: #f0ede0; }
.matrix-table tbody tr:nth-child(even) { background: #f7f4ea; }
.matrix-table tbody tr:nth-child(even):hover { background: #ede9d8; }
.matrix-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  vertical-align: top; font-size: .93rem;
}
.matrix-table td:first-child { font-weight: 600; color: var(--text); }
.fix-text { color: var(--green-dark); font-weight: 700; font-size: .88rem; }
.fix-text::before { content: "→ "; color: var(--green); }

/* ── FIELD TEST CARDS ── */
.tests-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.test-card {
  background: var(--card); border-radius: 16px;
  border: 1.5px solid var(--border); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.test-card-top { padding: 24px 24px 0; display: flex; align-items: flex-start; gap: 14px; }
.test-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0; font-size: 1.4rem;
}
.icon-brown { background: #f3e4d1; }
.icon-green { background: #e2f0c8; }
.test-card-top h3 { font-size: 1rem; font-weight: 800; line-height: 1.3; color: var(--text); }
.test-card-top .sub { font-size: .8rem; color: var(--muted); font-weight: 600; }
.test-body { padding: 20px 24px; }
.step-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: .88rem; }
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: white;
  font-size: .72rem; font-weight: 800;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
}
.step-label { font-weight: 700; color: var(--text); }
.step-note { color: var(--muted); }
.result-block { background: #f5f0e1; border-radius: 10px; padding: 14px 16px; margin: 14px 0; }
.result-row { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 6px; }
.result-row:last-child { margin-bottom: 0; }
.check { color: #27a745; font-size: 1rem; font-weight: 900; }
.cross { color: #dc3545; font-size: 1rem; font-weight: 900; }
.result-good { font-weight: 700; color: var(--green-dark); }
.result-bad  { font-weight: 700; color: #b00000; }
.solution-bar {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 0 0 14px 14px;
  padding: 12px 20px; color: white; font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.solution-bar strong { color: #d4f07a; }

/* ── SOIL PROFILE ── */
.profile-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.profile-stack { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.layer {
  padding: 32px 24px; display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(0,0,0,.06); font-size: .9rem;
}
.layer:last-child { border-bottom: none; }
.layer-icon { font-size: 1.3rem; width: 36px; text-align: center; flex-shrink: 0; }
.layer-name { font-weight: 800; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.layer-desc { color: var(--muted); font-size: 1rem; margin-top: 2px; }
.l1 { background: #c8e6a0; }
.l2 { background: #b5cf86; }
.l3 { background: #a5742f; color: white; }
.l3 .layer-desc { color: rgba(255,255,255,.75); }
.l4 { background: #8b5e3c; color: white; }
.l4 .layer-desc { color: rgba(255,255,255,.7); }
.l5 { background: #6b4226; color: white; }
.l5 .layer-desc { color: rgba(255,255,255,.65); }

/* ── FORMULA CARD ── */
.formula-card {
  background: var(--card); border-radius: 16px;
  border: 1.5px solid var(--border); padding: 30px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.formula-display {
  background: #1f3d12; border-radius: 12px;
  padding: 22px; text-align: center;
  font-family: 'Courier New', monospace;
  color: #c8e89a; font-size: .95rem; line-height: 2; margin: 20px 0;
}
.fraction { display: inline-block; vertical-align: middle; text-align: center; }
.fraction .numer, .fraction .denom { display: block; padding: 2px 8px; }
.fraction .numer { border-bottom: 2px solid #9bb300; }
.formula-eq   { vertical-align: middle; color: #9bb300; font-size: 1.1rem; font-weight: bold; margin: 0 8px; }
.formula-times{ vertical-align: middle; color: #c8e89a; margin: 0 6px; }
.pro-tip {
  background: #fffbe6; border-left: 4px solid var(--amber);
  border-radius: 0 10px 10px 0; padding: 16px 18px; margin-top: 20px; font-size: .88rem;
}
.pro-tip strong { color: var(--amber); display: block; margin-bottom: 4px; }
.pro-tip p { color: var(--muted); margin: 0; }

/* ── FOOTER CTA (diagnostic page) ── */
.footer-cta {
  background: linear-gradient(135deg, #2c4a0e 0%, #4a6e10 100%);
  padding: 64px 24px; text-align: center; color: white;
}
.footer-cta h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 10px; }
.footer-cta p { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 32px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-primary {
  background: #9bb300; color: #1a2e00;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 800; font-size: .95rem;
  transition: background .2s, transform .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #b9d44a; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: .95rem;
  transition: border-color .2s, background .2s, transform .2s; cursor: pointer;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.08); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: white; text-align: center; padding: 40px 20px;
}
footer p, footer a { color: white; margin: 0 10px; font-weight: 700; }

/* ── MISC ── */
#logo { height: 72px; margin-bottom: 1.25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  header h1 { font-size: 2rem; }
  .flow::after { display: none; }
  section { padding: 20px; }
  svg { width: 60%; height: 60%; }
  .matrix-table thead th:nth-child(3),
  .matrix-table td:nth-child(3) { display: none; }
  .profile-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .segmentation-bar { height: 30px; }
  .segmentation-bar div span { font-size: 10px; }
  svg { width: 40%; height: 40%; }
}

.guide-overlay{
  display:none;position:fixed;inset:0;z-index:2000;
  background:rgba(20,36,10,.72);backdrop-filter:blur(3px);
  overflow-y:auto;padding:40px 20px;
}
.guide-overlay.active{display:block}
.guide-modal {
    background: var(--bg);
    border-radius: 20px;
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    overflow: hidden;
}
.guide-modal img{
    width: 100%;
}
.guide-modal-header{
  background:linear-gradient(135deg,#2c4a0e,#4a6e10);
  color:white;padding:28px 36px;
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
}
.guide-modal-header h2{font-size:1.3rem;font-weight:900;line-height:1.3;margin:0}
.guide-modal-header p{color:rgba(255,255,255,.7);font-size:.85rem;margin:6px 0 0}
.guide-close{
  background:rgba(255,255,255,.15);border:none;color:white;
  width:36px;height:36px;border-radius:50%;cursor:pointer;
  font-size:1.2rem;font-weight:700;flex-shrink:0;
  display:grid;place-items:center;transition:background .2s;
}
.guide-close:hover{background:rgba(255,255,255,.3)}
.guide-body{padding:32px 36px}
.guide-body h3{
  color:var(--green-dark);font-size:1.05rem;font-weight:900;
  margin:28px 0 8px;padding-top:20px;
  border-top:1px solid var(--border);
}
.guide-body h3:first-child{border-top:none;padding-top:0;margin-top:0}
.guide-body h4{color:var(--brown);font-size:.95rem;font-weight:800;margin:16px 0 6px}
.guide-body p{color:var(--muted);font-size:.9rem;margin-bottom:12px}
.guide-body ul{padding-left:0;margin:10px 0 14px;list-style:none}
.guide-body ul li{
  color:var(--muted);font-size:.88rem;padding:6px 0 6px 22px;
  position:relative;border-bottom:1px dotted var(--border);
}
.guide-body ul li:last-child{border-bottom:none}
.guide-body ul li::before{content:"→";position:absolute;left:0;color:var(--green);font-weight:800}
.guide-step{
  background:var(--card);border-radius:12px;
  border:1.5px solid var(--border);
  padding:18px 20px;margin:14px 0;
}
.guide-step .step-header{
  display:flex;align-items:center;gap:12px;margin-bottom:8px;
}
.guide-step .step-num{
  width:28px;height:28px;border-radius:50%;
  background:var(--green);color:white;
  font-size:.8rem;font-weight:900;
  display:grid;place-items:center;flex-shrink:0;
}
.guide-step h4{margin:0;color:var(--text);font-size:.92rem;font-weight:800}
.guide-step p{margin:0;color:var(--muted);font-size:.85rem}
.result-pair{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:12px 0;
}
.result-good-box,.result-bad-box{
  border-radius:10px;padding:12px 14px;font-size:.82rem;
}
.result-good-box{background:#e8f5e0;border-left:3px solid var(--green)}
.result-bad-box{background:#fdecea;border-left:3px solid #c0392b}
.result-good-box strong{color:var(--green-dark)}
.result-bad-box strong{color:#a93226}
.guide-table{width:100%;border-collapse:collapse;margin:14px 0;font-size:.85rem}
.guide-table th{background:#2c4a0e;color:#c8e89a;padding:10px 14px;text-align:left;font-weight:800;font-size:.78rem;letter-spacing:.06em}
.guide-table td{padding:10px 14px;border-bottom:1px solid var(--border);color:var(--muted)}
.guide-table tr:nth-child(even) td{background:#f5f0e1}
.callout{
  background:linear-gradient(135deg,#fff8e1,#ffe0b2);
  border-left:4px solid var(--amber);border-radius:0 10px 10px 0;
  padding:14px 18px;margin:16px 0;font-size:.88rem;
}
.callout strong{color:var(--amber);display:block;margin-bottom:4px}
.callout p{margin:0;color:var(--muted)}