.greff-assistant,
.greff-assistant * { box-sizing: border-box; }

.greff-assistant {
    --greff-bg: #f4f1e9;
    --greff-card: #fffef9;
    --greff-ink: #1d2a21;
    --greff-muted: #6d746f;
    --greff-line: rgba(29,42,33,.14);
    --greff-accent: #355a3a;
    --greff-accent-soft: rgba(53,90,58,.08);
    width: 100%;
    color: var(--greff-ink);
    font-family: inherit;
}

.greff-assistant__shell {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 44px);
    border: 1px solid var(--greff-line);
    border-radius: 28px;
    background: var(--greff-bg);
}

.greff-assistant__intro {
    max-width: 790px;
    margin: 0 auto 38px;
    text-align: center;
}

.greff-assistant__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--greff-accent);
}

.greff-assistant__title {
    margin: 0;
    color: var(--greff-ink);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.035em;
    font-weight: 600;
}

.greff-assistant__lead {
    max-width: 690px;
    margin: 20px auto 0;
    color: var(--greff-muted);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
}

.greff-assistant__choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.greff-choice {
    appearance: none;
    width: 100%;
    min-height: 196px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border: 1px solid var(--greff-line);
    border-radius: 22px;
    background: var(--greff-card);
    color: var(--greff-ink);
    text-align: left;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.greff-choice:hover,
.greff-choice:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(53,90,58,.45);
    background: #fff;
    box-shadow: 0 18px 42px rgba(29,42,33,.08);
    outline: none;
}

.greff-choice__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--greff-accent-soft);
    color: var(--greff-accent);
}

.greff-choice__icon svg { width: 34px; height: 34px; }
.greff-choice__content { display: block; }
.greff-choice__content strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.2;
    font-weight: 600;
}
.greff-choice__content small {
    display: block;
    color: var(--greff-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
}
.greff-choice__arrow {
    font-size: 28px;
    color: var(--greff-accent);
    transition: transform .22s ease;
}
.greff-choice:hover .greff-choice__arrow,
.greff-choice:focus-visible .greff-choice__arrow { transform: translateX(4px); }

.greff-assistant__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 11px;
    margin-top: 28px;
    color: var(--greff-muted);
    font-size: 13px;
}
.greff-assistant__meta i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(29,42,33,.28);
}

.greff-assistant__notice {
    max-width: 900px;
    margin: 22px auto 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--greff-accent-soft);
    color: var(--greff-accent);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 760px) {
    .greff-assistant__shell { border-radius: 20px; }
    .greff-assistant__choices { grid-template-columns: 1fr; }
    .greff-choice { min-height: 150px; padding: 24px 22px; gap: 16px; }
    .greff-choice__icon { width: 50px; height: 50px; }
    .greff-choice__icon svg { width: 29px; height: 29px; }
}

@media (max-width: 480px) {
    .greff-assistant__shell { padding: 34px 16px; }
    .greff-choice { grid-template-columns: 46px minmax(0, 1fr) auto; padding: 20px 17px; border-radius: 18px; }
    .greff-choice__icon { width: 46px; height: 46px; }
    .greff-choice__content small { font-size: 13px; }
    .greff-assistant__meta { gap: 8px; font-size: 12px; }
}

/* v1.2.0 — wspólne elementy kroków. Klasy są celowo stabilne pod późniejszy Custom CSS. */
.greff-assistant__topbar {
    display: grid;
    grid-template-columns: auto minmax(220px, 360px);
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin: 0 0 34px;
}
.greff-back {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--greff-ink);
    padding: 8px 0;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.greff-back:hover { color: var(--greff-accent); }
