:root {
  --bg: #07070c;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --accent: #ff3fb4;
  --accent-2: #7c3aed;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: linear-gradient(180deg, #07070c 0%, #070714 100%);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.main{
  padding-top: 78px;  /* adjust if needed */
  padding-bottom: 40px;
}
.section {
  padding: 34px 0;
}

.section__head {
  margin-bottom: 14px;
}

.section__head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section__title {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.section__sub {
  margin: 0;
  color: var(--muted);
}

.topbar{
  position: fixed;     /* ✅ instead of sticky */
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;      /* keep it above everything */
  backdrop-filter: blur(12px);
  background: rgba(7, 7, 12, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px;
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 700;
  font-size: 16px;
}

.brand__meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #ff5cc3);
  color: #140012;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(255, 63, 180, 0.25);
  position: relative;
  isolation: isolate;
}

/* Primary CTA pulse */
.btn--primary::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.65),
    rgba(255, 138, 221, 0.45)
  );
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
  animation: primaryPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes primaryPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ff66cc, #ff8add);
  color: #2b001f;
  box-shadow: 0 16px 44px rgba(255, 63, 180, 0.65),
    0 0 0 1px rgba(255, 63, 180, 0.35);
  transform: translateY(-1px);
}

/* stronger glow on hover */
.btn--primary:hover::after {
  opacity: 1;
  filter: blur(18px);
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary,
  .btn--primary::after {
    animation: none !important;
  }
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn--lg {
  padding: 12px 18px;
}

.section--hero {
  position: relative;
  padding: 44px 0 34px;
  background: radial-gradient(
      1200px 680px at 12% 15%,
      rgba(255, 63, 180, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 92% 18%,
      rgba(124, 58, 237, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(7, 7, 12, 1) 0%, rgba(7, 7, 20, 1) 100%);
}

.section--hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 20, 0) 0%,
    rgba(7, 7, 20, 1) 85%
  );
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.hero__copy {
  position: relative;
  isolation: isolate;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}

.hero__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 52ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero__media {
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
}

.carousel {
  position: relative;
  width: 420px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.carousel__viewport {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.carousel__dots {
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 12, 0.45);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 0;
}

.carousel__dot[aria-current="true"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
}

@media (max-width: 920px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
    margin-left: 0;
    width: 100%;
  }
  .carousel {
    width: 100%;
    max-width: 520px;
    height: clamp(460px, 58vh, 680px);
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

.section--delivery {
  padding: 70px 0;
  background: linear-gradient(
      180deg,
      rgba(7, 7, 12, 0) 0%,
      rgba(7, 7, 12, 0.35) 18%,
      rgba(7, 7, 12, 0.8) 60%,
      rgba(7, 7, 12, 0) 100%
    ),
    radial-gradient(
      900px 520px at 12% 20%,
      rgba(255, 63, 180, 0.14),
      transparent 62%
    ),
    radial-gradient(
      900px 520px at 88% 70%,
      rgba(124, 58, 237, 0.12),
      transparent 62%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  font-size: 13px;
}

.delivery-map {
  position: relative;
  margin-top: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  --map-pad: 18px; /* default desktop */
}

.delivery-map__base {
  position: relative;
  width: 100%;
  height: 100%;
  padding: var(--map-pad);
}

.delivery-map__base svg {
  width: 100%;
  height: auto;
  display: block;
}

.delivery-map__base svg path,
.delivery-map__base svg polygon,
.delivery-map__base svg rect {
  fill: rgba(255, 255, 255, 0.055);
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.delivery-map__base svg path:nth-child(3n) {
  fill: rgba(255, 63, 180, 0.055);
}
.delivery-map__base svg path:nth-child(3n + 1) {
  fill: rgba(124, 58, 237, 0.045);
}
.delivery-map__base svg path:nth-child(3n + 2) {
  fill: rgba(255, 255, 255, 0.05);
}

.delivery-map__base svg {
  opacity: 1;
  filter: drop-shadow(0 14px 60px rgba(0, 0, 0, 0.35));
}

.delivery-map__overlay{
  position: absolute;
  inset: var(--map-pad);  
  width: auto;
  height: auto;
}
/* mobile tweaks */
@media (max-width: 920px){
  .delivery-map{ --map-pad: 16px; }
}

@media (max-width: 560px){
  .delivery-map{ --map-pad: 14px; }
}
.dzroute {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 3;
  stroke-linecap: round;

  stroke-dasharray: 16 16; /* total = 32 */
  animation: dzDash 7.5s linear infinite;

  opacity: 0.95;
  will-change: stroke-dashoffset;
}

@keyframes dzDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -320;
  } /* 32 * 10 -> perfect loop, no snap */
}

.hub {
  fill: var(--accent);
  filter: drop-shadow(0 0 14px rgba(255, 63, 180, 0.9));
}

.hubPulse {
  fill: none;
  stroke: rgba(255, 63, 180, 0.65);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: hubPulse 1.9s ease-out infinite;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(255, 63, 180, 0.65));
}

.hubPulse--delay {
  animation-delay: 0.95s;
}

@keyframes hubPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    transform: scale(3.2);
    opacity: 0;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.delivery-card {
  position: relative;
  padding: 16px 16px 15px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.45)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
}

.delivery-card::after {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(
      260px 160px at 20% 0%,
      rgba(255, 63, 180, 0.18),
      transparent 60%
    ),
    radial-gradient(
      260px 160px at 80% 110%,
      rgba(124, 58, 237, 0.14),
      transparent 60%
    );
  opacity: 0.9;
  filter: blur(18px);
  pointer-events: none;
}

.delivery-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.delivery-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.delivery-card--icon {
  padding-right: 54px; /* room for the icon */
}

.delivery-card__fa {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 14px;

  display: grid;
  place-items: center;
  align-items: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: var(--accent);
  font-size: 15px;

  z-index: 2;

  box-shadow: 0 0 0 rgba(255, 63, 180, 0), 0 0 18px rgba(255, 63, 180, 0.35);
}

.delivery-card__fa::before {
  line-height: 1; /* centers FA glyph vertically */
  display: block;
}

/* optional: alternate tint on second card to match purple */
.delivery-card:nth-child(2) .delivery-card__fa {
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
}
/* ---------- partners: vertical list with 1x1 logos + text ---------- */

.delivery-partners--card {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.delivery-partners--card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.45)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.partners-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.partner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.partner:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 63, 180, 0.22);
  background: rgba(0, 0, 0, 0.24);
}

