/* ============================================================
   WEB DEVELOPMENT SECTION — FULLY RESPONSIVE DROP-IN TEMPLATE
   Font: Montserrat only
   Colors: #0a1429 → #12284c  |  Accent: #ff520d
   Breakpoints: Mobile < 480 | Tablet 481–1023 | Desktop 1024+
   ============================================================ */

/* ── RESET (scoped) ── */
.wd-section,
.wd-section *,
.wd-section *::before,
.wd-section *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── CSS VARIABLES ── */
.wd-section {
  --accent: #ff520d;
  --accent-glow: rgba(255, 82, 13, 0.35);
  --accent-dim: rgba(255, 82, 13, 0.12);
  --text: #e8f0ff;
  --text-dim: rgba(232, 240, 255, 0.42);
  --glass: rgba(255, 255, 255, 0.03);
  --gb: rgba(255, 255, 255, 0.07);

  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #0a1429 0%, #12284c 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ── CANVAS BG ── */
.wd-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ── NOISE OVERLAY ── */
.wd-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.wd-z {
  position: relative;
  z-index: 2;
}

.wd-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.wd-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.wd-h1 {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(40px, 8vw, 92px);
  margin-bottom: 24px;
}

.wd-h1 em {
  font-style: normal;
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}

.wd-h1 strong {
  display: block;
  font-weight: 900;
}

.wd-h2 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(28px, 4vw, 58px);
  margin-bottom: 48px;
}

.wd-h2 .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.wd-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.wd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wd-section-label::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
}

.wd-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.wd-btn:hover::before {
  transform: translateX(100%);
}

.wd-btn:hover {
  box-shadow: 0 0 48px var(--accent-glow), 0 0 90px rgba(255, 82, 13, 0.15);
  transform: translateY(-2px);
}

.wd-btn__arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
  flex-shrink: 0;
}

.wd-btn__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.wd-btn:hover .wd-btn__arrow {
  width: 28px;
}

.wd-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-dim);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid var(--gb);
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.3s, color 0.3s;
}

.wd-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}


/* ============================================================
   BLOCK 1 — HERO
   ============================================================ */
.wd-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 110px 80px 90px;
}

/* LEFT COPY */
.wd-hero__left {
  position: relative;
}

.wd-hero__left .wd-eyebrow {
  opacity: 0;
  animation: wdFU 0.8s 0.2s forwards;
}

.wd-h1 {
  opacity: 0;
  animation: wdFU 0.8s 0.4s forwards;
}

.wd-hero__left .wd-desc {
  opacity: 0;
  animation: wdFU 0.8s 0.55s forwards;
  max-width: 440px;
}

/* TECH PILLS */
.wd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  opacity: 0;
  animation: wdFU 0.8s 0.7s forwards;
}

.wd-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--gb);
  background: var(--glass);
  color: var(--text-dim);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wd-pill:hover {
  transform: translateY(-2px);
}

.wd-pill img {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px currentColor);
}

.wd-pill:hover img {
  transform: scale(1.1);
  transition: transform 0.3s;
}

/* pill colors */
.p-wp {
  color: rgba(100, 200, 240, 0.75);
  border-color: rgba(33, 117, 155, 0.3);
}

.p-wp:hover {
  border-color: #21759b;
  color: #64c8f0;
  box-shadow: 0 0 16px rgba(33, 117, 155, .4);
}

.p-node {
  color: rgba(100, 220, 100, 0.75);
  border-color: rgba(60, 135, 58, 0.3);
}

.p-node:hover {
  border-color: #3c873a;
  color: #64dc64;
  box-shadow: 0 0 16px rgba(60, 135, 58, .4);
}

.p-re {
  color: rgba(97, 218, 251, 0.75);
  border-color: rgba(97, 218, 251, 0.25);
}

.p-re:hover {
  border-color: #61dafb;
  color: #61dafb;
  box-shadow: 0 0 16px rgba(97, 218, 251, .3);
}

.p-py {
  color: rgba(255, 212, 59, 0.75);
  border-color: rgba(255, 212, 59, 0.25);
}

.p-py:hover {
  border-color: #ffd43b;
  color: #ffd43b;
  box-shadow: 0 0 16px rgba(255, 212, 59, .3);
}

