/* Gradient blue text for word-switcher words */
.word-switcher .ws-word {
  background: linear-gradient(120deg,
    #5a9cff 0%,
    #4285f4 22%,
    #4687ff 45%,
    #2f6fe4 65%,
    #072fc0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
}

/* Thin shiny stroke only on hover */
.word-switcher .ws-word:hover {
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
}

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  --weyuu-primary-1: #4285f4;
  --weyuu-primary-2: #f4b142;
  --weyuu-primary-3: #333333;
  --weyuu-bg: #000000;
  --weyuu-surface: #0a0e1c;
  --weyuu-panel: #0e1328;
  --weyuu-divider: rgba(255, 255, 255, 0.06);
  --weyuu-text-primary: #eef0f8;
  --weyuu-text-secondary: #999999;
  --weyuu-text-muted: #5a6580;
  --weyuu-dark-text: #000000;
  --neon-blue: #00d4ff;
  --neon-purple: #a855f7;
  --neon-cyan: #06f9d4;
  --neon-pink: #f472b6;
  --neon-glow-blue: rgba(0, 212, 255, 0.35);
  --neon-glow-purple: rgba(168, 85, 247, 0.25);
}

.bp {
  outline: #ffc251 solid 1px;
}

.bp:hover:not(:has(.bp:hover)) {
  outline: #da8d00 solid 2px;
}

html {
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  /* Neon ambient glow — futuristic AI atmosphere */
  background:
    radial-gradient(
      ellipse 55% 45% at 50% 30%,
      rgba(0, 212, 255, 0.07),
      transparent 70%
    ),
    radial-gradient(
      ellipse 45% 40% at 75% 15%,
      rgba(168, 85, 247, 0.06),
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 35% at 25% 70%,
      rgba(6, 249, 212, 0.04),
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 30% at 85% 80%,
      rgba(244, 114, 182, 0.03),
      transparent 55%
    ),
    var(--weyuu-bg);
  color: var(--weyuu-text-primary);
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.stack-overlap {
  position: relative;
}

.stack-overlap > * {
  position: absolute;
  inset: 0;
}

.fill {
  width: 100%;
  height: 100%;
}

.fill-scroll {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.no-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.no-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.nav-bar {
  width: 100%;
  height: 56px;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.nav-left,
.nav-right {
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    color 0.4s ease,
    background 0.4s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-btn {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 3px;
  cursor: pointer;
  transition:
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  -webkit-user-select: none;
  user-select: none;
}

.nav-btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  border: 1px solid transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-btn-ghost:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.25);
}

.nav-btn-primary {
  color: var(--weyuu-dark-text);
  background: var(--weyuu-text-primary);
  border: 1px solid transparent;
}

.nav-btn-primary:hover {
    background: transparent;
  color: var(--weyuu-text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.nav-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* ══════════════════════════════════════════════
   Hero Section
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 120px 24px 80px;
  box-sizing: border-box;
  overflow: visible;
  transition: padding 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

/* No background orb — body owns all color */
.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  margin: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-size: 20vw;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0);
  -webkit-user-select: none;
  user-select: none;
}

/* ── Word Switcher ── */
.word-switcher {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  overflow: visible;
  /* width driven by JS every frame — no CSS transition */
}

/* Zero-width space — gives container real line-height + baseline */
.word-switcher::before {
  content: '\200b';
  display: inline;
}

/* Hidden measuring span */
.word-switcher .ws-measure {
  position: absolute;
  visibility: hidden;
  white-space: nowrap;
  font: inherit;
  letter-spacing: normal;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Both words ALWAYS absolute — no position swap = no blink */
.word-switcher .ws-word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  will-change: opacity, filter, letter-spacing;
  transition:
    opacity 0.8s ease,
    filter 0.8s ease,
    letter-spacing 0.75s cubic-bezier(0.50, 0, 0.24, 1);
}

.word-switcher .ws-word.ws-in {
  opacity: 1;
  filter: blur(0px);
}

.word-switcher .ws-word.ws-out {
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}

/* ── Headline ── */
.hero-headline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--weyuu-text-primary);
  margin: 0;
  animation: heroFadeUp 0.5s ease forwards;
}

.hero-headline-secondary {
  color: var(--weyuu-text-primary);
}

.hero-headline-primary {
  color: var(--weyuu-primary-2);
}

.hero-headline-secondary .ws-word {
  color: var(--weyuu-primary-1);
}