.partner__logo {
  width: 84px;
  height: 42px;
  object-fit: contain;
  padding: 6px;
  opacity: 0.9;
}

.partner:hover .partner__logo {
  opacity: 1;
}

.partner__name {
  font-size: 14px;
}

@media (max-width: 920px) {

  .delivery-features {
    grid-template-columns: 1fr;
  }
}

.delivery-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
  margin-top: 18px;
  align-items: start;
}

.delivery-layout__map {
  min-width: 0;
}

.delivery-layout__side {
  min-width: 0;
  position: sticky;
  top: 86px;
}

.delivery-stack {
  display: grid;
  gap: 14px;
}

.delivery-features--stack {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.delivery-partners--card {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.partners-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.partners-logos--grid img {
  height: 32px;
  width: 100%;
  object-fit: contain;
  justify-self: start;
}

@media (max-width: 980px) {
  .delivery-layout {
    grid-template-columns: 1fr;
  }
  .delivery-layout__side {
    position: static;
  }

  .partners-logos--grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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

.btn--icon {
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
}

.btn--icon i {
  font-size: 16px;
  line-height: 1;
}
.btn--icon:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 63, 180, 0.25),
    0 10px 26px rgba(255, 63, 180, 0.25);
}

/* WhatsApp pulse */
.btn--whatsapp {
  position: relative;
  isolation: isolate;
}

.btn--whatsapp i {
  color: #25d366; /* WhatsApp green */
  filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.45));
}

/* outer pulse ring */
.btn--whatsapp::after {
  content: "";
  position: absolute;
  left: 6px; /* aligns with icon */
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  transform: translateY(-50%);
  border: 3px solid rgba(37, 211, 102, 0.45);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  animation: waPulse 1.35s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes waPulse {
  0% {
    transform: translateY(-50%) scale(0.85);
    opacity: 0.85;
  }
  70% {
    transform: translateY(-50%) scale(1.9);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) scale(1.9);
    opacity: 0;
  }
}