.p-php {
  color: rgba(136, 146, 190, 0.75);
  border-color: rgba(136, 146, 190, 0.25);
}

.p-php:hover {
  border-color: #8892be;
  color: #8892be;
  box-shadow: 0 0 16px rgba(136, 146, 190, .3);
}

.p-vue {
  color: rgba(66, 184, 131, 0.75);
  border-color: rgba(66, 184, 131, 0.25);
}

.p-vue:hover {
  border-color: #42b883;
  color: #42b883;
  box-shadow: 0 0 16px rgba(66, 184, 131, .3);
}

.p-js {
  color: rgba(247, 223, 30, 0.75);
  border-color: rgba(247, 223, 30, 0.25);
}

.p-js:hover {
  border-color: #f7df1e;
  color: #f7df1e;
  box-shadow: 0 0 16px rgba(247, 223, 30, .3);
}

.p-ts {
  color: rgba(0, 122, 204, 0.85);
  border-color: rgba(0, 122, 204, 0.3);
}

.p-ts:hover {
  border-color: #007acc;
  color: #56b3f5;
  box-shadow: 0 0 16px rgba(0, 122, 204, .3);
}

.p-nx {
  color: rgba(255, 82, 13, 0.85);
  border-color: rgba(255, 82, 13, 0.3);
}

.p-nx:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.p-lv {
  color: rgba(255, 45, 85, 0.75);
  border-color: rgba(255, 45, 85, 0.25);
}

.p-lv:hover {
  border-color: #ff2d55;
  color: #ff6b88;
  box-shadow: 0 0 16px rgba(255, 45, 85, .3);
}

.wd-hero__left .wd-btn {
  opacity: 0;
  animation: wdFU 0.8s 0.85s forwards;
}

/* STATS */
.wd-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--gb);
  opacity: 0;
  animation: wdFU 0.8s 1s forwards;
}

.wd-stat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--gb);
  margin-right: 28px;
}

.wd-stat:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.wd-stat__num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.wd-stat__num span {
  color: var(--accent);
}

.wd-stat__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* RIGHT — 3D SCENE */
.wd-hero__right {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}

/* ORBIT RINGS */
.wd-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 82, 13, 0.07);
  animation: wdSpin linear infinite;
  pointer-events: none;
  top: 50%;
  left: 50%;
}

.wd-orbit-1 {
  width: 470px;
  height: 470px;
  margin: -235px;
  animation-duration: 22s;
}

.wd-orbit-2 {
  width: 350px;
  height: 350px;
  margin: -175px;
  border-color: rgba(100, 180, 255, 0.05);
  animation-duration: 16s;
  animation-direction: reverse;
}

.wd-orbit-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 28px var(--accent-glow);
}

.wd-orbit-dot-b {
  background: rgba(100, 180, 255, 0.9);
  box-shadow: 0 0 12px rgba(100, 180, 255, 0.7);
  top: auto;
  bottom: -5px;
}

