.wcr {
  --wcr-ink: #17221d;
  --wcr-green: #174f3a;
  --wcr-green-dark: #0d3828;
  --wcr-gold: #b99552;
  --wcr-cream: #f7f4ed;
  --wcr-line: #dfe5e1;
  --wcr-muted: #65716b;
  color: var(--wcr-ink);
  font-family: inherit;
  margin: 32px auto;
  max-width: 1040px;
}

.wcr *, .wcr *::before, .wcr *::after { box-sizing: border-box; }
.wcr [hidden] { display: none !important; }

.wcr__header {
  background: linear-gradient(135deg, var(--wcr-green-dark), var(--wcr-green));
  border-radius: 24px 24px 0 0;
  color: #fff;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
}

.wcr__header::after {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
  height: 260px;
  position: absolute;
  right: -70px;
  top: -110px;
  width: 260px;
}

.wcr__eyebrow, .wcr__verdict small, .wcr__lead > div > small {
  color: #dec28b;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  margin-bottom: 10px;
}

.wcr__header h2 { color: #fff; font-size: clamp(29px, 5vw, 46px); line-height: 1.08; margin: 0 0 14px; max-width: 650px; }
.wcr__header p { color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.65; margin: 0; max-width: 650px; }

.wcr__form, .wcr__result {
  background: #fff;
  border: 1px solid var(--wcr-line);
  border-top: 0;
  padding: clamp(24px, 5vw, 48px);
}

.wcr__form { border-radius: 0 0 24px 24px; box-shadow: 0 20px 60px rgba(18,49,36,.09); }
.wcr__grid { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.wcr__field { display: flex; flex-direction: column; gap: 7px; }
.wcr__field--hidden { display: none; }
.wcr__field > span, .wcr__lead label > span { font-size: 14px; font-weight: 750; }
.wcr__field small { color: var(--wcr-muted); font-size: 12px; margin: -2px 0 1px; }

.wcr input, .wcr select {
  appearance: none;
  background: #fff;
  border: 1px solid #cdd7d1;
  border-radius: 10px;
  color: var(--wcr-ink);
  font: inherit;
  min-height: 51px;
  outline: none;
  padding: 12px 14px;
  width: 100%;
}

.wcr select {
  background-image: linear-gradient(45deg, transparent 50%, var(--wcr-green) 50%), linear-gradient(135deg, var(--wcr-green) 50%, transparent 50%);
  background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 40px;
}

.wcr input:focus, .wcr select:focus { border-color: var(--wcr-gold); box-shadow: 0 0 0 3px rgba(185,149,82,.15); }
.wcr__money { align-items: center; display: flex; position: relative; }
.wcr__money b { color: var(--wcr-muted); font-size: 14px; left: 14px; position: absolute; }
.wcr__money input { padding-left: 43px; }
.wcr__trap { height: 1px !important; left: -99999px !important; opacity: 0 !important; pointer-events: none !important; position: absolute !important; width: 1px !important; }

.wcr__button {
  align-items: center;
  background: var(--wcr-green);
  border: 0;
  border-radius: 11px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
  min-height: 54px;
  padding: 14px 22px;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
  width: 100%;
}
.wcr__button:hover { background: var(--wcr-green-dark); transform: translateY(-1px); }
.wcr__button:disabled { cursor: wait; opacity: .62; transform: none; }
.wcr__button i { font-style: normal; font-size: 20px; }
.wcr__button--gold { background: var(--wcr-gold); color: #18221d; }
.wcr__button--gold:hover { background: #caa968; }

.wcr__error, .wcr__success { border-radius: 8px; font-size: 13px; line-height: 1.5; margin: 14px 0 0; padding: 11px 13px; }
.wcr__error { background: #fff0ef; color: #992b20; }
.wcr__success { background: #e9f5ee; color: #155b38; }

.wcr__loading { align-items: center; color: var(--wcr-muted); display: flex; gap: 12px; justify-content: center; padding: 36px; }
.wcr__loading span { animation: wcr-spin .8s linear infinite; border: 3px solid var(--wcr-line); border-radius: 50%; border-top-color: var(--wcr-gold); height: 26px; width: 26px; }
.wcr__loading p { margin: 0; }
@keyframes wcr-spin { to { transform: rotate(360deg); } }

.wcr__result { border-radius: 24px; border-top: 1px solid var(--wcr-line); box-shadow: 0 20px 60px rgba(18,49,36,.09); margin-top: 24px; }
.wcr__verdict { align-items: flex-start; border-radius: 16px; display: flex; gap: 16px; padding: 22px; }
.wcr__verdict > span { align-items: center; border-radius: 50%; display: flex; flex: 0 0 36px; font-size: 19px; font-weight: 900; height: 36px; justify-content: center; }
.wcr__verdict h3 { color: inherit; font-size: 21px; margin: 0 0 6px; }
.wcr__verdict p { color: inherit; line-height: 1.5; margin: 0; opacity: .82; }
.wcr__verdict small { color: inherit; margin-bottom: 5px; opacity: .7; }
.wcr__verdict--warning { background: #fff4e4; color: #7b4716; }
.wcr__verdict--warning > span { background: #efbd66; color: #59300c; }
.wcr__verdict--ok { background: #e9f5ee; color: #155b38; }
.wcr__verdict--ok > span { background: #b9dec9; }

.wcr__metrics { display: grid; gap: 1px; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 28px 0; overflow: hidden; border: 1px solid var(--wcr-line); border-radius: 16px; background: var(--wcr-line); }
.wcr__metrics article { background: #fff; min-height: 142px; padding: 22px; }
.wcr__metrics article > span { color: var(--wcr-muted); display: block; font-size: 12px; line-height: 1.4; min-height: 34px; }
.wcr__metrics strong { display: block; font-size: clamp(22px,3vw,30px); letter-spacing: -.035em; margin: 9px 0 4px; }
.wcr__metrics small { color: var(--wcr-muted); font-size: 11px; }
.wcr__metrics .wcr__metric--featured { background: var(--wcr-green); color: #fff; }
.wcr__metrics .wcr__metric--featured > span, .wcr__metrics .wcr__metric--featured small { color: rgba(255,255,255,.7); }

.wcr__excess { border: 1px solid var(--wcr-line); border-radius: 18px; margin: 0 0 28px; padding: clamp(22px,4vw,32px); text-align: center; }
.wcr__excess small { display: block; font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.wcr__excess strong { display: block; font-size: clamp(34px,6vw,52px); letter-spacing: -.045em; line-height: 1.05; margin: 10px 0; }
.wcr__excess p { font-size: 14px; line-height: 1.55; margin: 0 auto; max-width: 700px; }
.wcr__excess-comparison { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin-top: 18px; }
.wcr__excess-comparison span { font-size: 12px; opacity: .82; }
.wcr__excess-comparison b { display: block; font-size: 16px; margin-top: 2px; }
.wcr__excess--positive { background: linear-gradient(135deg,#fff7e8,#f7e5bd); border-color: #e3c88f; color: #713f10; box-shadow: 0 12px 30px rgba(113,63,16,.09); }
.wcr__excess--neutral { background: #f4f7f5; color: #405149; }

.wcr__lead { background: var(--wcr-green-dark); border-radius: 18px; color: #fff; display: grid; gap: 32px; grid-template-columns: .82fr 1.18fr; padding: clamp(24px,4vw,38px); }
.wcr__lead h3 { color: #fff; font-size: 26px; margin: 0 0 10px; }
.wcr__lead > div > p { color: rgba(255,255,255,.72); line-height: 1.6; margin: 0; }
.wcr__lead form { display: grid; gap: 13px; }
.wcr__lead label { display: flex; flex-direction: column; gap: 6px; }
.wcr__lead label > span { color: rgba(255,255,255,.84); }
.wcr__lead label em { font-size: 11px; font-weight: 400; }
.wcr__lead .wcr__button { margin-top: 3px; }
.wcr__consent { align-items: flex-start !important; flex-direction: row !important; gap: 9px !important; }
.wcr__consent input { flex: 0 0 17px; height: 17px; min-height: 17px; margin: 2px 0 0; padding: 0; width: 17px; }
.wcr__consent input:checked { background: var(--wcr-gold); border-color: var(--wcr-gold); box-shadow: inset 0 0 0 4px var(--wcr-green-dark); }
.wcr__consent span { font-size: 11px !important; font-weight: 400 !important; line-height: 1.45; }
.wcr__disclaimer { color: var(--wcr-muted); font-size: 11px; line-height: 1.65; margin: 22px 0 0; text-align: center; }

@media (max-width: 760px) {
  .wcr { margin: 20px auto; }
  .wcr__header { border-radius: 18px 18px 0 0; }
  .wcr__form { border-radius: 0 0 18px 18px; }
  .wcr__grid, .wcr__lead { grid-template-columns: 1fr; }
  .wcr__metrics { grid-template-columns: 1fr 1fr; }
  .wcr__metrics article { min-height: 130px; padding: 18px; }
}

@media (max-width: 480px) {
  .wcr__metrics { grid-template-columns: 1fr; }
  .wcr__metrics article { min-height: auto; }
  .wcr__metrics article > span { min-height: 0; }
  .wcr__verdict { padding: 18px; }
}
