/* ===== WEBSITE DEVELOPMENT SERVICE PAGE — website-development.css ===== */

/* ── Global italic accent ── */
.italic-accent {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: #e91e8c;
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%       { transform: scale(1.08) translate(20px,-18px); }
}
@keyframes webFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-26px) scale(1.18); }
}
@keyframes wd-rail-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes wd-feat-float-a {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes wd-feat-float-b {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes wd-ind-float-1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%       { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes wd-ind-float-2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%       { transform: rotate(4deg) translateY(-8px); }
}
@keyframes wd-ind-float-3 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%       { transform: rotate(-3deg) translateY(-12px); }
}
@keyframes wd-ind-float-4 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50%       { transform: rotate(5deg) translateY(-9px); }
}
@keyframes wd-chip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.web-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
  text-align: center;
}
#web-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
#web-hero-canvas canvas { width: 100% !important; height: 100% !important; }

.web-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 1;
}
.web-hero-blob--pink {
  width: 660px; height: 660px;
  background: #e91e8c; opacity: 0.1;
  top: -210px; left: -110px;
  animation: blobPulse 12s ease-in-out infinite;
}
.web-hero-blob--purple {
  width: 480px; height: 480px;
  background: #7c3aed; opacity: 0.09;
  bottom: -150px; right: -80px;
  animation: blobPulse 15s ease-in-out infinite reverse;
}
.web-float-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: #7c3aed;
  border-radius: 50%;
  z-index: 2; opacity: 0.5;
  top: 32%; right: 8%;
  pointer-events: none;
  animation: webFloat 9s ease-in-out infinite;
}
.web-hero-inner {
  position: relative;
  z-index: 3;
  padding: 200px 6vw 130px;
  max-width: 1020px;
  width: 100%;
}
.web-hero-pill {
  display: inline-block;
  border: 1px solid rgba(233,30,140,0.45);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #e91e8c;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(233,30,140,0.07);
}
.web-hero-h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
}
.web-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 48px;
}
.web-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   SHOWCASE — "Your Website Next."
══════════════════════════════════════════ */
.wd-showcase {
  background: #080808;
  padding: 110px 0 0;
  overflow: hidden;
}

.wd-showcase-hdr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  margin-bottom: 64px;
}

.wd-sc-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e91e8c;
  margin-bottom: 16px;
}

.wd-sc-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  margin: 0 0 20px;
}

.wd-sc-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 560px;
}