.hero-headline-accent {
  background: linear-gradient(
    135deg,
    var(--neon-blue) 0%,
    var(--neon-cyan) 35%,
    var(--neon-purple) 100%
  );
  margin-top: 12px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px var(--neon-glow-blue));
}

/* ── Sub-line ── */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--weyuu-text-secondary);
  max-width: 800px;
  margin: 24px auto 40px;
  animation: heroFadeUp 0.7s ease forwards;
}

/* ── Buttons ── */

/* Get Started — lives outside hero-content so it never moves */
.hero-cta {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18vh;
  z-index: 10;
  animation: ctaFadeUp 0.7s ease both;
}

@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

/* ── Hero entrance keyframes ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   Hero Morph — "You run the Business." → "Your Business"
   ══════════════════════════════════════════════ */

/* Morph headline — inline layout so chars flow naturally */
.hero-headline-morph {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Glass backing behind "Your Business" — appears when wires connect */
.hero-headline-morph::before {
  content: '';
  position: absolute;
  inset: -12px -28px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.10);
  /* All 7 shadow layers always present — values animate smoothly between stages */
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 40px rgba(66, 133, 244, 0.0),
    inset 0 0 80px rgba(168, 85, 247, 0.0),
    -30px 0 30px -15px rgba(0, 212, 255, 0.0),
    30px 0 30px -15px rgba(244, 114, 182, 0.0),
    0 0 60px rgba(66, 133, 244, 0.0);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  z-index: -1;
  opacity: 0;
  /* Exit transitions — fast disappear */
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 1, 1),
    box-shadow 0.35s ease-out,
    border-color 0.3s ease-out,
    -webkit-backdrop-filter 0.35s ease-out,
    backdrop-filter 0.35s ease-out;
  pointer-events: none;
}

