/* Pricing page styles — owns /pricing visual layout only */

.nav-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link-active { color: var(--teal); }

/* Hero */
.pricing-hero {
  padding: 80px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* Cards section */
.pricing-cards-section {
  padding: 64px 0 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Card base */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}
.pricing-card:hover {
  border-color: rgba(0, 201, 167, 0.3);
}
.pricing-card-featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(0,201,167,0.04) 100%);
  transform: scale(1.02);
  box-shadow: 0 0 0 1px var(--teal), 0 20px 60px rgba(0, 201, 167, 0.1);
}
.pricing-card-enterprise {
  background: var(--surface2);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #040d1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card header */
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.tier-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Price block */
.card-price-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 28px;
}
.price-per-vessel {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-unit {
  font-size: 14px;
  color: var(--text-muted);
}

/* Vessel selector */
.vessel-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.selector-label {
  font-size: 13px;
  color: var(--text-muted);
}
.selector-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
}
.selector-btn {
  background: none;
  border: none;
  color: var(--teal);
  font-size: 18px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  border-radius: 4px;
  transition: background 0.15s;
  padding: 0;
}
.selector-btn:hover { background: var(--teal-dim); }
.vessel-count {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}

/* Monthly total */
.monthly-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.total-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.total-amount {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
}

/* Enterprise price */
.enterprise-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enterprise-price-label {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dim);
}
.enterprise-price-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Feature list */
.card-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  font-size: 14px;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.feat-check {
  color: var(--text-muted);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.feat-plus {
  color: var(--teal);
}

/* CTA buttons */
.cta-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s, transform 0.1s;
  line-height: 1.4;
}
.cta-btn:hover { opacity: 0.88; }
.cta-btn:active { transform: scale(0.98); }
.cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cta-primary {
  background: var(--teal);
  color: #040d1a;
}
.cta-secondary {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--teal);
}

/* FAQ */
.pricing-faq {
  border-top: 1px solid var(--border);
  padding: 72px 0 100px;
}
.pricing-faq-inner {
  max-width: 900px;
}
.faq-heading {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.45;
}
.faq-a {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* Mobile */
@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card-featured {
    transform: none;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