/* Card rail */
.wd-sc-rail-outer {
  overflow: hidden;
  padding: 20px 0 80px;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.wd-sc-rail {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: wd-rail-scroll 42s linear infinite;
}

.wd-sc-rail:hover { animation-play-state: paused; }

/* Individual browser card */
.wd-sc-card {
  width: 296px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.wd-sc-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* Chrome bar */
.wd-sc-chrome {
  background: #1e1e1e;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wd-sc-chrome-dots {
  display: flex;
  gap: 5px;
}
.wd-sc-chrome-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.wd-sc-chrome-dots span:nth-child(1) { background: #ff5f57; }
.wd-sc-chrome-dots span:nth-child(2) { background: #febc2e; }
.wd-sc-chrome-dots span:nth-child(3) { background: #28c840; }
.wd-sc-chrome-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  height: 16px;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', monospace;
  display: flex;
  align-items: center;
  padding: 0 8px;
  overflow: hidden;
  white-space: nowrap;
}

/* Website screen */
.wd-sc-screen {
  display: flex;
  flex-direction: column;
  height: 360px;
  overflow: hidden;
}

/* Top nav bar inside site */
.wd-sc-topbar {
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  flex-shrink: 0;
}
.wd-sc-topbar-logo {
  width: 40px;
  height: 10px;
  border-radius: 2px;
}
.wd-sc-topbar-links {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.wd-sc-topbar-links span {
  width: 28px;
  height: 5px;
  border-radius: 2px;
}
.wd-sc-topbar-cta {
  width: 36px;
  height: 14px;
  border-radius: 20px;
}

/* Hero zone */
.wd-sc-hero-zone {
  height: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 14px;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.wd-sc-hero-h1 {
  height: 10px;
  border-radius: 3px;
}
.wd-sc-hero-sub {
  height: 7px;
  border-radius: 2px;
}
.wd-sc-hero-btn {
  height: 18px;
  width: 68px;
  border-radius: 20px;
  margin-top: 4px;
}

/* Body sections */
.wd-sc-body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}

.wd-sc-section-lbl {
  height: 6px;
  width: 50px;
  border-radius: 2px;
  margin-bottom: 6px;
}
.wd-sc-line {
  height: 5px;
  border-radius: 2px;
}
.wd-sc-line-sm {
  height: 4px;
  border-radius: 2px;
}
.wd-sc-cards-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex: 1;
}
.wd-sc-mini-card {
  flex: 1;
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wd-sc-mini-card-line {
  height: 4px;
  border-radius: 2px;
}
.wd-sc-cta-small {
  height: 16px;
  width: 60px;
  border-radius: 20px;
  margin-top: 6px;
}

/* Metric badge */
.wd-sc-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(233,30,140,0.5);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: right;
}
.wd-sc-badge-num {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #e91e8c;
  letter-spacing: -0.03em;
  line-height: 1;
}
.wd-sc-badge-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ── Brand 1: Meridian Care (blue) ── */
.wd-sc-meridian { background: #f0f7ff; }
.wd-sc-meridian .wd-sc-topbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); }
.wd-sc-meridian .wd-sc-topbar-logo { background: #1e40af; }
.wd-sc-meridian .wd-sc-topbar-links span { background: #94a3b8; }
.wd-sc-meridian .wd-sc-topbar-cta { background: #1e40af; }
.wd-sc-meridian .wd-sc-hero-zone { background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%); }
.wd-sc-meridian .wd-sc-hero-h1 { background: rgba(255,255,255,0.9); }
.wd-sc-meridian .wd-sc-hero-sub { background: rgba(255,255,255,0.5); }
.wd-sc-meridian .wd-sc-hero-btn { background: #fff; }
.wd-sc-meridian .wd-sc-body { background: #f0f7ff; }
.wd-sc-meridian .wd-sc-section-lbl { background: #1e40af; }
.wd-sc-meridian .wd-sc-line { background: #94a3b8; }
.wd-sc-meridian .wd-sc-cards-row .wd-sc-mini-card { background: #fff; border-top: 2px solid #3b82f6; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.wd-sc-meridian .wd-sc-mini-card-line { background: #cbd5e1; }
.wd-sc-meridian .wd-sc-cta-small { background: #1e40af; }

/* ── Brand 2: Soigne (dark luxury rose) ── */
.wd-sc-soigne { background: #0d0308; }
.wd-sc-soigne .wd-sc-topbar { background: #110209; border-bottom: 1px solid rgba(255,255,255,0.04); }
.wd-sc-soigne .wd-sc-topbar-logo { background: #f5e6e8; }
.wd-sc-soigne .wd-sc-topbar-links span { background: rgba(255,255,255,0.2); }
.wd-sc-soigne .wd-sc-topbar-cta { background: #e11d48; }
.wd-sc-soigne .wd-sc-hero-zone { background: linear-gradient(135deg, #7f1d1d 0%, #e11d48 60%, #f43f5e 100%); }
.wd-sc-soigne .wd-sc-hero-h1 { background: rgba(255,255,255,0.9); }
.wd-sc-soigne .wd-sc-hero-sub { background: rgba(255,255,255,0.45); }
.wd-sc-soigne .wd-sc-hero-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); }
.wd-sc-soigne .wd-sc-body { background: #0d0308; }
.wd-sc-soigne .wd-sc-section-lbl { background: #e11d48; }
.wd-sc-soigne .wd-sc-line { background: rgba(255,255,255,0.15); }
.wd-sc-soigne .wd-sc-cards-row .wd-sc-mini-card { background: #1a0810; border: 1px solid rgba(225,29,72,0.2); }
.wd-sc-soigne .wd-sc-mini-card-line { background: rgba(255,255,255,0.12); }
.wd-sc-soigne .wd-sc-cta-small { background: #e11d48; }

/* ── Brand 3: Veritas Medical (teal) ── */
.wd-sc-veritas { background: #f0fdfb; }
.wd-sc-veritas .wd-sc-topbar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); }
.wd-sc-veritas .wd-sc-topbar-logo { background: #0d9488; }
.wd-sc-veritas .wd-sc-topbar-links span { background: #94a3b8; }
.wd-sc-veritas .wd-sc-topbar-cta { background: #0d9488; }
.wd-sc-veritas .wd-sc-hero-zone { background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%); }
.wd-sc-veritas .wd-sc-hero-h1 { background: rgba(255,255,255,0.9); }
.wd-sc-veritas .wd-sc-hero-sub { background: rgba(255,255,255,0.55); }
.wd-sc-veritas .wd-sc-hero-btn { background: #fff; }
.wd-sc-veritas .wd-sc-body { background: #f0fdfb; }
.wd-sc-veritas .wd-sc-section-lbl { background: #0d9488; }
.wd-sc-veritas .wd-sc-line { background: #94a3b8; }
.wd-sc-veritas .wd-sc-cards-row .wd-sc-mini-card { background: #fff; border-top: 2px solid #14b8a6; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.wd-sc-veritas .wd-sc-mini-card-line { background: #cbd5e1; }
.wd-sc-veritas .wd-sc-cta-small { background: #0d9488; }

/* ── Brand 4: Glorious Gospel (deep purple gold) ── */
.wd-sc-gospel { background: #0a0518; }
.wd-sc-gospel .wd-sc-topbar { background: #0f0825; border-bottom: 1px solid rgba(255,255,255,0.04); }
.wd-sc-gospel .wd-sc-topbar-logo { background: #d4af37; }
.wd-sc-gospel .wd-sc-topbar-links span { background: rgba(255,255,255,0.2); }
.wd-sc-gospel .wd-sc-topbar-cta { background: #d4af37; }
.wd-sc-gospel .wd-sc-hero-zone { background: linear-gradient(135deg, #1e0552 0%, #4c1d95 50%, #7c3aed 100%); }
.wd-sc-gospel .wd-sc-hero-h1 { background: rgba(255,255,255,0.9); }
.wd-sc-gospel .wd-sc-hero-sub { background: rgba(255,255,255,0.45); }
.wd-sc-gospel .wd-sc-hero-btn { background: #d4af37; }
.wd-sc-gospel .wd-sc-body { background: #0a0518; }
.wd-sc-gospel .wd-sc-section-lbl { background: #7c3aed; }
.wd-sc-gospel .wd-sc-line { background: rgba(255,255,255,0.15); }
.wd-sc-gospel .wd-sc-cards-row .wd-sc-mini-card { background: #160a2e; border: 1px solid rgba(124,58,237,0.25); }
.wd-sc-gospel .wd-sc-mini-card-line { background: rgba(255,255,255,0.12); }
.wd-sc-gospel .wd-sc-cta-small { background: #7c3aed; }

/* ── Brand 5: Lash Master Pro (dark luxury gold) ── */
.wd-sc-lash { background: #080604; }
.wd-sc-lash .wd-sc-topbar { background: #0c0a06; border-bottom: 1px solid rgba(255,255,255,0.04); }
.wd-sc-lash .wd-sc-topbar-logo { background: #c9a84c; }
.wd-sc-lash .wd-sc-topbar-links span { background: rgba(201,168,76,0.3); }
.wd-sc-lash .wd-sc-topbar-cta { background: transparent; border: 1px solid #c9a84c; }
.wd-sc-lash .wd-sc-hero-zone { background: linear-gradient(135deg, #1a0c00 0%, #2d1800 50%, #3d2200 100%); }
.wd-sc-lash .wd-sc-hero-zone::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
}
.wd-sc-lash .wd-sc-hero-h1 { background: #c9a84c; }
.wd-sc-lash .wd-sc-hero-sub { background: rgba(201,168,76,0.4); }
.wd-sc-lash .wd-sc-hero-btn { background: #c9a84c; }
.wd-sc-lash .wd-sc-body { background: #080604; }
.wd-sc-lash .wd-sc-section-lbl { background: #c9a84c; }
.wd-sc-lash .wd-sc-line { background: rgba(201,168,76,0.2); }
.wd-sc-lash .wd-sc-cards-row .wd-sc-mini-card { background: #0f0c06; border: 1px solid rgba(201,168,76,0.15); }
.wd-sc-lash .wd-sc-mini-card-line { background: rgba(201,168,76,0.15); }
.wd-sc-lash .wd-sc-cta-small { background: transparent; border: 1px solid #c9a84c; }

/* ══════════════════════════════════════════
   MARQUEE SCROLL SECTION
══════════════════════════════════════════ */
.wd-mq-wrap {
  height: 220vh;
  position: relative;
  background: #080808;
}

.wd-mq-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}

.wd-mq-accent-line {
  position: absolute;
  left: 80px;
  top: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #e91e8c 40%, #7c3aed 60%, transparent);
  transform: translateY(-50%);
}

.wd-mq-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(52px, 8.5vw, 112px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  white-space: nowrap;
  will-change: transform;
  padding-left: 120px;
  /* JS drives the translateX */
}

.wd-mq-text .wd-mq-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #e91e8c, #b259f5, #7c3aed, #e91e8c);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wd-marquee-shimmer 5s linear infinite;
}
@keyframes wd-marquee-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ══════════════════════════════════════════
   FEATURE SECTIONS (Creative / Mobile / Vision)
══════════════════════════════════════════ */
.wd-feat {
  background: #080808;
  padding: 120px 80px;
  position: relative;
}
.wd-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}

.wd-feat-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.wd-feat--rev .wd-feat-inner { direction: rtl; }
.wd-feat--rev .wd-feat-inner > * { direction: ltr; }

/* Text column */
.wd-feat-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e91e8c;
  margin-bottom: 20px;
}

.wd-feat-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: #fff;
  margin: 0 0 24px;
}

.wd-feat-p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 0 0 40px;
  max-width: 480px;
}

.wd-feat-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #e91e8c;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(233,30,140,0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wd-feat-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(233,30,140,0.55);
  color: #fff;
}
.wd-feat-cta svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.wd-feat-cta:hover svg { transform: translate(2px, -2px); }

/* Visual column */
.wd-feat-vis {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══ CSS ART: Creative ══ */
.wd-cr-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.wd-cr-canvas {
  background: linear-gradient(135deg, #13082a 0%, #1e0d40 40%, #2d1260 100%);
  border-radius: 24px;
  border: 1px solid rgba(124,58,237,0.25);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.1);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

/* Abstract bg shapes on canvas */
.wd-cr-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wd-cr-s1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233,30,140,0.25) 0%, transparent 70%);
  top: -60px; right: -40px;
  filter: blur(40px);
}
.wd-cr-s2 {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  bottom: -40px; left: -30px;
  filter: blur(35px);
}
.wd-cr-s3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  filter: blur(30px);
}

/* Inner website card on the canvas */
.wd-cr-inner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.wd-cr-ic-bar {
  height: 24px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wd-cr-ic-hero {
  height: 80px;
  background: linear-gradient(135deg, rgba(233,30,140,0.6), rgba(124,58,237,0.6));
}
.wd-cr-ic-lines {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wd-cr-ic-lines div {
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.wd-cr-ic-cta {
  margin: 0 14px 14px;
  height: 22px;
  width: 80px;
  background: #e91e8c;
  border-radius: 20px;
}

/* Floating typography chip */
.wd-cr-chip {
  position: absolute;
  background: rgba(12,8,20,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  z-index: 4;
}
.wd-cr-chip-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.wd-cr-chip-type {
  top: -20px;
  right: -24px;
  animation: wd-chip-float 4s ease-in-out infinite;
}
.wd-cr-chip-aa {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
}
.wd-cr-chip-pal {
  bottom: -18px;
  left: -20px;
  animation: wd-chip-float 5s ease-in-out infinite 0.8s;
}
.wd-cr-pal-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.wd-cr-pal-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ══ CSS ART: Mobile First ══ */
.wd-mob-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet outline (behind phone) */
.wd-mob-tablet-bg {
  position: absolute;
  width: 340px;
  height: 240px;
  border: 2px solid rgba(124,58,237,0.2);
  border-radius: 16px;
  right: -20px;
  bottom: 10px;
  background: rgba(124,58,237,0.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.wd-mob-tablet-bg::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  background: rgba(124,58,237,0.06);
}

/* Phone */
.wd-mob-phone {
  width: 200px;
  background: #111;
  border: 8px solid #1a1a1a;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 2;
}
.wd-mob-notch {
  width: 60px;
  height: 16px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.wd-mob-screen {
  background: #0d0d0d;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wd-mob-s-nav {
  height: 36px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.wd-mob-s-nav::before {
  content: '';
  width: 30px; height: 8px;
  background: #e91e8c;
  border-radius: 2px;
}
.wd-mob-s-nav::after {
  content: '';
  flex: 1;
  height: 1px;
}
.wd-mob-s-hero {
  height: 100px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  position: relative;
  overflow: hidden;
}
.wd-mob-s-hero::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 60%;
  height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}
.wd-mob-s-cards {
  display: flex;
  gap: 8px;
  padding: 12px;
}
.wd-mob-s-card {
  flex: 1;
  height: 54px;
  background: #1a1a1a;
  border-radius: 8px;
  border-top: 2px solid #e91e8c;
}
.wd-mob-s-section {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wd-mob-s-line {
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.wd-mob-s-cta {
  height: 20px;
  width: 72px;
  background: #e91e8c;
  border-radius: 20px;
  margin-top: 6px;
}

/* Mobile score chip */
.wd-mob-score-chip {
  position: absolute;
  top: -20px;
  right: -16px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(74,222,128,0.5);
  border-radius: 12px;
  padding: 10px 16px;
  z-index: 5;
  animation: wd-chip-float 4.5s ease-in-out infinite 0.3s;
}
.wd-mob-score-n {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #4ade80;
  letter-spacing: -0.04em;
  line-height: 1;
}
.wd-mob-score-l {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ══ CSS ART: Your Vision — industry cards ══ */
.wd-vis-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  min-height: 440px;
}

.wd-ind-card {
  position: absolute;
  width: 148px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.wd-ind-card-bar {
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}
.wd-ind-card-bar::before,
.wd-ind-card-bar::after {
  content: '';
  display: block;
}
.wd-ind-card-bar::before { width: 24px; height: 6px; border-radius: 2px; }
.wd-ind-card-bar::after  { flex: 1; height: 4px; border-radius: 2px; margin-left: 4px; }
.wd-ind-card-hero {
  height: 64px;
}
.wd-ind-card-line {
  height: 5px;
  border-radius: 2px;
  margin: 8px 10px 0;
}
.wd-ind-card-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 6px 10px 10px;
}

/* Healthcare card — blue */
.wd-ind-healthcare {
  top: 20px;
  left: 30px;
  background: #f0f7ff;
  animation: wd-ind-float-1 4s ease-in-out infinite;
}
.wd-ind-healthcare .wd-ind-card-bar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); }
.wd-ind-healthcare .wd-ind-card-bar::before { background: #1e40af; }
.wd-ind-healthcare .wd-ind-card-bar::after { background: #cbd5e1; }
.wd-ind-healthcare .wd-ind-card-hero { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.wd-ind-healthcare .wd-ind-card-line { background: #94a3b8; }
.wd-ind-healthcare .wd-ind-card-lbl { color: #1e40af; }

/* Beauty card — rose */
.wd-ind-beauty {
  top: 0;
  right: 20px;
  background: #0d0308;
  animation: wd-ind-float-2 5s ease-in-out infinite 0.6s;
}
.wd-ind-beauty .wd-ind-card-bar { background: #110209; border-bottom: 1px solid rgba(255,255,255,0.04); }
.wd-ind-beauty .wd-ind-card-bar::before { background: #f43f5e; }
.wd-ind-beauty .wd-ind-card-bar::after { background: rgba(255,255,255,0.15); }
.wd-ind-beauty .wd-ind-card-hero { background: linear-gradient(135deg, #7f1d1d, #e11d48); }
.wd-ind-beauty .wd-ind-card-line { background: rgba(255,255,255,0.15); }
.wd-ind-beauty .wd-ind-card-lbl { color: #f43f5e; }

/* Legal card — dark slate */
.wd-ind-legal {
  bottom: 40px;
  left: 10px;
  background: #0f1218;
  animation: wd-ind-float-3 4.5s ease-in-out infinite 1s;
}
.wd-ind-legal .wd-ind-card-bar { background: #161b22; border-bottom: 1px solid rgba(255,255,255,0.04); }
.wd-ind-legal .wd-ind-card-bar::before { background: #64748b; }
.wd-ind-legal .wd-ind-card-bar::after { background: rgba(255,255,255,0.1); }
.wd-ind-legal .wd-ind-card-hero { background: linear-gradient(135deg, #1e293b, #334155); }
.wd-ind-legal .wd-ind-card-line { background: rgba(255,255,255,0.12); }
.wd-ind-legal .wd-ind-card-lbl { color: #94a3b8; }

/* Retail card — amber */
.wd-ind-retail {
  bottom: 20px;
  right: 30px;
  background: #fefce8;
  animation: wd-ind-float-4 3.8s ease-in-out infinite 0.4s;
}
.wd-ind-retail .wd-ind-card-bar { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); }
.wd-ind-retail .wd-ind-card-bar::before { background: #f59e0b; }
.wd-ind-retail .wd-ind-card-bar::after { background: #d1d5db; }
.wd-ind-retail .wd-ind-card-hero { background: linear-gradient(135deg, #b45309, #f59e0b); }
.wd-ind-retail .wd-ind-card-line { background: #9ca3af; }
.wd-ind-retail .wd-ind-card-lbl { color: #b45309; }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS — FEATURE SECTIONS
══════════════════════════════════════════ */
.wd-feat-copy,
.wd-feat-vis {
  opacity: 0;
  transition:
    opacity 0.9s cubic-bezier(0.22,1,0.36,1),
    transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.wd-feat-copy { transform: translateX(-44px); }
.wd-feat-vis  { transform: translateX(44px); transition-delay: 0.15s; }

.wd-feat--rev .wd-feat-copy { transform: translateX(44px); }
.wd-feat--rev .wd-feat-vis  { transform: translateX(-44px); }

.wd-feat.wd-in .wd-feat-copy,
.wd-feat.wd-in .wd-feat-vis {
  opacity: 1;
  transform: translateX(0);
}

/* Showcase header animation */
.wd-showcase-hdr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.wd-showcase-hdr.wd-in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.web-cta-banner {
  position: relative;
  overflow: hidden;
  padding: 130px 6vw;
  text-align: center;
  background: #080808;
}
.web-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
}
.web-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
}
.web-cta-blob--pink {
  width: 720px; height: 720px;
  background: #e91e8c; opacity: 0.1;
  top: -260px; right: -140px;
  animation: blobPulse 14s ease-in-out infinite;
}
.web-cta-blob--purple {
  width: 540px; height: 540px;
  background: #7c3aed; opacity: 0.08;
  bottom: -200px; left: -110px;
  animation: blobPulse 17s ease-in-out infinite reverse;
}
.web-cta-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.web-cta-banner h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.web-cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.56);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.78;
}
.web-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   LEAD FORM
══════════════════════════════════════════ */
.web-form-section { padding: 100px 6vw; }
.web-form-header { text-align: center; margin-bottom: 52px; }
.web-form-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #fff;
}
.web-form-header p { font-size: 0.95rem; color: rgba(255,255,255,0.52); line-height: 1.75; }
.web-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 60px 56px;
}
.web-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e91e8c;
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.form-field select { cursor: pointer; }
.form-field select option { background: #111; color: #fff; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #ff4d6d; box-shadow: 0 0 0 3px rgba(255,77,109,0.1); }
.field-err { font-size: 0.75rem; color: #ff4d6d; min-height: 18px; }
.gdpr-field { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 12px; }
.gdpr-field input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: #e91e8c; cursor: pointer; }
.gdpr-field label { font-size: 0.8rem; color: rgba(255,255,255,0.52); line-height: 1.6; cursor: pointer; font-weight: 400; }
.gdpr-field label a { color: #e91e8c; }
.web-form-submit-wrap { grid-column: 1 / -1; margin-top: 4px; }
.web-submit-btn {
  width: 100%;
  padding: 17px;
  font-size: 1rem;
  font-weight: 700;
  background: #e91e8c;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.web-submit-btn:hover:not(:disabled) { opacity: 0.88; transform: scale(1.015); }
.web-submit-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 64px 40px; text-align: center; gap: 16px; }
.form-success-tick { width: 76px; height: 76px; border-radius: 50%; background: rgba(233,30,140,0.12); border: 1px solid rgba(233,30,140,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.form-success p { font-size: 0.9rem; color: rgba(255,255,255,0.52); line-height: 1.75; max-width: 380px; }

/* ══════════════════════════════════════════
   HERO FLOATING MOCKUPS
══════════════════════════════════════════ */
.web-hero-mocks {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-end;
  margin-top: 64px;
  padding-bottom: 0;
  position: relative;
}

@keyframes whm-rise-1 {
  from { opacity: 0; transform: translateY(60px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes whm-rise-2 {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes whm-float-hero {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.whm-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  flex-shrink: 0;
}
.whm-card-1 {
  width: 260px;
  animation: whm-rise-1 1s cubic-bezier(0.22,1,0.36,1) 0.8s both,
             whm-float-hero 6s ease-in-out 2s infinite;
}
.whm-card-2 {
  width: 240px;
  margin-bottom: -20px;
  animation: whm-rise-1 1s cubic-bezier(0.22,1,0.36,1) 1s both,
             whm-float-hero 7s ease-in-out 2.3s infinite;
}
.whm-card-3 {
  width: 220px;
  animation: whm-rise-1 1s cubic-bezier(0.22,1,0.36,1) 1.2s both,
             whm-float-hero 5.5s ease-in-out 2.6s infinite;
}

.whm-bar {
  background: #1e1e1e;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.whm-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.whm-bar span:nth-child(1) { background: #ff5f57; }
.whm-bar span:nth-child(2) { background: #febc2e; }
.whm-bar span:nth-child(3) { background: #28c840; }

.whm-screen {
  display: flex;
  flex-direction: column;
  height: 180px;
  overflow: hidden;
}
.whm-screen.whm-blue { background: #f0f7ff; }
.whm-screen.whm-dark { background: #0d0308; }
.whm-screen.whm-teal { background: #f0fdfb; }

.whm-nav {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex-shrink: 0;
}
.whm-hero-band {
  height: 80px;
  flex-shrink: 0;
}
.whm-body {
  flex: 1;
  padding: 10px 12px;
  background: inherit;
}

/* ══════════════════════════════════════════
   PREMIUM BY DESIGN SECTION
══════════════════════════════════════════ */
@keyframes wd-prem-twinkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  33%       { opacity: 0.6; transform: scale(0.85) rotate(-12deg); }
  66%       { opacity: 0.9; transform: scale(1.1) rotate(8deg); }
}

.wd-prem {
  background: #080808;
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gradient sweep behind section */
.wd-prem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(124,58,237,0.14) 0%, rgba(233,30,140,0.08) 40%, transparent 70%);
  pointer-events: none;
}

/* Sparkle star positioning */
.wd-prem-star {
  position: absolute;
  pointer-events: none;
}
.wd-prem-star svg { display: block; }

.wd-ps-1 {
  width: 40px; height: 40px;
  top: 18%; left: 8%;
  animation: wd-prem-twinkle 3.5s ease-in-out infinite;
}
.wd-ps-2 {
  width: 20px; height: 20px;
  top: 14%; left: 22%;
  animation: wd-prem-twinkle 4s ease-in-out infinite 0.6s;
}
.wd-ps-3 {
  width: 30px; height: 30px;
  top: 22%; right: 12%;
  animation: wd-prem-twinkle 3s ease-in-out infinite 1s;
}
.wd-ps-4 {
  width: 18px; height: 18px;
  bottom: 20%; left: 15%;
  animation: wd-prem-twinkle 4.5s ease-in-out infinite 0.4s;
}
.wd-ps-5 {
  width: 26px; height: 26px;
  bottom: 18%; right: 8%;
  animation: wd-prem-twinkle 3.8s ease-in-out infinite 1.2s;
}

.wd-prem-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.wd-prem-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(44px, 7.5vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  margin: 0 0 30px;
}

.wd-prem-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #e91e8c, #b259f5, #7c3aed, #e91e8c);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wd-marquee-shimmer 5s linear infinite;
}

.wd-prem-p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  margin: 0 auto;
}

/* Scroll animation */
.wd-prem-inner {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.wd-prem.wd-in .wd-prem-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   BENTO GRID — Work images + feature boxes
══════════════════════════════════════════ */
.wd-bento {
  background: #080808;
  padding: 0 80px 100px;
}

/* Top image mosaic */
.wd-bento-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto 12px;
  border-radius: 24px;
  overflow: hidden;
}

.wd-bento-img {
  position: relative;
  overflow: hidden;
}
.wd-bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.wd-bento-img:hover img { transform: scale(1.04); }

.wd-bi-main {
  grid-row: span 2;
  min-height: 440px;
}
.wd-bi-sm {
  min-height: 214px;
}
.wd-bento-col-right,
.wd-bento-col-far {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wd-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wd-bento-img:hover .wd-bento-overlay { opacity: 1; }

.wd-bento-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(233,30,140,0.8);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Bottom feature boxes */
.wd-bento-boxes {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.wd-bento-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wd-bento-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, #e91e8c, #7c3aed);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wd-bento-box:hover {
  border-color: rgba(233,30,140,0.3);
  transform: translateY(-4px);
}
.wd-bento-box:hover::before { opacity: 1; }

.wd-bento-box-icon {
  width: 52px; height: 52px;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-bento-box-text {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Scroll animation for bento */
.wd-bento-gallery {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
              transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
.wd-bento-box {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease;
}
.wd-bento-box:nth-child(1) { transition-delay: 0.1s; }
.wd-bento-box:nth-child(2) { transition-delay: 0.22s; }
.wd-bento-box:nth-child(3) { transition-delay: 0.34s; }

.wd-bento.wd-in .wd-bento-gallery {
  opacity: 1;
  transform: translateY(0);
}
.wd-bento.wd-in .wd-bento-box {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   FOOTER ACTIVE STATE
══════════════════════════════════════════ */
.site-footer a[href*="website-development"] { color: #e91e8c !important; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wd-feat { padding: 100px 60px; }
  .wd-feat-inner { gap: 60px; }
}

@media (max-width: 900px) {
  .wd-showcase-hdr { padding: 0 40px; }
  .wd-sc-h2 { font-size: clamp(36px, 8vw, 56px); }

  .wd-feat { padding: 80px 40px; }
  .wd-feat-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    direction: ltr;
  }
  .wd-feat--rev .wd-feat-inner { direction: ltr; }
  .wd-feat-vis { order: -1; min-height: 360px; }
  .wd-feat--rev .wd-feat-vis { order: -1; }
  .wd-feat-copy { transform: translateY(36px); }
  .wd-feat-vis  { transform: translateY(36px); }
  .wd-feat--rev .wd-feat-copy { transform: translateY(36px); }
  .wd-feat--rev .wd-feat-vis  { transform: translateY(36px); }

  .wd-mq-text { font-size: clamp(38px, 7vw, 72px); padding-left: 60px; }
  .wd-mq-accent-line { left: 40px; }

  .wd-mob-phone { width: 160px; }
  .wd-mob-tablet-bg { width: 260px; height: 180px; right: 0; }
}

@media (max-width: 640px) {
  .wd-showcase-hdr { padding: 0 24px; }
  .wd-feat { padding: 70px 24px; }
  .wd-sc-card { width: 240px; }
  .wd-mq-text { font-size: clamp(28px, 9vw, 52px); padding-left: 40px; }
  .wd-mob-tablet-bg { display: none; }
  .web-form-wrap { padding: 40px 28px; }
  .web-form { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .wd-sc-rail { animation: none; }
  .wd-ind-card, .wd-cr-chip, .wd-mob-score-chip { animation: none; }
  .wd-feat-copy, .wd-feat-vis { opacity: 1; transform: none; transition: none; }
  .wd-showcase-hdr { opacity: 1; transform: none; transition: none; }
  .web-hero-blob--pink, .web-hero-blob--purple,
  .web-cta-blob--pink, .web-cta-blob--purple { animation: none; }
}