/* 3D SCENE */
.wd-scene {
  position: relative;
  width: 370px;
  height: 440px;
  transform-style: preserve-3d;
  opacity: 0;
  animation: wdDevIn 1.1s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* MONITOR */
.wd-monitor {
  position: absolute;
  top: 0;
  left: 5px;
  width: 355px;
  height: 224px;
  background: linear-gradient(145deg, #0c1e3a, #182e52);
  border: 1.5px solid rgba(255, 82, 13, 0.25);
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(255, 82, 13, 0.08), 0 36px 72px rgba(0, 0, 0, 0.5);
}

.wd-monitor__screen {
  position: absolute;
  inset: 10px;
  background: #040d1a;
  border-radius: 5px;
  overflow: hidden;
}

.wd-monitor__stand {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 44px;
  background: linear-gradient(180deg, #12263e, #0a1429);
  clip-path: polygon(28% 0%, 72% 0%, 88% 100%, 12% 100%);
}

.wd-monitor__base {
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 7px;
  background: linear-gradient(90deg, #0a1429, #1c3460, #0a1429);
  border-radius: 5px;
}

.wd-monitor__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 11px;
  border-radius: 3px;
  box-shadow: 0 0 18px var(--accent-glow);
  animation: wdBadgeF 3s ease-in-out infinite;
}

/* CODE EDITOR */
.wd-editor {
  display: flex;
  height: 100%;
}

.wd-gutter {
  width: 26px;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 82, 13, 0.07);
  padding: 9px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.wd-ln {
  font-size: 7px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.13);
  line-height: 1;
}

.wd-code-body {
  flex: 1;
  padding: 9px 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}

.wdcl {
  height: 2.5px;
  border-radius: 2px;
  flex-shrink: 0;
  animation: wdCP 2.8s ease-in-out infinite;
}

.cl1 {
  width: 46%;
  background: #c586c0;
  animation-delay: 0s;
}

.cl2 {
  width: 66%;
  background: #569cd6;
  margin-left: 13px;
  animation-delay: .12s;
}

.cl3 {
  width: 53%;
  background: #4ec9b0;
  margin-left: 13px;
  animation-delay: .24s;
}

.cl4 {
  width: 0;
  height: 5px;
}

.cl5 {
  width: 70%;
  background: var(--accent);
  opacity: .85;
  animation-delay: .36s;
}

.cl6 {
  width: 38%;
  background: #ffd43b;
  margin-left: 13px;
  animation-delay: .48s;
}

.cl7 {
  width: 58%;
  background: #61dafb;
  margin-left: 13px;
  animation-delay: .6s;
}

.cl8 {
  width: 42%;
  background: #ce9178;
  margin-left: 26px;
  animation-delay: .72s;
}

.cl9 {
  width: 0;
  height: 5px;
}

.cl10 {
  width: 64%;
  background: #6a9955;
  animation-delay: .84s;
}

.cl11 {
  width: 48%;
  background: #3c873a;
  margin-left: 13px;
  animation-delay: .96s;
}

.cl12 {
  width: 68%;
  background: #569cd6;
  animation-delay: .18s;
}

.cl-cur {
  width: 7px;
  height: 12px;
  background: var(--accent);
  border-radius: 1px;
  margin-left: 13px;
  animation: wdBlink 1s step-end infinite;
  flex-shrink: 0;
}

/* TABLET */
.wd-tablet {
  position: absolute;
  left: -22px;
  bottom: 8px;
  width: 146px;
  height: 184px;
  background: linear-gradient(145deg, #0c1e3a, #182e52);
  border: 1.5px solid rgba(255, 82, 13, 0.15);
  border-radius: 10px;
  transform: rotateY(14deg) rotateX(6deg);
  box-shadow: 16px 16px 48px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 82, 13, 0.04);
}

.wd-tablet__screen {
  position: absolute;
  inset: 10px;
  background: #040d1a;
  border-radius: 5px;
  overflow: hidden;
  padding: 7px;
}

.wd-tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.wd-tc {
  height: 42px;
  border-radius: 4px;
  background: rgba(255, 82, 13, 0.08);
  border: 1px solid rgba(255, 82, 13, 0.15);
  animation: wdTP 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.wd-tc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255, 82, 13, 0.05));
}

.wd-tc:nth-child(2) {
  background: rgba(97, 218, 251, 0.06);
  border-color: rgba(97, 218, 251, 0.15);
  animation-delay: .4s;
}

.wd-tc:nth-child(3) {
  background: rgba(66, 184, 131, 0.06);
  border-color: rgba(66, 184, 131, 0.15);
  animation-delay: .8s;
}

.wd-tc:nth-child(4) {
  background: rgba(255, 212, 59, 0.06);
  border-color: rgba(255, 212, 59, 0.15);
  animation-delay: 1.2s;
}