/* Animated border sweep — glowing energy ring */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.hero-headline-morph::after {
  content: '';
  position: absolute;
  inset: -12px -28px;
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  --border-angle: 0deg;
  background: conic-gradient(
    from var(--border-angle) at 50% 50%,
    rgba(66, 133, 244, 0.0) 0deg,
    rgba(0, 212, 255, 0.50) 55deg,
    rgba(168, 85, 247, 0.40) 120deg,
    rgba(66, 133, 244, 0.0) 180deg,
    rgba(244, 114, 182, 0.50) 235deg,
    rgba(251, 146, 60, 0.40) 300deg,
    rgba(66, 133, 244, 0.0) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1.5px;
  /* Exit transition — fast */
  transition: opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
  filter: blur(0.5px);
}

/* Glass visible — border sweep starts once, never restarts */
.hero-headline-morph.glass-active::before {
  opacity: 1;
  /* Enter transitions — smooth appearance */
  transition:
    opacity 0.9s ease,
    box-shadow 1.2s ease,
    border-color 1.2s ease,
    -webkit-backdrop-filter 1.2s ease,
    backdrop-filter 1.2s ease;
}
.hero-headline-morph.glass-active::after {
  opacity: 1;
  animation: borderSweep 3.5s linear infinite;
  transition: opacity 0.9s ease;
}

/* Charging — soft glow while wires still connecting */
.hero-headline-morph.glass-charging::before {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 40px rgba(66, 133, 244, 0.04),
    inset 0 0 80px rgba(168, 85, 247, 0.0),
    -30px 0 30px -15px rgba(0, 212, 255, 0.06),
    30px 0 30px -15px rgba(244, 114, 182, 0.06),
    0 0 60px rgba(66, 133, 244, 0.0);
}

/* Fully powered — brighter glow */
.hero-headline-morph.glass-powered::before {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 40px rgba(66, 133, 244, 0.06),
    inset 0 0 80px rgba(168, 85, 247, 0.03),
    -30px 0 30px -15px rgba(0, 212, 255, 0.10),
    30px 0 30px -15px rgba(244, 114, 182, 0.10),
    0 0 60px rgba(66, 133, 244, 0.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.6) brightness(1.05);
  backdrop-filter: blur(18px) saturate(1.6) brightness(1.05);
}

@keyframes borderSweep {
  0%   { --border-angle: 0deg; }
  100% { --border-angle: 360deg; }
}

.hm-word,
.hm-char {
  display: inline-block;
  overflow: visible;
  vertical-align: baseline;
}

/* ── Morph transitions — JS sets actual width, CSS handles the glide ── */

/* "keep" / "merge" — no animation */
[data-hm="keep"],
[data-hm="merge"] {
  transition: none;
}

/* All collapsible morph elements — unified smooth transition */
[data-hm="collapse"],
[data-hm="fade"],
[data-hm="fade-space"] {
  will-change: width, opacity;
  transition:
    width 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Space characters */
.hm-space {
  /* width set by JS */
}

/* Elements that fade out on morph (secondary headline, sub, learn more) */
[data-hm-fade] {
  will-change: height, opacity, margin, filter;
  overflow: visible;
  filter: blur(0px);
  transition:
    height 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    margin 0.75s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.8s ease,
    filter 0.7s ease;
}

/* ── Morph active state ── */

/* FORWARD: other hero elements fade + collapse height */
body.hm-active [data-hm-fade] {
  pointer-events: none;
  filter: blur(8px);
}

/* Nav fades too */
body.hm-active .nav-bar {
  opacity: 0;
  pointer-events: none;
}

/* Equalize padding so 'Your Business' is truly centered */
body.hm-active .hero {
  padding-top: 0;
  padding-bottom: 0;
}

.nav-bar {
  transition: opacity 0.7s ease;
}

/* Get Started button stays visible during morph */
#btn_get_started {
  transition:
    opacity 0.5s ease,
    color 0.6s ease,
    background 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.8s ease,
    transform 0.2s ease,
    -webkit-backdrop-filter 0.6s ease,
    backdrop-filter 0.6s ease;
}

/* ── Morph service cards ── */
.morph-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.morph-card {
  position: absolute;
  /* Slide via `translate` — separate from `transform` so float never conflicts */
  translate: -100vw 0;
  padding: 11px 24px;
  border-radius: 14px;
  /* Glass */
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  color: rgba(255, 255, 255, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  will-change: translate;
  transition: translate 0.75s cubic-bezier(0.50, 0, 0.24, 1);
}

/* Right cards slide from the right */
.mc-right {
  translate: 100vw 0;
}

/* Float always running — left/top/transition-delay set by JS */
.mc-1 { animation: mcFloat1 3.0s ease-in-out infinite alternate; }
.mc-2 { animation: mcFloat2 3.4s ease-in-out infinite alternate; }
.mc-3 { animation: mcFloat3 2.8s ease-in-out infinite alternate; }
.mc-4 { animation: mcFloat4 3.2s ease-in-out infinite alternate; }
.mc-5 { animation: mcFloat5 3.6s ease-in-out infinite alternate; }
.mc-6 { animation: mcFloat6 3.1s ease-in-out infinite alternate; }
.mc-7 { animation: mcFloat7 2.9s ease-in-out infinite alternate; }
.mc-8 { animation: mcFloat8 3.3s ease-in-out infinite alternate; }

/* Slide in when morph is active */
body.hm-active .morph-card {
  translate: 0 0;
}

/* ── Morph wires (SVG) ── */
.morph-wires {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.mw {
  fill: none;
  stroke-linecap: round;
  opacity: 0;
}

.mw-glow {
  stroke-width: 3.5;
}

.mw-core {
  stroke-width: 1.4;
}

.mw-pulse {
  stroke-width: 2;
  stroke-dasharray: 12 80;
}

/* Pulse animation runs when morph is active */

/* Junction dots — hidden by default, JS controls visibility */
.mw-dot {
  opacity: 0;
}

.mw-dot-end, .mw-dot-end-core, .mw-dot-end-outer,
.mw-end-left, .mw-end-right {
  transform-box: fill-box;
  transform-origin: center;
}

/* Start dot halos pulse gently */
.mw-dot-start-halo.mw-1 { animation: dotHalo 2.0s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-2 { animation: dotHalo 2.3s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-3 { animation: dotHalo 1.9s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-4 { animation: dotHalo 2.1s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-5 { animation: dotHalo 2.4s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-6 { animation: dotHalo 2.2s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-7 { animation: dotHalo 1.8s ease-in-out infinite alternate; }
.mw-dot-start-halo.mw-8 { animation: dotHalo 2.5s ease-in-out infinite alternate; }

@keyframes dotHalo {
  0%   { opacity: 0.1; }
  100% { opacity: 0.3; }
}

/* Convergence glow pulses — scale breathing, opacity controlled by JS only */
.dot-powered .mw-dot-end-outer { animation: endHaloOuter 3s ease-in-out infinite alternate; }
.dot-powered .mw-dot-end { animation: endPulse 2s ease-in-out infinite alternate; }
.dot-powered .mw-dot-end-core { animation: endCorePulse 1.5s ease-in-out infinite alternate; }

@keyframes endHaloOuter {
  0%   { transform: scale(1); }
  100% { transform: scale(1.15); }
}

@keyframes endPulse {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes endCorePulse {
  0%   { transform: scale(1); }
  100% { transform: scale(1.2); }
}

/* Pulse animation — energy flowing from cards to headline */
body.hm-active .mw-pulse.mw-1 { animation: wirePulse 2.0s linear 0.5s infinite; }
body.hm-active .mw-pulse.mw-2 { animation: wirePulse 2.3s linear 0.7s infinite; }
body.hm-active .mw-pulse.mw-3 { animation: wirePulse 1.8s linear 0.6s infinite; }
body.hm-active .mw-pulse.mw-4 { animation: wirePulse 2.1s linear 0.8s infinite; }
body.hm-active .mw-pulse.mw-5 { animation: wirePulse 2.2s linear 0.5s infinite; }
body.hm-active .mw-pulse.mw-6 { animation: wirePulse 1.9s linear 0.7s infinite; }
body.hm-active .mw-pulse.mw-7 { animation: wirePulse 2.4s linear 0.6s infinite; }
body.hm-active .mw-pulse.mw-8 { animation: wirePulse 2.0s linear 0.9s infinite; }

@keyframes wirePulse {
  0%   { stroke-dashoffset: 92; }
  100% { stroke-dashoffset: -92; }
}

/* Each card floats with slightly different Y range for organic feel */
@keyframes mcFloat1 { 0% { transform: translateY(0); } 100% { transform: translateY(-7px); } }
@keyframes mcFloat2 { 0% { transform: translateY(0); } 100% { transform: translateY(-9px); } }
@keyframes mcFloat3 { 0% { transform: translateY(0); } 100% { transform: translateY(-6px); } }
@keyframes mcFloat4 { 0% { transform: translateY(0); } 100% { transform: translateY(-10px); } }
@keyframes mcFloat5 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
@keyframes mcFloat6 { 0% { transform: translateY(0); } 100% { transform: translateY(-7px); } }
@keyframes mcFloat7 { 0% { transform: translateY(0); } 100% { transform: translateY(-9px); } }
@keyframes mcFloat8 { 0% { transform: translateY(0); } 100% { transform: translateY(-6px); } }

/* ══════════════════════════════════════════════
   Vision Section
   ══════════════════════════════════════════════ */
.vision {
  position: relative;
  width: 100%;
  padding: 80px 48px 100px;
  box-sizing: border-box;
}

.vision-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: 32px;

  /* Background hidden */
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

/* ── Edge Shine — reusable radial border glow on any container ── */
.edge-shine {
  --es-x: -9999px;
  --es-y: -9999px;
  position: relative;
  overflow: visible;
}

.edge-shine::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: radial-gradient(
    circle 280px at var(--es-x) var(--es-y),
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.6) 20%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.06) 70%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle 280px at var(--es-x) var(--es-y),
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.6) 20%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.06) 70%,
    transparent 100%
  );
}

/* 3-column grid: step | arrows | mission */
.vision-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  gap: 40px;
  align-items: center;
}

/* ── Step Card (left) ── */
.vision-cards-wrapper {
  position: relative;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Exiting upward (going to next) */
.vision-slide.vision-slide--exit-up {
  opacity: 0;
  transform: translateY(-30px);
}

/* Exiting downward (going to prev) */
.vision-slide.vision-slide--exit-down {
  opacity: 0;
  transform: translateY(30px);
}

/* Entering from below (going to next) */
.vision-slide.vision-slide--enter-up {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

/* Entering from above (going to prev) */
.vision-slide.vision-slide--enter-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: none;
}

.vision-slide.vision-slide--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vision-step-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
}

.vision-step-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.vision-step-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vision-step-label {
  display: none;
}

.vision-step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--weyuu-primary-1);
  opacity: 0.85;
}

.vision-step-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.vision-step-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--weyuu-primary-1);
  text-transform: uppercase;
}

