@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --home-bg: #fdfefe;
  --home-ink: #0b1220;
  --home-muted: #4b5563;
  --home-cyan: #00cfe8;
  --home-indigo: #3f51b5;
  --home-gold: #f0d8a8;
}

body {
  background: radial-gradient(1000px 600px at 10% 10%, rgba(0, 207, 232, 0.15), transparent 55%),
              radial-gradient(900px 600px at 90% 20%, rgba(63, 81, 181, 0.12), transparent 60%),
              var(--home-bg);
  color: var(--home-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.home-hero {
  background: linear-gradient(140deg, rgba(255,255,255,0.9), rgba(241,245,255,0.95));
}

.home-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

@media (max-width: 980px) {
  .home-hero-grid { grid-template-columns: 1fr; }
}

.home-hero-copy .home-kicker {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 207, 232, 0.12);
  border: 1px solid rgba(0, 207, 232, 0.3);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-title {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  margin: 14px 0 10px;
}

.home-subtitle {
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.home-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: var(--home-muted);
  font-size: 13px;
}

.home-hero-slider {
  position: relative;
}

.hero-slider {
  position: relative;
  height: clamp(260px, 40vw, 520px);
  border-radius: 24px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 25px 60px rgba(10, 18, 32, 0.25);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.4) 0%, transparent 55%);
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-label {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(10, 18, 32, 0.35);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
}

.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }

.hero-dots {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot.active {
  width: 16px;
  background: var(--home-cyan);
}

.hero-caption {
  margin-top: 10px;
  color: var(--home-muted);
  font-size: 12px;
}

.home-brands .dc-section-header {
  margin-bottom: 12px;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 16px 0;
}

.brand-track {
  display: flex;
  gap: 16px;
  padding: 6px 20px;
  width: max-content;
  animation: brand-scroll 28s linear infinite;
}

.brand-chip {
  min-width: 140px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 207, 232, 0.16), rgba(63, 81, 181, 0.12));
  border: 1px solid rgba(63, 81, 181, 0.2);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--home-ink);
  text-align: center;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1000px) {
  .home-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .home-grid { grid-template-columns: 1fr; }
}

.home-card {
  display: block;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  color: var(--home-ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.home-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.home-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
}

.home-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 960px) {
  .home-split-grid { grid-template-columns: 1fr; }
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 700px) {
  .widget-grid { grid-template-columns: 1fr; }
}

.widget-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.widget-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.widget-card p {
  margin: 0 0 12px;
  color: var(--home-muted);
  font-size: 13px;
}

.home-feature {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(255,255,255,0.96), rgba(240,246,255,0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.home-checklist {
  padding-left: 18px;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.home-cta-wide {
  background: linear-gradient(120deg, rgba(0, 207, 232, 0.08), rgba(63, 81, 181, 0.08));
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.home-cta-wide .home-title {
  margin-top: 0;
}

.home-testimonials .dc-section-header {
  margin-bottom: 12px;
}

.testimonial-slider {
  position: relative;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  padding: 24px;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 200px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card p {
  margin: 12px 0 16px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.stars {
  color: #f7c948;
  letter-spacing: 2px;
  font-size: 16px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-meta strong {
  display: block;
  font-size: 14px;
}

.testimonial-meta span {
  display: block;
  color: var(--home-muted);
  font-size: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--home-cyan), var(--home-indigo));
  box-shadow: 0 10px 20px rgba(63, 81, 181, 0.2);
}

.testi-nav {
  position: absolute;
  top: 24px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #fff;
  color: var(--home-ink);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.testi-nav.prev { right: 64px; }
.testi-nav.next { right: 20px; }

.testimonial-dots {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
}

.testimonial-dot.active {
  width: 18px;
  background: var(--home-cyan);
}

@media (max-width: 700px) {
  .testi-nav { top: 12px; }
  .testimonial-slider { padding: 20px; }
}