.wd-tl {
  height: 2px;
  margin: 7px 6px 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.wd-tl2 {
  height: 2px;
  margin: 0 6px;
  width: 55%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.wd-tfoot {
  display: flex;
  gap: 4px;
  margin-top: 5px;
}

.wd-tbtn {
  height: 9px;
  border-radius: 2px;
  flex: 1;
  background: rgba(255, 82, 13, 0.2);
  animation: wdTP 3s ease-in-out infinite;
}

.wd-tbtn:last-child {
  flex: 0 0 18px;
  background: rgba(255, 255, 255, 0.05);
}

/* PHONE */
.wd-phone {
  position: absolute;
  right: -8px;
  bottom: 28px;
  width: 92px;
  height: 164px;
  background: linear-gradient(145deg, #0c1e3a, #182e52);
  border: 1.5px solid rgba(255, 82, 13, 0.2);
  border-radius: 15px;
  transform: rotateY(-18deg) rotateX(4deg);
  box-shadow: -14px 14px 48px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 82, 13, 0.06);
  overflow: hidden;
}

.wd-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background: rgba(255, 82, 13, 0.3);
  border-radius: 3px;
}

.wd-phone__screen {
  position: absolute;
  inset: 20px 7px 7px;
  background: #040d1a;
  border-radius: 7px;
  overflow: hidden;
  padding: 6px;
}

.wd-pbar {
  height: 13px;
  background: var(--accent);
  border-radius: 3px;
  opacity: .7;
  margin-bottom: 5px;
  animation: wdPP 2.5s ease-in-out infinite;
}

.wd-prow {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}

.wd-pbl {
  height: 22px;
  flex: 1;
  border-radius: 3px;
  background: rgba(97, 218, 251, 0.15);
  animation: wdPP 2.5s ease-in-out infinite;
}

.wd-pbl:nth-child(2) {
  animation-delay: .3s;
  background: rgba(255, 82, 13, 0.1);
}

.wd-pln {
  height: 2px;
  margin-bottom: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  animation: wdPP 2.5s ease-in-out infinite;
}

.wd-pln:nth-child(odd) {
  width: 75%;
  animation-delay: .2s;
}

.wd-pmb {
  height: 7px;
  border-radius: 3px;
  background: rgba(66, 184, 131, 0.3);
  margin-bottom: 4px;
  animation: wdPP 2.5s ease-in-out infinite;
  animation-delay: .6s;
}

/* FLOATING LABELS */
.wd-ftag {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 13px;
  background: rgba(10, 20, 41, 0.88);
  border: 1px solid var(--gb);
  backdrop-filter: blur(12px);
  border-radius: 4px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: wdTF 4s ease-in-out infinite;
  pointer-events: none;
}

.wd-ftag img {
  flex-shrink: 0;
}

.t-wp {
  top: 7%;
  left: -14%;
  color: #64c8f0;
  border-color: rgba(33, 117, 155, .35);
  animation-delay: 0s;
}

.t-node {
  top: 26%;
  right: -10%;
  color: #64dc64;
  border-color: rgba(60, 135, 58, .35);
  animation-delay: 1s;
}

.t-re {
  bottom: 34%;
  left: -18%;
  color: #61dafb;
  border-color: rgba(97, 218, 251, .3);
  animation-delay: .6s;
}

.t-nx {
  bottom: 14%;
  right: -6%;
  color: rgba(232, 240, 255, .6);
  border-color: var(--gb);
  animation-delay: 1.4s;
}


/* ============================================================
   BLOCK 2 — TICKER
   ============================================================ */
.wd-ticker {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
  background: rgba(255, 82, 13, 0.025);
}

.wd-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: wdMarq 30s linear infinite;
}

.wd-ticker__item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: color 0.3s;
}

.wd-ticker__item:hover {
  color: var(--accent);
}

.wd-ticker__sep {
  color: var(--accent);
  font-size: 11px;
}


/* ============================================================
   BLOCK 3 — SERVICES
   ============================================================ */
.wd-services {
  position: relative;
  z-index: 2;
  padding: 90px 80px;
}

.wd-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.wd-card {
  padding: 40px 32px 52px;
  background: var(--glass);
  border: 1px solid var(--gb);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.35s;
  cursor: pointer;
  transform-style: preserve-3d;
  text-decoration: none;
  color: inherit;
  display: block;
}

.wd-card:hover {
  border-color: rgba(255, 82, 13, 0.35);
  background: rgba(255, 82, 13, 0.05);
  transform: translateY(-8px) perspective(800px) rotateX(2.5deg);
  z-index: 5;
}

.wd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--cx, 50%) var(--cy, 50%), rgba(255, 82, 13, 0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}