.vision-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  margin: 0;
}

.vision-step-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--weyuu-primary-1), transparent);
  margin: 16px 0 20px;
  border-radius: 2px;
}

.vision-step-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--weyuu-text-secondary);
  margin: 0;
}

/* ── Center Nav Arrows ── */
.vision-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.vision-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.vision-arrow:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Right — Mission Text ── */
.vision-mission {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-text {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-text.vision-text--active {
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
}

.vision-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

.vision-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--weyuu-text-primary);
  margin: 0;
}

.vision-mission-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--weyuu-text-secondary);
  margin: 0;
  max-width: 480px;
}

/* ── Neon ambient pulse ── */
@keyframes neonPulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -55%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -55%) scale(1.08);
  }
}


/* ══════════════════════════════════════════════
   How We Help You Section
   ══════════════════════════════════════════════ */
.help {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px 120px;
  box-sizing: border-box;
}

/* ── Section Header ── */
.help-header {
  text-align: center;
  margin-bottom: 72px;
}

.help-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--weyuu-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 8px 22px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.help-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--weyuu-text-primary);
  margin: 0 0 24px;
}

.help-heading em {
  font-style: italic;
  font-weight: 700;
}

.help-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--weyuu-text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ── Card Grid (2 + 1 layout like reference image) ── */
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 80px;
}