.greff-progress { display: grid; gap: 7px; }
.greff-progress__label { color: var(--greff-muted); font-size: 12px; text-align: right; }
.greff-progress__track { display: block; width: 100%; height: 5px; background: rgba(29,42,33,.10); border-radius: 999px; overflow: hidden; }
.greff-progress__fill { display: block; height: 100%; width: 0; background: var(--greff-accent); border-radius: inherit; transition: width .28s ease; }
.greff-step__heading { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.greff-step__title { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.03em; font-weight: 600; color: var(--greff-ink); }
.greff-step__lead { max-width: 650px; margin: 15px auto 0; color: var(--greff-muted); font-size: 16px; line-height: 1.6; }
.greff-grid { display: grid; gap: 14px; width: min(900px,100%); margin: 0 auto; }
.greff-grid--categories { grid-template-columns: repeat(2,minmax(0,1fr)); }
.greff-grid--services { grid-template-columns: repeat(2,minmax(0,1fr)); }
.greff-tile, .greff-service {
    appearance: none;
    width: 100%;
    border: 1px solid var(--greff-line);
    border-radius: 18px;
    background: var(--greff-card);
    color: var(--greff-ink);
    cursor: pointer;
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.greff-tile { min-height: 126px; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; gap: 16px; padding: 22px; }
.greff-service { min-height: 118px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 18px; padding: 24px; }
.greff-tile:hover,.greff-tile:focus-visible,.greff-service:hover,.greff-service:focus-visible { transform: translateY(-2px); border-color: rgba(53,90,58,.42); background: #fff; box-shadow: 0 14px 34px rgba(29,42,33,.07); outline: none; }
.greff-tile__mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--greff-accent-soft); color: var(--greff-accent); font-size: 18px; }
.greff-tile__body strong,.greff-service__body strong { display: block; font-size: 19px; line-height: 1.25; font-weight: 600; }
.greff-tile__body small,.greff-service__body small { display: block; margin-top: 6px; color: var(--greff-muted); font-size: 13px; line-height: 1.5; font-weight: 400; }
.greff-tile__arrow,.greff-service__arrow { color: var(--greff-accent); font-size: 24px; transition: transform .2s ease; }
.greff-tile:hover .greff-tile__arrow,.greff-service:hover .greff-service__arrow { transform: translateX(3px); }
.greff-empty { width: min(720px,100%); margin: 0 auto; padding: 28px; border: 1px dashed var(--greff-line); border-radius: 18px; text-align: center; background: rgba(255,255,255,.45); }
.greff-empty strong,.greff-empty span { display:block; }
.greff-empty span { margin-top:8px; color:var(--greff-muted); }
.greff-selection-summary { width:min(650px,100%); margin:0 auto; display:flex; align-items:center; gap:16px; padding:22px 24px; border:1px solid var(--greff-line); border-radius:18px; background:var(--greff-card); }
.greff-selection-summary__check { width:44px; height:44px; flex:0 0 44px; display:grid; place-items:center; border-radius:50%; background:var(--greff-accent-soft); color:var(--greff-accent); font-weight:700; }
.greff-selection-summary small { display:block; color:var(--greff-muted); font-size:12px; margin-bottom:3px; }
.greff-selection-summary strong { display:block; font-size:19px; }
.greff-actions { display:flex; justify-content:center; margin-top:24px; }
.greff-primary { appearance:none; border:1px solid var(--greff-accent); border-radius:999px; background:var(--greff-accent); color:#fff; padding:14px 22px; font:inherit; font-weight:600; cursor:pointer; transition:transform .2s ease,box-shadow .2s ease; }
.greff-primary:hover,.greff-primary:focus-visible { transform:translateY(-1px); box-shadow:0 10px 24px rgba(29,42,33,.15); outline:none; }

@media (max-width:760px) {
    .greff-assistant__topbar { grid-template-columns:1fr; gap:12px; margin-bottom:26px; }
    .greff-progress__label { text-align:left; }
    .greff-grid--categories,.greff-grid--services { grid-template-columns:1fr; }
}
@media (max-width:480px) {
    .greff-tile { grid-template-columns:36px minmax(0,1fr) auto; padding:18px 16px; min-height:110px; }
    .greff-tile__mark { width:36px; height:36px; }
    .greff-service { padding:19px 17px; min-height:104px; }
    .greff-step__heading { margin-bottom:24px; }
}

/* v1.3.0 — dynamiczne pytania usługi */
.greff-selection-summary__meta {
    display:block;
    margin-top:5px;
    color:var(--greff-muted);
    font-size:12px;
}
.greff-question {
    width:min(820px,100%);
    margin:0 auto;
}
.greff-question__meta {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin:-14px 0 20px;
    color:var(--greff-muted);
    font-size:12px;
}
.greff-question__required,
.greff-question__optional,
.greff-question__meta > span {
    display:inline-flex;
    align-items:center;
    min-height:26px;
    padding:4px 9px;
    border-radius:999px;
    background:rgba(29,42,33,.06);
}
.greff-question__required { color:var(--greff-accent); background:var(--greff-accent-soft); }
.greff-answer-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}
.greff-answer-grid--compact { grid-template-columns:repeat(2,minmax(0,1fr)); }
.greff-answer-card {
    appearance:none;
    min-height:86px;
    width:100%;
    display:grid;
    grid-template-columns:26px minmax(0,1fr);
    align-items:center;
    gap:14px;
    padding:18px 20px;
    border:1px solid var(--greff-line);
    border-radius:16px;
    background:var(--greff-card);
    color:var(--greff-ink);
    text-align:left;
    cursor:pointer;
    transition:border-color .18s ease,background .18s ease,box-shadow .18s ease,transform .18s ease;
}
.greff-answer-card:hover,
.greff-answer-card:focus-visible {
    outline:none;
    transform:translateY(-1px);
    border-color:rgba(53,90,58,.38);
    box-shadow:0 10px 24px rgba(29,42,33,.06);
}
.greff-answer-card.is-selected {
    border-color:var(--greff-accent);
    background:var(--greff-accent-soft);
}
.greff-answer-card__radio {
    width:22px;
    height:22px;
    border:1.5px solid rgba(29,42,33,.3);
    border-radius:50%;
    display:grid;
    place-items:center;
}
.greff-answer-card__radio span {
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--greff-accent);
    transform:scale(0);
    transition:transform .16s ease;
}
.greff-answer-card.is-selected .greff-answer-card__radio { border-color:var(--greff-accent); }
.greff-answer-card.is-selected .greff-answer-card__radio span { transform:scale(1); }
.greff-answer-card__label { font-size:15px; font-weight:600; line-height:1.35; }
.greff-field {
    display:block;
    width:min(620px,100%);
    margin:0 auto;
}
.greff-field__label {
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:600;
}
.greff-field__control { position:relative; }
.greff-field input,
.greff-field textarea {
    width:100%;
    border:1px solid var(--greff-line);
    border-radius:15px;
    background:var(--greff-card);
    color:var(--greff-ink);
    font:inherit;
    font-size:16px;
    padding:15px 16px;
    outline:none;
    transition:border-color .18s ease,box-shadow .18s ease;
}
.greff-field textarea { resize:vertical; min-height:120px; }
.greff-field input:focus,
.greff-field textarea:focus { border-color:var(--greff-accent); box-shadow:0 0 0 3px var(--greff-accent-soft); }
.greff-field__unit {
    position:absolute;
    top:50%;
    right:14px;
    transform:translateY(-50%);
    color:var(--greff-muted);
    font-size:13px;
}
.greff-field__control input + .greff-field__unit { pointer-events:none; }
.greff-upload {
    width:min(680px,100%);
    min-height:180px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:28px;
    border:1px dashed rgba(53,90,58,.42);
    border-radius:18px;
    background:rgba(255,255,255,.5);
    text-align:center;
    cursor:pointer;
}
.greff-upload input { position:absolute; opacity:0; pointer-events:none; }
.greff-upload__icon {
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--greff-accent-soft);
    color:var(--greff-accent);
    font-size:24px;
}
.greff-upload strong { font-size:17px; }
.greff-upload small { color:var(--greff-muted); font-size:13px; }
.greff-upload__selected {
    width:min(680px,100%);
    margin:12px auto 0;
    padding:11px 14px;
    border-radius:12px;
    background:var(--greff-accent-soft);
    color:var(--greff-muted);
    font-size:12px;
    line-height:1.5;
}
.greff-actions--question { margin-top:28px; }
.greff-question.has-error .greff-answer-card,
.greff-question.has-error .greff-field input,
.greff-question.has-error .greff-field textarea,
.greff-question.has-error .greff-upload { border-color:#b84a4a; }
.greff-assistant__notice--error { background:rgba(184,74,74,.09); color:#8f3333; }
.greff-answer-summary {
    width:min(760px,100%);
    margin:0 auto;
    display:grid;
    gap:10px;
}
.greff-answer-summary__row {
    appearance:none;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:17px 19px;
    border:1px solid var(--greff-line);
    border-radius:14px;
    background:var(--greff-card);
    color:var(--greff-ink);
    text-align:left;
    cursor:pointer;
}
.greff-answer-summary__row:hover { border-color:rgba(53,90,58,.38); }
.greff-answer-summary__row small { display:block; margin-bottom:3px; color:var(--greff-muted); font-size:11px; }
.greff-answer-summary__row strong { display:block; font-size:14px; font-weight:600; }
.greff-answer-summary__edit { color:var(--greff-accent); font-size:12px; font-weight:600; }

@media (max-width:680px) {
    .greff-answer-grid,
    .greff-answer-grid--compact { grid-template-columns:1fr; }
    .greff-answer-card { min-height:72px; padding:15px 16px; }
    .greff-answer-summary__row { align-items:flex-start; }
}


/* v1.4.0 — frontend pricing */
.greff-pricing{display:grid;grid-template-columns:minmax(0,1.45fr) repeat(2,minmax(150px,.7fr));gap:14px;margin:24px 0}
.greff-pricing>div{border:1px solid rgba(35,52,38,.14);border-radius:16px;padding:20px;background:#fff}
.greff-pricing__main{display:flex;flex-direction:column;justify-content:center;min-height:124px}
.greff-pricing__main small,.greff-pricing__metric small{display:block;font-size:12px;letter-spacing:.05em;text-transform:uppercase;opacity:.62;margin-bottom:7px}
.greff-pricing__main strong{font-size:clamp(28px,4vw,44px);line-height:1.04;font-weight:650;letter-spacing:-.03em}
.greff-pricing__main span{margin-top:8px;font-size:14px;opacity:.7}
.greff-pricing__metric{display:flex;flex-direction:column;justify-content:center}
.greff-pricing__metric strong{font-size:20px;line-height:1.2}
.greff-pricing--manual{grid-template-columns:minmax(0,1.45fr) repeat(2,minmax(150px,.7fr))}
.greff-pricing-note{display:flex;gap:10px;flex-direction:column;border:1px solid rgba(35,52,38,.12);border-radius:14px;padding:16px 18px;margin:12px 0;background:rgba(35,52,38,.035)}
.greff-pricing-note strong{font-size:15px}.greff-pricing-note span{font-size:14px;line-height:1.5;opacity:.72}
.greff-pricing-note--warning{border-color:rgba(146,102,20,.25);background:rgba(184,132,34,.07)}
.greff-pricing-disclaimer{font-size:12px;line-height:1.5;opacity:.58;margin-top:16px}
@media(max-width:760px){.greff-pricing,.greff-pricing--manual{grid-template-columns:1fr 1fr}.greff-pricing__main{grid-column:1/-1}.greff-pricing>div{padding:17px}.greff-pricing__main{min-height:auto}.greff-pricing__main strong{font-size:32px}}
@media(max-width:480px){.greff-pricing,.greff-pricing--manual{grid-template-columns:1fr}.greff-pricing__main{grid-column:auto}.greff-pricing__metric strong{font-size:18px}}

/* v1.5.0 — kalendarz dostępności klienta */
.greff-calendar-legend{display:flex;flex-wrap:wrap;gap:14px 20px;justify-content:center;margin:18px 0 20px;font-size:12px;color:var(--greff-muted)}
.greff-calendar-legend span{display:flex;align-items:center;gap:7px}.greff-calendar-legend i{width:11px;height:11px;border-radius:50%;display:inline-block}
.greff-calendar-legend i.is-available{background:#6fa676}.greff-calendar-legend i.is-limited{background:#d6ad43}.greff-calendar-legend i.is-unavailable{background:#c8c8c8}
.greff-calendar{width:min(820px,100%);margin:0 auto;border:1px solid var(--greff-line);background:var(--greff-card);border-radius:18px;padding:18px}
.greff-calendar__nav{display:grid;grid-template-columns:46px 1fr 46px;align-items:center;gap:10px;margin-bottom:14px}
.greff-calendar__nav strong{text-align:center;font-size:18px;font-weight:650}.greff-calendar__nav button{appearance:none;border:1px solid var(--greff-line);background:#fff;color:var(--greff-ink);height:40px;border-radius:11px;cursor:pointer;font-size:18px}.greff-calendar__nav button:disabled{opacity:.3;cursor:not-allowed}
.greff-calendar__week,.greff-calendar__grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:7px}.greff-calendar__week{margin-bottom:7px}.greff-calendar__week span{text-align:center;font-size:11px;color:var(--greff-muted);font-weight:600;padding:4px}
.greff-calendar__empty{min-height:72px}.greff-calendar-day{appearance:none;min-height:76px;border:1px solid var(--greff-line);border-radius:12px;background:#fff;color:var(--greff-ink);padding:9px 6px;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;cursor:pointer;transition:.18s ease}
.greff-calendar-day strong{font-size:18px;line-height:1}.greff-calendar-day small{font-size:9px;line-height:1.15;text-align:center;color:var(--greff-muted)}
.greff-calendar-day.is-available{background:rgba(87,145,96,.08);border-color:rgba(87,145,96,.24)}.greff-calendar-day.is-limited{background:rgba(214,173,67,.10);border-color:rgba(214,173,67,.32)}
.greff-calendar-day.is-unavailable,.greff-calendar-day.is-outside{background:rgba(0,0,0,.025);opacity:.48;cursor:not-allowed}.greff-calendar-day:not(:disabled):hover{transform:translateY(-1px);border-color:rgba(53,90,58,.48)}
.greff-calendar-day.is-selected{outline:2px solid var(--greff-accent);outline-offset:1px;background:var(--greff-accent-soft)}
.greff-dayparts{width:min(820px,100%);margin:16px auto 0;border:1px solid var(--greff-line);border-radius:16px;padding:17px;background:var(--greff-card)}
.greff-dayparts__head small{display:block;text-transform:uppercase;letter-spacing:.06em;font-size:10px;color:var(--greff-muted);margin-bottom:4px}.greff-dayparts__head strong{font-size:16px;text-transform:none}.greff-dayparts__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}
.greff-daypart{appearance:none;border:1px solid var(--greff-line);border-radius:13px;background:#fff;color:var(--greff-ink);padding:14px 12px;text-align:left;cursor:pointer;display:flex;flex-direction:column;gap:3px}.greff-daypart span{font-weight:650;font-size:14px}.greff-daypart small{font-size:11px;color:var(--greff-muted)}.greff-daypart:not(:disabled):hover{border-color:rgba(53,90,58,.42)}.greff-daypart.is-selected{border-color:var(--greff-accent);background:var(--greff-accent-soft)}.greff-daypart:disabled{opacity:.42;cursor:not-allowed;background:rgba(0,0,0,.025)}
.greff-dayparts__note{margin:13px 0 0;font-size:12px;line-height:1.5;color:var(--greff-muted)}
.greff-primary:disabled{opacity:.45;cursor:not-allowed;transform:none!important}
@media(max-width:680px){.greff-calendar{padding:12px}.greff-calendar__week,.greff-calendar__grid{gap:4px}.greff-calendar-day{min-height:62px;padding:7px 3px;border-radius:9px}.greff-calendar-day strong{font-size:16px}.greff-calendar-day small{font-size:0}.greff-calendar-day small:after{content:'•';font-size:10px}.greff-calendar__empty{min-height:62px}.greff-dayparts__grid{grid-template-columns:1fr}.greff-calendar-legend{justify-content:flex-start}}

/* v1.6.0 — dane klienta, podsumowanie i zapis rezerwacji */
.greff-contact-form,
.greff-review,
.greff-success {
    width: min(900px,100%);
    margin: 0 auto;
}
.greff-form-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
}
.greff-field--wide { grid-column:1 / -1; }
.greff-contact-form .greff-field {
    display:grid;
    gap:8px;
}
.greff-contact-form .greff-field__label {
    font-size:13px;
    font-weight:600;
    color:var(--greff-ink);
}
.greff-contact-form .greff-field__label small { color:var(--greff-muted); font-weight:400; }
.greff-contact-form input,
.greff-contact-form textarea {
    width:100%;
    border:1px solid var(--greff-line);
    border-radius:14px;
    background:#fff;
    color:var(--greff-ink);
    padding:14px 15px;
    font:inherit;
    line-height:1.35;
    box-shadow:none;
    transition:border-color .18s ease, box-shadow .18s ease;
}
.greff-contact-form input:focus,
.greff-contact-form textarea:focus {
    outline:none;
    border-color:var(--greff-accent);
    box-shadow:0 0 0 3px rgba(53,90,58,.10);
}
.greff-consent {
    display:grid;
    grid-template-columns:20px minmax(0,1fr);
    gap:12px;
    align-items:start;
    margin-top:20px;
    padding:17px 18px;
    border:1px solid var(--greff-line);
    border-radius:14px;
    background:rgba(255,255,255,.55);
    color:var(--greff-muted);
    font-size:13px;
    line-height:1.55;
    cursor:pointer;
}
.greff-consent input { width:18px; height:18px; margin:2px 0 0; accent-color:var(--greff-accent); }
.greff-review { display:grid; gap:14px; }
.greff-review-card {
    padding:22px 24px;
    border:1px solid var(--greff-line);
    border-radius:18px;
    background:var(--greff-card);
}
.greff-review-card__head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:14px;
}
.greff-review-card__head > span {
    color:var(--greff-muted);
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.greff-review-card__head button {
    appearance:none;
    border:0;
    background:transparent;
    color:var(--greff-accent);
    padding:4px 0;
    font:inherit;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}
.greff-review-card__title { display:block; font-size:22px; line-height:1.25; }
.greff-review-card p { margin:8px 0 0; color:var(--greff-muted); line-height:1.55; }
.greff-review-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px 24px; }
.greff-review-list > div { min-width:0; }
.greff-review-list small { display:block; margin-bottom:4px; color:var(--greff-muted); font-size:12px; }
.greff-review-list strong { display:block; font-size:15px; line-height:1.45; word-break:break-word; }
.greff-review-price { display:block; font-size:clamp(27px,4vw,38px); line-height:1.1; color:var(--greff-accent); }
.greff-review-note { font-size:13px; }
.greff-submit-note {
    width:min(900px,100%);
    margin:16px auto 0;
    padding:13px 15px;
    border-radius:12px;
    background:rgba(29,42,33,.055);
    color:var(--greff-muted);
    font-size:12px;
    line-height:1.5;
    text-align:center;
}
.greff-primary[disabled] { opacity:.55; cursor:not-allowed; transform:none!important; box-shadow:none!important; }
.greff-success { text-align:center; }
.greff-success__icon {
    width:70px;
    height:70px;
    display:grid;
    place-items:center;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--greff-accent-soft);
    color:var(--greff-accent);
    font-size:31px;
    font-weight:700;
}
.greff-success__id {
    width:min(460px,100%);
    margin:28px auto 18px;
    padding:20px;
    border:1px solid var(--greff-line);
    border-radius:18px;
    background:var(--greff-card);
}
.greff-success__id small { display:block; color:var(--greff-muted); font-size:12px; margin-bottom:4px; }
.greff-success__id strong { font-size:25px; letter-spacing:.02em; color:var(--greff-accent); }
.greff-success__summary {
    width:min(720px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    text-align:left;
}
.greff-success__summary > div {
    padding:17px 18px;
    border:1px solid var(--greff-line);
    border-radius:15px;
    background:rgba(255,255,255,.55);
}
.greff-success__summary small { display:block; margin-bottom:4px; color:var(--greff-muted); font-size:11px; text-transform:uppercase; letter-spacing:.06em; }
.greff-success__summary strong { display:block; line-height:1.4; }

@media (max-width:760px) {
    .greff-form-grid,
    .greff-review-list,
    .greff-success__summary { grid-template-columns:1fr; }
    .greff-field--wide { grid-column:auto; }
}
@media (max-width:480px) {
    .greff-review-card { padding:18px 16px; border-radius:16px; }
    .greff-contact-form input,.greff-contact-form textarea { padding:13px 13px; }
    .greff-consent { padding:15px; }
}

/* Doradcza ścieżka Zielonego Asystenta */
.greff-grid--advisor { grid-template-columns:repeat(2,minmax(0,1fr)); }
.greff-tile--advisor .greff-tile__mark { font-size:18px; }
.greff-advisor-goal-summary {
    width:min(760px,100%);
    margin:0 auto 18px;
    padding:14px 16px;
    border:1px solid var(--greff-line);
    border-radius:14px;
    background:rgba(255,255,255,.58);
}
.greff-advisor-goal-summary small { display:block; color:var(--greff-muted); font-size:11px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:3px; }
.greff-advisor-goal-summary strong { display:block; font-size:17px; line-height:1.35; }
.greff-advisor-results {
    width:min(900px,100%);
    margin:0 auto;
    display:grid;
    gap:12px;
}
.greff-recommendation {
    position:relative;
    width:100%;
    display:grid;
    grid-template-columns:1fr auto;
    gap:18px;
    align-items:center;
    text-align:left;
    padding:20px 22px;
    border:1px solid var(--greff-line);
    border-radius:17px;
    background:var(--greff-card);
    color:var(--greff-text);
    font:inherit;
    cursor:pointer;
    transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.greff-recommendation:hover,.greff-recommendation:focus-visible {
    transform:translateY(-2px);
    border-color:var(--greff-accent);
    box-shadow:0 10px 28px rgba(29,42,33,.08);
    outline:none;
}
.greff-recommendation.is-best { border-color:color-mix(in srgb,var(--greff-accent) 52%,var(--greff-line)); background:linear-gradient(180deg,rgba(255,255,255,.92),var(--greff-accent-soft)); }
.greff-recommendation__badge {
    position:absolute;
    top:-9px;
    left:18px;
    padding:4px 9px;
    border-radius:999px;
    background:var(--greff-accent);
    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
}
.greff-recommendation__content { display:block; min-width:0; }
.greff-recommendation__content small { display:block; color:var(--greff-muted); font-size:11px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; }
.greff-recommendation__content strong { display:block; font-size:20px; line-height:1.3; margin-bottom:5px; }
.greff-recommendation__content span { display:block; color:var(--greff-muted); line-height:1.5; font-size:14px; }
.greff-recommendation__arrow { font-size:22px; color:var(--greff-accent); }
.greff-actions--split { justify-content:center; margin-top:18px; }
@media (max-width:760px) {
    .greff-grid--advisor { grid-template-columns:1fr; }
    .greff-recommendation { padding:18px 17px; gap:12px; }
    .greff-recommendation__content strong { font-size:18px; }
}

/* Doradca v1.8 — pytania warunkowe i punktowane rekomendacje */
.greff-grid--advisor-answers{grid-template-columns:repeat(2,minmax(0,1fr));}
.greff-tile--advisor-answer.is-selected{outline:2px solid currentColor;outline-offset:2px;}
.greff-recommendation__match{display:block;margin-top:8px;font-style:normal;font-size:12px;font-weight:700;opacity:.72;}
@media (max-width:700px){.greff-grid--advisor-answers{grid-template-columns:1fr;}}


/* Doradca: finalne rekomendacje */
.greff-recommendation__why{margin-top:14px;padding-top:12px;border-top:1px solid var(--greff-line);font-size:13px;color:var(--greff-text);}
.greff-recommendation__why b{display:block;margin-bottom:6px;font-size:13px;}
.greff-recommendation__why ul{margin:0;padding-left:18px;color:var(--greff-muted);}
.greff-recommendation__why li{margin:4px 0;line-height:1.4;}
.greff-recommendation__actions{display:flex;align-items:center;justify-content:flex-end;min-width:190px;}
.greff-recommendation__choose{white-space:nowrap;}
@media (max-width:760px){
  .greff-recommendation__actions{width:100%;min-width:0;justify-content:stretch;}
  .greff-recommendation__choose{width:100%;}
}