.wd-card:hover::before {
  opacity: 1;
}

.wd-card__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 26px;
}

.wd-card__icon {
  width: 50px;
  height: 50px;
  background: white;
  border: 1px solid rgba(255, 82, 13, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wd-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.wd-card:hover .wd-card__icon {
  transform: scale(1.1);
  box-shadow: 0 0 24px var(--accent-glow);
}

.wd-card__name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.wd-card__desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-dim);
}

.wd-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}

.wd-card__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-dim);
}

.wd-card__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-dim);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
}

.wd-card:hover .wd-card__arrow {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--accent);
  color: var(--accent);
}


/* ============================================================
   BLOCK 4 — TECH STACK
   ============================================================ */
.wd-stack {
  position: relative;
  z-index: 2;
  padding: 90px 80px;
  background: rgba(0, 0, 0, 0.18);
  border-top: 1px solid var(--gb);
}

.wd-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-top: 56px;
}

.wd-cube-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  position: relative;
  perspective: 700px;
}

.wd-cube {
  width: 106px;
  height: 106px;
  transform-style: preserve-3d;
  animation: wdCR 11s linear infinite;
}

.wd-cube__face {
  position: absolute;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(255, 82, 13, 0.22);
  background: rgba(255, 82, 13, 0.03);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 82, 13, 0.6);
}

.cf-fr {
  transform: translateZ(53px);
}

.cf-bk {
  transform: rotateY(180deg) translateZ(53px);
}

.cf-ri {
  transform: rotateY(90deg) translateZ(53px);
}

.cf-le {
  transform: rotateY(-90deg) translateZ(53px);
}

.cf-tp {
  transform: rotateX(90deg) translateZ(53px);
}

.cf-bt {
  transform: rotateX(-90deg) translateZ(53px);
}

.wd-orb-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--glass);
  border: 1px solid var(--gb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  backdrop-filter: blur(8px);
  transition: all 0.25s;
  cursor: default;
}

.wd-orb-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
  transform: scale(1.2) !important;
}

.wd-bars {
  display: grid;
  gap: 20px;
}

.wd-bar__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.wd-bar__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.wd-bar__pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.wd-bar__track {
  height: 2.5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.wd-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 130, 50, 0.5));
  width: 0%;
  transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px var(--accent-glow);
}


/* ============================================================
   BLOCK 5 — PROCESS
   ============================================================ */
.wd-process {
  position: relative;
  z-index: 2;
  padding: 90px 80px;
}

.wd-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.wd-step {
  padding: 36px 26px;
  border: 1px solid var(--gb);
  background: var(--glass);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
  cursor: default;
}

.wd-step:hover {
  border-color: rgba(255, 82, 13, 0.28);
  background: rgba(255, 82, 13, 0.04);
}

.wd-step__conn {
  position: absolute;
  top: 36px;
  right: -1px;
  width: 18px;
  height: 1px;
  background: var(--accent);
  opacity: 0.35;
  z-index: 2;
}

.wd-step:last-child .wd-step__conn {
  display: none;
}

.wd-step__num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 77, 14, 0.868);
  line-height: 1;
  margin-bottom: 18px;
  transition: -webkit-text-stroke-color 0.3s;
}

.wd-step:hover .wd-step__num {
  -webkit-text-stroke-color: rgba(255, 82, 13, 0.45);
}

.wd-step__title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.wd-step__text {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-dim);
}


/* ============================================================
   BLOCK 6 — CTA STRIP
   ============================================================ */
.wd-cta {
  position: relative;
  z-index: 2;
  padding: 90px 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--gb);
}

.wd-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 280px;
  background: radial-gradient(ellipse, rgba(255, 82, 13, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.wd-cta__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wd-cta__label::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--accent);
}

