@charset "UTF-8";
@media print {
  body {
    margin: 0;
  }
  .page-break {
    page-break-after: always;
  }
}
.pricing-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.pricing-page .header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.pricing-page .logo {
  font-size: 24px;
  font-weight: 700;
  color: #A04610;
}
.pricing-page .hero {
  text-align: center;
  margin-bottom: 50px;
}
.pricing-page .hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #111D30;
  font-weight: 700;
}
.pricing-page .hero-subtitle {
  font-size: 18px;
  color: #111D30;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.pricing-page .vat-note {
  text-align: center;
  font-size: 14px;
  color: #111D30;
  margin-bottom: 35px;
}
.pricing-page .packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .pricing-page .packages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-page .packages {
    grid-template-columns: 1fr;
  }
}
.pricing-page .package {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px 25px;
  background: white;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.pricing-page .package:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pricing-page .package.featured {
  border-color: #A04610;
  border-width: 2px;
  position: relative;
  box-shadow: 0 2px 8px rgba(160, 70, 16, 0.1);
}
.pricing-page .package.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #A04610;
  color: white;
  padding: 5px 18px;
  border-radius: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.pricing-page .package-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}
.pricing-page .package-price {
  font-size: 36px;
  font-weight: 700;
  color: #A04610;
  margin-bottom: 5px;
  line-height: 1;
}
.pricing-page .package-price-note {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}
.pricing-page .package-duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
}
.pricing-page .package-features {
  list-style: none;
  flex-grow: 1;
}
.pricing-page .package-features li {
  padding: 8px 0;
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: start;
}
.pricing-page .package-features li::before {
  content: "✓";
  color: #A04610;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}
.pricing-page .package-features li.not-included {
  color: #999;
}
.pricing-page .package-features li.not-included::before {
  content: "—";
  color: #ccc;
}
.pricing-page .package-ideal {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #111D30;
  font-style: italic;
}
.pricing-page .footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.pricing-page .footer-section {
  margin-bottom: 30px;
}
.pricing-page .footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111D30;
}
.pricing-page .footer-content {
  font-size: 14px;
  color: #111D30;
  line-height: 1.8;
}
.pricing-page .rate-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .pricing-page .rate-table {
    grid-template-columns: 1fr;
  }
}
.pricing-page .rate-item {
  background: #f8f9fa;
  padding: 15px 18px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}
.pricing-page .rate-item:hover {
  border-color: #A04610;
  background: #fff;
}
.pricing-page .rate-volume {
  font-weight: 600;
  color: #111D30;
  margin-bottom: 5px;
}
.pricing-page .rate-price {
  color: #A04610;
  font-weight: 700;
  font-size: 16px;
}
.pricing-page .contact {
  background: linear-gradient(135deg, #fef5f0 0%, #fdeee5 100%);
  padding: 35px 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid #f8dccf;
}
.pricing-page .contact-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111D30;
}
.pricing-page .contact-info {
  font-size: 15px;
  color: #111D30;
  line-height: 1.7;
}
.pricing-page .contact-link {
  color: #A04610;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.pricing-page .contact-link:hover {
  color: #7d3709;
  text-decoration: underline;
}

/*# sourceMappingURL=pricing.css.map */