/* TexZona AKB Calculator Premium Light 2.0.0 */
#tz-akbcalc,
#tz-akbcalc * {
  box-sizing: border-box;
}

#tz-akbcalc {
  --tz-ink: #101828;
  --tz-text: #344054;
  --tz-muted: #667085;
  --tz-line: #e4e7ec;
  --tz-soft: #f7f8fa;
  --tz-white: #ffffff;
  --tz-orange: var(--a, #f36f21);
  --tz-cyan: var(--b, #0797b4);
  margin-top: 20px !important;
  margin-bottom: 30px !important;
  padding-right: 16px !important;
  padding-left: 16px !important;
  color: var(--tz-ink);
}

#tz-akbcalc .tzC {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--tz-line);
  border-radius: 30px;
  background: var(--tz-white);
  color: var(--tz-ink);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.08);
}

#tz-akbcalc .tzC::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -150px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--tz-orange) 10%, transparent), transparent 70%);
  pointer-events: none;
}

@supports not (background: color-mix(in srgb, #fff 10%, transparent)) {
  #tz-akbcalc .tzC::before {
    background: radial-gradient(circle, rgba(243, 111, 33, 0.10), rgba(243, 111, 33, 0) 70%);
  }
}

#tz-akbcalc .tzBadge {
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--tz-line);
  border-radius: 999px;
  background: var(--tz-soft);
  color: var(--tz-text);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0;
}

#tz-akbcalc .tzBadge:first-child {
  color: #087d94;
}

#tz-akbcalc h3 {
  max-width: 800px;
  margin: 22px 0 12px;
  color: var(--tz-ink);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

#tz-akbcalc .tzSub {
  max-width: 970px;
  margin: 0 0 clamp(30px, 4vw, 46px);
  color: var(--tz-text);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  opacity: 1;
}

#tz-akbcalc .tzLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.95fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

#tz-akbcalc .tzLeft {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#tz-akbcalc .tzTile,
#tz-akbcalc .tzPanel {
  border: 1px solid var(--tz-line);
  background: var(--tz-white);
  color: var(--tz-ink);
  box-shadow: none;
}

#tz-akbcalc .tzTile,
#tz-akbcalc .t1,
#tz-akbcalc .t2,
#tz-akbcalc .t3,
#tz-akbcalc .t4,
#tz-akbcalc .t5,
#tz-akbcalc .t6 {
  grid-column: auto;
}

#tz-akbcalc .tzTile {
  position: relative;
  min-height: 154px;
  padding: 54px 22px 22px;
  overflow: hidden;
  border-radius: 18px;
  gap: 7px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#tz-akbcalc .tzTile::before {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--tz-cyan);
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.12em;
}

#tz-akbcalc .tzTile:nth-child(1)::before { content: "01"; }
#tz-akbcalc .tzTile:nth-child(2)::before { content: "02"; }
#tz-akbcalc .tzTile:nth-child(3)::before { content: "03"; }
#tz-akbcalc .tzTile:nth-child(4)::before { content: "04"; }
#tz-akbcalc .tzTile:nth-child(5)::before { content: "05"; }
#tz-akbcalc .tzTile:nth-child(6)::before { content: "06"; }

#tz-akbcalc .tzTile strong {
  color: var(--tz-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

#tz-akbcalc .tzTile span {
  color: var(--tz-muted);
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 1;
}

#tz-akbcalc .tzRight {
  min-width: 0;
}

#tz-akbcalc .tzPanel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 24px;
  background: var(--tz-soft);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.06);
}

#tz-akbcalc .tzPanel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--tz-orange);
}

#tz-akbcalc .tzPanelTitle {
  margin: 0;
  color: var(--tz-ink);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.025em;
  opacity: 1;
}

#tz-akbcalc .tzPanelIntro {
  margin: 8px 0 22px;
  color: var(--tz-muted);
  font-size: 13px;
  line-height: 1.55;
}

#tz-akbcalc .tzForm {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
}

#tz-akbcalc .tzField {
  position: relative;
  gap: 7px;
}

#tz-akbcalc .tzLabel {
  color: var(--tz-text);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.4;
  opacity: 1;
}

#tz-akbcalc select,
#tz-akbcalc input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #d8dde5;
  border-radius: 13px;
  background: var(--tz-white);
  color: var(--tz-ink);
  outline: none;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

#tz-akbcalc select option {
  color: var(--tz-ink);
  background: var(--tz-white);
}

#tz-akbcalc input::placeholder {
  color: #98a2b3;
}

