/* Hustle Buddies — Web Design Agency Homepage */

html {
  scroll-padding-top: 5rem;
}

.section-title-left {
  text-align: left;
  margin-left: 0;
}

.section-sub-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 56ch;
}

.wd-hero {
  padding: 6rem 0 4.5rem;
  position: relative;
}

.wd-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: min(900px, 90vw);
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(240, 193, 77, 0.14), transparent 70%);
  pointer-events: none;
}

.wd-hero .trust-row {
  margin-top: 1.5rem;
}

.wd-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wd-demo-float {
  animation: float 6s ease-in-out infinite;
}

.wd-cta-card--compact {
  padding: 1.25rem 1.35rem;
}

.wd-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.wd-service-icon svg {
  width: 22px;
  height: 22px;
}

.wd-project-preview {
  padding: 0;
  position: relative;
}

.wd-project-demo .demo-body {
  min-height: 180px;
}

.wd-project-demo .demo-headline {
  font-size: 1rem;
}

.wd-project-demo--soon {
  opacity: 0.85;
}

.wd-project-demo--soon .demo-cta-mock {
  background: rgba(255,255,255,0.12);
  color: var(--text-dim);
}

#floating-cta.is-visible {
  display: inline-flex;
}

.wd-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.wd-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 1rem;
}

.wd-hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wd-hero-sub {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  color: var(--text-dim);
  max-width: 52ch;
}

.wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.wd-cta-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.wd-cta-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.wd-cta-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.wd-cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 1rem;
}

.wd-cta-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

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

.wd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  border-block: 1px solid rgba(255,255,255,0.06);
}

.wd-stat {
  text-align: center;
}

.wd-stat {
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.wd-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold-light);
  line-height: 1.1;
}

.wd-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.wd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.wd-services-grid .wd-service-card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  max-width: 360px;
  margin-inline: auto;
  width: 100%;
}

.wd-service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.wd-service-card:hover {
  border-color: rgba(240, 193, 77, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.wd-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(240, 193, 77, 0.12);
  color: var(--gold-light);
  margin-bottom: 1rem;
}

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

.wd-service-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.wd-service-benefit {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.wd-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wd-project-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.wd-project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.wd-project-preview {
  aspect-ratio: 16/10;
  padding: 1rem;
  position: relative;
}

.wd-project-preview--blinds {
  background: linear-gradient(135deg, #0ea5e9, #1d4ed8);
}

.wd-project-preview--cipher {
  background: linear-gradient(135deg, #14b8a6, #047857);
}

.wd-project-preview--aloe {
  background: linear-gradient(135deg, #06b6d4, #0f766e);
}

.wd-browser {
  height: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
}

.wd-browser-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 0.65rem;
}

.wd-browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

.wd-browser-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.5rem;
}

.wd-browser-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.25);
}

.wd-browser-line.short { width: 55%; }
.wd-browser-line.mid { width: 75%; }

.wd-browser-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.wd-browser-blocks span {
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
}

.wd-live-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.wd-project-body {
  padding: 1.35rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wd-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.wd-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-dim);
}

.wd-project-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
}

.wd-project-cat {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 0.2rem;
}

.wd-project-desc {
  margin-top: 0.65rem;
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.55;
  flex: 1;
}

.wd-project-result {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text);
}

.wd-project-result strong {
  color: var(--success);
}

.wd-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.wd-why-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.wd-why-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.wd-why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

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

.wd-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.wd-testimonial {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}

.wd-testimonial p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}

.wd-testimonial-author {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.wd-testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}

.wd-testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.wd-faq {
  max-width: 720px;
  margin-inline: auto;
}

.wd-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wd-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 1.15rem 2rem 1.15rem 0;
  cursor: pointer;
  position: relative;
}

.wd-faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.25rem;
}

.wd-faq-item.open .wd-faq-q::after {
  content: "−";
}

.wd-faq-a {
  display: none;
  padding-bottom: 1.15rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.wd-faq-item.open .wd-faq-a {
  display: block;
}

.wd-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .wd-hero-grid,
  .wd-final { grid-template-columns: 1fr; }
  .wd-services-grid,
  .wd-portfolio-grid,
  .wd-why-grid,
  .wd-testimonials { grid-template-columns: repeat(2, 1fr); }
  .wd-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .wd-services-grid,
  .wd-portfolio-grid,
  .wd-why-grid,
  .wd-testimonials { grid-template-columns: 1fr; }
  .wd-hero { padding-top: 3.5rem; }
}

/* Light sections */
.section-light .wd-project-card {
  background: var(--white);
  border-color: rgba(20, 32, 51, 0.08);
  box-shadow: 0 12px 40px rgba(20, 32, 51, 0.08);
}

.section-light .wd-project-body h3,
.section-light .wd-faq-q {
  color: var(--text-dark);
}

.section-light .wd-project-cat {
  color: var(--gold-dark);
}

.section-light .wd-project-desc,
.section-light .wd-project-result,
.section-light .wd-faq-a {
  color: var(--text-muted);
}

.section-light .wd-project-result {
  color: var(--text-dark);
}

.section-light .wd-tag {
  background: rgba(20, 32, 51, 0.04);
  border-color: rgba(20, 32, 51, 0.1);
  color: var(--text-muted);
}

.section-light .wd-faq-item {
  border-color: rgba(20, 32, 51, 0.1);
}

.section-light .wd-cta-card {
  background: var(--white);
  border-color: rgba(20, 32, 51, 0.1);
  box-shadow: 0 20px 50px rgba(20, 32, 51, 0.1);
}

.section-light .wd-cta-card h2 {
  color: var(--text-dark);
}

.section-light .wd-cta-card p,
.section-light .wd-cta-list li {
  color: var(--text-muted);
}

.section-light .wd-project-preview .demo-site {
  box-shadow: 0 20px 50px rgba(20, 32, 51, 0.12);
}

.nav.is-scrolled {
  background: rgba(8, 17, 31, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.wd-testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(240, 193, 77, 0.25);
  display: block;
  margin-bottom: -0.5rem;
}