/* Pricing page — Hostinger-style layout, jft.digital palette */
body.page-pricing {
  background: #eef2f6;
}

body.page-pricing .bg-mesh {
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(14, 143, 138, 0.12), transparent 55%),
    linear-gradient(180deg, #e8eef4 0%, #eef2f6 45%, #e4ebf2 100%);
}

body.page-pricing .bg-grid {
  opacity: 0.22;
}

/* Dark teal hero (not purple) */
.hz-hero {
  background: linear-gradient(135deg, #0c1222 0%, #12353a 55%, #0a4f4c 100%);
  color: #ffffff;
  padding: 3.5rem 1.5rem 5.5rem;
  text-align: center;
  position: relative;
}

.hz-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #5eead4;
  border: 1px solid rgba(94, 234, 212, 0.35);
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.15rem;
}

.hz-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.hz-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.hz-tabs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hz-tab {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.7rem 1.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hz-tab:hover,
.hz-tab.is-active {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
}

.hz-main {
  width: min(100% - 2.5rem, 1180px);
  margin: -3rem auto 3.5rem;
  position: relative;
  z-index: 10;
}

.hz-section-header {
  text-align: center;
  margin: 3.5rem 0 2rem;
}

.hz-section-header > span {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hz-section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-top: 0.35rem;
}

.hz-section-header p {
  color: var(--muted);
  margin-top: 0.4rem;
  font-size: 0.98rem;
}

.hz-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}

.hz-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.hz-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.85rem 1.55rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 10px rgba(12, 18, 34, 0.04);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.hz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(12, 18, 34, 0.08);
}

.hz-card.is-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 14px 32px rgba(14, 143, 138, 0.14);
}

.hz-popular {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hz-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 0.28rem 0.65rem;
  display: inline-block;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.hz-tag.is-warm {
  background: rgba(196, 92, 38, 0.12);
  color: var(--warn);
}

.hz-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.hz-card-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.35rem;
  min-height: 2.6rem;
  line-height: 1.5;
}

.hz-price-box {
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #e8edf3;
}

.hz-price {
  font-family: var(--font-logo);
  font-size: clamp(1.85rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.1;
  margin: 0.15rem 0;
}

.hz-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.hz-price-sub {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.hz-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hz-btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.hz-btn.is-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.hz-btn.is-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.hz-why {
  background: var(--accent-soft);
  border: 1px solid rgba(14, 143, 138, 0.25);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  margin-bottom: 1.15rem;
  font-size: 0.88rem;
}

.hz-why strong {
  color: var(--accent-deep);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hz-why p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.hz-features {
  list-style: none;
  margin-top: auto;
}

.hz-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.hz-feature svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.hz-compare {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(12, 18, 34, 0.04);
  margin: 2.5rem 0 0;
  overflow: hidden;
}

.hz-compare-head {
  background: #f4f7fa;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hz-compare-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hz-compare-head p {
  font-size: 0.88rem;
  color: var(--muted);
}

.hz-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hz-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 560px;
}

.hz-table th,
.hz-table td {
  padding: 0.95rem 1.35rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.hz-table thead th {
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.hz-table th:first-child,
.hz-table td:first-child {
  width: 34%;
  font-weight: 600;
  color: var(--ink);
}

.hz-table td {
  text-align: center;
  color: var(--muted);
}

.hz-table td:first-child {
  text-align: left;
}

.hz-table-section {
  background: #e8eef4;
  font-weight: 800 !important;
  color: var(--ink) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem !important;
  padding: 0.65rem 1.35rem !important;
  text-align: left !important;
}

.hz-check {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.hz-dash {
  color: #b8c2d0;
  font-size: 1.1rem;
}

.hz-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 0.5rem;
}

.hz-seo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 2px 8px rgba(12, 18, 34, 0.03);
}

.hz-seo-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hz-seo-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.hz-faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.25rem;
  margin: 3rem 0;
}

.hz-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.hz-faq-item:last-child {
  border-bottom: none;
}

.hz-faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.015em;
}

.hz-faq-q::-webkit-details-marker {
  display: none;
}

.hz-faq-q::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}

.hz-faq-item[open] .hz-faq-q::after {
  content: "−";
}

.hz-faq-a {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

.hz-cta {
  background: linear-gradient(135deg, #0c1222 0%, #0e8f8a 120%);
  border-radius: 16px;
  color: #fff;
  text-align: center;
  padding: 2.75rem 1.75rem;
  margin: 2.5rem 0 1rem;
  box-shadow: 0 14px 32px rgba(12, 18, 34, 0.18);
}

.hz-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.hz-cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.hz-cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hz-cta-actions .btn-white {
  background: #fff;
  color: var(--ink);
  padding: 0.8rem 1.5rem;
  font-weight: 700;
}

.hz-cta-actions .btn-white:hover {
  background: #e8eef4;
}

.hz-cta-actions .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
}

.hz-cta-actions .btn-outline:hover {
  border-color: #fff;
}

@media (max-width: 992px) {
  .hz-grid-3,
  .hz-seo-grid {
    grid-template-columns: 1fr;
  }

  .hz-grid-3 {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .hz-grid-2 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hz-hero {
    padding: 2.75rem 1.25rem 4.5rem;
  }

  .hz-main {
    margin-top: -2.25rem;
  }

  .hz-faq {
    padding: 1.25rem;
  }
}