#tz-akbcalc select:focus,
#tz-akbcalc input:focus {
  border-color: var(--tz-cyan);
  box-shadow: 0 0 0 3px rgba(7, 151, 180, 0.12);
}

#tz-akbcalc .tzField.has-error input {
  border-color: #d92d20;
  background: #fffbfa;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.08);
}

#tz-akbcalc .tzFieldHelp {
  margin: 1px 0 0;
  color: var(--tz-muted);
  font-size: 11px;
  line-height: 1.45;
}

#tz-akbcalc .tzField.has-error .tzFieldHelp {
  color: #b42318;
}

#tz-akbcalc .tzQuickCaps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

#tz-akbcalc .tzQuickCap {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--tz-line);
  border-radius: 9px;
  background: var(--tz-white);
  color: var(--tz-text);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

#tz-akbcalc .tzQuickCap.is-active {
  border-color: rgba(7, 151, 180, 0.28);
  background: rgba(7, 151, 180, 0.09);
  color: #087d94;
}

#tz-akbcalc .tzMoney {
  min-height: 72px;
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid var(--tz-line);
  border-radius: 16px;
  background: var(--tz-white);
  color: var(--tz-ink);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

#tz-akbcalc .tzMoney b {
  color: var(--tz-text);
  font-size: 12px;
  font-weight: 800;
  opacity: 1;
}

#tz-akbcalc .tzMoney span {
  color: var(--tz-ink);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

#tz-akbcalc .tzMoney.is-ready {
  border-color: rgba(243, 111, 33, 0.30);
  background: #fff8f3;
  box-shadow: 0 10px 24px rgba(243, 111, 33, 0.08);
}

#tz-akbcalc .tzMoney.is-ready span {
  color: #d95812;
}

#tz-akbcalc .tzCalcMeta {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 9px;
  color: var(--tz-muted);
  font-size: 11px;
  line-height: 1.5;
}

#tz-akbcalc .tzCalcMeta.is-visible {
  display: flex;
}

#tz-akbcalc .tzCalcCopy {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #087d94;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
}

#tz-akbcalc .tzHint {
  color: var(--tz-muted);
  font-size: 12px;
  line-height: 1.6;
  opacity: 1;
}

#tz-akbcalc .tzHint b {
  color: var(--tz-text);
  font-weight: 800;
}

#tz-akbcalc .tzBtn {
  min-height: 52px;
  padding: 13px 18px;
  border: 1px solid var(--tz-line);
  border-radius: 14px;
  background: var(--tz-white);
  color: var(--tz-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

#tz-akbcalc .tzBtnPrimary {
  border-color: var(--tz-orange);
  background: var(--tz-orange);
  color: var(--tz-white);
  box-shadow: 0 12px 24px rgba(243, 111, 33, 0.20);
}

#tz-akbcalc .tzBtn:focus-visible,
#tz-akbcalc .tzQuickCap:focus-visible,
#tz-akbcalc .tzCalcCopy:focus-visible {
  outline: 3px solid rgba(7, 151, 180, 0.22);
  outline-offset: 3px;
}

@media (hover: hover) {
  #tz-akbcalc .tzTile:hover {
    border-color: #d3d8e0;
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.07);
    transform: translateY(-3px);
  }

  #tz-akbcalc .tzBtn:hover {
    border-color: #cfd4dc;
    color: var(--tz-ink);
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.07);
    transform: translateY(-2px);
  }

  #tz-akbcalc .tzBtnPrimary:hover {
    border-color: #d95812;
    background: #d95812;
    color: var(--tz-white);
    box-shadow: 0 14px 28px rgba(217, 88, 18, 0.22);
  }

  #tz-akbcalc .tzQuickCap:hover {
    border-color: rgba(7, 151, 180, 0.32);
    color: #087d94;
  }
}

@media (max-width: 1100px) {
  #tz-akbcalc .tzLayout {
    grid-template-columns: 1fr;
  }

  #tz-akbcalc .tzRight {
    order: -1;
  }
}

@media (max-width: 720px) {
  #tz-akbcalc {
    margin-top: 12px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  #tz-akbcalc .tzC {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  #tz-akbcalc h3 {
    margin-top: 18px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  #tz-akbcalc .tzSub {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.65;
  }

  #tz-akbcalc .tzPanel {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  #tz-akbcalc .tzForm {
    grid-template-columns: 1fr;
  }

  #tz-akbcalc .tzTile {
    min-height: 0;
  }

  #tz-akbcalc .tzCalcMeta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tz-akbcalc .tzTile,
  #tz-akbcalc .tzBtn,
  #tz-akbcalc .tzQuickCap {
    transition: none;
  }
}
