/* ═══════════════════════════════════════════════════════════
   BYF CALCULATOR — Lead magnet TDEE calculator
   Styled to match landing-page-v2 (Calmmia-lilac palette)
   ═══════════════════════════════════════════════════════════ */

/* --- Scoped variables --- */
.byf-calc {
  /* Paleta (mirror landing-page-v2) */
  --bg:            #F5F1FB;
  --bg-soft:       #FAF7FE;
  --lavender-soft: #EAE3F7;
  --lavender:      #C9BEEE;
  --lavender-deep: #8B7FD4;
  --rose-soft:     #F3EBF0;
  --rose-deep:     #B88FA8;
  --ink:           #17131F;
  --ink-soft:      #3D3449;
  --muted:         rgba(23, 19, 31, 0.50);
  --btn-dark:      #0A0712;
  --white:         #FFFFFF;
  --border:        rgba(139, 127, 212, 0.18);
  --border-soft:   rgba(139, 127, 212, 0.10);
  --success:       #10B981;
  --success-soft:  #ECFDF5;
  --err:           #DC2626;
  --err-soft:      #FEF2F2;

  --shadow-sm:  0 4px 16px rgba(139, 127, 212, 0.08);
  --shadow:     0 12px 32px rgba(139, 127, 212, 0.12);
  --shadow-lg:  0 24px 60px rgba(139, 127, 212, 0.18);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;

  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  background: transparent;
  box-sizing: border-box;
}

.byf-calc *,
.byf-calc *::before,
.byf-calc *::after {
  box-sizing: border-box;
}

.byf-calc button {
  font-family: inherit;
}

/* --- Hero --- */
.byf-calc__hero {
  text-align: center;
  padding: 20px 10px 36px;
  max-width: 680px;
  margin: 0 auto;
}
.byf-calc__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.byf-calc__title em {
  font-style: italic;
  color: var(--lavender-deep);
  font-weight: 500;
}
.byf-calc__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* --- Section / card --- */
.byf-calc__section {
  display: block;
}
.byf-calc__section[hidden] {
  display: none !important;
}
.byf-calc [hidden] {
  display: none !important;
}
.byf-calc__card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.byf-calc__card--wide {
  max-width: 720px;
}
@media (max-width: 560px) {
  .byf-calc__card { padding: 26px 20px; border-radius: 18px; }
  .byf-calc { padding: 24px 14px 60px; }
}

/* --- Progress --- */
.byf-calc__progress {
  margin-bottom: 22px;
}
.byf-calc__bar {
  width: 100%;
  height: 6px;
  background: var(--lavender-soft);
  border-radius: 999px;
  overflow: hidden;
}
.byf-calc__barin {
  height: 100%;
  background: linear-gradient(90deg, var(--lavender) 0%, var(--lavender-deep) 100%);
  transition: width 360ms cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 999px;
  width: 0%;
}
.byf-calc__stepnum {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- Question + body --- */
.byf-calc__q {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin: 12px 0 6px;
}
.byf-calc__qsub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.byf-calc__body {
  min-height: 60px;
  margin-bottom: 8px;
}

/* --- Error message (inline) --- */
.byf-calc__err-msg {
  font-size: 13px;
  color: var(--err);
  min-height: 18px;
  padding: 4px 0;
  font-weight: 500;
}
.byf-calc__err {
  background: var(--err-soft);
  color: var(--err);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
}

/* --- Input rows --- */
.byf-calc__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.byf-calc__sub-row {
  margin-top: 18px;
}
.byf-calc__input {
  flex: 1;
  min-width: 0;
  height: 58px;
  padding: 0 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms, background-color 180ms;
  font-family: inherit;
}
.byf-calc__input:focus {
  border-color: var(--lavender-deep);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(139, 127, 212, 0.12);
}
.byf-calc__input::placeholder {
  color: rgba(23, 19, 31, 0.32);
  font-weight: 400;
}
.byf-calc__unit {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  min-width: 48px;
}
.byf-calc__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.byf-calc__select {
  width: 100%;
  height: 54px;
  padding: 0 42px 0 18px;
  font-size: 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  appearance: none;
  font-family: inherit;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path d='M1 1l6 6 6-6' stroke='%238B7FD4' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.byf-calc__select:focus {
  border-color: var(--lavender-deep);
  background-color: var(--white);
}
.byf-calc__hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* --- Chip rows --- */
.byf-calc__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.byf-calc__chip {
  appearance: none;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 180ms;
  font-family: inherit;
}
.byf-calc__chip:hover {
  border-color: var(--lavender);
  background: var(--lavender-soft);
}
.byf-calc__chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* --- Stacked options (radio cards) --- */
.byf-calc__stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.byf-calc__option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 160ms;
}
.byf-calc__option:hover {
  border-color: var(--lavender);
  background: var(--lavender-soft);
}
.byf-calc__option.is-active {
  border-color: var(--lavender-deep);
  background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--bg-soft) 100%);
  box-shadow: 0 0 0 4px rgba(139, 127, 212, 0.10);
}
.byf-calc__option input[type="radio"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 160ms;
}
.byf-calc__option.is-active input[type="radio"] {
  border-color: var(--lavender-deep);
}
.byf-calc__option input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 12px; height: 12px;
  background: var(--lavender-deep);
  border-radius: 50%;
}
.byf-calc__option-body {
  flex: 1;
  min-width: 0;
}
.byf-calc__option-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.byf-calc__option-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

