/* =============================================================
   Home Page — Hero Section
   Global vars, typography, .container, .btn, .reveal → global.css
   ============================================================= */

.home-wrapper {
  overflow-x: hidden;
  background: var(--bg);
}

/* ═══════════════════════ HERO ═══════════════════════ */
.home-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px 0;
  text-align: center;
}

/* ── Background ──────────────────────────────────────────── */
.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* NEW — dark overlay to improve text contrast */
.home-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 12, 21, 0.75) 0%,
    rgba(11, 12, 21, 0.55) 40%,
    rgba(11, 12, 21, 0.85) 100%
  );
}

.home-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 900px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 65%);
}

/* ── Content ─────────────────────────────────────────────── */
.home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow pill badge */
.home-hero__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  margin-bottom: 32px;
  background: var(--glass);
}

.home-hero__heading {
  margin: 0 0 28px;
  letter-spacing: -0.03em;
}

.home-hero__heading-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9940 50%, #b06aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero__desc {
  max-width: 640px;
  margin: 0 0 44px;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero__btn svg {
  transition: transform 0.3s;
}

.home-hero__btn:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
/*@media (min-width: 1024px) {*/
/*  .home-hero__bg {*/
/*    background-attachment: fixed;*/
/*  }*/
/*}*/
@media (max-width: 768px) {
  .home-hero { padding: 120px 0 40px 0; min-height: auto; }
  .home-hero__actions { flex-direction: column; width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .home-hero__badge { font-size: 10px; padding: 8px 16px; }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .d2c-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-services__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-compare__header,
  .d2c-compare__row { grid-template-columns: 0.8fr 1fr 1fr; }
  .d2c-review-card { flex: 0 0 calc(10% - 0px); }
}

@media (max-width: 768px) {
  .d2c-hero { padding: 100px 0 60px; }
  .d2c-hero__scroll-indicator { display: none; }
  .d2c-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-portfolio__grid { grid-template-columns: 1fr; }
  .d2c-services__grid { grid-template-columns: 1fr; }
  .d2c-compare__col--label { display: none; }
  .d2c-compare__header,
  .d2c-compare__row { grid-template-columns: 1fr 1fr; }
  .d2c-cta-box__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .d2c-cta-box { padding: 40px 32px; }
  .d2c-cursor { display: none; }
}
/*section 2*/
@media (max-width: 480px) {
  .d2c-stats__grid { grid-template-columns: 1fr; }
  .d2c-section-header { margin-bottom: 48px; }
  .d2c-hero__actions { flex-direction: column; align-items: flex-start; }
}
.flexcenterdiv
 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
p.d2c-logos__label.d2c-reveal.is-visible {
    margin-bottom: 50px;
}

/* Stats Section — Authority Layout */
.d2c-stats__heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 56px;
  text-align: center;
}

.d2c-stats__heading-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9940 55%, #b06aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.d2c-stats__card-wrap {
  position: relative;
  border-radius: 20px;
}

.d2c-stats__card-shadow {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1.5px solid rgba(247, 101, 0, 0.18);
  pointer-events: none;
  z-index: 0;
}

.d2c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  border: 1.5px solid rgba(247, 101, 0, 0.35);
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

.d2c-stat-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}

.d2c-stat-item:last-child { border-right: none; }
.d2c-stat-item:hover { background: rgba(247, 101, 0, 0.05); }