/* ── Service Cards ── */
.help-card {
  position: relative;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 40%,
      rgba(255, 255, 255, 0.03) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 34px 32px;
  overflow: visible;
  transition: border-color 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.help-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Full-width card spans both columns */
.help-card--wide {
  grid-column: 1 / -1;
}

/* ── Card Content ── */
.help-card__eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--weyuu-primary-1);
  margin-bottom: 12px;
}

.help-card__title {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--weyuu-text-primary);
  margin: 0 0 12px;
  line-height: 1.15;
}

.help-card__desc {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--weyuu-text-secondary);
  margin: 0;
}

/* ── Ecosystem Loop ── */
.help-ecosystem {
  text-align: center;
  margin-bottom: 80px;
  padding: 56px 0;
  background: none;
  border: none;
}

.help-ecosystem__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--weyuu-text-primary);
  margin: 0 0 16px;
}

.help-ecosystem__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--weyuu-text-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
}

.help-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Step cards — glass with subtle inner glow */
.help-loop__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 50%,
      rgba(255, 255, 255, 0.04) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 170px;
  max-width: 200px;
  flex: 1;
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.help-loop__step:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Step index number */
.help-loop__index {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--weyuu-primary-1);
  opacity: 0.6;
  line-height: 1;
}

/* Infinity symbol on loop step */
.help-loop__step--loop .help-loop__index {
  font-size: 1.8rem;
  opacity: 0.5;
}

.help-loop__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--weyuu-text-secondary);
  line-height: 1.5;
  text-align: center;
}

/* Connector between steps — line + chevron */
.help-loop__connector {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 4px;
  flex-shrink: 0;
}

.help-loop__line {
  width: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

/* Animated shimmer traveling across the connector line */
.help-loop__line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -100%;
  width: 60%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--weyuu-primary-1),
    transparent
  );
  border-radius: 2px;
  animation: connectorShimmer 3s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes connectorShimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.6; }
  100% { left: 100%; opacity: 0; }
}

/* Stagger the shimmer per connector */
.help-loop__connector:nth-child(2) .help-loop__line::after { animation-delay: 0s; }
.help-loop__connector:nth-child(4) .help-loop__line::after { animation-delay: 0.8s; }
.help-loop__connector:nth-child(6) .help-loop__line::after { animation-delay: 1.6s; }

.help-loop__chevron {
  color: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

/* ── Who We Built This For ── */
.help-profiles {
  margin-bottom: 80px;
}

.help-profiles__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--weyuu-text-primary);
  margin: 0 0 36px;
  text-align: center;
}

.help-profiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.help-profile-card {
  position: relative;
  background: none;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  padding: 36px 28px;
  text-align: left;
  transition: background 0.45s ease;
}

.help-profile-card:last-child {
  border-right: none;
}

.help-profile-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Numbered index */
.help-profile-card__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--weyuu-primary-1);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.4s ease;
}

.help-profile-card:hover .help-profile-card__number {
  opacity: 0.7;
}

/* Accent divider */
.help-profile-card__divider {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--weyuu-primary-1), transparent);
  margin-bottom: 20px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.help-profile-card:hover .help-profile-card__divider {
  width: 44px;
}

.help-profile-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  margin: 0 0 10px;
  line-height: 1.35;
}

