/* Prices page styles */
.prices-section {
  background: linear-gradient(160deg, #eef5f1, #f8faf9 60%);
  padding: 48px 20px;
  min-height: calc(100vh - 72px);
}

.prices-container {
  max-width: 800px;
  margin: 0 auto;
}

.prices-header {
  text-align: center;
  margin-bottom: 24px;
}

.prices-header h1 {
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.prices-header p {
  color: #6B6B6B;
  font-size: 15px;
}

.prices-table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow-x: auto;
}

.prices-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.prices-table thead {
  background: #5C8A6B;
  color: #fff;
}

.prices-table th {
  padding: 13px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.prices-table th:last-child {
  text-align: right;
  width: 90px;
}

.prices-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.prices-table tbody tr:last-child {
  border-bottom: none;
}

.prices-table tbody tr:hover {
  background: #f8faf9;
}

.prices-table td {
  padding: 11px 14px;
  font-size: 14px;
  color: #222;
  line-height: 1.4;
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.prices-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #5C8A6B;
  white-space: nowrap;
  width: 90px;
}

.price-free {
  color: #2e7d32;
  font-weight: 600;
}

.price-offer {
  color: #e65100;
  font-weight: 700;
}

.price-note {
  font-size: 11px;
  color: #888;
  font-weight: 400;
}

.prices-disclaimer {
  text-align: center;
  color: #888;
  font-size: 12px;
  padding: 0 12px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.prices-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slim top CTA bar - above prices table */
.prices-cta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 14px;
  background: #1a3a2a;
  border-radius: 8px;
  flex-wrap: wrap;
}

.prices-cta-top .cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #34d37a;
  color: #0D1F17;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.prices-cta-top .cta-main-btn:hover {
  background: #28b868;
}

.prices-cta-top .cta-main-btn svg {
  width: 12px;
  height: 12px;
  fill: #0D1F17;
}

.prices-cta-top .cta-or {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}

.prices-cta-top .cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.prices-cta-top .cta-phone svg {
  width: 12px;
  height: 12px;
  fill: #34d37a;
}

.prices-cta-top .cta-phone:hover {
  color: #34d37a;
}

@media (max-width: 600px) {
  .prices-section {
    padding: 24px 10px;
  }
  .prices-header {
    margin-bottom: 18px;
  }
  .prices-table th,
  .prices-table td {
    padding: 10px 10px;
  }
  .prices-table th {
    font-size: 11px;
  }
  .prices-table td {
    font-size: 13px;
  }
  .prices-cta-top {
    gap: 6px;
    padding: 7px 10px;
  }
  .prices-cta-top .cta-main-btn {
    font-size: 11px;
    padding: 5px 10px;
  }
  .prices-cta-top .cta-phone {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .prices-table th:last-child,
  .prices-table td:last-child {
    width: 80px;
  }
  .prices-table th,
  .prices-table td {
    padding: 9px 8px;
    font-size: 12px;
  }
}