.d2c-stat-item__num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.d2c-stat-item__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.d2c-stat-item__sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .d2c-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-stat-item:nth-child(2) { border-right: none; }
  .d2c-stat-item:nth-child(1),
  .d2c-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 480px) {
  .d2c-stats__grid { grid-template-columns: 1fr; }
  .d2c-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .d2c-stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   SECTION 3 — SERVICES
   ============================================================ */
/* ── Services Section ────────────────────────────────────── */
.d2c-services {
  padding: 20px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.d2c-services__glow-bg {
  position: absolute;
  top: 0; left: 50%;
  width: 800px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(247,101,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.d2c-services__header {
  max-width: 600px;
  margin-bottom: 56px;
}

.d2c-services__heading {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.d2c-services__heading-line1 {
  display: block;
  color: var(--text);
}

.d2c-services__heading-line2 {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9940 50%, #b06aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.d2c-services__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* Grid */
.d2c-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 48px;
}

/* Card */
.d2c-svc-card {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  cursor: default;
  transition: background 0.3s;
}

.d2c-svc-card:hover { background: #111116; }

/* Rainbow glow border on hover */
.d2c-svc-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    #f76500, #ff4499, #9b59ff,
    #3b82f6, #06b6d4, #10b981, #f76500
  );
  background-size: 300% 300%;
  animation: d2c-rainbow 4s linear infinite;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 4px;
}

.d2c-svc-card:hover::before { opacity: 1; }

.d2c-svc-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--bg);
  border-radius: 2px;
  z-index: 0;
  transition: background 0.3s;
}

.d2c-svc-card:hover::after { background: #111116; }

@keyframes d2c-rainbow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.d2c-svc-card__inner {
  position: relative;
  z-index: 1;
}

.d2c-svc-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.d2c-svc-card__icon {
  width: 48px; height: 48px;
  background: rgba(247, 101, 0, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 24px;
}

.d2c-svc-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.d2c-svc-card__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 24px;
}

.d2c-svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.d2c-svc-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 5px 10px;
  transition: border-color 0.3s, color 0.3s;
}

.d2c-svc-card:hover .d2c-svc-card__tag {
  border-color: rgba(247, 101, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .d2c-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .d2c-services__grid { grid-template-columns: 1fr; gap: 1px; }
}

/* ============================================================
   SECTION 4 — COMPARISON
   ============================================================ */
.d2c-compare {
  padding: 20px 0;
  background: var(--bg);
}

.d2c-compare__table {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}

.d2c-compare__header,
.d2c-compare__row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1.8fr;
  align-items: stretch;
}

.d2c-compare__header {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.d2c-compare__col {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.d2c-compare__col:last-child { border-right: none; }

.d2c-compare__col--label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.d2c-compare__header .d2c-compare__col--them span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.d2c-compare__header .d2c-compare__col--us {
  background: rgba(247,101,0,0.07);
  border-color: rgba(247,101,0,0.15);
  position: relative;
}

.d2c-compare__header .d2c-compare__col--us span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.d2c-compare__us-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(247,101,0,0.2) 0%, transparent 60%);
}

.d2c-compare__row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}

.d2c-compare__row:last-child { border-bottom: none; }
.d2c-compare__row:hover { background: rgba(255,255,255,0.02); }

.d2c-compare__row .d2c-compare__col--us {
  background: rgba(247,101,0,0.04);
  border-right-color: rgba(247,101,0,0.1);
  color: var(--text-dim);
  font-weight: 500;
}

.d2c-compare__row:hover .d2c-compare__col--us {
  background: rgba(247,101,0,0.08);
}

.d2c-compare__x {
  color: rgba(255,80,80,0.6);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.d2c-compare__check {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.d2c-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 16px;
}


/* ============================================================
   SECTION 7 — REVIEWS
   ============================================================ */

.d2c-reviews {
  /*padding: 120px 0;*/
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.d2c-reviews__glow {
  position: absolute;
  top: 0; left: 50%;
  width: 600px; height: 400px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(247,101,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.d2c-reviews__heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 20px;
  text-align: center;
}

.d2c-reviews__heading-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9940 55%, #b06aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.d2c-marquee-reviews {
  overflow: hidden;
  margin-bottom: 20px;
}

.d2c-marquee-reviews:last-of-type {
  margin-bottom: 0;
}

.d2c-reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.d2c-reviews-track--ltr {
  animation: d2c-reviews-ltr 40s linear infinite;
}

.d2c-reviews-track--rtl {
  animation: d2c-reviews-rtl 40s linear infinite;
}

.d2c-reviews-track--ltr:hover,
.d2c-reviews-track--rtl:hover {
  animation-play-state: paused;
}

@keyframes d2c-reviews-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes d2c-reviews-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.d2c-review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--bg3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.d2c-review-card:hover {
  border-color: rgba(247, 101, 0, 0.3);
  transform: translateY(-4px);
}

.d2c-review-card__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.d2c-review-card__text {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.75;
  font-style: italic;
  margin: 0 0 20px;
}

.d2c-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.d2c-review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(247,101,0,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.d2c-review-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.d2c-review-card__brand {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .d2c-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-services__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-compare__header,
  .d2c-compare__row { grid-template-columns: 0.8fr 1fr 1fr; }
  .d2c-review-card { flex: 0 0 calc(10% - 0px); }
}

@media (max-width: 768px) {
  .d2c-hero { padding: 100px 0 60px; }
  .d2c-hero__scroll-indicator { display: none; }
  .d2c-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-portfolio__grid { grid-template-columns: 1fr; }
  .d2c-services__grid { grid-template-columns: 1fr; }
  .d2c-compare__col--label { display: none; }
  .d2c-compare__header,
  .d2c-compare__row { grid-template-columns: 1fr 1fr; }
  .d2c-cta-box__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .d2c-cta-box { padding: 40px 32px; }
  .d2c-cursor { display: none; }
}

@media (max-width: 480px) {
  .d2c-stats__grid { grid-template-columns: 1fr; }
  .d2c-section-header { margin-bottom: 48px; }
  .d2c-hero__actions { flex-direction: column; align-items: flex-start; }
}
.flexcenterdiv
 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
p.d2c-logos__label.d2c-reveal.is-visible {
    margin-bottom: 50px;
}

/* Stats Section — Authority Layout */
.d2c-stats__heading {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 56px;
  text-align: center;
}

.d2c-stats__heading-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9940 55%, #b06aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.d2c-stats__card-wrap {
  position: relative;
  border-radius: 20px;
}

.d2c-stats__card-shadow {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1.5px solid rgba(247, 101, 0, 0.18);
  pointer-events: none;
  z-index: 0;
}

.d2c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  border: 1.5px solid rgba(247, 101, 0, 0.35);
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

.d2c-stat-item {
  padding: 48px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}

.d2c-stat-item:last-child { border-right: none; }
.d2c-stat-item:hover { background: rgba(247, 101, 0, 0.05); }

.d2c-stat-item__num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.d2c-stat-item__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.d2c-stat-item__sub {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .d2c-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .d2c-stat-item:nth-child(2) { border-right: none; }
  .d2c-stat-item:nth-child(1),
  .d2c-stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
}

@media (max-width: 480px) {
  .d2c-stats__grid { grid-template-columns: 1fr 1fr; }
  .d2c-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .d2c-stat-item:last-child { border-bottom: none; }
}
