/* ===================================================================
   Vixro — additive styles for the startup-repositioned homepage.
   This file only ADDS new component styles (trust bar, process grid,
   subscription layout, FAQ accordion). It never overrides existing
   Webflow classes, so the original design system in style.css stays
   untouched and all current animations/responsiveness keep working.
   All values are pulled from the existing CSS custom properties so
   everything stays visually consistent with the rest of the site.
   =================================================================== */

/* ---------- Trust signals strip (under hero) ---------- */
.vx-trust-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--_gap---gap-xl);
  flex-wrap: wrap;
}

.vx-trust-eyebrow {
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: var(--_typography---paragraph-s);
  font-weight: var(--_font-weight---semi-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vx-trust-note {
  color: var(--light-gray);
  max-width: 460px;
  font-size: var(--_typography---paragraph-l);
  line-height: var(--_line-height---line-height-l);
}

.vx-badge-row {
  margin-top: var(--_gap---gap-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vx-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ffffff26;
  border-radius: var(--_border-radius---border-radius-3xl);
  background-color: #ffffff0d;
  padding: 12px 20px;
  color: var(--white);
  font-size: var(--_typography---paragraph-m);
  font-weight: var(--_font-weight---medium);
  white-space: nowrap;
}

.vx-badge-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* ---------- Capability pill list inside growth cards ---------- */
.vx-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.vx-pill {
  border-radius: var(--_border-radius---border-radius-4xl);
  background-color: #ffffff14;
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-s);
  font-weight: var(--_font-weight---medium);
  padding: 6px 12px;
  transition: all .3s;
}

.growth-card-wrap:hover .vx-pill {
  background-color: #00000014;
  color: var(--dark-color);
}

/* ---------- Process ---------- */
.vx-process-grid {
  margin-top: var(--_gap---gap-2xll);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--_gap---gap-s);
}

@media screen and (max-width: 991px) {
  .vx-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .vx-process-grid {
    grid-template-columns: 1fr;
  }
}

.vx-process-card {
  border-radius: var(--_border-radius---border-radius-xl);
  background-color: var(--dark-field);
  border: 2px solid #444;
  padding: 32px 28px;
  transition: all .4s;
}

.vx-process-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.vx-process-number {
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: var(--_typography---h5);
  margin-bottom: 18px;
}

.vx-process-title {
  color: var(--white);
  font-size: var(--_typography---h6);
  font-weight: var(--_font-weight---semi-bold);
  margin-bottom: 10px;
  margin-top: 0;
}

.vx-process-details {
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-m);
  line-height: var(--_line-height---line-height-l);
}

/* ---------- Subscription / Design Partner section ---------- */
.vx-partner-grid {
  margin-top: var(--_gap---gap-2xll);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--_gap---gap-s);
  align-items: stretch;
}

@media screen and (max-width: 850px) {
  .vx-partner-grid {
    grid-template-columns: 1fr;
  }
}

.vx-partner-card {
  border-radius: var(--_border-radius---border-radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.vx-partner-card.is-out {
  background-color: #ffffff0a;
  border: 1px solid #ffffff1f;
}

.vx-partner-card.is-in {
  background-color: var(--dark-field);
  border: 1px solid var(--primary-color);
}

.vx-partner-card-title {
  color: var(--white);
  font-size: var(--_typography---h6);
  font-weight: var(--_font-weight---semi-bold);
  margin-top: 0;
  margin-bottom: 22px;
}

.vx-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.vx-check-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vx-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vx-check-icon.is-no {
  background-color: #ff5d2b26;
  color: #ff5d2b;
}

.vx-check-icon.is-yes {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

.vx-check-text {
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-l);
}

.vx-check-text.is-strike {
  text-decoration: line-through;
  text-decoration-color: #ffffff40;
}

.vx-partner-divider {
  height: 1px;
  background-color: #ffffff1f;
  margin: 28px 0;
}

.vx-partner-foot {
  color: var(--white);
  font-size: var(--_typography---paragraph-xl);
  font-weight: var(--_font-weight---semi-bold);
  margin-bottom: 24px;
}

.vx-partner-card .primary-button {
  align-self: flex-start;
}

/* ---------- Pricing highlight word ---------- */
.vx-highlight {
  color: var(--primary-color);
}

/* ---------- Partner section: CTA row + trust avatars ---------- */
.vx-partner-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.vx-trust-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vx-avatar-stack {
  display: flex;
}

.vx-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dark-color);
  margin-left: -10px;
}

.vx-avatar:first-child {
  margin-left: 0;
}

.vx-trust-inline-text {
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-s);
  line-height: 1.35;
}

.vx-badge-icon {
  font-size: 16px;
  line-height: 1;
}

.vx-badge-row {
  justify-content: center;
}

.vx-badge strong {
  color: var(--white);
}

/* ---------- Design Partner — 3-tier pricing ---------- */
.vx-pricing-grid {
  margin-top: var(--_gap---gap-2xll);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--_gap---gap-s);
  align-items: stretch;
}

@media screen and (max-width: 991px) {
  .vx-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.vx-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--_border-radius---border-radius-xl);
  background-color: #ffffff0a;
  border: 1px solid #ffffff1f;
  padding: 36px 32px;
  transition: all .4s;
  background: linear-gradient(to top, #aab17b3d, #ced59f10 55%, transparent 100%);

}