.help-profile-card__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--weyuu-text-secondary);
  margin: 0;
  font-weight: 400;
  line-height: 1.65;
  color: var(--weyuu-text-secondary);
  margin: 0;
}

/* ── Section Footer ── */
.help-footer {
  text-align: center;
}

.help-footer__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--weyuu-text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

.help-footer__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.help-footer__cta {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
}

.help-footer__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--weyuu-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.help-footer__link:hover {
  color: var(--weyuu-text-primary);
}


/* ══════════════════════════════════════════════
   Reusable Section Header
   ══════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--weyuu-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 7px 20px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.03);
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--weyuu-text-primary);
  margin: 0 0 22px;
}

.section-heading em {
  font-style: italic;
  font-weight: 700;
}

.section-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--weyuu-text-secondary);
  max-width: 640px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════
   Why Us Section
   ══════════════════════════════════════════════ */
.why {
  position: relative;
  width: 100%;
  padding: 100px 0 120px;
}

.why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.why__card {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--weyuu-bg);
  transition: background 0.5s ease;
  overflow: visible;
}

.why__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 300px 200px at 50% 0%,
    rgba(66, 133, 244, 0.06),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why__card:hover::before {
  opacity: 1;
}

.why__card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.why__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--weyuu-primary-1);
  margin-bottom: 22px;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.why__card:hover .why__card-icon {
  border-color: rgba(66, 133, 244, 0.25);
  background: rgba(66, 133, 244, 0.08);
}

.why__card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.why__card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--weyuu-text-secondary);
  margin: 0;
}

.why__closing {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  margin-top: 48px;
  font-style: italic;
}


/* ══════════════════════════════════════════════
   Result / Feeling Section
   ══════════════════════════════════════════════ */
.result {
  position: relative;
  width: 100%;
  padding: 100px 0 120px;
}

.result__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.result__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Each transformation row ── */
.result__row {
  display: grid;
  grid-template-columns: 56px 1fr 52px;
  align-items: center;
  gap: 28px;
  padding: 36px 36px;
  border-radius: 18px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.012) 50%,
      rgba(255, 255, 255, 0.025) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  overflow: visible;
}

.result__row:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

/* Glow underlay when toggled to "after" */
.result__row.is-after {
  border-color: rgba(66, 133, 244, 0.18);
  background:
    linear-gradient(
      160deg,
      rgba(66, 133, 244, 0.05) 0%,
      rgba(255, 255, 255, 0.012) 50%,
      rgba(66, 133, 244, 0.03) 100%
    );
}

/* ── Number index ── */
.result__index {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  transition: color 0.5s ease;
  user-select: none;
}

.result__row.is-after .result__index {
  color: rgba(66, 133, 244, 0.25);
}

/* ── Content area: stacked faces ── */
.result__content {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.result__face {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.result__face--before {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.result__face--after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(4px);
  pointer-events: none;
}

/* Active state: show after, hide before */
.result__row.is-after .result__face--before {
  opacity: 0;
  transform: translateY(-8px);
  filter: blur(4px);
  pointer-events: none;
}

.result__row.is-after .result__face--after {
  opacity: 1;
  transform: translateY(0);
  filter: none;
  pointer-events: auto;
}

/* ── Labels ── */
.result__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  flex-shrink: 0;
}

.result__label svg {
  flex-shrink: 0;
}

.result__label--after {
  color: var(--weyuu-primary-1);
  border-color: rgba(66, 133, 244, 0.22);
  background: rgba(66, 133, 244, 0.06);
}

/* ── Text ── */
.result__text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--weyuu-text-secondary);
  margin: 0;
}

.result__face--after .result__text {
  color: var(--weyuu-text-primary);
  font-weight: 500;
}

/* ── Toggle switch ── */
.result__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.result__toggle-track {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.result__toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, box-shadow 0.4s ease;
}

/* Toggle active */
.result__row.is-after .result__toggle-track {
  background: rgba(66, 133, 244, 0.12);
  border-color: rgba(66, 133, 244, 0.3);
}

.result__row.is-after .result__toggle-thumb {
  transform: translateX(18px);
  background: var(--weyuu-primary-1);
  box-shadow: 0 0 10px rgba(66, 133, 244, 0.4);
}

.result__closing {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  margin-top: 48px;
  font-style: italic;
}


/* ══════════════════════════════════════════════
   How We Work / Process Section
   ══════════════════════════════════════════════ */
.process {
  position: relative;
  width: 100%;
  padding: 100px 0 120px;
}

