/* Hustle Buddies — Homepage (conversion redesign) */

/* Urgency bar */
.urgency-bar {
  background: rgba(15, 28, 46, 0.95);
  border-bottom: 1px solid rgba(240, 193, 77, 0.15);
  font-size: 0.82rem;
  position: relative;
  z-index: 110;
}

.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  text-align: center;
  color: var(--text-dim);
  line-height: 1.45;
}

.urgency-bar-inner strong { color: var(--gold-light); }

.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}

body.has-urgency-bar .nav { top: 0; }

/* Hero top layout */
.hero-top {
  display: grid;
  grid-template-columns: 1.05fr 0.92fr;
  gap: 3rem;
  align-items: start;
}

.hero-form-col { position: sticky; top: 5.5rem; }

.hero-secondary-cta {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.hero-secondary-cta a {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-secondary-cta a:hover { color: var(--white); }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-right: 0.25rem;
}

.logo-strip-pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}

.form-checklist {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-checklist li {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 1.15rem;
  position: relative;
}

.form-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

/* Section alignment variants */
.section-title-left,
.section-sub-left { text-align: left; margin-left: 0; }

.section-sub-left { margin-bottom: 0; max-width: 56ch; }

.section-header-left { margin-bottom: 2rem; }

.text-link-gold {
  color: var(--gold-light) !important;
  font-weight: 600;
}

.text-link-dark {
  color: var(--text-dark) !important;
  font-weight: 600;
}

.section-cta-inline {
  text-align: center;
  margin-top: 2rem;
}

/* Gallery showroom */
.gallery-section { padding-top: 3rem; }

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: 2rem;
  align-items: start;
}

.gallery-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.gallery-chip:hover,
.gallery-chip.active {
  border-color: rgba(240, 193, 77, 0.45);
  background: rgba(240, 193, 77, 0.1);
  color: var(--gold-light);
}

.gallery-pain {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  min-height: 5.5rem;
  transition: opacity 0.35s;
}

.gallery-pain-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.gallery-pain-text {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.gallery-stage { position: relative; }

.gallery-slide {
  display: none;
  animation: fadeUp 0.5s ease-out;
}

.gallery-slide.active { display: block; }

.demo-site {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  background: var(--navy-mid);
}

.demo-site-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.demo-dot:nth-child(1) { background: #fb7185; }
.demo-dot:nth-child(2) { background: var(--gold); }
.demo-dot:nth-child(3) { background: var(--success); }

.demo-url {
  flex: 1;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  font-family: monospace;
}

.demo-body {
  padding: 1.35rem 1.25rem 1.5rem;
  min-height: 220px;
  background: linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
}

.demo-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.demo-headline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.55rem;
  line-height: 1.2;
}

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

.demo-cta-mock {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.demo-metrics {
  display: flex;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--success);
}

.demo-metric span {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

.gallery-link {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.showroom-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Problem section */
.problem-transition {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 540px;
  margin-inline: auto;
}

.problem-transition strong {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Audit grid */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
  margin-bottom: 3rem;
}

.audit-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.25s, border-color 0.25s;
}

.audit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 193, 77, 0.25);
}

.audit-item-featured {
  border-color: rgba(240, 193, 77, 0.35);
  background: linear-gradient(145deg, rgba(240, 193, 77, 0.08), rgba(255, 255, 255, 0.02));
}

.audit-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.audit-item p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.step-icon-svg svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

/* Testimonial metrics */
.testimonial-metric {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--success);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

/* Niche grid */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.niche-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.niche-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 193, 77, 0.3);
}

.niche-card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.niche-card-tag-gold {
  color: var(--gold-dark);
  background: rgba(240, 193, 77, 0.15);
  border-color: rgba(240, 193, 77, 0.3);
}

.niche-card-featured {
  border-color: rgba(240, 193, 77, 0.45) !important;
  background: linear-gradient(145deg, rgba(240, 193, 77, 0.08), rgba(255, 255, 255, 0.02));
}

.niche-card-audit {
  border-color: rgba(52, 211, 153, 0.3);
}

.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.niche-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  flex: 1;
  line-height: 1.5;
}

.niche-card-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* Offer cards v2 */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.offer-card-v2 {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e8edf4;
  box-shadow: 0 8px 28px rgba(20, 32, 51, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}

.offer-card-popular {
  border: 2px solid rgba(240, 193, 77, 0.55);
  box-shadow: 0 12px 36px rgba(240, 193, 77, 0.12);
}

.offer-popular-badge {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.offer-tier-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.offer-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.offer-price-v2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.offer-price-v2 span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.offer-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.offer-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.offer-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}

.offer-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.guarantee-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(8, 17, 31, 0.04);
  border: 1px solid #e8edf4;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.guarantee-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.guarantee-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.offer-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.offer-footnote a {
  color: var(--gold-dark);
  font-weight: 600;
}

.offer-card-v2 .btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: #d0dae6;
}

.offer-card-v2 .btn-outline:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: rgba(240, 193, 77, 0.08);
}

/* Process steps */
.steps-process .step { position: relative; }

.step-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

/* Influencer secondary card */
.influencer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 120, 200, 0.2);
  background: linear-gradient(135deg, rgba(56, 120, 200, 0.08), rgba(255, 255, 255, 0.02));
}

.influencer-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.4rem;
}

.influencer-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.influencer-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 48ch;
  line-height: 1.55;
  margin: 0;
}

.influencer-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.influencer-card-link {
  font-size: 0.82rem;
  color: var(--text-dim) !important;
}

.influencer-card-link:hover { color: var(--gold-light) !important; }

/* Final CTA */
.final-cta-wrap {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 3rem;
  align-items: center;
}

.final-slots {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.final-slots span { color: var(--gold-light); font-weight: 700; }

/* Expanded footer */
.footer-expanded { text-align: left; padding: 4rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo { margin-bottom: 0.75rem; }

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.footer-meta { font-size: 0.8rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.85rem;
}

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

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-dim) !important;
}

.footer-col a:hover { color: var(--gold-light) !important; }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-guarantees {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem !important;
}

/* Floating audit button */
.floating-audit {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 8px 32px var(--gold-glow);
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.floating-audit:hover {
  color: var(--navy);
  transform: translateY(-2px);
}

.floating-audit.is-visible {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-top,
  .gallery-layout,
  .final-cta-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-col {
    position: static;
    order: -1;
  }

  .guarantee-strip {
    grid-template-columns: 1fr;
  }

  .influencer-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .urgency-bar-inner {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }

  .floating-audit {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}