/* =====================================================================
   web-development.css — Web Development Service Page
   Loaded after home-new.css; uses --da-* CSS custom properties.
   BEM prefix: wd-
   ===================================================================== */

html,
body { overflow-x: hidden; }

/* ======================================================================
   KEYFRAMES
   ====================================================================== */

@keyframes wdReveal {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
    transform: translateY(0);
  }
}

@keyframes wdFadeUp {
  from { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes wdGradShimmer {
  0%   { background-position: 100% center; }
  50%  { background-position: 0%   center; }
  100% { background-position: 100% center; }
}

/* ======================================================================
   GRADIENT TEXT UTILITY
   ====================================================================== */

.wd-grad {
  background: linear-gradient(90deg, #7c3aed, #c026d3, #e11d48, #c026d3, #7c3aed);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wdGradShimmer 3.5s ease 1.2s infinite;
}

/* ======================================================================
   HERO SECTION
   ====================================================================== */

.wd-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2000 / 900;
  min-height: 420px;
  background-color: #050508;
  background-image: url('../img/web-dev/web-d-banner.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Dark overlay — dense at top for text readability, transparent at bottom to reveal coverflow art */
.wd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 4, 14, 0.88) 0%,
    rgba(5, 4, 14, 0.62) 35%,
    rgba(5, 4, 14, 0.20) 60%,
    rgba(5, 4, 14, 0.00) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Inner wrapper ── */
.wd-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(1.25rem, 4vw, 3.5rem) 0;
  display: flex;
  justify-content: center;
}

/* ── Content block (centered) ── */
.wd-hero__content {
  text-align: center;
  max-width: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── H1 ── */
.wd-hero__title {
  font-family: var(--da-font);
  font-size: clamp(1.75rem, 2.8vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--da-white, #fff);
  margin: 0 0 1.5rem;
  animation: wdReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* ── Body paragraph ── */
.wd-hero__body {
  font-family: var(--da-font);
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0;
  animation: wdFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* ======================================================================
   RESPONSIVE
   ====================================================================== */

@media (max-width: 1024px) {
  .wd-hero__title {
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  .wd-hero {
    background-position: center center;
  }

  .wd-hero::before {
    background: rgba(5, 4, 14, 0.82);
  }

  .wd-hero__content {
    max-width: 100%;
  }

  .wd-hero__body {
    font-size: clamp(1rem, 4vw, 1.15rem);
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .wd-hero__title {
    font-size: clamp(1.35rem, 6.5vw, 1.65rem);
  }
}

@media (max-width: 360px) {
  .wd-hero__title {
    font-size: 1.25rem;
  }
}

/* ======================================================================
   SHOWCASE SECTION
   ====================================================================== */

.wd-showcase {
  position: relative;
  overflow: hidden;
  background-color: #07060e;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

/* Flipped background — scaleX(-1) mirrors the wave direction to flow right-to-left */
.wd-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../web/Home_back_E.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: 0;
}

.wd-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.45);
  pointer-events: none;
  z-index: 1;
}

/* ── Inner wrapper ── */
.wd-showcase__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Stage: positions the card in front and the laptop behind it ── */
.wd-showcase__stage {
  position: relative;
}

/* ── Gradient-border card ── */
.wd-showcase__card {
  position: relative;
  z-index: 2;
  max-width: 660px;
  border-radius: 24px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#0e0c1a, #0e0c1a) padding-box,
    linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.wd-showcase [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wd-showcase [data-ss-reveal="body"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}

.wd-showcase.is-visible [data-ss-reveal="head"],
.wd-showcase.is-visible [data-ss-reveal="body"] {
  opacity: 1;
  transform: translateY(0);
}

/* ── Content ── */
.wd-showcase__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.wd-showcase__badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-family: var(--da-font);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  margin: 0 0 1.25rem;
}

.wd-showcase__title {
  font-family: var(--da-font);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.28;
  color: var(--da-white, #fff);
  margin: 0 0 1.75rem;
}

/* ── CTA — solid gradient-filled pill with arrow badge ── */
.wd-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 8px 0 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin: 0 0 2rem;
}
.wd-showcase__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(192, 38, 211, 0.4);
  color: #ffffff;
  text-decoration: none;
}
.wd-showcase__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

/* ── Stat row ── */
.wd-showcase__stats {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.wd-showcase__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: clamp(1.25rem, 2.5vw, 2.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.wd-showcase__stat:first-child {
  padding-left: 0;
  border-left: none;
}

.wd-showcase__stat-num {
  font-family: var(--da-font);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800;
  color: var(--da-white, #fff);
  line-height: 1;
}

.wd-showcase__stat-label {
  font-family: var(--da-font);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* ── Laptop mockup: sits in front of the card, vertically centered against it ── */
.wd-showcase__laptop {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 54%;
  width: 46%;
  max-width: 420px;
  height: auto;
  display: block;
  transform: translateY(-50%);
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.5));
}

/* ======================================================================
   SHOWCASE RESPONSIVE
   ====================================================================== */

@media (max-width: 1024px) {
  .wd-showcase__card {
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }
}

@media (max-width: 1120px) {
  .wd-showcase__stage {
    display: flex;
    flex-direction: column;
  }

  .wd-showcase__card {
    order: 1;
    max-width: 100%;
  }

  .wd-showcase__content {
    align-items: center;
    text-align: center;
  }

  .wd-showcase__laptop {
    order: 2;
    position: static;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: 2rem auto 0;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5));
  }

  .wd-showcase__stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wd-showcase__title {
    font-size: clamp(1.15rem, 5.5vw, 1.4rem);
  }

  .wd-showcase__stats {
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .wd-showcase__stat {
    flex: 1 1 40%;
  }
}

/* ======================================================================
   TWO-TONE HEADING GRADIENT UTILITY (static, no shimmer)
   ====================================================================== */

.wd-strat-grad {
  display: inline;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 60%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wd-strat-grad2 {
  display: inline;
  background: linear-gradient(90deg, #c026d3 0%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======================================================================
   PROCESS SECTION
   ====================================================================== */

.wd-process {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.wd-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../web/Home_back_C.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: 0;
}

.wd-process::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.52);
  pointer-events: none;
  z-index: 1;
}

.wd-process__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.wd-process [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wd-process [data-ss-reveal="body"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}

.wd-process [data-ss-reveal="card"] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.wd-process [data-ss-reveal="card"][data-ss-delay="0"] { transition-delay: 0.10s; }
.wd-process [data-ss-reveal="card"][data-ss-delay="1"] { transition-delay: 0.22s; }
.wd-process [data-ss-reveal="card"][data-ss-delay="2"] { transition-delay: 0.34s; }
.wd-process [data-ss-reveal="card"][data-ss-delay="3"] { transition-delay: 0.46s; }

.wd-process.is-visible [data-ss-reveal="head"],
.wd-process.is-visible [data-ss-reveal="body"],
.wd-process.is-visible [data-ss-reveal="card"] {
  opacity: 1;
  transform: translateY(0);
}

/* ── Head: heading + lead ── */
.wd-process__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.wd-process__title {
  font-family: var(--da-font);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--da-white, #fff);
  margin: 0 0 1.25rem;
}

.wd-process__lead {
  font-family: var(--da-font);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 700px;
}

/* ── Grid ── */
.wd-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: 0;
}

.wd-process__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.75rem);
  padding: clamp(1.5rem, 2.5vw, 2.25rem) 0;
}

.wd-process__grid .wd-process__item:nth-child(-n+4) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wd-process__num {
  flex-shrink: 0;
  font-family: var(--da-font);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f4f4f4;
  font-variant-numeric: tabular-nums;
}

.wd-process__item--active .wd-process__num,
.wd-process__item--active .wd-process__item-title {
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wd-process__item-title {
  font-family: var(--da-font);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--da-white, #fff);
  margin: 0 0 0.6rem;
}

.wd-process__item-body p {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* ── CTA ── */
.wd-process__cta-wrap {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.wd-process__cta-text {
  font-family: var(--da-font);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.25rem;
}

.wd-process__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#060612, #060612) padding-box,
    linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wd-process__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(192, 38, 211, 0.3);
  color: #ffffff;
  text-decoration: none;
}
.wd-process__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

/* ======================================================================
   PROCESS RESPONSIVE
   ====================================================================== */

@media (max-width: 900px) {
  .wd-process__grid {
    grid-template-columns: 1fr;
  }

  .wd-process__grid .wd-process__item:nth-child(-n+4) {
    border-bottom: none;
  }

  .wd-process__grid .wd-process__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 480px) {
  .wd-process__title {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

  .wd-process__num {
    font-size: clamp(2.25rem, 12vw, 2.75rem);
  }

  .wd-process__item {
    gap: 1rem;
  }
}

/* ======================================================================
   VISION / PHOTO PROCESS SECTION
   ====================================================================== */

.wd-vision {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.wd-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../web/Home_back_C.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: 0;
}

.wd-vision::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.52);
  pointer-events: none;
  z-index: 1;
}

.wd-vision__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.wd-vision [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wd-vision [data-ss-reveal="body"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}

.wd-vision [data-ss-reveal="card"] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.wd-vision [data-ss-reveal="card"][data-ss-delay="0"] { transition-delay: 0.10s; }
.wd-vision [data-ss-reveal="card"][data-ss-delay="1"] { transition-delay: 0.22s; }
.wd-vision [data-ss-reveal="card"][data-ss-delay="2"] { transition-delay: 0.34s; }

.wd-vision.is-visible [data-ss-reveal="head"],
.wd-vision.is-visible [data-ss-reveal="body"],
.wd-vision.is-visible [data-ss-reveal="card"] {
  opacity: 1;
  transform: translateY(0);
}

/* ── Head: heading + lead ── */
.wd-vision__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.wd-vision__title {
  font-family: var(--da-font);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--da-white, #fff);
  margin: 0 0 1.25rem;
}

.wd-vision__lead {
  font-family: var(--da-font);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 700px;
}

/* ── Grid ── */
.wd-vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.wd-vision__card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
}

.wd-vision__card--active {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#14101f, #14101f) padding-box,
    linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
}

.wd-vision__card-media {
  width: 100%;
}

.wd-vision__card-media img {
  width: 100%;
  aspect-ratio: 380 / 240;
  height: auto;
  object-fit: cover;
  display: block;
}

.wd-vision__card-titlebar {
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wd-vision__card-title {
  font-family: var(--da-font);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--da-white, #fff);
  margin: 0;
}

.wd-vision__card--active .wd-vision__card-title {
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wd-vision__card-body {
  padding: 1rem 1.25rem 1.5rem;
}

.wd-vision__card-body p {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

/* ── CTA — solid gradient-filled pill with arrow badge ── */
.wd-vision__cta-wrap {
  text-align: center;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.wd-vision__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 8px 0 22px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--da-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wd-vision__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(192, 38, 211, 0.4);
  color: #ffffff;
  text-decoration: none;
}
.wd-vision__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
}

/* ======================================================================
   VISION RESPONSIVE
   ====================================================================== */

@media (max-width: 1024px) {
  .wd-vision__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .wd-vision__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wd-vision__title {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }
}

/* ======================================================================
   SERVICES SECTION
   ====================================================================== */

.wd-services {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.wd-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../web/Home_back_C.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: 0;
}

.wd-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 14, 0.52);
  pointer-events: none;
  z-index: 1;
}

.wd-services__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.wd-services [data-ss-reveal="head"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wd-services [data-ss-reveal="body"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s ease 0.15s, transform 0.75s ease 0.15s;
}

.wd-services [data-ss-reveal="card"] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.wd-services [data-ss-reveal="card"][data-ss-delay="0"] { transition-delay: 0.10s; }
.wd-services [data-ss-reveal="card"][data-ss-delay="1"] { transition-delay: 0.22s; }
.wd-services [data-ss-reveal="card"][data-ss-delay="2"] { transition-delay: 0.34s; }

.wd-services.is-visible [data-ss-reveal="head"],
.wd-services.is-visible [data-ss-reveal="body"],
.wd-services.is-visible [data-ss-reveal="card"] {
  opacity: 1;
  transform: translateY(0);
}

/* ── Head: heading + lead ── */
.wd-services__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.wd-services__title {
  font-family: var(--da-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--da-white, #fff);
  margin: 0 0 1.25rem;
}

.wd-services__lead {
  font-family: var(--da-font);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 700px;
}

/* ── Grid ── */
.wd-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.wd-services__card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.wd-services__card--active {
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)) padding-box,
    linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
}

.wd-services__card-title {
  font-family: var(--da-font);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--da-white, #fff);
  margin: 0 0 1rem;
}

.wd-services__card--active .wd-services__card-title {
  background: linear-gradient(90deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wd-services__card p {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ======================================================================
   SERVICES RESPONSIVE
   ====================================================================== */

@media (max-width: 1024px) {
  .wd-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .wd-services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wd-services__title {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }
}

/* ======================================================================
   FUELING GROWTH SECTION
   ====================================================================== */

.wd-fuel {
  position: relative;
  overflow: hidden;
  background-color: #050308;
  background-image: url('../web/Home_back_B.webp');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.wd-fuel__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.wd-fuel [data-ss-reveal="text"] {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.wd-fuel [data-ss-reveal="img"] {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.85s ease 0.15s, transform 0.85s ease 0.15s;
}

.wd-fuel.is-visible [data-ss-reveal="text"],
.wd-fuel.is-visible [data-ss-reveal="img"] {
  opacity: 1;
  transform: translateX(0);
}

/* ── Left: content ── */
.wd-fuel__title {
  font-family: var(--da-font);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--da-white, #fff);
  margin: 0 0 1.5rem;
}

.wd-fuel__body {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.95vw, 0.875rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1.25rem;
  max-width: 560px;
}

.wd-fuel__body:last-child {
  margin-bottom: 0;
}

/* ── Right: astronaut image ── */
.wd-fuel__img-wrap {
  display: flex;
  justify-content: center;
}

.wd-fuel__img {
  width: 100%;
  max-width: clamp(280px, 30vw, 440px);
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ======================================================================
   FUELING GROWTH RESPONSIVE
   ====================================================================== */

@media (max-width: 900px) {
  .wd-fuel__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wd-fuel__img-wrap {
    order: -1;
  }

  .wd-fuel__body {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .wd-fuel__title {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }

  .wd-fuel__img {
    max-width: 260px;
  }
}

/* ======================================================================
   CROSS TICKER  (.sm-crt)
   Copied from email-marketing.css — reuses da-crt__ ribbon internals from home-new.css
   ====================================================================== */

.sm-crt {
  position: relative;
  overflow: visible;
  z-index: 1;
  background: #07070a;
  min-height: clamp(260px, 28vw, 360px);
  padding: clamp(70px, 8vw, 100px) 0;
}

.sm-crt__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.sm-crt .da-crt__fade--top,
.sm-crt__clip .da-crt__fade--top {
  height: 18%;
  background: linear-gradient(to bottom,
    #07070a 0%, rgba(7,7,10,0.70) 40%, transparent 100%);
}
.sm-crt .da-crt__fade--bottom,
.sm-crt__clip .da-crt__fade--bottom {
  height: 18%;
  background: linear-gradient(to top,
    #07070a 0%, rgba(7,7,10,0.70) 40%, transparent 100%);
}
.sm-crt .da-crt__vignette--l,
.sm-crt .da-crt__vignette--r { display: none; }

.sm-crt__cord {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(130,130,130,0.22) 10%,
    rgba(168,168,168,0.52) 42%,
    rgba(195,195,195,0.80) 100%);
  border-radius: 2px;
  z-index: 0;
  pointer-events: none;
}

.sm-crt__lamp {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 30;
  pointer-events: none;
}

.sm-crt__lamp-cap {
  width: 34px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 0%,
    #747474 0%, #4e4e4e 42%, #2e2e2e 80%, #1e1e1e 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.12);
}

.sm-crt__lamp-svg {
  display: block;
  width: clamp(150px, 16vw, 220px);
  height: auto;
}

.sm-crt__lamp-glow {
  width: clamp(150px, 16vw, 220px);
  height: 5px;
  margin-top: -3px;
  background: rgba(255, 253, 215, 0.95);
  filter: blur(3px);
  box-shadow:
    0    0px  14px   5px rgba(255, 252, 200, 0.94),
    0   28px  55px  20px rgba(255, 246, 175, 0.58),
    0   75px 120px  42px rgba(255, 236, 140, 0.28),
    0  145px 220px  68px rgba(255, 222,  95, 0.12),
    0  260px 360px  90px rgba(255, 205,  55, 0.05);
}

/* ======================================================================
   TESTIMONIALS  (.sm-testimonials)
   Copied from email-marketing.css
   ====================================================================== */

.sm-testimonials {
  position: relative;
  z-index: 5;
  overflow: visible;
  background: linear-gradient(180deg,
    transparent               0%,
    rgba(7, 7, 10, 0.55)      7%,
    rgba(7, 7, 10, 0.90)     16%,
    #07070a                  24%);
  margin-top: -2px;
  padding-top:    clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

.sm-testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.sm-testimonials__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity   1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    filter    1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.sm-testimonials.is-visible .sm-testimonials__header {
  opacity: 1; transform: translateY(0); filter: blur(0);
}

.sm-testimonials__title {
  font-family: var(--da-font);
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 clamp(0.8rem, 1.2vw, 1.1rem);
}

.sm-testimonials__sub {
  font-family: var(--da-font);
  font-size: clamp(0.8rem, 0.88vw, 0.9rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
  margin: 0 auto;
}

.sm-testimonials__slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(1rem, 1.5vw, 1.5rem) 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.22s,
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.22s;
}
.sm-testimonials.is-visible .sm-testimonials__slider-wrap {
  opacity: 1; transform: translateY(0);
}

.sm-testimonials__slider-wrap::before,
.sm-testimonials__slider-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(30px, 4vw, 60px);
  z-index: 5;
  pointer-events: none;
}
.sm-testimonials__slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #07070a 0%, transparent 100%);
}
.sm-testimonials__slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #07070a 0%, transparent 100%);
}

.sm-testimonials__track {
  display: flex;
  gap: clamp(14px, 1.5vw, 20px);
  width: max-content;
  will-change: transform;
  animation: smReviewScroll 32s linear infinite;
}
.sm-testimonials__slider-wrap:hover .sm-testimonials__track {
  animation-play-state: paused;
}

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

.sm-testimonials__card {
  flex-shrink: 0;
  width: clamp(280px, 24vw, 350px);
  background: rgba(14, 12, 26, 0.94);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.2vw, 1.1rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sm-testimonials__card:hover {
  border-color: rgba(124,58,237,0.38);
  box-shadow: 0 10px 36px rgba(124,58,237,0.16);
  transform: translateY(-4px);
}

.sm-testimonials__card--featured {
  border-color: transparent;
  background:
    linear-gradient(rgba(14,12,26,0.96), rgba(14,12,26,0.96)) padding-box,
    linear-gradient(135deg, #7c3aed 0%, #c026d3 55%, #e11d48 100%) border-box;
}
.sm-testimonials__card--featured:hover { filter: brightness(1.04); }

.sm-testimonials__quote {
  font-size: clamp(1.4rem, 2vw, 2rem);
  background: linear-gradient(135deg, #7c3aed, #c026d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  opacity: 0.9;
}

.sm-testimonials__text {
  font-family: var(--da-font);
  font-size: clamp(0.78rem, 0.84vw, 0.875rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.72);
  margin: 0;
  flex: 1;
}

.sm-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: clamp(0.6rem, 0.9vw, 0.85rem);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sm-testimonials__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.sm-testimonials__avatar--a { background: linear-gradient(135deg,#7c3aed,#c026d3); }
.sm-testimonials__avatar--b { background: linear-gradient(135deg,#1d4ed8,#7c3aed); }
.sm-testimonials__avatar--c { background: linear-gradient(135deg,#c026d3,#e11d48); }
.sm-testimonials__avatar--d { background: linear-gradient(135deg,#0891b2,#7c3aed); }
.sm-testimonials__avatar--e { background: linear-gradient(135deg,#f97316,#e11d48); }
.sm-testimonials__avatar--f { background: linear-gradient(135deg,#059669,#0891b2); }

.sm-testimonials__name {
  font-family: var(--da-font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c026d3;
}

/* ======================================================================
   CROSS TICKER + TESTIMONIALS RESPONSIVE
   ====================================================================== */

@media (max-width: 768px) {
  .sm-crt { min-height: clamp(300px, 70vw, 420px); }
  .sm-crt__lamp-svg { width: clamp(100px, 22vw, 140px); }
  .sm-crt__lamp-cap { width: 24px; height: 11px; }
}
@media (max-width: 480px) {
  .sm-crt { min-height: clamp(280px, 80vw, 380px); }
  .sm-crt__lamp-svg { width: clamp(85px, 22vw, 115px); }
  .sm-crt__lamp-cap { width: 20px; height: 9px; }
  .sm-testimonials__card { width: clamp(240px, 80vw, 300px); }
}
@media (max-width: 360px) {
  .sm-crt { min-height: clamp(260px, 85vw, 360px); }
  .sm-crt__lamp-svg { width: clamp(70px, 24vw, 100px); }
  .sm-crt__lamp-cap { width: 17px; height: 8px; }
  .sm-testimonials__inner { padding: 0 1rem; }
  .sm-testimonials__card  { width: clamp(220px, 88vw, 280px); }
  .sm-testimonials__title { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sm-testimonials__header, .sm-testimonials__slider-wrap, .sm-testimonials__track {
    transition: none !important; animation: none !important;
    opacity: 1 !important; transform: none !important; filter: none !important;
  }
}