/* subtle breathing glow on the whole pill */
.btn--whatsapp {
  animation: waGlow 2.4s ease-in-out infinite;
}
@keyframes waGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(37, 211, 102, 0);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18),
      0 0 28px rgba(37, 211, 102, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--whatsapp,
  .btn--whatsapp::after {
    animation: none !important;
  }
}

/* Instagram / TikTok subtle */
.btn--social i {
  color: rgba(255, 255, 255, 0.9);
}

.btn__text {
  font-weight: 650;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 720px) {
  .btn--whatsapp .btn__text {
    font-size: 12px;
    opacity: 0.9;
  }
}

.section--workshop {
  padding: 64px 0;
  background: linear-gradient(
      180deg,
      rgba(7, 7, 12, 0) 0%,
      rgba(7, 7, 12, 0.55) 25%,
      rgba(7, 7, 12, 0) 100%
    ),
    radial-gradient(
      900px 520px at 14% 30%,
      rgba(255, 63, 180, 0.14),
      transparent 62%
    ),
    radial-gradient(
      900px 520px at 86% 60%,
      rgba(124, 58, 237, 0.12),
      transparent 62%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.workshop-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 16px;
  align-items: start;
  margin-top: 18px;
}

.workshop-media {
  min-width: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* reuse your existing carousel styling */
.carousel--workshop {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.carousel--workshop .carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-side {
  min-width: 0;
  position: sticky;
  top: 86px;
}

.workshop-card {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.workshop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.45)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.workshop-card__lead {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

/* Truck loop */
.workshop-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 14px;
}

.workshop-flow__label {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.workshop-flow__track {
  position: relative;
  height: 34px;
  flex: 1;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.workshop-flow__truck {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
  box-shadow: 0 0 18px rgba(255, 63, 180, 0.35);
  animation: truckLoop 4.2s linear infinite;
}

@keyframes truckLoop {
  to {
    left: 110%;
  }
}

.workshop-points {
  display: grid;
  gap: 10px;
}

.workshop-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.workshop-point__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.35);
  flex: 0 0 auto;
}

.workshop-point strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 1px;
}

.workshop-point span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .workshop-layout {
    grid-template-columns: 1fr;
  }
  .workshop-side {
    position: static;
  }
  .carousel--workshop {
    aspect-ratio: 16 / 11;
  }
}

/* =========================
   STATS (accented by default)
   ========================= */

.section--stats {
  position: relative;
  padding: 54px 0 58px;
  background: linear-gradient(
      90deg,
      rgba(255, 63, 180, 0.1) 0%,
      rgba(7, 7, 20, 0) 35%
    ),
    linear-gradient(270deg, rgba(124, 58, 237, 0.1) 0%, rgba(7, 7, 20, 0) 35%),
    linear-gradient(180deg, rgba(7, 7, 20, 1) 0%, rgba(7, 7, 20, 1) 100%);
}

.section--stats::before,
.section--stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
}
.section--stats::before {
  top: 0;
}
.section--stats::after {
  bottom: 0;
  opacity: 0.7;
}

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

.stat {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  transform: translateZ(0);

  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

/* ✅ accent border ALWAYS visible (not only hover) */
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.4),
    rgba(255, 255, 255, 0.08)
  );
  opacity: 0.55;
  pointer-events: none;

  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  transition: opacity 220ms ease;
}

/* ✅ soft glow ALWAYS (subtle) */
.stat::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -60%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.14),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 63, 180, 0.12),
      transparent 60%
    ),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1), transparent 60%);
  transform: rotate(12deg);
  opacity: 0.45;
  pointer-events: none;

  transition: opacity 220ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* structure */
.stat__top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.stat__value {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stat__suffix {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.stat__label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  position: relative;
  z-index: 1;
}

.stat__note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  position: relative;
  z-index: 1;
}

/* ✅ make the VALUES accented by default */
@supports (-webkit-background-clip: text) {
  .stat__value {
    background: linear-gradient(
      135deg,
      rgba(255, 63, 180, 0.95),
      rgba(124, 58, 237, 0.85)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* hover boost (same vibe as before) */
.stat:hover,
.stat:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 63, 180, 0.16), 0 22px 80px rgba(255, 63, 180, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.03)
  );
}

