/* shared.css — SmallClaimsHelper USA — Full site stylesheet */
/* Fonts loaded via <link> tag in each page head */

  :root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --teal-light: #ccfbf1;
    --teal-mid: #14b8a6;
    --orange: #f97316;
    --orange-light: #fff7ed;
    --yellow: #fbbf24;
    --slate: #334155;
    --slate-mid: #64748b;
    --slate-light: #94a3b8;
    --bg: #f0fdf9;
    --white: #ffffff;
    --red: #ef4444;
    --green: #22c55e;
    --card-shadow: 0 4px 24px rgba(13, 148, 136, 0.12);
  }

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

  body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--slate);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    background: var(--white);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(13,148,136,0.3);
  }

  .logo-text {
    font-size: 17px;
    font-weight: 800;
    color: var(--slate);
    letter-spacing: -0.02em;
  }

  .logo-text span { color: var(--teal); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--teal); }

  .nav-btn {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 100px;
    font-weight: 800 !important;
    box-shadow: 0 2px 8px rgba(13,148,136,0.3);
  }

  /* HERO */
  .hero {
    padding: 64px 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 3.5vw, 50px);
    color: var(--slate);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .hero h1 strong {
    color: var(--teal);
    font-weight: 700;
    font-style: italic;
  }

  .hero-desc {
    font-size: 17px;
    color: var(--slate-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
  }

  .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }

  .avatars {
    display: flex;
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: -8px;
    first-child { margin-left: 0; }
  }

  .avatar:first-child { margin-left: 0; }

  .proof-text {
    font-size: 13px;
    color: var(--slate-mid);
    font-weight: 600;
  }

  .proof-text strong { color: var(--slate); }

  .stars { color: var(--yellow); font-size: 14px; }

  .hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate);
  }

  .check-circle {
    width: 22px;
    height: 22px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    font-size: 12px;
    flex-shrink: 0;
    font-weight: 900;
  }

  /* CALCULATOR CARD */
  .calc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(13,148,136,0.1);
    animation: floatIn 0.5s ease-out;
    position: relative;
  }

  @keyframes floatIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .calc-card::before {
    content: '🎯 Free — No Sign-Up';
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
  }

  .calc-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }

  .calc-sub {
    font-size: 13px;
    color: var(--slate-light);
    margin-bottom: 24px;
    font-weight: 600;
  }

  /* STEP INDICATOR */
  .step-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
  }

  .step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
  }

  .step-dot.active {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13,148,136,0.4);
  }

  .step-line {
    flex: 1;
    height: 2px;
    background: var(--teal-light);
  }

  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
  }

  .form-group { margin-bottom: 16px; }

  /* DEFENDANT CHIPS */
  .chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .chip {
    padding: 8px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-mid);
    background: var(--white);
    cursor: pointer;
    transition: all 0.15s;
  }

  .chip:hover {
    border-color: var(--teal-mid);
    color: var(--teal-dark);
    background: var(--teal-light);
  }

  .chip.active {
    border-color: var(--teal);
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(13,148,136,0.3);
  }

  .form-select, .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    background: var(--white);
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }

  .form-select:focus, .form-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
  }

  .select-wrap { position: relative; }
  .select-wrap::after {
    content: '▾';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    pointer-events: none;
  }

  .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .btn-check {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(13,148,136,0.35);
    margin-top: 4px;
    letter-spacing: 0.01em;
  }

  .btn-check:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.4);
  }

  .btn-check:active { transform: translateY(0); }

  /* RESULT PANEL */
  .result-panel {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed var(--teal-light);
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .result-panel.show { display: block; }

  .result-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .result-badge.qualify {
    background: #f0fdf4;
    color: #166534;
    border: 2px solid #bbf7d0;
  }

  .result-badge.exceed {
    background: #fef2f2;
    color: #991b1b;
    border: 2px solid #fecaca;
  }

  .result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .result-tile {
    background: var(--bg);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
  }

  .tile-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--slate);
    display: block;
    letter-spacing: -0.02em;
  }

  .tile-val.ok { color: var(--teal-dark); }
  .tile-val.warn { color: var(--red); }

  .tile-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
    display: block;
  }

  .btn-report {
    width: 100%;
    padding: 12px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: 0 3px 12px rgba(249,115,22,0.3);
  }

  .btn-report:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(249,115,22,0.4);
  }

  /* SCENARIO SECTION */
  .scenarios {
    padding: 48px 40px;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .scenarios-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .scenarios-inner h2 {
    font-family: 'Lora', serif;
    font-size: 28px;
    color: var(--slate);
    margin-bottom: 8px;
  }

  .scenarios-inner p {
    color: var(--slate-mid);
    font-size: 15px;
    margin-bottom: 36px;
    font-weight: 600;
  }

  .scenario-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .scenario-card {
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
  }

  .scenario-card:hover {
    border-color: var(--teal-mid);
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
  }

  .scenario-emoji { font-size: 36px; margin-bottom: 12px; display: block; }

  .scenario-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 6px;
  }

  .scenario-desc {
    font-size: 12px;
    color: var(--slate-light);
    line-height: 1.5;
    font-weight: 600;
  }

  /* HOW IT WORKS */
  .hiw {
    padding: 72px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
  }

  .section-h {
    font-family: 'Lora', serif;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--slate);
    margin-bottom: 12px;
    line-height: 1.25;
  }

  .section-p {
    font-size: 16px;
    color: var(--slate-mid);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 600;
  }

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

  .hiw-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
  }

  .hiw-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  }

  .hiw-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--teal-light);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
  }

  .hiw-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--slate);
    margin-bottom: 8px;
  }

  .hiw-desc {
    font-size: 13px;
    color: var(--slate-mid);
    line-height: 1.6;
    font-weight: 600;
  }

  /* FEATURES */
  .features {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #0d766e 100%);
    padding: 72px 40px;
  }

  .features-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .features .section-eyebrow { color: var(--teal-light); }
  .features .section-h { color: var(--white); }
  .features .section-p { color: rgba(255,255,255,0.65); }

  .feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .feat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s;
  }

  .feat-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
  }

  .feat-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .feat-icon-wrap {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .feat-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
  }

  .feat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-weight: 600;
  }

  /* STATES */
  .states {
    padding: 72px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .states-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
  }

  .state-tag {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--slate);
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
  }

  .state-tag:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    background: var(--teal-light);
    transform: translateY(-1px);
  }

  .state-tag .amt {
    font-size: 11px;
    color: var(--teal);
    font-weight: 800;
    margin-top: 1px;
  }

  /* CTA BANNER */
  .cta-banner {
    background: var(--orange-light);
    border-top: 2px solid rgba(249,115,22,0.15);
    border-bottom: 2px solid rgba(249,115,22,0.15);
    padding: 48px 40px;
    text-align: center;
  }

  .cta-banner h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    color: var(--slate);
    margin-bottom: 12px;
  }

  .cta-banner p {
    font-size: 16px;
    color: var(--slate-mid);
    margin-bottom: 28px;
    font-weight: 600;
  }

  .btn-orange {
    display: inline-block;
    padding: 16px 40px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
    transition: all 0.15s;
  }

  .btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.45);
  }

  /* DISCLAIMER */
  .disclaimer {
    background: #f8fafc;
    padding: 16px 40px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
  }

  .disclaimer p {
    font-size: 12px;
    color: var(--slate-light);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    background: var(--slate);
    padding: 48px 40px 24px;
  }

  .footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand-text {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 12px;
    font-weight: 600;
    max-width: 240px;
  }

  .footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }

  .footer-col a {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--teal-mid); }

  .footer-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
  }

  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
    .scenario-cards { grid-template-columns: 1fr 1fr; }
    .hiw-grid { grid-template-columns: 1fr 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .scenarios, .hiw, .states, .features, .cta-banner, .disclaimer, footer { padding-left: 20px; padding-right: 20px; }
    .input-row { grid-template-columns: 1fr; }
  }

