/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ── Hero ── */
.hero {
  overflow: hidden;
  background: var(--clr-bg);
  padding-top: 72px;
  padding-bottom: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 72px;
}
.hero-content { max-width: 540px; }
.hero-content .tag { margin-bottom: 22px; }
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-highlight {
  position: relative;
  color: var(--clr-accent);
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--clr-accent);
  border-radius: 2px;
  opacity: 0.25;
}
.hero-content p { font-size: 1.08rem; max-width: 440px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--clr-bg);
  margin-left: -8px;
  object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.hero-trust p { font-size: 0.88rem; margin: 0; }
.hero-trust strong { color: var(--clr-text); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: fadeIn 0.6s ease both;
  white-space: nowrap;
}
.hero-badge .badge-icon { font-size: 1.4rem; }
.hero-badge .badge-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}
.hero-badge .badge-txt { font-size: 0.75rem; color: var(--clr-muted); }
.hero-badge-1 { top: -18px; left: -20px; animation-delay: 0.5s; }
.hero-badge-2 { bottom: 20px; right: -20px; animation-delay: 0.7s; }

/* Marquee */
.hero-marquee-wrap {
  border-top: 1px solid var(--clr-border);
  background: var(--clr-surface);
  padding: 16px 0;
  overflow: hidden;
}
.hero-marquee {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-muted);
}
.hero-marquee span:not(:nth-child(even)) { color: var(--clr-text); }
.hero-marquee span:nth-child(even) { color: var(--clr-border); font-size: 1.2rem; line-height: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Services Section ── */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-accent);
  margin-top: 18px;
  transition: gap var(--transition);
}
.service-link:hover { gap: 8px; }

/* ── Work Cards (Dark Section) ── */
.work-card-dark {
  background: var(--clr-dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.work-card-dark:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.work-card-dark img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.work-card-sm img { aspect-ratio: 16/7; }
.work-card-body { padding: 24px; }
.work-metrics {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.metric { text-align: center; }
.metric span {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.metric { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.97rem;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--clr-text); }
.author-role { font-size: 0.8rem; color: var(--clr-muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--clr-dark);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-content p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge-1 { top: -12px; left: 8px; }
  .hero-badge-2 { bottom: 12px; right: 8px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .hero { padding-top: 48px; }
  .hero-inner { gap: 36px; }
  .hero-badge { display: none; }
}
