/* Hustle Buddies — Premium marketing sections */

.value-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  margin-bottom: 1.25rem;
}

.value-stack {
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: #e2e8f0;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.18);
}

.value-stack::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
  pointer-events: none;
}

.value-stack-head {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.value-stack-head .eyebrow-line {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #93c5fd;
  margin-bottom: 0.65rem;
}

.value-stack-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: #fff !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.value-stack-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Nested content on navy stack */
.value-stack .outcome-row {
  margin-top: 1.5rem;
}

.value-stack .outcome-card--on-dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.value-stack .outcome-card--on-dark h3 {
  color: #f8fafc !important;
}

.value-stack .outcome-card--on-dark p {
  color: #94a3b8 !important;
}

.value-stack .milestone-ladder .milestone-item {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.value-stack-head p {
  color: #94a3b8;
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.value-total-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.value-total-bar .was {
  font-size: 1.35rem;
  font-weight: 700;
  color: #64748b;
  text-decoration: line-through;
}

.value-total-bar .now {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #34d399;
  letter-spacing: -0.02em;
}

.value-total-bar .note {
  font-size: 0.82rem;
  color: #94a3b8;
  max-width: 220px;
  line-height: 1.45;
}

.value-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(96, 165, 250, 0.35);
}

.value-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.value-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f8fafc !important;
  margin-bottom: 0.25rem;
}

.value-item p {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.value-item .price {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-decoration: line-through;
}

.value-cta {
  text-align: center;
  margin-top: 2rem;
  position: relative;
}

.value-cta p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* Journey timeline */
.journey-section { padding: 5rem 0; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  position: relative;
}

.journey-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #bfdbfe, #2563eb, #34d399);
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.journey-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #1d4ed8;
}

.journey-step.highlight .journey-num {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-color: transparent;
}

.journey-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.journey-step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.journey-callout {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1px solid #bfdbfe;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.journey-callout h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark) !important;
  margin-bottom: 0.4rem;
}

.journey-callout p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.referral-box {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 200px;
}

.referral-box .code {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #34d399;
  margin: 0.35rem 0;
}

.referral-box span {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Video script card */
.script-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-top: 2rem;
}

.script-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.script-card blockquote {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-left: 4px solid #2563eb;
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.script-checklist {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.script-checklist li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  align-items: flex-start;
}

.script-checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}

/* Services matrix */
.services-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-col {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
}

.service-col.featured {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #eff6ff 0%, #fff 40%);
}

.service-col .col-icon {
  font-size: 1.75rem;
  margin-bottom: 0.85rem;
}

.service-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.service-col .col-sub {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1.15rem;
  line-height: 1.5;
}

.service-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-col li {
  font-size: 0.86rem;
  color: var(--text-dark);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.45;
}

.service-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}

/* Outcome psychology row */
.outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.outcome-card {
  padding: 1.75rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.outcome-card::after {
  content: attr(data-label);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

.outcome-card .pain {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #dc2626;
  margin-bottom: 0.5rem;
}

.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.outcome-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.outcome-card .gain {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #059669;
}

/* Grow together band */
.grow-band {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
  border-radius: 24px;
  color: #fff;
  margin: 0 auto;
  max-width: 900px;
}

.grow-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.grow-band p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

.grow-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
  background: transparent !important;
}

.grow-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 960px) {
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid::before { display: none; }
  .services-matrix { grid-template-columns: 1fr; }
  .outcome-row { grid-template-columns: 1fr; }
  .journey-callout { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 560px) {
  .journey-grid { grid-template-columns: 1fr; }
  .value-stack { padding: 1.75rem 1.25rem; }
  .value-total-bar { flex-direction: column; text-align: center; }
}