/* ── SUB-PAGE COMPONENTS ── */

/* Page Header (used by all sub-pages) */
.page-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 48px 40px;
  color: var(--white);
}
.page-header-inner { max-width: 860px; margin: 0 auto; }
.page-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  line-height: 1.6;
  max-width: 640px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* Generic card */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  margin-bottom: 24px;
}

/* btn-outline */
.btn-outline {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  transition: all 0.15s;
}
.btn-outline:hover { background: var(--teal-light); }

/* btn-teal */
.btn-teal {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,148,136,0.35);
  transition: all 0.15s;
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; background: var(--white); }
.data-table th {
  background: var(--bg);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 800;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.data-table td {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }

/* FAQ accordion */
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 800;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: background 0.15s;
  line-height: 1.4;
  gap: 12px;
}
.faq-q:hover { background: var(--bg); }
.faq-q.open { background: var(--teal-light); color: var(--teal-dark); }
.faq-arrow { font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; font-weight: 600; color: var(--slate-mid); line-height: 1.7; background: var(--white); }
.faq-a.open { display: block; }

/* Alerts */
.alert { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; line-height: 1.6; }
.alert-warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert-danger { background: var(--red-light); border: 1px solid #fecaca; color: #991b1b; }
.alert-info { background: var(--teal-light); border: 1px solid var(--teal-mid); color: var(--teal-dark); }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.badge-red { background: var(--red-light); color: #991b1b; }
.badge-orange { background: var(--orange-light); color: #9a3412; }

/* Checklist */
.checklist { list-style: none; padding: 0; }
.checklist li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--slate); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.checklist li::before { content: '☐'; font-size: 16px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.checklist li:last-child { border-bottom: none; }

/* Form elements */
.form-textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px; font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 600; color: var(--slate); background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; min-height: 100px; }
.form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); }
.form-select { appearance: none; }