/* --- Nav buttons --- */
.byf-calc__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.byf-calc__primary {
  appearance: none;
  background: var(--btn-dark);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 180ms;
  box-shadow: 0 4px 14px rgba(10, 7, 18, 0.18);
  font-family: inherit;
}
.byf-calc__primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10, 7, 18, 0.25);
}
.byf-calc__primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.byf-calc__primary--full {
  width: 100%;
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  margin-top: 4px;
}
.byf-calc__ghost {
  appearance: none;
  background: transparent;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 160ms;
  font-family: inherit;
}
.byf-calc__ghost:hover {
  border-color: var(--ink-soft);
  background: var(--bg-soft);
}

/* --- Review (step 11) --- */
.byf-calc__review {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.byf-calc__review-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
}
.byf-calc__review-row span {
  color: var(--muted);
}
.byf-calc__review-row strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.byf-calc__review-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}
.byf-calc__review-row--big {
  padding: 14px 0 4px;
  font-size: 16px;
}
.byf-calc__review-row--big strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--lavender-deep);
}

/* ═══════════════════════════════════════════════════════════
   RESULT VIEW
   ═══════════════════════════════════════════════════════════ */
.byf-calc__result-head {
  text-align: center;
  margin-bottom: 24px;
}
.byf-calc__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.byf-calc__result-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.2;
}
.byf-calc__result-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Big kcal callout */
.byf-calc__kcal-big {
  text-align: center;
  background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  margin: 22px 0;
}
.byf-calc__kcal-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 9vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.byf-calc__kcal-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Macro grid */
.byf-calc__macros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 480px) {
  .byf-calc__macros { grid-template-columns: 1fr; }
}
.byf-calc__macro {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.byf-calc__macro-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.byf-calc__macro-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.byf-calc__macro-unit {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Details accordion */
.byf-calc__details {
  margin: 8px 0 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.byf-calc__details summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.byf-calc__details summary::-webkit-details-marker { display: none; }
.byf-calc__details summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--lavender-deep);
  transition: transform 200ms;
  line-height: 1;
}
.byf-calc__details[open] summary::after {
  transform: rotate(45deg);
}
.byf-calc__details-body {
  padding: 4px 18px 18px;
}
.byf-calc__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 520px) {
  .byf-calc__stat-row { grid-template-columns: 1fr; }
}
.byf-calc__stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid var(--border-soft);
}
.byf-calc__stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.byf-calc__stat-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}
.byf-calc__stat-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}
.byf-calc__details-note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 10px 0 0;
}

/* ═══════════════════════════════════════════════════════════
   MALE NOTE (umesto gate-a za muškarce)
   ═══════════════════════════════════════════════════════════ */
