/* Dumaflow — product pages (Job Cards, Geyser Compliance) */

/* ---------- section headings ---------- */
.sec-head { text-align: center; max-width: 60ch; margin: 0 auto 38px; }
.sec-head .eyebrow {
  font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  color: var(--teal-deep); margin-bottom: 12px;
}
.sec-head h2 { font-size: clamp(25px, 3.4vw, 38px); line-height: 1.14; letter-spacing: -.02em; }
.sec-head p { font-size: clamp(14.5px, 1.5vw, 16.5px); line-height: 1.7; color: var(--muted); margin-top: 14px; }

.prod-section { padding: 66px 0 0; }
.prod-section:first-of-type { padding-top: 0; }

/* ---------- hero badge under the H1 ---------- */
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 26px; }
.hero-tags span {
  font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .26); background: rgba(255, 255, 255, .07);
  border-radius: var(--radius-pill); padding: 7px 15px;
}

/* ---------- the "before" problem strip ---------- */
.pain {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
@media (max-width: 820px) { .pain { grid-template-columns: 1fr; gap: 20px; padding: 26px 24px; } }
.pain div h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.pain div p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }
.pain div h4::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); margin-right: 9px; vertical-align: middle;
}

/* ---------- numbered flow ---------- */
.flow { display: grid; gap: 14px; }
.flow-step {
  display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 22px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.flow-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(var(--teal-rgb), .35); }
.flow-num {
  width: 46px; height: 46px; border-radius: 13px; background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
}
.flow-step h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; letter-spacing: -.01em; }
.flow-step p { font-size: 14px; line-height: 1.7; color: var(--muted); }
@media (max-width: 520px) {
  .flow-step { grid-template-columns: 38px 1fr; gap: 14px; padding: 20px 18px; }
  .flow-num { width: 38px; height: 38px; border-radius: 11px; font-size: 14px; }
}

/* ---------- feature grid ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(var(--teal-rgb), .35); }
.feat .fi { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.feat .fi svg { width: 21px; height: 21px; }
.fi.c1 { background: rgba(var(--ink-rgb), .08); color: var(--ink); }
.fi.c2 { background: rgba(var(--teal-rgb), .13); color: var(--teal-deep); }
.fi.c3 { background: rgba(240, 169, 46, .18); color: #8a5a05; }
.fi.c4 { background: var(--ink); color: #fff; }
.feat h3 { font-size: 16px; font-weight: 600; margin-bottom: 7px; letter-spacing: -.01em; }
.feat p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }

/* ---------- dark spec panel ---------- */
.spec {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 40px 42px; box-shadow: var(--shadow-lg);
  background-image: radial-gradient(110% 80% at 88% 0%, rgba(var(--teal-rgb), .28) 0%, rgba(var(--teal-rgb), 0) 60%);
}
@media (max-width: 620px) { .spec { padding: 30px 24px; } }
.spec h2 { font-size: clamp(22px, 2.8vw, 30px); line-height: 1.16; letter-spacing: -.02em; margin-bottom: 12px; }
.spec > p { font-size: 15px; line-height: 1.7; color: rgba(255, 255, 255, .76); max-width: 62ch; }
.spec-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }
@media (max-width: 700px) { .spec-list { grid-template-columns: 1fr; } }
.spec-list li {
  position: relative; padding-left: 28px; font-size: 14.5px; line-height: 1.6;
  color: rgba(255, 255, 255, .9);
}
.spec-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(var(--teal-rgb), .92)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E")
    center / 11px 11px no-repeat;
}

/* ---------- the job card / claim pack anatomy ---------- */
.anatomy { display: grid; grid-template-columns: 1.05fr 1fr; gap: 26px; align-items: start; }
@media (max-width: 860px) { .anatomy { grid-template-columns: 1fr; } }
.doc {
  background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0; overflow: hidden;
}
.doc-head {
  background: var(--ink); color: #fff; padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.doc-head strong { font-size: 14.5px; font-weight: 600; }
.doc-head span { font-size: 11.5px; color: rgba(255, 255, 255, .62); letter-spacing: .04em; text-transform: uppercase; }
.doc-body { padding: 20px 22px 24px; }
.doc-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 13.5px; }
.doc-row:last-child { border-bottom: none; }
.doc-row b { flex: 0 0 40%; font-weight: 500; color: var(--muted); }
.doc-row span { color: var(--ink); font-weight: 500; }
.doc-photos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 14px; }
.doc-photos i {
  display: block; aspect-ratio: 1; border-radius: 6px;
  background: var(--surface-2); border: 1px solid var(--line);
}
.doc-sign { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); }
.doc-sign small { display: block; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.doc-sign svg { width: 130px; height: 34px; color: var(--ink); }

.anatomy-notes { display: grid; gap: 14px; }
.anote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.anote h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.anote p { font-size: 13.5px; line-height: 1.65; color: var(--muted); }

/* ---------- responsibility / legal note ---------- */
.note-strong {
  background: rgba(240, 169, 46, .1); border: 1px solid rgba(240, 169, 46, .42);
  border-left: 4px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
}
.note-strong h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.note-strong p { font-size: 14px; line-height: 1.7; color: rgba(var(--ink-rgb), .82); margin-bottom: 10px; }
.note-strong p:last-child { margin-bottom: 0; }

/* ---------- closing CTA ---------- */
.cta-band {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 46px 34px;
}
.cta-band h2 { font-size: clamp(23px, 3vw, 33px); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 12px; }
.cta-band p { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 52ch; margin: 0 auto 24px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
