/*--------------------------------------------------------------
# NOVIGEEKS additions on top of the Scout template
# Uses the same CSS variables as main.css so it stays on-brand.
--------------------------------------------------------------*/

/* Service card meta line */
.service-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: -8px;
}

/* Avatar circles for testimonials (no headshots on file) */
.avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card--featured {
  border: 2px solid var(--accent-color);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 30px;
}

.pricing-kind {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.pricing-card h3 {
  font-family: var(--heading-font);
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.pricing-price {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing-renew {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 16px;
}

.pricing-for {
  font-size: 14px;
  margin-bottom: 20px;
  min-height: 66px;
}

.pricing-spec {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricing-spec li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing-spec li:last-child {
  border-bottom: none;
}

.pricing-spec li.yes i {
  color: #1a9c5c;
}

.pricing-spec li.no {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.pricing-spec li.no i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing-footnote {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Live Domain Ledger (Work section) — reuses the Scout .clients
# marquee mechanic with text pills instead of logo images.
--------------------------------------------------------------*/
#work .clients-slide,
.ledger-slide {
  width: 240px;
  height: auto;
  min-height: 84px;
  margin: 0 15px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px 20px;
  text-align: left;
}

.ledger-domain {
  display: block;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--heading-color);
  word-break: break-word;
}

.ledger-category {
  display: block;
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

#work .clients-track.track-1 {
  animation-name: ledger-scroll-left;
  animation-duration: 46s;
}

#work .clients-track.track-2 {
  animation-name: ledger-scroll-right;
  animation-duration: 46s;
}

@keyframes ledger-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-4320px); }
}

@keyframes ledger-scroll-right {
  0% { transform: translateX(-4320px); }
  100% { transform: translateX(0); }
}

@media (max-width: 767px) {
  #work .clients-slide,
  .ledger-slide {
    width: 200px;
    margin: 0 10px;
  }

  @keyframes ledger-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-3360px); }
  }

  @keyframes ledger-scroll-right {
    0% { transform: translateX(-3360px); }
    100% { transform: translateX(0); }
  }
}

/*--------------------------------------------------------------
# Track record (Team section, repurposed as a solo career carousel)
--------------------------------------------------------------*/
.track-info {
  padding: 28px;
}

.track-info .step-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.track-info h3 {
  font-size: 18px;
  line-height: 1.4;
}

.track-info > span {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.team-links {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/*--------------------------------------------------------------
# Contact form note (novigeeks-form uses main.css .form-control etc.)
--------------------------------------------------------------*/
.form-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 10px;
}

.form-submit .btn-link {
  margin-left: 16px;
  color: var(--default-color);
  font-size: 14px;
}

.form-submit .btn-link i {
  margin-right: 4px;
}