.byf-calc__male-note {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(145deg, var(--bg-soft) 0%, #F0ECF8 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  margin-top: 18px;
  align-items: flex-start;
}
.byf-calc__male-note-ico {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.byf-calc__male-note-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
  min-width: 0;
}
.byf-calc__male-note-body strong {
  color: var(--ink);
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}
.byf-calc__male-note-body p {
  margin: 6px 0 0;
}
.byf-calc__male-note-cta {
  font-style: italic;
  color: var(--muted);
}

@media (max-width: 480px) {
  .byf-calc__male-note { flex-direction: column; gap: 8px; padding: 18px 18px; }
  .byf-calc__male-note-ico { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   EMAIL GATE
   ═══════════════════════════════════════════════════════════ */
.byf-calc__gate {
  background: linear-gradient(145deg, #FDFBFF 0%, var(--lavender-soft) 100%);
  border: 1.5px solid var(--lavender);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
}
.byf-calc__gate::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(139, 127, 212, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.byf-calc__gate-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  position: relative;
}
.byf-calc__gate-ico {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.byf-calc__gate-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--ink);
}
.byf-calc__gate-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}
.byf-calc__gate-sub strong {
  color: var(--lavender-deep);
}
.byf-calc__gate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 14px;
  position: relative;
}
.byf-calc__gate-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}
.byf-calc__gate-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: var(--lavender-deep);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Disclaimer */
.byf-calc__disclaimer {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 18px;
}
.byf-calc__disclaimer a {
  color: var(--lavender-deep);
  font-weight: 600;
  text-decoration: underline;
}

/* Form */
.byf-calc__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.byf-calc__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.byf-calc__field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.byf-calc__field input[type="email"] {
  height: 54px;
  padding: 0 18px;
  font-size: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  transition: all 180ms;
  font-family: inherit;
}
.byf-calc__field input[type="email"]:focus {
  border-color: var(--lavender-deep);
  box-shadow: 0 0 0 4px rgba(139, 127, 212, 0.14);
}

/* Consent */
.byf-calc__consent {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
  align-items: flex-start;
}
.byf-calc__consent input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 160ms;
  position: relative;
}
.byf-calc__consent input[type="checkbox"]:checked {
  background: var(--lavender-deep);
  border-color: var(--lavender-deep);
}
.byf-calc__consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.byf-calc__consent a {
  color: var(--lavender-deep);
  font-weight: 600;
  text-decoration: underline;
}

.byf-calc__form-msg {
  font-size: 13px;
  min-height: 18px;
  font-weight: 500;
  text-align: center;
}
.byf-calc__form-msg.is-err {
  color: var(--err);
  background: var(--err-soft);
  padding: 10px 12px;
  border-radius: 8px;
}
.byf-calc__form-msg.is-ok {
  color: var(--success);
  background: var(--success-soft);
  padding: 10px 12px;
  border-radius: 8px;
}

/* Result actions */
.byf-calc__result-actions {
  text-align: center;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════════════
   THANK YOU VIEW
   ═══════════════════════════════════════════════════════════ */
.byf-calc__thanks {
  text-align: center;
  max-width: 540px;
}
.byf-calc__thanks-ico {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 16px;
}
.byf-calc__thanks-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.15;
}
.byf-calc__thanks-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.byf-calc__thanks-text em {
  font-style: italic;
  color: var(--lavender-deep);
  font-weight: 600;
}
.byf-calc__thanks-summary {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
}
.byf-calc__thanks-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.byf-calc__thanks-row strong {
  color: var(--ink);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.byf-calc__toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  max-width: 90vw;
  text-align: center;
}
.byf-calc__toast.is-ok {
  background: var(--success-soft);
  color: var(--success);
  border: 1px solid #A7F3D0;
}
.byf-calc__toast.is-err {
  background: var(--err-soft);
  color: var(--err);
  border: 1px solid #FECACA;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .byf-calc__nav { flex-direction: column-reverse; }
  .byf-calc__primary,
  .byf-calc__ghost { width: 100%; }
  .byf-calc__gate { padding: 22px 18px; }
  .byf-calc__gate-head { flex-direction: column; gap: 6px; }
  .byf-calc__gate-ico { font-size: 26px; }
}