.process__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Vertical timeline */
.process__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 60px;
}

/* Connecting vertical line */
.process__timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(66, 133, 244, 0.25) 10%,
    rgba(66, 133, 244, 0.12) 90%,
    transparent 100%
  );
}

/* Each step */
.process__step {
  position: relative;
  display: flex;
  gap: 28px;
  padding: 32px 32px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease;
  margin-bottom: 8px;
}

.process__step:hover {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.06);
}

/* Step number — positioned on the timeline line */
.process__number {
  position: absolute;
  left: -60px;
  top: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--weyuu-primary-1);
  background: var(--weyuu-bg);
  border: 1px solid rgba(66, 133, 244, 0.2);
  z-index: 2;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.process__step:hover .process__number {
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 0 20px rgba(66, 133, 244, 0.12);
}

.process__content {
  flex: 1;
}

.process__time {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--weyuu-primary-1);
  opacity: 0.7;
  margin-bottom: 8px;
}

.process__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.process__desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--weyuu-text-secondary);
  margin: 0 0 14px;
}

.process__deliverable {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.process__footer {
  text-align: center;
  margin-top: 56px;
}

.process__closing {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  font-style: italic;
  margin: 0 0 28px;
}

.process__cta {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
}


/* ══════════════════════════════════════════════
   Testimonials Section
   ══════════════════════════════════════════════ */
.testimonials {
  position: relative;
  width: 100%;
  padding: 100px 0 120px;
}

.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.testimonials__grid {
  display: columns;
  columns: 3;
  column-gap: 20px;
}

.testimonial-card {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 32px 28px;
  border-radius: 16px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.015) 50%,
      rgba(255, 255, 255, 0.03) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.testimonial-card__quote {
  margin-bottom: 24px;
}

.testimonial-card__mark {
  color: var(--weyuu-primary-1);
  opacity: 0.25;
  margin-bottom: 12px;
  display: block;
}

.testimonial-card__quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--weyuu-text-secondary);
  margin: 0;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--weyuu-primary-1);
  flex-shrink: 0;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
}

.testimonial-card__role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
}

.testimonial-card__loc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}

/* Stats bar */
.testimonials__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonials__stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--weyuu-text-primary);
  line-height: 1;
}

.testimonials__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--weyuu-text-secondary);
  letter-spacing: 0.03em;
}

.testimonials__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}


/* ══════════════════════════════════════════════
   Case Studies Section
   ══════════════════════════════════════════════ */
.cases {
  position: relative;
  width: 100%;
  padding: 100px 0 120px;
}

.cases__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
  border-radius: 18px;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.015) 50%,
      rgba(255, 255, 255, 0.03) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}

.case-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.case-card__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.case-card__tag {
  display: inline-block;
  width: fit-content;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--weyuu-primary-1);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(66, 133, 244, 0.18);
  background: rgba(66, 133, 244, 0.06);
}

.case-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-card__industry,
.case-card__location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

.case-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.case-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--weyuu-text-primary);
  margin: 0 0 12px;
}

.case-card__challenge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--weyuu-text-secondary);
  margin: 0 0 24px;
}

.case-card__results {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.case-card__result-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.case-card__result-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--weyuu-primary-1);
  line-height: 1;
}

.case-card__result-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.case-card__quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--weyuu-text-secondary);
  margin: 0 0 20px;
  padding: 0;
  border: none;
  flex: 1;
}

.case-card__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--weyuu-primary-1);
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-top: auto;
}

.case-card__link:hover {
  opacity: 0.7;
}

.cases__footer {
  text-align: center;
  margin-top: 56px;
}

.cases__closing {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  font-style: italic;
  margin: 0 0 28px;
}

.cases__cta {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════ */
.portfolio {
  padding: 120px 0;
}

.portfolio__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.portfolio-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.14);
}

.portfolio-card__preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(66,133,244,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.portfolio-card__preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(66,133,244,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.portfolio-card__placeholder {
  color: rgba(255,255,255,0.18);
}

.portfolio-card__body {
  padding: 20px 22px 24px;
}

.portfolio-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.portfolio-card__tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 4px 10px;
}

.portfolio-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  line-height: 1.45;
  margin: 0 0 16px;
}

.portfolio-card__badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--weyuu-primary-1);
  background: rgba(66,133,244,0.08);
  border: 1px solid rgba(66,133,244,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  letter-spacing: 0.01em;
}