.stat:hover::before,
.stat:focus-within::before {
  opacity: 0.95;
}

.stat:hover::after,
.stat:focus-within::after {
  opacity: 0.85;
  transform: translateX(12%) rotate(12deg);
}

/* optional: animate value pop only when you add .is-animating */
.stat.is-animating .stat__value {
  animation: statValuePop 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes statValuePop {
  0% {
    transform: translateY(6px) scale(0.98);
    opacity: 0;
    filter: blur(2px);
  }
  45% {
    transform: translateY(0) scale(1.05);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .stat,
  .stat::before,
  .stat::after,
  .stat__value {
    transition: none !important;
    animation: none !important;
  }
}
.footer {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.4)
  );
  color: var(--muted);
  font-size: 13px;
  text-align: center; /* ✅ center text */
}

.footer__inner {
  display: flex;
  justify-content: center; /* ✅ center content */
  align-items: center;
}

.footer__copy {
  margin: 0;
  opacity: 0.9;
}

/* =========================
   SHARED UI PRIMITIVES
   ========================= */

.stack {
  display: grid;
  gap: 14px;
}

.lead {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

/* =========================
   SHARED CARD SYSTEM
   ========================= */

.card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  transform: translateZ(0);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.4),
    rgba(255, 255, 255, 0.08)
  );
  opacity: 0.45;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 220ms ease;
}

.card::after {
  content: "";
  position: absolute;
  top: -55%;
  left: -60%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.14),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(255, 63, 180, 0.12),
      transparent 60%
    ),
    radial-gradient(circle at 85% 25%, rgba(124, 58, 237, 0.1), transparent 60%);
  transform: rotate(12deg);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 220ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 63, 180, 0.16), 0 22px 80px rgba(255, 63, 180, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.03)
  );
}

.card:hover::before,
.card:focus-within::before {
  opacity: 0.95;
}

.card:hover::after,
.card:focus-within::after {
  opacity: 0.85;
  transform: translateX(12%) rotate(12deg);
}

/* variants */
.card--pad {
  padding: 16px;
}

.card--icon,
.card--list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}

.card--list {
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.card__head {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.card__icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent);
  box-shadow: 0 0 18px rgba(255, 63, 180, 0.22);
  position: relative;
  z-index: 1;
}

.card__icon--purple {
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.22);
}

.card__body {
  position: relative;
  z-index: 1;
}

.card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.card__text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   LIST (partners)
   ========================= */

.list {
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.list__item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 63, 180, 0.22);
  background: rgba(0, 0, 0, 0.24);
}

.list__logo {
  width: 84px;
  height: 42px;
  object-fit: contain;
  padding: 6px;
  opacity: 0.92;
}

.list__item:hover .list__logo {
  opacity: 1;
}

.list__name {
  font-size: 14px;
}

/* =========================
   SOCIALS SECTION
   ========================= */

.section--socials {
  padding: 60px 0;
  background: linear-gradient(
      180deg,
      rgba(7, 7, 12, 0) 0%,
      rgba(7, 7, 12, 0.45) 35%,
      rgba(7, 7, 12, 0) 100%
    ),
    radial-gradient(
      900px 520px at 15% 40%,
      rgba(255, 63, 180, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 85% 60%,
      rgba(124, 58, 237, 0.12),
      transparent 60%
    );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .socials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .socials-grid {
    grid-template-columns: 1fr;
  }
}

/* shared card */
.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;

  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.22s ease, border-color 0.22s ease;
}

/* accent contour */
.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 63, 180, 0.55),
    rgba(124, 58, 237, 0.45)
  );
  opacity: 0.45;
  pointer-events: none;

  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* icon */
.social-card i {
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

/* text */
.social-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.social-card span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

/* hover */
.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 63, 180, 0.18);
}

/* WhatsApp (already used) */
.social-card[href*="wa.me"] i {
  color: #25d366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.45);
}

/* Facebook */
.social-card[href*="facebook"] i {
  color: #1877f2;
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.45);
}

/* Instagram (official gradient pink-purple) */
.social-card[href*="instagram"] i {
  color: #e1306c;
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.45);
}

