:root {
    --green: #2d6a4f;
    --green-light: #52b788;
    --green-dark: #1b4332;
    --accent: #c0392b;
    --accent2: #e67e22;
    --bg: #f9f9f6;
    --white: #ffffff;
    --gray: #f0f0ec;
    --gray2: #e0e0d8;
    --text: #1a1a1a;
    --text-muted: #666;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

  /* ── HEADER ── */
  header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--green-dark); color: var(--white);
    padding: 0 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
  .logo { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; color: var(--white); text-decoration: none; }
  .logo span { color: var(--green-light); }
  nav a { color: rgba(255,255,255,0.85); text-decoration: none; margin-left: 22px; font-size: 0.88rem; font-weight: 500; transition: color .2s; }
  nav a:hover { color: var(--green-light); }
  .trust-bar-header { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
  .trust-bar-header span { font-size: 0.75rem; opacity: 0.8; }

  /* ── SECTION BASE ── */
  section { padding: 72px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-title { font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; }
  .section-sub { color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }

  /* ── HERO ── */
  #hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, #2d6a4f 60%, #40916c 100%);
    color: var(--white); padding: 100px 24px;
  }
  #hero .container { display: flex; align-items: center; gap: 60px; }
  .hero-text { flex: 1; }
  .hero-text h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
  .hero-text h1 span { color: var(--green-light); }
  .hero-text p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
  .hero-img { flex: 1; display: flex; justify-content: center; }
  .img-placeholder { background: rgba(255,255,255,0.12); border: 2px dashed rgba(255,255,255,0.3); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; text-align: center; gap: 8px; }
  .img-placeholder .icon { font-size: 2rem; }
  .btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: all .2s; cursor: pointer; border: none; }
  .btn-primary { background: var(--green-light); color: var(--white); }
  .btn-primary:hover { background: #40916c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(82,183,136,0.4); }
  .btn-accent { background: var(--accent); color: var(--white); }
  .btn-accent:hover { background: #a93226; transform: translateY(-1px); }
  .btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
  .btn-outline:hover { background: var(--green); color: white; }

  /* ── TRUST BAR ── */
  #trust { background: var(--green); padding: 20px 24px; }
  .trust-items { max-width: 1200px; margin: 0 auto; display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
  .trust-item { color: var(--white); font-size: 0.88rem; font-weight: 500; display: flex; align-items: center; gap: 8px; }
  .trust-item .ti { font-size: 1.1rem; }

  /* ── PRODUCTS ── */
  #products { background: var(--bg); }
  .tabs { display: flex; gap: 0; margin-bottom: 36px; border-radius: 8px; overflow: hidden; border: 2px solid var(--green); width: fit-content; }
  .tab-btn { padding: 10px 28px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; background: transparent; color: var(--green); transition: all .2s; }
  .tab-btn.active { background: var(--green); color: white; }
  .tab-content { display: none; }
  .tab-content.active { display: block; }
  .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
  .product-card {
    background: var(--white); border-radius: var(--radius); padding: 20px;
    box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; border: 1px solid var(--gray2);
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
  .product-card .prod-img { width: 100%; height: 160px; border-radius: 8px; margin-bottom: 14px; object-fit: cover; }
  .prod-img-ph { width: 100%; height: 160px; border-radius: 8px; margin-bottom: 14px; background: var(--gray); border: 2px dashed var(--gray2); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.78rem; text-align: center; gap: 6px; }
  .product-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
  .tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
  .tag { font-size: 0.7rem; padding: 2px 8px; border-radius: 20px; font-weight: 600; }
  .tag-high-thc { background: #fff3cd; color: #856404; }
  .tag-buzz { background: #d1ecf1; color: #0c5460; }
  .tag-relax { background: #d4edda; color: #155724; }
  .tag-sleep { background: #e2d9f3; color: #432874; }
  .tag-cbd-thc { background: #fde8d8; color: #7d3c00; }
  .stars { color: #f4a127; font-size: 0.85rem; margin-bottom: 4px; }
  .reviews-count { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 10px; }
  .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
  .price { font-size: 1.15rem; font-weight: 700; color: var(--green-dark); }
  .price-sub { font-size: 0.78rem; color: var(--text-muted); }
  .product-card .btn { width: 100%; text-align: center; padding: 10px; font-size: 0.88rem; }

  /* ── THC GUMMIES BLOCK ── */
  #thc-gummies { background: var(--gray); }
  .two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
  .two-col .text-block h2 { font-size: 1.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 16px; }
  .feature-list { list-style: none; margin: 20px 0 28px; }
  .feature-list li { padding: 8px 0; border-bottom: 1px solid var(--gray2); display: flex; gap: 10px; align-items: flex-start; }
  .feature-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .mini-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 36px; }
  .mini-card { background: white; border-radius: 10px; padding: 16px; text-align: center; box-shadow: var(--shadow); }
  .mini-card .prod-img-ph { height: 100px; }
  .mini-card h4 { font-size: 0.82rem; font-weight: 700; margin: 8px 0 4px; }
  .mini-card .stars { font-size: 0.75rem; }
  .mini-card .btn { font-size: 0.78rem; padding: 7px 10px; margin-top: 8px; width: 100%; text-align: center; }

  /* ── STRONGEST ── */
  #strongest { background: var(--white); }
  .warning-card { background: #fff8e1; border: 2px solid #f4a127; border-radius: 10px; padding: 16px 20px; margin-bottom: 32px; display: flex; gap: 12px; align-items: flex-start; }
  .warning-card .warn-icon { font-size: 1.4rem; flex-shrink: 0; }
  .warning-card p { font-size: 0.92rem; color: #7d5000; font-weight: 500; }
  .strongest-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 36px; }
  .feat-item { background: var(--gray); border-radius: 8px; padding: 14px 18px; display: flex; gap: 10px; align-items: center; font-size: 0.9rem; font-weight: 500; }
  .feat-item .feat-icon { font-size: 1.2rem; }

  /* ── BEST (COMPARISON) ── */
  #best { background: var(--gray); }
  .compare-wrap { overflow-x: auto; }
  .compare-table { width: 100%; border-collapse: collapse; }
  .compare-table th, .compare-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--gray2); }
  .compare-table thead th { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
  .compare-table .prod-col { background: var(--white); }
  .compare-table .prod-col.top { background: #fff8e1; }
  .compare-table .row-label { text-align: left; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); background: var(--gray); }
  .compare-table .prod-img-ph { width: 80px; height: 80px; margin: 0 auto 8px; border-radius: 8px; font-size: 0.7rem; }
  .badge-best { display: inline-block; background: var(--accent2); color: white; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 6px; }
  .badge-medal { font-size: 1.4rem; }
  .compare-table .btn { font-size: 0.82rem; padding: 8px 16px; }
  .strength-badge { display: inline-block; background: var(--green-dark); color: white; font-size: 0.75rem; padding: 3px 10px; border-radius: 6px; font-weight: 700; }

  /* ── QUIZ ── */
  #quiz { background: linear-gradient(135deg, #f0faf4, #e8f5e9); }
  .quiz-box { background: white; border-radius: 16px; padding: 48px; max-width: 720px; margin: 0 auto; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
  .quiz-step { display: none; }
  .quiz-step.active { display: block; }
  .quiz-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
  .step-indicator { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
  .quiz-progress { background: var(--gray2); height: 4px; border-radius: 4px; margin-bottom: 32px; overflow: hidden; }
  .quiz-progress-bar { background: var(--green); height: 100%; border-radius: 4px; transition: width .3s; }
  .quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .quiz-opt { padding: 16px 20px; border: 2px solid var(--gray2); border-radius: 10px; cursor: pointer; font-size: 0.95rem; font-weight: 600; background: white; transition: all .2s; text-align: left; display: flex; align-items: center; gap: 10px; }
  .quiz-opt:hover { border-color: var(--green); background: #f0faf4; }
  .quiz-opt.selected { border-color: var(--green); background: #e8f5e9; }
  .quiz-result { display: none; text-align: center; }
  .quiz-result.active { display: block; }
  .quiz-result .prod-img-ph { width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 12px; }
  .quiz-result h3 { font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
  .quiz-result .why { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 24px; }
  .quiz-result .btn { font-size: 1rem; padding: 14px 36px; }
  .quiz-restart { margin-top: 14px; font-size: 0.85rem; color: var(--green); cursor: pointer; text-decoration: underline; display: inline-block; }

  /* ── DEEP DIVE ── */
  #deep-dive { background: var(--white); }
  .deep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
  .deep-card { background: var(--gray); border-radius: var(--radius); padding: 28px; }
  .deep-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; display: flex; gap: 10px; align-items: center; }
  .deep-card p, .deep-card li { font-size: 0.92rem; color: var(--text); line-height: 1.7; }
  .deep-card ul { padding-left: 18px; margin-top: 8px; }
  .dosage-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
  .dosage-table th { background: var(--green-dark); color: white; padding: 8px 12px; font-size: 0.82rem; text-align: left; }
  .dosage-table td { padding: 8px 12px; font-size: 0.85rem; border-bottom: 1px solid var(--gray2); }
  .dosage-table tr:last-child td { border-bottom: none; }

  /* ── LIFESTYLE ── */
  #lifestyle { background: var(--gray); }
  .lifestyle-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .lifestyle-card { background: white; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
  .lifestyle-icon { font-size: 2.4rem; margin-bottom: 12px; }
  .lifestyle-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
  .lifestyle-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
  .lifestyle-card .btn { font-size: 0.82rem; padding: 8px 16px; width: 100%; text-align: center; }

  /* ── REVIEWS ── */
  #reviews { background: var(--white); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
  .review-card { background: var(--gray); border-radius: var(--radius); padding: 22px; }
  .review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
  .reviewer { font-weight: 700; font-size: 0.9rem; }
  .review-product { font-size: 0.75rem; color: var(--text-muted); }
  .review-card .stars { font-size: 0.9rem; margin-bottom: 10px; }
  .review-card p { font-size: 0.88rem; line-height: 1.6; color: var(--text); }
  .aggregate { text-align: center; margin-bottom: 36px; }
  .aggregate .big-score { font-size: 3.5rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
  .aggregate .stars-big { font-size: 1.6rem; color: #f4a127; }
  .aggregate p { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }
  .doctor-quote { background: var(--green-dark); color: white; border-radius: 16px; padding: 40px 48px; display: flex; gap: 32px; align-items: center; }
  .doctor-img-ph { width: 100px; height: 100px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 3px solid var(--green-light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
  .doctor-text blockquote { font-size: 1.05rem; line-height: 1.7; font-style: italic; margin-bottom: 12px; opacity: 0.95; }
  .doctor-text cite { font-size: 0.85rem; opacity: 0.7; }
  .medically-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; margin-left: 12px; }

  /* ── FAQ ── */
  #faq { background: var(--gray); }
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item { background: white; border-radius: 10px; margin-bottom: 10px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  .faq-q { padding: 18px 24px; font-weight: 600; font-size: 0.97rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  .faq-q .arrow { color: var(--green); font-size: 1.1rem; transition: transform .2s; flex-shrink: 0; }
  .faq-q.open .arrow { transform: rotate(180deg); }
  .faq-a { display: none; padding: 0 24px 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--gray2); padding-top: 14px; }

  /* ── FINAL CTA ── */
  #final-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white; text-align: center; padding: 80px 24px;
  }
  #final-cta h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 14px; }
  #final-cta p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 32px; }
  .cta-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
  .cta-badge { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 8px 18px; font-size: 0.85rem; font-weight: 600; }
  #final-cta .btn { font-size: 1.1rem; padding: 16px 48px; background: white; color: var(--green-dark); }
  #final-cta .btn:hover { background: var(--green-light); color: white; }

  /* ── FOOTER ── */
  footer { background: #111; color: rgba(255,255,255,0.6); padding: 40px 24px; font-size: 0.82rem; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-links { display: flex; gap: 20px; margin-bottom: 20px; }
  .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-links a:hover { color: white; }
  .disclaimer { margin-top: 16px; line-height: 1.6; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

  /* ── STICKY MOBILE CTA ── */
  .sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-dark); padding: 12px 20px; z-index: 999; text-align: center; }
  .sticky-cta .btn { width: 100%; font-size: 1rem; padding: 13px; }
  @media(max-width: 768px) {
    .sticky-cta { display: block; }
    #hero .container { flex-direction: column; }
    .hero-text h1 { font-size: 1.8rem; }
    .two-col { grid-template-columns: 1fr; }
    .mini-cards { grid-template-columns: repeat(3,1fr); }
    .deep-grid { grid-template-columns: 1fr; }
    .lifestyle-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .quiz-options { grid-template-columns: 1fr; }
    nav { display: none; }
    .doctor-quote { flex-direction: column; text-align: center; }
    body { padding-bottom: 60px; }
  }

  .hero-buttons { display:flex; gap:12px; flex-wrap:wrap; }
  .btn-hero-secondary { background:transparent; border:2px solid rgba(255,255,255,0.6); color:white; }
  .btn-hero-secondary:hover { background:rgba(255,255,255,0.08); color:white; border-color:white; }

  .hero-main-image { width:340px; height:340px; }
  .image-large { width:100%; height:300px; border-radius:var(--radius); border:2px dashed var(--gray2); color:var(--text-muted); }
  .compare-thumb { width:80px; height:80px; margin:8px auto; font-size:1.4rem; }
  .quiz-result-thumb { width:120px; height:120px; margin:0 auto 16px; border-radius:12px; font-size:2rem; background:var(--gray); border:2px dashed var(--gray2); display:flex; align-items:center; justify-content:center; }
  .section-center { text-align:center; }
  .section-sub-center { text-align:center; margin:0 auto 36px; }
  .info-text { color:var(--text-muted); margin-bottom:16px; }
  .mini-cards-tight { margin-top:20px; }
  .text-small-muted { font-size:0.75rem; color:var(--text-muted); }
  .text-xs-muted { font-size:0.65rem; }
  .text-card-muted { font-size:0.78rem; color:var(--text-muted); margin-bottom:12px; }
  .editor-note { background:white; border-radius:var(--radius); padding:24px 28px; margin-top:24px; border-left:4px solid var(--green); }
  .editor-note p { font-size:0.92rem; line-height:1.7; color:var(--text); }
  .deep-note { margin-top:12px; font-size:0.82rem; color:var(--text-muted); }
  .lifestyle-label { font-size:0.8rem; font-weight:600; color:var(--text-muted); margin-bottom:12px; }
  .footer-copy { margin-top:20px; color:rgba(255,255,255,0.3); }

  .age-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,0.85); z-index:9999;
    display:flex; align-items:center; justify-content:center; padding:20px; backdrop-filter:blur(4px);
  }
  .age-modal {
    background:#fff; border-radius:16px; padding:48px 40px; max-width:480px; width:100%;
    text-align:center; box-shadow:0 20px 60px rgba(0,0,0,0.4);
  }
  .age-emoji { font-size:3rem; margin-bottom:16px; }
  .age-brand { font-size:0.8rem; font-weight:700; letter-spacing:1px; color:#2d6a4f; text-transform:uppercase; margin-bottom:8px; }
  .age-title { font-size:1.5rem; font-weight:800; color:#1b4332; margin-bottom:12px; }
  .age-text { color:#555; font-size:0.92rem; line-height:1.6; margin-bottom:28px; }
  .age-link { color:#2d6a4f; }
  .age-enter-btn {
    display:block; width:100%; padding:14px; background:#2d6a4f; color:white; border:none;
    border-radius:8px; font-size:1rem; font-weight:700; cursor:pointer; margin-bottom:12px; transition:background .2s;
  }
  .age-enter-btn:hover { background:#1b4332; }
  .age-exit-btn {
    display:block; width:100%; padding:12px; background:transparent; color:#999; border:2px solid #e0e0e0;
    border-radius:8px; font-size:0.9rem; font-weight:600; cursor:pointer; transition:all .2s;
  }
  .age-exit-btn:hover { border-color:#ccc; color:#666; }
  .age-footnote { font-size:0.72rem; color:#aaa; margin-top:20px; line-height:1.5; }

  .cookie-banner {
    display:none; position:fixed; bottom:0; left:0; right:0; z-index:9998; background:#1b4332; color:white;
    padding:16px 24px; box-shadow:0 -4px 20px rgba(0,0,0,0.2);
  }
  .cookie-inner {
    max-width:1200px; margin:0 auto; display:flex; align-items:center; gap:20px; flex-wrap:wrap; justify-content:space-between;
  }
  .cookie-text-wrap { flex:1; min-width:260px; }
  .cookie-text { font-size:0.85rem; line-height:1.6; margin:0; }
  .cookie-link { color:#52b788; text-decoration:underline; }
  .cookie-actions { display:flex; gap:10px; flex-shrink:0; }
  .cookie-accept-btn {
    padding:10px 24px; background:#52b788; color:white; border:none; border-radius:6px; font-size:0.88rem;
    font-weight:700; cursor:pointer; transition:background .2s;
  }
  .cookie-accept-btn:hover { background:#40916c; }
  .cookie-decline-btn {
    padding:10px 20px; background:transparent; color:rgba(255,255,255,0.7); border:1px solid rgba(255,255,255,0.3);
    border-radius:6px; font-size:0.88rem; cursor:pointer; transition:all .2s;
  }
  .cookie-decline-btn:hover { color:white; }

  .placeholder-img {
    width:100%; height:100%; object-fit:cover; border-radius:inherit; background:#f2f2ee;
  }
  .prod-image-wrap {
    width:100%; height:160px; border-radius:8px; margin-bottom:14px; background:var(--gray);
    border:2px dashed var(--gray2); overflow:hidden; display:flex; align-items:center; justify-content:center;
  }
  .prod-image-wrap.small { height:100px; margin-bottom:8px; }
  .prod-image-wrap.compare { width:80px; height:80px; margin:8px auto; }
  .prod-image-wrap.result { width:120px; height:120px; margin:0 auto 16px; border-radius:12px; }
  .prod-image-wrap .placeholder-img { object-fit:contain; padding:10px; }

  @media(max-width: 768px) {
    .hero-buttons { flex-direction:column; align-items:flex-start; }
  }


  .compare-label-head { width:160px; text-align:left; }
  .prod-title-strong { font-weight:700; font-size:0.95rem; }
  .medal-icon { font-size:1.3rem; }
  .text-green-strong { color:var(--green-dark); font-weight:600; }
  .tags-center { justify-content:center; }
  .price-strong-green { font-weight:700; color:var(--green-dark); }
  .price-strong { font-weight:700; }
  .price-accent-strong { color:var(--accent); font-weight:700; }
  .progress-zero { width:0%; }
  .quiz-result-topnote { font-size:0.9rem; color:var(--green); font-weight:600; margin-bottom:8px; }
  .result-tags { justify-content:center; margin:10px 0; }
  .inline-block-btn { display:inline-block; }
  .grid-span-full { grid-column:1/-1; }
  .section-compact { padding:60px 24px; }
  .footer-strong { color:rgba(255,255,255,0.7); }
  .editor-note-text { font-size:0.92rem; line-height:1.7; color:var(--text); }

  .desktop-nav { display:flex; align-items:center; }
  .mobile-menu-toggle {
    display:none; width:44px; height:44px; border:1px solid rgba(255,255,255,0.15);
    background:transparent; border-radius:10px; cursor:pointer; padding:0;
    align-items:center; justify-content:center; flex-direction:column; gap:5px;
  }
  .mobile-menu-toggle span {
    display:block; width:18px; height:2px; background:#fff; border-radius:2px; transition:transform .25s, opacity .25s;
  }
  .mobile-menu-toggle.is-active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.is-active span:nth-child(2) { opacity:0; }
  .mobile-menu-toggle.is-active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  .mobile-menu-overlay {
    position:fixed; inset:0; background:rgba(0,0,0,0.45); opacity:0; visibility:hidden;
    transition:opacity .25s, visibility .25s; z-index:1200;
  }
  .mobile-menu {
    position:fixed; top:0; right:0; width:min(320px, 86vw); height:100vh; background:#fff; color:var(--text);
    box-shadow:-8px 0 28px rgba(0,0,0,0.15); transform:translateX(100%); transition:transform .25s;
    z-index:1201; padding:18px 20px 28px; display:flex; flex-direction:column;
  }
  .mobile-menu.is-open { transform:translateX(0); }
  .mobile-menu-overlay.is-open { opacity:1; visibility:visible; }
  .mobile-menu-head {
    display:flex; align-items:center; justify-content:space-between; padding-bottom:16px; border-bottom:1px solid var(--gray2); margin-bottom:18px;
  }
  .mobile-menu-title { font-size:1rem; font-weight:700; color:var(--green-dark); }
  .mobile-menu-close {
    width:38px; height:38px; border:none; background:var(--gray); border-radius:8px; cursor:pointer;
    font-size:1.5rem; line-height:1; color:var(--green-dark);
  }
  .mobile-nav { display:flex; flex-direction:column; gap:6px; }
  .mobile-nav a {
    text-decoration:none; color:var(--text); font-weight:600; padding:12px 10px; border-radius:10px;
  }
  .mobile-nav a:hover { background:var(--gray); color:var(--green-dark); }
  body.menu-open { overflow:hidden; }

  @media(max-width: 900px) {
    .desktop-nav { display:none; }
    .mobile-menu-toggle { display:flex; }
  }
  @media(min-width: 901px) {
    .mobile-menu, .mobile-menu-overlay { display:none; }
  }
