/* PRICING + CALCULATOR BELOW */

.calculator-section {
  padding-top: 56px;
}

.calculator-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.calculator-card,
.pricing-combo-card {
  padding: 30px;
  border-radius: 28px;
}

.calculator-card-top {
  margin-bottom: 22px;
}

.calculator-card form {
  display: grid;
  gap: 18px;
}

.calc-options {
  display: grid;
  gap: 12px;
}

.calc-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(79, 178, 196, 0.05);
  cursor: pointer;
  overflow: hidden;
}

.calc-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 18px;
  border-radius: 4px;
  border: 1.5px solid #ffffff;
  background: #ffffff;
  box-shadow: none;
  outline: none;
  position: relative;
}

.calc-option input[type="checkbox"]:checked {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.calc-option input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -58%) rotate(45deg);
}

.calc-option span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.calc-option strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
}

.calc-option small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.calculator-result {
  margin-top: 8px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(79, 178, 196, 0.14) 0%, rgba(255, 255, 255, 0.76) 100%);
  border: 1px solid rgba(79, 178, 196, 0.22);
}

.calculator-result-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calculator-result-price {
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}

.calculator-result-breakdown {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.96rem;
}

.pricing-combo-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(227, 241, 245, 0.95) 100%);
}

.pricing-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-title {
  margin-bottom: 12px;
}

.pricing-intro {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-packages {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
}

.pricing-package {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(79, 178, 196, 0.16);
  background: rgba(79, 178, 196, 0.06);
}

.pricing-package-featured {
  background: rgba(79, 178, 196, 0.1);
  border-color: rgba(79, 178, 196, 0.26);
}

.pricing-package-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pricing-package h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--text);
}

.price {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.price span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0;
}

.pricing-package-note {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.pricing-included {
  padding: 20px;
  border-radius: 22px;
  background: rgba(79, 178, 196, 0.09);
  border: 1px solid rgba(79, 178, 196, 0.16);
}

.pricing-included-inline {
  margin-top: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pricing-included-inline h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.pricing-included h3 {
  margin: 0 0 14px;
  font-size: 1.02rem;
  color: var(--text);
}

.pricing-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
}

.pricing-list li + li {
  margin-top: 10px;
}