/* TikTok (white with neon feel on dark UI) */
.social-card[href*="tiktok"] i {
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35),
    0 0 22px rgba(255, 64, 129, 0.25);
}

/* Telegram */
.social-card[href*="telegram"] i,
.social-card[href*="t.me"] i {
  color: #0088cc;
  box-shadow: 0 0 18px rgba(0, 136, 204, 0.45);
}
.social-card:hover i {
  box-shadow: 0 0 26px currentColor;
}

/* ==========================
   PROMOS (Hero integrated)
   ========================== */

.promo-stack {
  display: grid;
  gap: 10px;
  margin: -10px 40px 50px 40px;
}

/* card base */
.promo-card {
  --tint: rgba(255, 63, 180, 0.22);
  --tint2: rgba(124, 58, 237, 0.14);
  --icon: var(--accent);

  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;

  padding: 14px 14px;
  border-radius: 18px;

  background: radial-gradient(
      900px 240px at 10% 0%,
      var(--tint),
      transparent 60%
    ),
    radial-gradient(900px 240px at 90% 120%, var(--tint2), transparent 60%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.025)
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
  overflow: hidden;

  transition: transform 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
  animation: promoIn 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.promo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 63, 180, 0.1);
}

/* contour */
.promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.95;
  pointer-events: none;
}

/* entry/exit */
@keyframes promoIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.promo-card.is-hiding {
  animation: promoOut 260ms ease forwards;
}
@keyframes promoOut {
  to {
    opacity: 0;
    transform: translateY(-6px);
    height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* icon box */
.promo-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--icon);
  box-shadow: 0 0 22px color-mix(in srgb, var(--icon) 35%, transparent);
  position: relative;
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.promo-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 2px;
}
.promo-text {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
  max-width: 70ch;
}

/* meta chips */
.promo-meta {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.promo-badge,
.promo-countdown {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

/* actions (CTA + dismiss) */
.promo-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn--sm {
  padding: 10px 14px;
}

.promo-dismiss {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.promo-dismiss:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* ==========================
   CATEGORY THEMES (tinted)
   ========================== */

/* Promotion (pink/purple – default already works) */
.promo-card[data-type="promotion"] {
  --tint: rgba(255, 63, 180, 0.22);
  --tint2: rgba(124, 58, 237, 0.12);
  --icon: #ff3fb4;
}

/* Announcement (yellow) */
.promo-card[data-type="announcement"] {
  --tint: rgba(255, 200, 40, 0.2);
  --tint2: rgba(255, 160, 30, 0.12);
  --icon: #ffc72a;
}

/* Urgent (orange/red) */
.promo-card[data-type="urgent"] {
  --tint: rgba(255, 120, 40, 0.22);
  --tint2: rgba(255, 60, 60, 0.1);
  --icon: #ff7a2a;
}

/* Info (cyan/blue) */
.promo-card[data-type="info"] {
  --tint: rgba(60, 200, 255, 0.18);
  --tint2: rgba(80, 140, 255, 0.1);
  --icon: #3cc8ff;
}

/* New (green) */
.promo-card[data-type="new"] {
  --tint: rgba(60, 255, 160, 0.16);
  --tint2: rgba(40, 190, 120, 0.1);
  --icon: #3dffb2;
}

/* Mobile: make it compact */
@media (max-width: 720px) {
  .promo-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .promo-actions {
    justify-content: flex-start;
  }
}
.section--hero,
.section--delivery,
.section--workshop {
  z-index: 0;
  position: relative;
}
@media (max-width: 560px) {

  .promo-stack {
    margin: 8px 12px 24px;
    gap: 8px;
  }

  .promo-card {
    padding: 12px;
    border-radius: 16px;
    gap: 10px;
  }

  /* icon smaller */
  .promo-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 14px;
  }

  /* text tighter */
  .promo-title {
    font-size: 14px;
  }

  .promo-text {
    font-size: 12.5px;
    line-height: 1.3;
  }

  /* badges compact */
  .promo-badge,
  .promo-countdown {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* actions row */
  .promo-actions {
    gap: 8px;
  }

  .btn--sm {
    padding: 9px 12px;
    font-size: 13px;
  }

  .promo-dismiss {
    width: 34px;
    height: 34px;
  }
}