.vx-price-card:hover {
  border-color: #ffffff;
  transform: translateY(-4px);
}

.vx-price-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  border-bottom-left-radius: var(--_border-radius---border-radius-xl);
  border-bottom-right-radius: var(--_border-radius---border-radius-xl);
  pointer-events: none;
}

.vx-price-card.is-featured.active {
  height: 100%;
  background: linear-gradient(to top, #d0ec0266, #d0ec0222 55%, transparent 100%);
}

.vx-price-card.is-featured {
  background-color: var(--dark-field);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color), 0 30px 60px -20px #d0ec0233;
}

.vx-price-card.is-featured:hover {
  border-color: var(--primary-color);
}

.vx-price-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-size: var(--_typography---paragraph-s);
  font-weight: var(--_font-weight---semi-bold);
  padding: 6px 16px;
  border-radius: var(--_border-radius---border-radius-4xl);
}

.vx-price-card:hover {
  border-color: #ffffff40;
  transform: translateY(-4px);
}

.vx-price-name {
  color: var(--white);
  font-size: var(--_typography---h6);
  font-weight: var(--_font-weight---semi-bold);
  margin-bottom: 14px;
}

.vx-price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.vx-price-currency {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--_typography---h4);
  line-height: 1;
}

.vx-price-period {
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-m);
}

.vx-price-tagline {
  color: var(--white);
  font-size: var(--_typography---paragraph-l);
  font-weight: var(--_font-weight---medium);
  margin-bottom: 8px;
}

.vx-price-desc {
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-m);
  line-height: var(--_line-height---line-height-l);
}

.vx-price-divider {
  height: 1px;
  background-color: #ffffff1f;
  margin: 24px 0 20px;
}

.vx-price-section-label {
  color: var(--primary-color);
  font-size: var(--_typography---paragraph-s);
  font-weight: var(--_font-weight---semi-bold);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.vx-price-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.vx-price-features li {
  position: relative;
  padding-left: 26px;
  color: var(--light-gray);
  font-size: var(--_typography---paragraph-m);
  line-height: var(--_line-height---line-height-m);
}

.vx-price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.vx-price-ideal {
  margin-bottom: 24px;
}

.vx-ideal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vx-ideal-tag {
  border-radius: var(--_border-radius---border-radius-4xl);
  background-color: #ffffff14;
  color: var(--white);
  font-size: var(--_typography---paragraph-s);
  font-weight: var(--_font-weight---medium);
  padding: 6px 12px;
}

.vx-price-cta {
  display: block;
  text-align: center;
  border-radius: var(--_border-radius---border-radius-s);
  border: 1px solid #ffffff33;
  color: var(--white);
  font-size: var(--_typography---paragraph-m);
  font-weight: var(--_font-weight---semi-bold);
  padding: 14px 20px;
  text-decoration: none;
  margin-top: auto;
  transition: all .3s;
  margin-top: 30px;
}

.vx-price-cta:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.vx-price-cta.is-featured {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.vx-price-cta.is-featured:hover {
  opacity: .88;
  color: var(--dark-color);
}

/* ---------- Contact form: success / error message cards ---------- */
.form-message-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 48px 32px;
  border-radius: var(--_border-radius---border-radius-xl);
}

.form-message-card.success-message {
  background-color: var(--primary-color);
}

.form-message-card.error-message {
  background-color: var(--dark-field);
  border: 1px solid var(--warnning-color);
}

.form-message-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.form-message-icon.success-icon {
  background-color: var(--dark-color);
}

.form-message-icon.error-icon {
  background-color: var(--warnning-color);
}

.form-message-title {
  color: var(--dark-color);
  font-family: var(--font-heading);
  font-size: var(--_typography---h5);
  font-weight: var(--_font-weight---semi-bold);
}

.error-message .form-message-title {
  color: var(--white);
}

.form-message-body {
  color: var(--dark-color);
  opacity: .8;
  font-size: var(--_typography---paragraph-l);
  max-width: 420px;
  line-height: var(--_line-height---line-height-l);
}

.error-message .form-message-body {
  color: var(--light-gray);
  opacity: 1;
}

.form-message-reset-btn {
  margin-top: 16px;
  border: none;
  border-radius: var(--_border-radius---border-radius-4xl);
  background-color: var(--dark-color);
  color: var(--white);
  font-size: var(--_typography---paragraph-m);
  font-weight: var(--_font-weight---semi-bold);
  padding: 14px 26px;
  cursor: pointer;
  transition: opacity .3s;
}

.form-message-reset-btn:hover {
  opacity: .82;
}

.error-message .form-message-reset-btn {
  background-color: var(--warnning-color);
}

/* ---------- Footer LinkedIn icon ---------- */
.vx-linkedin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  transition: color .3s;
}

.vx-linkedin-icon:hover {
  color: var(--primary-color);
}

/* ---------- FAQ ---------- */
.faq-answer-inner {
  overflow: hidden;
}

.vx-faq-plus {
  color: var(--dark-color);
  font-size: 20px;
  line-height: 1;
  transition: transform .3s;
  display: inline-block;
}

.faq-single-wrap.is-open .vx-faq-plus {
  transform: rotate(45deg);
}

.faq-single-wrap.is-open .faq-icon-wrap {
  background-color: var(--primary-color);
}