.wd-cta__title {
  font-size: clamp(26px, 3.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.wd-cta__title .ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.wd-cta__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes wdFU {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes wdDevIn {
  from {
    opacity: 0;
    transform: perspective(1100px) rotateY(25deg) translateY(36px)
  }

  to {
    opacity: 1;
    transform: perspective(1100px) rotateY(0) translateY(0)
  }
}

@keyframes wdCP {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

@keyframes wdBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

@keyframes wdPP {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

@keyframes wdTP {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

@keyframes wdTF {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes wdBadgeF {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-4px)
  }
}

@keyframes wdSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes wdCR {
  from {
    transform: rotateX(0) rotateY(0)
  }

  to {
    transform: rotateX(360deg) rotateY(360deg)
  }
}

@keyframes wdMarq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}


/* ============================================================
   RESPONSIVE — TABLET  481px – 1023px
   ============================================================ */
@media (max-width: 1023px) {

  /* Hero */
  .wd-hero {
    grid-template-columns: 1fr;
    padding: 80px 48px 70px;
    gap: 0;
  }

  .wd-hero__right {
    display: none;
  }

  .wd-hero__left .wd-desc {
    max-width: 100%;
  }

  .wd-h1 {
    font-size: clamp(42px, 7vw, 72px);
  }

  /* Stats */
  .wd-stats {
    gap: 0;
  }

  .wd-stat {
    padding-right: 20px;
    margin-right: 20px;
  }

  /* Services */
  .wd-services {
    padding: 72px 48px;
  }

  .wd-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Stack */
  .wd-stack {
    padding: 72px 48px;
  }

  .wd-stack-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .wd-cube-wrap {
    height: 300px;
  }

  /* Process */
  .wd-process {
    padding: 72px 48px;
  }

  .wd-process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wd-step:nth-child(2) .wd-step__conn,
  .wd-step:nth-child(4) .wd-step__conn {
    display: none;
  }

  /* CTA */
  .wd-cta {
    grid-template-columns: 1fr;
    padding: 72px 48px;
    gap: 36px;
  }

  .wd-cta__right {
    flex-direction: row;
    align-items: center;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

  /* Hero */
  .wd-hero {
    padding: 56px 22px 52px;
  }

  .wd-h1 {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .wd-eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-bottom: 16px;
  }

  .wd-desc {
    font-size: 12px;
  }

  .wd-pills {
    gap: 7px;
  }

  .wd-pill {
    font-size: 9px;
    padding: 5px 11px;
  }

  .wd-btn {
    font-size: 11px;
    padding: 13px 28px;
  }

  /* Stats */
  .wd-stats {
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .wd-stat {
    border: none;
    margin: 0;
    padding: 0;
  }

  .wd-stat__num {
    font-size: 32px;
  }

  /* Ticker */
  .wd-ticker__item {
    font-size: 9px;
    padding: 0 22px;
    gap: 10px;
  }

  /* Services */
  .wd-services {
    padding: 52px 22px;
  }

  .wd-h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .wd-cards {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .wd-card {
    padding: 32px 24px 48px;
  }

  .wd-card__name {
    font-size: 16px;
  }

  .wd-card__desc {
    font-size: 11.5px;
  }

  .wd-card:hover {
    transform: none;
  }

  /* Stack */
  .wd-stack {
    padding: 52px 22px;
  }

  .wd-stack-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .wd-cube-wrap {
    height: 260px;
  }

  .wd-bar__name {
    font-size: 10.5px;
  }

  /* Process */
  .wd-process {
    padding: 52px 22px;
  }

  .wd-process__grid {
    grid-template-columns: 1fr;
  }

  .wd-step__conn {
    display: none !important;
  }

  .wd-step__num {
    font-size: 40px;
  }

  .wd-step:hover {
    transform: none;
  }

  /* CTA */
  .wd-cta {
    padding: 52px 22px;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .wd-cta__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wd-cta__title {
    font-size: 28px;
  }

  .wd-btn-outline {
    font-size: 10px;
    padding: 12px 24px;
  }

  /* Section label */
  .wd-section-label {
    font-size: 9px;
  }
}


/* ============================================================
   RESPONSIVE — LARGE DESKTOP  1440px+
   ============================================================ */
@media (min-width: 1440px) {
  .wd-hero {
    padding: 130px 120px 110px;
  }

  .wd-services {
    padding: 110px 120px;
  }

  .wd-stack {
    padding: 110px 120px;
  }

  .wd-process {
    padding: 110px 120px;
  }

  .wd-cta {
    padding: 110px 120px;
  }
}