/* ============================================================
   SOCIAL PULSE — HOME PAGE STYLES
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 90, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 90, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    black 30%,
    transparent 100%
  );
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.hero__content {
}
.hero__content .tag {
  margin-bottom: 28px;
}
.hero__sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  margin: 28px 0 40px;
  max-width: 520px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-pill__num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.stat-pill__label {
  font-size: 13px;
  color: var(--muted2);
  letter-spacing: 0.03em;
}
.stat-pill__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── Hero visual ────────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}
.hero__mark-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__mark {
  width: 350px;
  animation: floatY 5s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(255, 90, 0, 0.5));
  position: relative;
  z-index: 2;
}
.hero__logo2 {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}
.hero__mark-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 0, 0.15);
  animation: spinSlow linear infinite;
}
.hero__mark-ring--1 {
  width: 300px;
  height: 300px;
  animation-duration: 18s;
}
.hero__mark-ring--2 {
  width: 400px;
  height: 400px;
  border-style: dashed;
  animation-duration: 30s;
  animation-direction: reverse;
  opacity: 0.5;
}
.hero__mark-ring--3 {
  width: 500px;
  height: 500px;
  animation-duration: 45s;
  opacity: 0.25;
}

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 14px;
  min-width: 180px;
  z-index: 3;
}
.float-card__icon {
  font-size: 24px;
}
.float-card__title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 2px;
}
.float-card__val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.float-card--1 {
  top: 40px;
  right: -20px;
  animation: floatY 4s 0s ease-in-out infinite;
}
.float-card--2 {
  bottom: 80px;
  right: -40px;
  animation: floatY 4s 1.2s ease-in-out infinite;
}
.float-card--3 {
  bottom: 20px;
  left: -20px;
  animation: floatY 4s 0.6s ease-in-out infinite;
}

/* ── Marquee ────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 9s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.marquee-track .dot {
  color: var(--orange);
  font-size: 10px;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-card__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 90, 0, 0.08);
  border: 1px solid rgba(255, 90, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.svc-card:hover .svc-card__icon {
  background: rgba(255, 90, 0, 0.15);
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.svc-card__link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card__link:hover {
  gap: 10px;
}

/* ── Why Section ────────────────────────────────────────────── */
.why-section {
  position: relative;
  overflow: hidden;
}
.why-bg-orb {
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 28px;
}
.why-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Process ────────────────────────────────────────────────── */
.process-section {
  background: var(--surface);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.3;
}
.process-step {
  padding: 0 32px 0 0;
  position: relative;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.process-step__line {
  width: 40px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin-bottom: 24px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 36px 32px;
}
.testimonial__stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.testimonial__role {
  font-size: 13px;
  color: var(--muted2);
  margin-top: 2px;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
}
.cta-banner__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 90, 0, 0.2) 0%,
    transparent 70%
  );
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner__content {
  position: relative;
  z-index: 1;
}
.cta-banner__visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.cta-banner__mark {
  width: 380px;
  opacity: 0.2;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(255, 90, 0, 0.4));
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__visual {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner__inner {
    flex-direction: column;
    padding: 48px 40px;
  }
  .cta-banner__visual {
    display: none;
  }
}
@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    width: 100%;
  }
  .stat-pill__divider {
    display: none;
  }
  .cta-banner__inner {
    padding: 36px 24px;
    text-align: center;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .float-card {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero__logo2 {
    max-width: 320px;
  }
  .stat-pill__num {
    font-size: 22px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
}