.portfolio__footer {
  text-align: center;
  margin-top: 56px;
}

.portfolio__cta {
  padding: 12px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
}

.portfolio__note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  margin: 20px auto 0;
  max-width: 540px;
}

/* ═══════════════════════════════════════
   TECH STACK
   ═══════════════════════════════════════ */
.tech {
  padding: 120px 0;
}

.tech__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tech__categories {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
}

.tech__category:first-child {
  border-radius: 18px 18px 0 0;
}

.tech__category:last-child {
  border-radius: 0 0 18px 18px;
}

.tech__category {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.tech__category:last-child {
  border-bottom: none;
}

.tech__category:hover {
  background: rgba(255,255,255,0.02);
}

.tech__category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 240px;
}

.tech__category-label svg {
  color: var(--weyuu-primary-1);
  flex-shrink: 0;
}

.tech__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech__item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 6px 14px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tech__category:hover .tech__item {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
}

.tech__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
  padding: 24px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}

.tech__trust-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

.tech__trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,133,244,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.final-cta__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--weyuu-text-primary);
  line-height: 1.2;
  margin: 20px 0 0;
}

.final-cta__heading em {
  font-style: italic;
  color: var(--weyuu-primary-1);
}

.final-cta__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__values {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.final-cta__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.final-cta__value svg {
  color: var(--weyuu-primary-1);
  flex-shrink: 0;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.final-cta__btn-primary {
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
}

.final-cta__btn-secondary {
  padding: 14px 36px;
  border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--weyuu-text-primary);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.final-cta__btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.final-cta__alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.final-cta__alt-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}

.final-cta__alt-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.final-cta__alt-link:hover {
  color: var(--weyuu-primary-1);
}

.final-cta__alt-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
}

.final-cta__trust {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  margin: 40px 0 0;
  font-style: italic;
}

/* ═══════════════════════════════════════
   BLOG / INSIGHTS
   ═══════════════════════════════════════ */
.blog {
  padding: 120px 0;
}

.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.blog-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.012) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.14);
}

.blog-card__preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, rgba(66,133,244,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.blog-card__placeholder {
  color: rgba(255,255,255,0.15);
}

.blog-card__body {
  padding: 22px 24px 26px;
}

.blog-card__category {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--weyuu-primary-1);
}

.blog-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  line-height: 1.45;
  margin: 10px 0 0;
}

.blog-card__excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  line-height: 1.6;
  margin: 10px 0 0;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.blog-card__author,
.blog-card__time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

.blog-card__sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.72rem;
}

/* Newsletter box */
.blog__newsletter {
  margin-top: 56px;
  padding: 40px 48px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.blog__newsletter-content {
  flex: 1;
  min-width: 0;
}

.blog__newsletter-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--weyuu-text-primary);
  margin: 0;
}

.blog__newsletter-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  margin: 8px 0 0;
  line-height: 1.5;
}

.blog__newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.blog__newsletter-input {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--weyuu-text-primary);
  outline: none;
  width: 240px;
  transition: border-color 0.25s ease;
}

.blog__newsletter-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.blog__newsletter-input:focus {
  border-color: rgba(66,133,244,0.4);
}

.blog__newsletter-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  position: relative;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: visible;
}

.footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(66, 133, 244, 0.35) 16%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(66, 133, 244, 0.35) 84%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.footer::after {
  content: '';
  position: absolute;
  left: 0;
  top: -6px;
  width: 100%;
  height: 14px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(66, 133, 244, 0.22) 0%,
    rgba(66, 133, 244, 0.08) 42%,
    rgba(66, 133, 244, 0) 78%
  );
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.footer__about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer__social-link:hover {
  color: var(--weyuu-primary-1);
  border-color: rgba(66,133,244,0.25);
  background: rgba(66,133,244,0.06);
}

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--weyuu-text-primary);
  margin: 0 0 20px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a,
.footer__links span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--weyuu-text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__links a:hover {
  color: var(--weyuu-text-primary);
}

.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links--contact svg {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

.footer__tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  margin: 0;
  font-style: italic;
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.25s ease, color 0.25s ease;
  z-index: 90;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--weyuu-text-primary);
}

/* ═══════════════════════════════════════
   LOGO SHOWCASE
   ═══════════════════════════════════════ */
.logo-showcase {
  padding: 100px 0;
}

.logo-showcase__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-showcase__img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}
